OLD | NEW |
1 //===- subzero/src/IceGlobalContext.cpp - Global context defs -------------===// | 1 //===- subzero/src/IceGlobalContext.cpp - Global context defs -------------===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 /// | 9 /// |
10 /// \file | 10 /// \file |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 } | 350 } |
351 Cfg::setCurrentCfg(nullptr); | 351 Cfg::setCurrentCfg(nullptr); |
352 assert(Item); | 352 assert(Item); |
353 emitQueueBlockingPush(Item); | 353 emitQueueBlockingPush(Item); |
354 // The Cfg now gets deleted as Func goes out of scope. | 354 // The Cfg now gets deleted as Func goes out of scope. |
355 } | 355 } |
356 } | 356 } |
357 | 357 |
358 namespace { | 358 namespace { |
359 | 359 |
360 void addBlockInfoPtrs(const VariableDeclarationList &Globals, | |
361 VariableDeclaration *ProfileBlockInfo) { | |
362 for (const VariableDeclaration *Global : Globals) { | |
363 if (Cfg::isProfileGlobal(*Global)) { | |
364 constexpr RelocOffsetT BlockExecutionCounterOffset = 0; | |
365 ProfileBlockInfo->addInitializer( | |
366 VariableDeclaration::RelocInitializer::create( | |
367 Global, BlockExecutionCounterOffset)); | |
368 } | |
369 } | |
370 } | |
371 | |
372 // Ensure Pending is large enough that Pending[Index] is valid. | 360 // Ensure Pending is large enough that Pending[Index] is valid. |
373 void resizePending(std::vector<EmitterWorkItem *> &Pending, uint32_t Index) { | 361 void resizePending(std::vector<EmitterWorkItem *> &Pending, uint32_t Index) { |
374 if (Index >= Pending.size()) | 362 if (Index >= Pending.size()) |
375 Pending.resize(Index + 1); | 363 Pending.resize(Index + 1); |
376 } | 364 } |
377 | 365 |
378 } // end of anonymous namespace | 366 } // end of anonymous namespace |
379 | 367 |
380 void GlobalContext::emitFileHeader() { | 368 void GlobalContext::emitFileHeader() { |
381 TimerMarker T1(Ice::TimerStack::TT_emit, this); | 369 TimerMarker T1(Ice::TimerStack::TT_emit, this); |
382 if (getFlags().getOutFileType() == FT_Elf) { | 370 if (getFlags().getOutFileType() == FT_Elf) { |
383 getObjectWriter()->writeInitialELFHeader(); | 371 getObjectWriter()->writeInitialELFHeader(); |
384 } else { | 372 } else { |
385 if (!BuildDefs::dump()) { | 373 if (!BuildDefs::dump()) { |
386 getStrError() << "emitFileHeader for non-ELF"; | 374 getStrError() << "emitFileHeader for non-ELF"; |
387 getErrorStatus()->assign(EC_Translation); | 375 getErrorStatus()->assign(EC_Translation); |
388 } | 376 } |
389 TargetHeaderLowering::createLowering(this)->lower(); | 377 TargetHeaderLowering::createLowering(this)->lower(); |
390 } | 378 } |
391 } | 379 } |
392 | 380 |
393 void GlobalContext::lowerConstants() { DataLowering->lowerConstants(); } | 381 void GlobalContext::lowerConstants() { DataLowering->lowerConstants(); } |
394 | 382 |
395 void GlobalContext::lowerJumpTables() { DataLowering->lowerJumpTables(); } | 383 void GlobalContext::lowerJumpTables() { DataLowering->lowerJumpTables(); } |
396 | 384 |
| 385 void GlobalContext::addBlockInfoPtrs(VariableDeclaration *ProfileBlockInfo) { |
| 386 for (const VariableDeclaration *Global : Globals) { |
| 387 if (Cfg::isProfileGlobal(*Global)) { |
| 388 constexpr RelocOffsetT BlockExecutionCounterOffset = 0; |
| 389 ProfileBlockInfo->addInitializer( |
| 390 VariableDeclaration::RelocInitializer::create( |
| 391 Global, |
| 392 {RelocOffset::create(this, BlockExecutionCounterOffset)})); |
| 393 } |
| 394 } |
| 395 } |
| 396 |
397 void GlobalContext::lowerGlobals(const IceString &SectionSuffix) { | 397 void GlobalContext::lowerGlobals(const IceString &SectionSuffix) { |
398 TimerMarker T(TimerStack::TT_emitGlobalInitializers, this); | 398 TimerMarker T(TimerStack::TT_emitGlobalInitializers, this); |
399 const bool DumpGlobalVariables = | 399 const bool DumpGlobalVariables = |
400 BuildDefs::dump() && (Flags.getVerbose() & Cfg::defaultVerboseMask()) && | 400 BuildDefs::dump() && (Flags.getVerbose() & Cfg::defaultVerboseMask()) && |
401 Flags.getVerboseFocusOn().empty(); | 401 Flags.getVerboseFocusOn().empty(); |
402 if (DumpGlobalVariables) { | 402 if (DumpGlobalVariables) { |
403 OstreamLocker L(this); | 403 OstreamLocker L(this); |
404 Ostream &Stream = getStrDump(); | 404 Ostream &Stream = getStrDump(); |
405 for (const Ice::VariableDeclaration *Global : Globals) { | 405 for (const Ice::VariableDeclaration *Global : Globals) { |
406 Global->dump(this, Stream); | 406 Global->dump(this, Stream); |
407 } | 407 } |
408 } | 408 } |
409 if (Flags.getDisableTranslation()) | 409 if (Flags.getDisableTranslation()) |
410 return; | 410 return; |
411 | 411 |
412 addBlockInfoPtrs(Globals, ProfileBlockInfoVarDecl); | 412 addBlockInfoPtrs(ProfileBlockInfoVarDecl); |
413 // If we need to shuffle the layout of global variables, shuffle them now. | 413 // If we need to shuffle the layout of global variables, shuffle them now. |
414 if (getFlags().shouldReorderGlobalVariables()) { | 414 if (getFlags().shouldReorderGlobalVariables()) { |
415 // Create a random number generator for global variable reordering. | 415 // Create a random number generator for global variable reordering. |
416 RandomNumberGenerator RNG(getFlags().getRandomSeed(), | 416 RandomNumberGenerator RNG(getFlags().getRandomSeed(), |
417 RPE_GlobalVariableReordering); | 417 RPE_GlobalVariableReordering); |
418 RandomShuffle(Globals.begin(), Globals.end(), | 418 RandomShuffle(Globals.begin(), Globals.end(), |
419 [&RNG](int N) { return (uint32_t)RNG.next(N); }); | 419 [&RNG](int N) { return (uint32_t)RNG.next(N); }); |
420 } | 420 } |
421 DataLowering->lowerGlobals(Globals, SectionSuffix); | 421 DataLowering->lowerGlobals(Globals, SectionSuffix); |
422 for (VariableDeclaration *Var : Globals) { | 422 for (VariableDeclaration *Var : Globals) { |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1036 Ctx = Func->getContext(); | 1036 Ctx = Func->getContext(); |
1037 Active = | 1037 Active = |
1038 Func->getFocusedTiming() || Ctx->getFlags().getSubzeroTimingEnabled(); | 1038 Func->getFocusedTiming() || Ctx->getFlags().getSubzeroTimingEnabled(); |
1039 if (Active) | 1039 if (Active) |
1040 Ctx->pushTimer(ID, StackID); | 1040 Ctx->pushTimer(ID, StackID); |
1041 } | 1041 } |
1042 | 1042 |
1043 ICE_TLS_DEFINE_FIELD(GlobalContext::ThreadContext *, GlobalContext, TLS); | 1043 ICE_TLS_DEFINE_FIELD(GlobalContext::ThreadContext *, GlobalContext, TLS); |
1044 | 1044 |
1045 } // end of namespace Ice | 1045 } // end of namespace Ice |
OLD | NEW |