Searched refs:Elmt (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/bolt/lib/Passes/ |
| H A D | FrameOptimizer.cpp | 341 [](const std::pair<uint64_t, const BinaryFunction *> &Elmt, in performShrinkWrapping() 342 uint64_t Value) { return Elmt.first > Value; }); in performShrinkWrapping() argument 379 for (const auto &Elmt : Top10Funcs) in performShrinkWrapping() local 380 outs() << Elmt.first << " : " << Elmt.second->getPrintName() << "\n"; in performShrinkWrapping()
|
| H A D | LongJmp.cpp | 604 for (std::pair<BinaryBasicBlock *, std::unique_ptr<BinaryBasicBlock>> &Elmt : in relax() 606 if (!Elmt.second) in relax() 609 NewBBs.emplace_back(std::move(Elmt.second)); in relax() 610 Func.insertBasicBlocks(Elmt.first, std::move(NewBBs), true); in relax()
|
| H A D | ReorderAlgorithm.cpp | 429 for (std::vector<int64_t> &Elmt : DP) in reorderBasicBlocks() 430 Elmt.resize(N, -1); in reorderBasicBlocks()
|
| /llvm-project-15.0.7/bolt/lib/Core/ |
| H A D | BinaryFunction.cpp | 630 for (const std::pair<const uint32_t, uint32_t> &Elmt : OffsetToCFI) { in print() local 631 OS << format(" %08x:\t", Elmt.first); in print() 632 assert(Elmt.second < FrameInstructions.size() && "Incorrect CFI offset"); in print() 633 BinaryContext::printCFI(OS, FrameInstructions[Elmt.second]); in print() 812 for (std::pair<const uint32_t, MCSymbol *> &Elmt : Labels) { in processIndirectBranch() 813 if (Elmt.second == Sym) { in processIndirectBranch() 814 PCRelAddr = Elmt.first + getAddress(); in processIndirectBranch()
|
| H A D | BinaryContext.cpp | 842 for (std::pair<const unsigned, MCSymbol *> Elmt : JT->Labels) { in duplicateJumpTable() 843 if (Elmt.second != OldLabel) in duplicateJumpTable() 845 Offset = Elmt.first; in duplicateJumpTable()
|