ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change
on this file since 0ec9229 was
6b0b624,
checked in by Peter A. Buhr <pabuhr@…>, 7 years ago
|
change #ifndef to #pragma once
|
-
Property mode set to
100644
|
File size:
992 bytes
|
Rev | Line | |
---|
[51587aa] | 1 | // |
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo |
---|
| 3 | // |
---|
| 4 | // The contents of this file are covered under the licence agreement in the |
---|
| 5 | // file "LICENCE" distributed with Cforall. |
---|
| 6 | // |
---|
| 7 | // OperatorTable.h -- |
---|
| 8 | // |
---|
| 9 | // Author : Richard C. Bilson |
---|
| 10 | // Created On : Mon May 18 07:44:20 2015 |
---|
[6b0b624] | 11 | // Last Modified By : Peter A. Buhr |
---|
| 12 | // Last Modified On : Fri Jul 21 22:17:11 2017 |
---|
| 13 | // Update Count : 6 |
---|
[51587aa] | 14 | // |
---|
| 15 | |
---|
[6b0b624] | 16 | #pragma once |
---|
[51b7345] | 17 | |
---|
| 18 | #include <string> |
---|
| 19 | |
---|
| 20 | namespace CodeGen { |
---|
[51587aa] | 21 | enum OperatorType { |
---|
| 22 | OT_INDEX, |
---|
[2794fff] | 23 | OT_CTOR, |
---|
| 24 | OT_DTOR, |
---|
[51587aa] | 25 | OT_CALL, |
---|
| 26 | OT_PREFIX, |
---|
| 27 | OT_POSTFIX, |
---|
| 28 | OT_INFIX, |
---|
| 29 | OT_PREFIXASSIGN, |
---|
| 30 | OT_POSTFIXASSIGN, |
---|
| 31 | OT_INFIXASSIGN, |
---|
[de62360d] | 32 | OT_LABELADDRESS, |
---|
[51587aa] | 33 | OT_CONSTANT |
---|
| 34 | }; |
---|
| 35 | |
---|
| 36 | struct OperatorInfo { |
---|
| 37 | std::string inputName; |
---|
| 38 | std::string symbol; |
---|
| 39 | std::string outputName; |
---|
| 40 | OperatorType type; |
---|
| 41 | }; |
---|
| 42 | |
---|
| 43 | bool operatorLookup( std::string funcName, OperatorInfo &info ); |
---|
[51b7345] | 44 | } // namespace CodeGen |
---|
| 45 | |
---|
[51587aa] | 46 | // Local Variables: // |
---|
| 47 | // tab-width: 4 // |
---|
| 48 | // mode: c++ // |
---|
| 49 | // compile-command: "make install" // |
---|
| 50 | // End: // |
---|
Note: See
TracBrowser
for help on using the repository browser.