Changeset ae8b942 for src/SynTree
- Timestamp:
- Jan 29, 2016, 4:36:46 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 5721a6d
- Parents:
- d3b7937 (diff), 73a28e2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- src/SynTree
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Expression.cc
rd3b7937 rae8b942 103 103 SizeofExpr::SizeofExpr( Expression *expr_, Expression *_aname ) : 104 104 Expression( _aname ), expr(expr_), type(0), isType(false) { 105 add_result( new BasicType( Type::Qualifiers(), BasicType:: UnsignedInt ) );105 add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); 106 106 } 107 107 108 108 SizeofExpr::SizeofExpr( Type *type_, Expression *_aname ) : 109 109 Expression( _aname ), expr(0), type(type_), isType(true) { 110 add_result( new BasicType( Type::Qualifiers(), BasicType:: UnsignedInt ) );110 add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); 111 111 } 112 112 … … 134 134 AlignofExpr::AlignofExpr( Expression *expr_, Expression *_aname ) : 135 135 Expression( _aname ), expr(expr_), type(0), isType(false) { 136 add_result( new BasicType( Type::Qualifiers(), BasicType:: UnsignedInt ) );136 add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); 137 137 } 138 138 139 139 AlignofExpr::AlignofExpr( Type *type_, Expression *_aname ) : 140 140 Expression( _aname ), expr(0), type(type_), isType(true) { 141 add_result( new BasicType( Type::Qualifiers(), BasicType:: UnsignedInt ) );141 add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); 142 142 } 143 143 … … 158 158 else 159 159 expr->print(os, indent + 2); 160 161 os << std::endl; 162 Expression::print( os, indent ); 163 } 164 165 OffsetofExpr::OffsetofExpr( Type *type_, DeclarationWithType *member_, Expression *_aname ) : 166 Expression( _aname ), type(type_), member(member_) { 167 add_result( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ) ); 168 } 169 170 OffsetofExpr::OffsetofExpr( const OffsetofExpr &other ) : 171 Expression( other ), type( maybeClone( other.type ) ), member( maybeClone( other.member ) ) {} 172 173 OffsetofExpr::~OffsetofExpr() { 174 delete type; 175 delete member; 176 } 177 178 void OffsetofExpr::print( std::ostream &os, int indent) const { 179 os << std::string( indent, ' ' ) << "Offsetof Expression on member "; 180 181 if ( member ) { 182 os << member->get_name(); 183 } else { 184 os << "<NULL>"; 185 } 186 187 os << " of "; 188 189 if ( type ) { 190 type->print(os, indent + 2); 191 } else { 192 os << "<NULL>"; 193 } 160 194 161 195 os << std::endl; -
src/SynTree/Expression.h
rd3b7937 rae8b942 319 319 }; 320 320 321 /// OffsetofExpr represents an offsetof expression 322 class OffsetofExpr : public Expression { 323 public: 324 OffsetofExpr( Type *type, DeclarationWithType *member, Expression *_aname = 0 ); 325 OffsetofExpr( const OffsetofExpr &other ); 326 virtual ~OffsetofExpr(); 327 328 Type *get_type() const { return type; } 329 void set_type( Type *newValue ) { type = newValue; } 330 DeclarationWithType *get_member() const { return member; } 331 void set_member( DeclarationWithType *newValue ) { member = newValue; } 332 333 virtual OffsetofExpr *clone() const { return new OffsetofExpr( *this ); } 334 virtual void accept( Visitor &v ) { v.visit( this ); } 335 virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); } 336 virtual void print( std::ostream &os, int indent = 0 ) const; 337 private: 338 Type *type; 339 DeclarationWithType *member; 340 }; 341 321 342 /// AttrExpr represents an @attribute expression (like sizeof, but user-defined) 322 343 class AttrExpr : public Expression { -
src/SynTree/Initializer.h
rd3b7937 rae8b942 55 55 class SingleInit : public Initializer { 56 56 public: 57 SingleInit( Expression *value, std::list< Expression *> &designators );57 SingleInit( Expression *value, std::list< Expression *> &designators = *(new std::list<Expression *>()) ); 58 58 SingleInit( const SingleInit &other ); 59 59 virtual ~SingleInit(); -
src/SynTree/Mutator.cc
rd3b7937 rae8b942 261 261 } 262 262 263 Expression *Mutator::mutate( OffsetofExpr *offsetofExpr ) { 264 mutateAll( offsetofExpr->get_results(), *this ); 265 offsetofExpr->set_type( maybeMutate( offsetofExpr->get_type(), *this ) ); 266 offsetofExpr->set_member( maybeMutate( offsetofExpr->get_member(), *this ) ); 267 return offsetofExpr; 268 } 269 263 270 Expression *Mutator::mutate( AttrExpr *attrExpr ) { 264 271 mutateAll( attrExpr->get_results(), *this ); -
src/SynTree/Mutator.h
rd3b7937 rae8b942 65 65 virtual Expression* mutate( SizeofExpr *sizeofExpr ); 66 66 virtual Expression* mutate( AlignofExpr *alignofExpr ); 67 virtual Expression* mutate( OffsetofExpr *offsetofExpr ); 67 68 virtual Expression* mutate( AttrExpr *attrExpr ); 68 69 virtual Expression* mutate( LogicalExpr *logicalExpr ); -
src/SynTree/SynTree.h
rd3b7937 rae8b942 70 70 class SizeofExpr; 71 71 class AlignofExpr; 72 class OffsetofExpr; 72 73 class AttrExpr; 73 74 class LogicalExpr; -
src/SynTree/Visitor.cc
rd3b7937 rae8b942 219 219 } 220 220 221 void Visitor::visit( OffsetofExpr *offsetofExpr ) { 222 acceptAll( offsetofExpr->get_results(), *this ); 223 maybeAccept( offsetofExpr->get_type(), *this ); 224 maybeAccept( offsetofExpr->get_member(), *this ); 225 } 226 221 227 void Visitor::visit( AttrExpr *attrExpr ) { 222 228 acceptAll( attrExpr->get_results(), *this ); -
src/SynTree/Visitor.h
rd3b7937 rae8b942 65 65 virtual void visit( SizeofExpr *sizeofExpr ); 66 66 virtual void visit( AlignofExpr *alignofExpr ); 67 virtual void visit( OffsetofExpr *offsetofExpr ); 67 68 virtual void visit( AttrExpr *attrExpr ); 68 69 virtual void visit( LogicalExpr *logicalExpr );
Note: See TracChangeset
for help on using the changeset viewer.