Changeset 7d05e7e for src/Parser
- Timestamp:
- Sep 9, 2016, 11:26:45 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 126e54f
- Parents:
- 4563a95
- Location:
- src/Parser
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/Parser/DeclarationNode.cc ¶
r4563a95 r7d05e7e 10 10 // Created On : Sat May 16 12:34:05 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Aug 29 22:30:56201613 // Update Count : 32712 // Last Modified On : Fri Sep 9 23:21:47 2016 13 // Update Count : 402 14 14 // 15 15 … … 43 43 extern LinkageSpec::Spec linkage; // defined in parser.yy 44 44 45 DeclarationNode::DeclarationNode() 46 : type( 0 ) 47 , storageClass( NoStorageClass ) 48 , isInline( false ) 49 , isNoreturn( false ) 50 , bitfieldWidth( 0 ) 51 , initializer( 0 ) 52 , hasEllipsis( false ) 53 , linkage( ::linkage ) 54 , extension( false ) 55 , error() { 45 DeclarationNode::DeclarationNode() : 46 type( 0 ), 47 storageClass( NoStorageClass ), 48 isInline( false ), 49 isNoreturn( false ), 50 bitfieldWidth( 0 ), 51 initializer( 0 ), 52 hasEllipsis( false ), 53 linkage( ::linkage ), 54 extension( false ) { 55 variable.tyClass = DeclarationNode::Type; 56 variable.assertions = nullptr; 57 56 58 attr.expr = nullptr; 57 59 attr.type = nullptr; 58 59 variable.tyClass = DeclarationNode::Type;60 variable.assertions = nullptr;61 60 } 62 61 … … 393 392 394 393 if ( (qsrc & qdst).any() ) { // common bits between qualifier masks ? 395 error = "duplicate qualifier "; 396 int j = 0; // separator detector 397 for ( int i = 0; i < DeclarationNode::NoOfQualifier; i += 1 ) { 398 if ( qsrc[i] & qdst[i] ) { // find specific qualifiers in common 399 if ( j > 0 ) error += ", "; 400 error += DeclarationNode::qualifierName[i]; 401 j += 1; 394 for ( int i = 0; i < NoOfQualifier; i += 1 ) { // find common qualifiers 395 if ( qsrc[i] & qdst[i] ) { 396 error += string(error.empty() ? "" : ", ") + "duplicate " + DeclarationNode::qualifierName[i]; 402 397 } // if 403 398 } // for 404 error += " in declaration of ";405 399 } // if 406 400 } // DeclarationNode::checkQualifiers … … 442 436 storageClass = q->storageClass; 443 437 } else if ( q->storageClass != NoStorageClass ) { 444 q->error = "invalid combination of storage classes in declaration of "; 445 } // if 446 if ( error.empty() ) error = q->error; 447 return this; 448 } 438 if ( storageClass == q->storageClass ) { 439 q->error += string( "duplicate " ) + storageName[ storageClass ]; 440 } else { // can only have one storage class 441 q->error += string( "multiple " ) + storageName[ storageClass ] + " & " + storageName[ q->storageClass ]; 442 } // if 443 } // if 444 if ( ! q->error.empty() ) { 445 error += (! error.empty() ? ", " : "") + q->error; 446 } // if 447 return this; 448 } // DeclarationNode::copyStorageClasses 449 449 450 450 static void addTypeToType( TypeData *&src, TypeData *&dst ) { … … 908 908 909 909 Declaration *DeclarationNode::build() const { 910 if ( ! error.empty() ) throw SemanticError( error , this );910 if ( ! error.empty() ) throw SemanticError( error + " in declaration of ", this ); 911 911 if ( type ) { 912 912 if ( type->kind == TypeData::Variable ) { … … 922 922 return (new ObjectDecl( name, storageClass, linkage, maybeBuild< Expression >( bitfieldWidth ), 0, maybeBuild< Initializer >( initializer ) ))->set_extension( extension ); 923 923 } // if 924 throw SemanticError( "invalid function specifier in declaration of", this );924 throw SemanticError( "invalid function specifier ", this ); 925 925 } 926 926 … … 971 971 } 972 972 973 // DeclarationNode::StorageClass DeclarationNode::buildStorageClass() const {974 // DeclarationNode::StorageClass ret = DeclarationNode::NoStorageClass;975 // for ( std::list< DeclarationNode::StorageClass >::const_iterator i = storageClasses.begin(); i != storageClasses.end(); ++i ) {976 // if ( *i == DeclarationNode::Inline || *i == DeclarationNode::Noreturn ) continue; // ignore function specifiers977 // if ( ret != DeclarationNode::NoStorageClass ) { // already have a valid storage class ?978 // throw SemanticError( "invalid combination of storage classes in declaration of ", this );979 // } // if980 // ret = *i;981 // } // for982 // return ret;983 // }984 985 // bool DeclarationNode::buildFuncSpecifier( DeclarationNode::StorageClass key ) const {986 // std::list< DeclarationNode::StorageClass >::const_iterator first = std::find( storageClasses.begin(), storageClasses.end(), key );987 // if ( first == storageClasses.end() ) return false; // not found988 // first = std::find( ++first, storageClasses.end(), key ); // found989 // if ( first == storageClasses.end() ) return true; // not found again990 // throw SemanticError( "duplicate function specifier in declaration of ", this );991 // }992 993 973 // Local Variables: // 994 974 // tab-width: 4 // -
TabularUnified src/Parser/ParseNode.h ¶
r4563a95 r7d05e7e 10 10 // Created On : Sat May 16 13:28:16 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Aug 29 21:45:43201613 // Update Count : 58 312 // Last Modified On : Thu Sep 8 21:58:06 2016 13 // Update Count : 587 14 14 // 15 15 … … 290 290 // bool buildFuncSpecifier( StorageClass key ) const; 291 291 292 struct Enumeration_t {293 std::string name;294 DeclarationNode * constants;295 };296 Enumeration_t enumeration;297 298 292 struct Variable_t { 299 293 DeclarationNode::TypeClass tyClass; … … 408 402 if ( result ) { 409 403 *out++ = result; 410 } else {411 404 } // if 412 405 } catch( SemanticError &e ) { -
TabularUnified src/Parser/TypeData.h ¶
r4563a95 r7d05e7e 10 10 // Created On : Sat May 16 15:18:36 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Aug 29 22:31:52201613 // Update Count : 11 012 // Last Modified On : Fri Sep 9 23:20:55 2016 13 // Update Count : 117 14 14 // 15 15 … … 96 96 Array_t array; 97 97 Enumeration_t enumeration; 98 // Variable_t variable; 98 99 Function_t function; 99 100 Symbolic_t symbolic; 100 101 DeclarationNode * tuple; 101 102 ExpressionNode * typeexpr; 102 // Attr_t attr;103 // Attr_t attr; 103 104 // DeclarationNode::BuiltinType builtin; 104 105
Note: See TracChangeset
for help on using the changeset viewer.