| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | EdgeBundles.cpp | 96 O << "\t\"" << printMBBReference(MBB) << "\" [ shape=box, label=\"" in WriteGraph() 97 << printMBBReference(MBB) << "\" ]\n" in WriteGraph() 98 << '\t' << G.getBundle(BB, false) << " -> \"" << printMBBReference(MBB) in WriteGraph() 100 << "\t\"" << printMBBReference(MBB) << "\" -> " << G.getBundle(BB, true) in WriteGraph() 103 O << "\t\"" << printMBBReference(MBB) << "\" -> \"" in WriteGraph() 104 << printMBBReference(*Succ) << "\" [ color=lightgray ]\n"; in WriteGraph()
|
| H A D | BranchRelaxation.cpp | 363 << printMBBReference(DestBB) << " from " in isBlockInRange() 364 << printMBBReference(*MI.getParent()) << " to " in isBlockInRange() 460 << printMBBReference(*MBB) << " to " << printMBBReference(*TBB) in fixupConditionalBranch() 510 LLVM_DEBUG(dbgs() << " Insert B to " << printMBBReference(*TBB) in fixupConditionalBranch() 512 << printMBBReference(NextBB) << '\n'); in fixupConditionalBranch() 542 << printMBBReference(*NewBB) in fixupConditionalBranch() 544 << " Insert B to " << printMBBReference(*FBB) << ".\n" in fixupConditionalBranch() 546 << printMBBReference(*TBB) << ".\n"); in fixupConditionalBranch()
|
| H A D | EarlyIfConversion.cpp | 210 LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << " has live-ins.\n"); in canSpeculateInstrs() 224 LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << " has more than " in canSpeculateInstrs() 282 LLVM_DEBUG(dbgs() << printMBBReference(*I->getParent()) << " depends on " in InstrDependenciesAllowIfConv() 304 LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << " has live-ins.\n"); in canPredicateInstrs() 319 LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << " has more than " in canPredicateInstrs() 469 LLVM_DEBUG(dbgs() << "\nDiamond: " << printMBBReference(*Head) << " -> " in canConvertIf() 470 << printMBBReference(*Succ0) << "/" in canConvertIf() 471 << printMBBReference(*Succ1) << " -> " in canConvertIf() 472 << printMBBReference(*Tail) << '\n'); in canConvertIf() 480 LLVM_DEBUG(dbgs() << "\nTriangle: " << printMBBReference(*Head) << " -> " in canConvertIf() [all …]
|
| H A D | MachineTraceMetrics.cpp | 434 LLVM_DEBUG(dbgs() << "Invalidate traces through " << printMBBReference(*MBB) in invalidate() 527 << printMBBReference(*MBB) << '\n'); in computeTrace() 535 LLVM_DEBUG(dbgs() << " pred for " << printMBBReference(*I) << ": "); in computeTrace() 541 dbgs() << printMBBReference(*TBI.Pred) << '\n'; in computeTrace() 553 LLVM_DEBUG(dbgs() << " succ for " << printMBBReference(*I) << ": "); in computeTrace() 559 dbgs() << printMBBReference(*TBI.Succ) << '\n'; in computeTrace() 580 LLVM_DEBUG(dbgs() << "Invalidate " << printMBBReference(*MBB) << ' ' in invalidate() 605 LLVM_DEBUG(dbgs() << "Invalidate " << printMBBReference(*MBB) << ' ' in invalidate() 902 LLVM_DEBUG(dbgs() << "\nDepths for " << printMBBReference(*MBB) << ":\n"); in computeInstrDepths() 1083 LLVM_DEBUG(dbgs() << "Heights for " << printMBBReference(*MBB) << ":\n"); in computeInstrHeights() [all …]
|
| H A D | MachineBranchProbabilityInfo.cpp | 106 OS << "edge " << printMBBReference(*Src) << " -> " << printMBBReference(*Dst) in printEdgeProbability()
|
| H A D | MachineLateInstrsCleanup.cpp | 219 << printMBBReference(*MBB) << ": " << *DefMI); in processBlock() 242 << printMBBReference(*MBB) << ": " << MI); in processBlock() 262 << printMBBReference(*MBB) << ": " << MI); in processBlock()
|
| H A D | SplitKit.cpp | 739 LLVM_DEBUG(dbgs() << " enterIntvAtEnd " << printMBBReference(MBB) << ", " in enterIntvAtEnd() 836 LLVM_DEBUG(dbgs() << " leaveIntvAtTop " << printMBBReference(MBB) << ", " in leaveIntvAtTop() 960 LLVM_DEBUG(dbgs() << "Def in " << printMBBReference(*DefMBB) in findShallowDominator() 961 << " dominates " << printMBBReference(*MBB) in findShallowDominator() 968 LLVM_DEBUG(dbgs() << "Def in " << printMBBReference(*DefMBB) in findShallowDominator() 969 << " dominates " << printMBBReference(*MBB) in findShallowDominator() 979 LLVM_DEBUG(dbgs() << "Def in " << printMBBReference(*DefMBB) in findShallowDominator() 980 << " dominates " << printMBBReference(*MBB) in findShallowDominator() 1119 << printMBBReference(*Dom.first) << ' ' << Dom.second in hoistCopies() 1232 LLVM_DEBUG(dbgs() << ':' << VNI->id << "*" << printMBBReference(*MBB)); in transferValues() [all …]
|
| H A D | TailDuplicator.cpp | 128 dbgs() << "Malformed PHI in " << printMBBReference(MBB) << ": " in VerifyPHIs() 131 << printMBBReference(*PredBB) << '\n'; in VerifyPHIs() 139 dbgs() << "Warning: malformed PHI in " << printMBBReference(MBB) in VerifyPHIs() 142 << printMBBReference(*PHIBB) << '\n'; in VerifyPHIs() 146 dbgs() << "Malformed PHI in " << printMBBReference(MBB) << ": " in VerifyPHIs() 148 dbgs() << " non-existing " << printMBBReference(*PHIBB) << '\n'; in VerifyPHIs() 871 LLVM_DEBUG(dbgs() << "\n*** Tail-duplicating " << printMBBReference(*TailBB) in tailDuplicate()
|
| H A D | ShrinkWrap.cpp | 824 LLVM_DEBUG(dbgs() << "Look into: " << printMBBReference(*MBB) << '\n'); in performShrinkWrapping() 893 << printMBBReference(*Save) << ' ' in performShrinkWrapping() 895 << "\nRestore: " << printMBBReference(*Restore) << ' ' in performShrinkWrapping() 966 << printMBBReference(*Save) << ' ' in run() 967 << "\nRestore: " << printMBBReference(*Restore) << '\n'); in run()
|
| H A D | MachineBasicBlock.cpp | 120 Printable llvm::printMBBReference(const MachineBasicBlock &MBB) { in printMBBReference() function in llvm 386 OS << LS << printMBBReference(*Pred); in print() 397 OS << LS << printMBBReference(**I); in print() 409 OS << LS << printMBBReference(**I) << '(' in print() 693 LLVM_DEBUG(dbgs() << "Updating terminators on " << printMBBReference(*this) in updateTerminator() 1182 LLVM_DEBUG(dbgs() << "Splitting critical edge: " << printMBBReference(*this) in SplitCriticalEdge() 1183 << " -- " << printMBBReference(*NMBB) << " -- " in SplitCriticalEdge() 1184 << printMBBReference(*Succ) << '\n'); in SplitCriticalEdge() 1430 << printMBBReference(*this) << '\n'); in canSplitCriticalEdge()
|
| H A D | BranchFolding.cpp | 591 LLVM_DEBUG(dbgs() << "Common tail length of " << printMBBReference(*MBB1) in ProfitableToMerge() 592 << " and " << printMBBReference(*MBB2) << " is " in ProfitableToMerge() 761 LLVM_DEBUG(dbgs() << "\nSplitting " << printMBBReference(*MBB) << ", size " in CreateCommonTailOnlyBlock() 922 dbgs() << printMBBReference(*MergePotentials[i].getBlock()) in TryTailMergeBlocks() 926 dbgs() << " with successor " << printMBBReference(*SuccBB) << '\n'; in TryTailMergeBlocks() 928 dbgs() << " which has fall-through from " << printMBBReference(*PredBB) in TryTailMergeBlocks() 1022 LLVM_DEBUG(dbgs() << "\nUsing common tail in " << printMBBReference(*MBB) in TryTailMergeBlocks() 1027 LLVM_DEBUG(dbgs() << printMBBReference(*SameTails[i].getBlock()) in TryTailMergeBlocks()
|
| H A D | FixupStatepointCallerSaved.cpp | 260 << printMBBReference(*EHPad) << "\n"); in getFrameIndex() 291 << printMBBReference(*EHPad) << "\n"); in getFrameIndex() 465 << printMBBReference(*EHPad) << "\n"); in insertReloads()
|
| H A D | MachineLICM.cpp | 730 LLVM_DEBUG(dbgs() << "Hoisting to " << printMBBReference(*Preheader) in HoistPostRA() 731 << " from " << printMBBReference(*MI->getParent()) << ": " in HoistPostRA() 793 LLVM_DEBUG(dbgs() << "Entering " << printMBBReference(*MBB) << '\n'); in EnterScope() 800 LLVM_DEBUG(dbgs() << "Exiting " << printMBBReference(*MBB) << '\n'); in ExitScope() 1649 dbgs() << " from " << printMBBReference(*MI->getParent()); in Hoist() 1651 dbgs() << " to " << printMBBReference(*Preheader); in Hoist()
|
| H A D | ProcessImplicitDefs.cpp | 158 LLVM_DEBUG(dbgs() << printMBBReference(MBB) << " has " << WorkList.size() in runOnMachineFunction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIOptimizeVGPRLiveRange.cpp | 212 dbgs() << printMBBReference(*MBB) << ' '; in collectElseRegionBlocks() 425 LLVM_DEBUG(dbgs() << "Clear AliveBlock " << printMBBReference(*MBB) in updateLiveRangeInThenRegion() 449 << printMBBReference(*MBB) << '\n'); in updateLiveRangeInThenRegion() 454 << printMBBReference(*MBB) << '\n'); in updateLiveRangeInThenRegion() 486 LLVM_DEBUG(dbgs() << "Removing AliveBlock " << printMBBReference(*MBB) in updateLiveRangeInElseRegion() 696 << printMBBReference(MBB) << ' ' in run() 697 << printMBBReference(*IfTarget) << ' ' in run() 698 << printMBBReference(*Endif) << '\n'); in run() 715 << printMBBReference(*LoopHeader) << '\n'); in run()
|
| H A D | SIFixSGPRCopies.cpp | 529 << printMBBReference(*MI2->getParent()) << " " << *MI2); in hoistAndMergeSGPRInits() 539 << printMBBReference(*MI1->getParent()) << " " << *MI1); in hoistAndMergeSGPRInits() 557 << printMBBReference(*MI1->getParent()) << " " << *MI1 in hoistAndMergeSGPRInits() 559 << printMBBReference(*MI2->getParent()) << " to " in hoistAndMergeSGPRInits() 560 << printMBBReference(*I->getParent()) << " " << *MI2); in hoistAndMergeSGPRInits()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCCTRLoopsVerify.cpp | 120 LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << " (" << MBB->getFullName() in verifyCTRBranch() 123 << printMBBReference(*BI->getParent()) << " (" in verifyCTRBranch() 140 << printMBBReference(*BI->getParent()) << " (" in verifyCTRBranch()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVInsertWriteVXRM.cpp | 278 LLVM_DEBUG(dbgs() << "AvailableIn state of " << printMBBReference(MBB) in computeAvailable() 289 LLVM_DEBUG(dbgs() << "AvailableOut state of " << printMBBReference(MBB) in computeAvailable() 326 LLVM_DEBUG(dbgs() << "AnticipatedOut state of " << printMBBReference(MBB) in computeAnticipated() 338 LLVM_DEBUG(dbgs() << "AnticipatedIn state of " << printMBBReference(MBB) in computeAnticipated() 432 LLVM_DEBUG(dbgs() << "Inserting at end of " << printMBBReference(MBB) in emitWriteVXRM()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ConditionalCompares.cpp | 370 LLVM_DEBUG(dbgs() << "Flags not defined in " << printMBBReference(*MBB) in findConvertibleCompare() 385 LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << " has live-ins.\n"); in canSpeculateInstrs() 398 LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << " has more than " in canSpeculateInstrs() 460 LLVM_DEBUG(dbgs() << "\nTriangle: " << printMBBReference(*Head) << " -> " in canConvert() 461 << printMBBReference(*CmpBB) << " -> " in canConvert() 462 << printMBBReference(*Tail) << '\n'); in canConvert() 568 LLVM_DEBUG(dbgs() << "Merging " << printMBBReference(*CmpBB) << " into " in convert() 569 << printMBBReference(*Head) << ":\n" in convert()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZMachineScheduler.cpp | 82 LLVM_DEBUG(dbgs() << "** Entering " << printMBBReference(*NextMBB)); in enterMBB() 104 << printMBBReference(*SinglePredMBB) << "\n";); in enterMBB() 123 LLVM_DEBUG(dbgs() << "** Leaving " << printMBBReference(*MBB) << "\n";); in leaveMBB()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMBasicBlockInfo.cpp | 97 LLVM_DEBUG(dbgs() << "Branch of destination " << printMBBReference(*DestBB) in isBBInRange() 98 << " from " << printMBBReference(*MI->getParent()) in isBBInRange()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430BranchSelector.cpp | 141 << printMBBReference(*DestBB) << ", Distance " in expandBranches() 148 << printMBBReference(*MBB) << "\n"); in expandBranches()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
| H A D | CSKYConstantIslandPass.cpp | 781 << printMBBReference(*MI->getParent()) << ": " in isCPEntryInRange() 938 LLVM_DEBUG(dbgs() << "Found water after " << printMBBReference(*WaterBB) in findAvailableWater() 976 LLVM_DEBUG(dbgs() << "Split at end of " << printMBBReference(*UserMBB) in createNewWater() 1211 LLVM_DEBUG(dbgs() << "Branch of destination " << printMBBReference(*DestBB) in isBBInRange() 1212 << " from " << printMBBReference(*MI->getParent()) in isBBInRange() 1334 LLVM_DEBUG(dbgs() << " Insert B to " << printMBBReference(*DestBB) in fixupConditionalBr() 1336 << printMBBReference(*NextBB) << "\n"); in fixupConditionalBr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsConstantIslandPass.cpp | 979 << printMBBReference(*MI->getParent()) << ": " in isCPEntryInRange() 1184 LLVM_DEBUG(dbgs() << "Found water after " << printMBBReference(*WaterBB) in findAvailableWater() 1222 LLVM_DEBUG(dbgs() << "Split at end of " << printMBBReference(*UserMBB) in createNewWater() 1456 LLVM_DEBUG(dbgs() << "Branch of destination " << printMBBReference(*DestBB) in isBBInRange() 1457 << " from " << printMBBReference(*MI->getParent()) in isBBInRange() 1602 LLVM_DEBUG(dbgs() << " Insert B to " << printMBBReference(*DestBB) in fixupConditionalBr() 1604 << printMBBReference(*NextBB) << "\n"); in fixupConditionalBr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | BitTracker.cpp | 795 dbgs() << "Visit FI(" << printMBBReference(*PI.getParent()) << "): " << PI; in visitPHI() 812 dbgs() << " edge " << printMBBReference(*PB) << "->" in visitPHI() 813 << printMBBReference(*PI.getParent()); in visitPHI() 839 dbgs() << "Visit MI(" << printMBBReference(*MI.getParent()) << "): " << MI; in visitNonBranch() 923 dbgs() << "Visit BR(" << printMBBReference(B) << "): " << MI; in visitBranchesFrom() 939 dbgs() << " " << printMBBReference(*BT); in visitBranchesFrom()
|