Changes in src/SynTree/Declaration.h [03e5d14:f326f99]
- File:
-
- 1 edited
-
src/SynTree/Declaration.h (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.h
r03e5d14 rf326f99 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Fri May 06 15:39:02 201613 // Update Count : 3 312 // Last Modified On : Mon Apr 11 16:55:12 2016 13 // Update Count : 36 14 14 // 15 15 … … 22 22 #include "Parser/LinkageSpec.h" 23 23 #include "Parser/ParseNode.h" 24 #include <string> 24 25 25 26 class Declaration { … … 67 68 void set_mangleName( std::string newValue ) { mangleName = newValue; } 68 69 70 std::string get_scopedMangleName() const { return mangleName + "_" + std::to_string(scopeLevel); } 71 72 int get_scopeLevel() const { return scopeLevel; } 73 void set_scopeLevel( int newValue ) { scopeLevel = newValue; } 74 69 75 virtual DeclarationWithType *clone() const = 0; 70 76 virtual DeclarationWithType *acceptMutator( Mutator &m ) = 0; … … 75 81 // this represents the type with all types and typedefs expanded it is generated by SymTab::Validate::Pass2 76 82 std::string mangleName; 83 // need to remember the scope level at which the variable was declared, so that 84 // shadowed identifiers can be accessed 85 int scopeLevel = 0; 77 86 }; 78 87 … … 106 115 typedef DeclarationWithType Parent; 107 116 public: 108 // temporary - merge this into general GCC attributes 109 struct Attribute { 110 enum Type { 111 NoAttribute, Constructor, Destructor, 112 } type; 113 enum Priority { 114 // priorities 0-100 are reserved by gcc, so it's okay to use 100 an exceptional case 115 Default = 100, High, 116 } priority; 117 Attribute(Type t = NoAttribute, Priority p = Default) : type(t), priority(p) {}; 118 }; 119 120 FunctionDecl( const std::string &name, DeclarationNode::StorageClass sc, LinkageSpec::Type linkage, FunctionType *type, CompoundStmt *statements, bool isInline, bool isNoreturn, Attribute attribute = Attribute() ); 117 FunctionDecl( const std::string &name, DeclarationNode::StorageClass sc, LinkageSpec::Type linkage, FunctionType *type, CompoundStmt *statements, bool isInline, bool isNoreturn ); 121 118 FunctionDecl( const FunctionDecl &other ); 122 119 virtual ~FunctionDecl(); … … 131 128 std::list< std::string >& get_oldIdents() { return oldIdents; } 132 129 std::list< Declaration* >& get_oldDecls() { return oldDecls; } 133 Attribute get_attribute() const { return attribute; }134 void set_attribute( Attribute newValue ) { attribute = newValue; }135 130 136 131 virtual FunctionDecl *clone() const { return new FunctionDecl( *this ); } … … 144 139 std::list< std::string > oldIdents; 145 140 std::list< Declaration* > oldDecls; 146 Attribute attribute;147 141 }; 148 142
Note:
See TracChangeset
for help on using the changeset viewer.