Changeset 10e81ac for src/SymTab
- Timestamp:
- May 27, 2016, 4:16:53 PM (10 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, with_gc
- Children:
- 725f36f5
- Parents:
- aad5a48 (diff), 677c1be (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/SymTab
- Files:
-
- 2 edited
-
Autogen.cc (modified) (2 diffs)
-
Validate.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Autogen.cc
raad5a48 r10e81ac 10 10 // Created On : Thu Mar 03 15:45:56 2016 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed May 11 13:22:03201612 // Last Modified On : Thu May 26 14:14:09 2016 13 13 // Update Count : 1 14 14 // … … 163 163 /// Creates a new type decl that's the same as src, but renamed and with only the ?=?, ?{} (default and copy), and ^?{} assertions (for complete types only) 164 164 TypeDecl *cloneAndRename( TypeDecl *src, const std::string &name ) { 165 // TypeDecl *dst = new TypeDecl( name, src->get_storageClass(), 0, src->get_kind() ); 166 167 // if ( src->get_kind() == TypeDecl::Any ) { 168 // TypeInstType *opParamType = new TypeInstType( Type::Qualifiers(), name, dst ); 169 // FunctionType *opFunctionType = new FunctionType( Type::Qualifiers(), false ); 170 // opFunctionType->get_parameters().push_back( 171 // new ObjectDecl( "", DeclarationNode::NoStorageClass, LinkageSpec::Cforall, 0, new PointerType( Type::Qualifiers(), opParamType->clone() ), 0 ) ); 172 // FunctionDecl *ctorAssert = new FunctionDecl( "?{}", DeclarationNode::NoStorageClass, LinkageSpec::Cforall, opFunctionType->clone(), 0, false, false ); 173 // FunctionDecl *dtorAssert = new FunctionDecl( "^?{}", DeclarationNode::NoStorageClass, LinkageSpec::Cforall, opFunctionType->clone(), 0, false, false ); 174 175 // opFunctionType->get_parameters().push_back( 176 // new ObjectDecl( "", DeclarationNode::NoStorageClass, LinkageSpec::Cforall, 0, opParamType, 0 ) ); 177 // FunctionDecl *copyCtorAssert = new FunctionDecl( "?{}", DeclarationNode::NoStorageClass, LinkageSpec::Cforall, opFunctionType->clone(), 0, false, false ); 178 179 // opFunctionType->get_returnVals().push_back( 180 // new ObjectDecl( "", DeclarationNode::NoStorageClass, LinkageSpec::Cforall, 0, opParamType->clone(), 0 ) ); 181 // FunctionDecl *assignAssert = new FunctionDecl( "?=?", DeclarationNode::NoStorageClass, LinkageSpec::Cforall, opFunctionType, 0, false, false ); 182 183 184 // dst->get_assertions().push_back( assignAssert ); 185 // dst->get_assertions().push_back( ctorAssert ); 186 // dst->get_assertions().push_back( dtorAssert ); 187 // dst->get_assertions().push_back( copyCtorAssert ); 188 // } 189 165 190 TypeDecl *dst = new TypeDecl( src->get_name(), src->get_storageClass(), 0, src->get_kind() ); 166 191 cloneAll(src->get_assertions(), dst->get_assertions()); -
src/SymTab/Validate.cc
raad5a48 r10e81ac 385 385 386 386 void Pass2::visit( StructDecl *structDecl ) { 387 // visit struct members first so that the types of self-referencing members are updated properly 388 Parent::visit( structDecl ); 387 389 if ( ! structDecl->get_members().empty() ) { 388 390 ForwardStructsType::iterator fwds = forwardStructs.find( structDecl->get_name() ); … … 394 396 } // if 395 397 } // if 396 Indexer::visit( structDecl );397 398 } 398 399 399 400 void Pass2::visit( UnionDecl *unionDecl ) { 401 Parent::visit( unionDecl ); 400 402 if ( ! unionDecl->get_members().empty() ) { 401 403 ForwardUnionsType::iterator fwds = forwardUnions.find( unionDecl->get_name() ); … … 407 409 } // if 408 410 } // if 409 Indexer::visit( unionDecl );410 411 } 411 412
Note:
See TracChangeset
for help on using the changeset viewer.