Changeset fe8c31e
- Timestamp:
- Oct 9, 2021, 12:18:47 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- c8371b5
- Parents:
- 05c941a (diff), 68fe946e (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
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/porting.md
r05c941a rfe8c31e 98 98 * `Initializer` => `ast::Init` 99 99 * `Statement` => `ast::Stmt` 100 * `ReferenceToType` => `ast::BaseInstType` 100 101 * any field names should follow a similar renaming 101 102 * because they don't really belong to `Type` (and for consistency with `Linkage::Spec`): -
src/CodeTools/DeclStats.cc
r05c941a rfe8c31e 156 156 /// number of counting bins for linkages 157 157 static const unsigned n_named_specs = 8; 158 /// map from total number of specs to bins 159 static const unsigned ind_for_linkage[16]; 158 /// Mapping function from linkage to bin. 159 static unsigned linkage_index( LinkageSpec::Spec spec ) { 160 switch ( spec ) { 161 case LinkageSpec::Intrinsic: return 0; 162 case LinkageSpec::C: return 1; 163 case LinkageSpec::Cforall: return 2; 164 case LinkageSpec::AutoGen: return 3; 165 case LinkageSpec::Compiler: return 4; 166 case LinkageSpec::BuiltinCFA: return 5; 167 case LinkageSpec::BuiltinC: return 6; 168 default: return 7; 169 } 170 } 160 171 161 172 Stats for_linkage[n_named_specs]; ///< Stores separate stats per linkage … … 366 377 const std::string& mangleName = decl->get_mangleName().empty() ? decl->name : decl->get_mangleName(); 367 378 if ( seen_names.insert( mangleName ).second ) { 368 Stats& stats = for_linkage[ ind_for_linkage[ decl->linkage ]];379 Stats& stats = for_linkage[ linkage_index( decl->linkage ) ]; 369 380 370 381 ++stats.n_decls; … … 527 538 }; 528 539 529 const unsigned DeclStats::ind_for_linkage[]530 = { 7, 7, 2, 1, 7, 7, 7, 3, 4, 7, 6, 5, 7, 7, 7, 0 };531 532 540 void printDeclStats( std::list< Declaration * > &translationUnit ) { 533 541 PassVisitor<DeclStats> stats; -
src/Common/module.mk
r05c941a rfe8c31e 22 22 Common/CompilerError.h \ 23 23 Common/Debug.h \ 24 Common/DeclStats.hpp \ 25 Common/DeclStats.cpp \ 24 26 Common/ErrorObjects.h \ 25 27 Common/Eval.cc \ -
src/main.cc
r05c941a rfe8c31e 9 9 // Author : Peter Buhr and Rob Schluntz 10 10 // Created On : Fri May 15 23:12:02 2015 11 // Last Modified By : Henry Xue12 // Last Modified On : Mon Aug 23 15:42:08202113 // Update Count : 65 011 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed Oct 8 11:22:00 2021 13 // Update Count : 651 14 14 // 15 15 … … 43 43 #include "Common/CodeLocationTools.hpp" // for forceFillCodeLocations 44 44 #include "Common/CompilerError.h" // for CompilerError 45 #include "Common/DeclStats.hpp" 45 46 #include "Common/Stats.h" 46 47 #include "Common/PassVisitor.h" … … 341 342 } // if 342 343 343 if ( declstatsp ) {344 CodeTools::printDeclStats( translationUnit );345 deleteAll( translationUnit );346 return EXIT_SUCCESS;347 } // if348 349 if ( bresolvep ) {350 dump( translationUnit );351 return EXIT_SUCCESS;352 } // if353 354 344 CodeTools::fillLocations( translationUnit ); 355 356 if ( resolvprotop ) {357 CodeTools::dumpAsResolvProto( translationUnit );358 return EXIT_SUCCESS;359 } // if360 345 361 346 if( useNewAST ) { … … 366 351 auto transUnit = convert( move( translationUnit ) ); 367 352 353 forceFillCodeLocations( transUnit ); 354 368 355 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( transUnit ) ); 369 356 357 // LibCfa::makeLibCfa 358 359 if ( declstatsp ) { 360 printDeclStats( transUnit ); 361 return EXIT_SUCCESS; 362 } // if 363 364 if ( bresolvep ) { 365 dump( move( transUnit ) ); 366 return EXIT_SUCCESS; 367 } // if 368 369 if ( resolvprotop ) { 370 // TODO: Better error message. 371 assert(false); 372 return EXIT_SUCCESS; 373 } // if 374 370 375 PASS( "Resolve", ResolvExpr::resolve( transUnit ) ); 371 376 if ( exprp ) { … … 380 385 } else { 381 386 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) ); 387 388 // LibCfa::makeLibCfa 389 390 if ( declstatsp ) { 391 CodeTools::printDeclStats( translationUnit ); 392 deleteAll( translationUnit ); 393 return EXIT_SUCCESS; 394 } // if 395 396 if ( bresolvep ) { 397 dump( translationUnit ); 398 return EXIT_SUCCESS; 399 } // if 400 401 CodeTools::fillLocations( translationUnit ); 402 403 if ( resolvprotop ) { 404 CodeTools::dumpAsResolvProto( translationUnit ); 405 return EXIT_SUCCESS; 406 } // if 382 407 383 408 PASS( "Resolve", ResolvExpr::resolve( translationUnit ) );
Note: See TracChangeset
for help on using the changeset viewer.