Home
last modified time | relevance | path

Searched refs:CurrentBlock (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/XRay/
H A DBlockIndexer.cpp21 CurrentBlock.Records.push_back(&R); in visit()
22 CurrentBlock.WallclockTime = &R; in visit()
27 CurrentBlock.Records.push_back(&R); in visit()
32 CurrentBlock.Records.push_back(&R); in visit()
37 CurrentBlock.Records.push_back(&R); in visit()
42 CurrentBlock.Records.push_back(&R); in visit()
47 CurrentBlock.Records.push_back(&R); in visit()
52 CurrentBlock.Records.push_back(&R); in visit()
57 CurrentBlock.ProcessID = R.pid(); in visit()
58 CurrentBlock.Records.push_back(&R); in visit()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DLogger.cpp26 const CFGBlock *CurrentBlock; member
73 CurrentBlock = &Block; in enterBlock()
83 OS << "Processing element B" << CurrentBlock->getBlockID() << "." in enterElement()
92 OS << "Computed state for B" << CurrentBlock->getBlockID() << "." in recordState()
101 OS << "B" << CurrentBlock->getBlockID() << " has converged!\n"; in blockConverged()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp151 uint32_t CurrentBlock = Blocks[0]; in computeBlockRuns() local
152 Runs.emplace_back(CurrentBlock); in computeBlockRuns()
156 if (NextBlock < CurrentBlock || (NextBlock - CurrentBlock > 1)) { in computeBlockRuns()
164 CurrentBlock = NextBlock; in computeBlockRuns()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DSpillUtils.cpp107 BasicBlock *CurrentBlock = CatchSwitch->getParent(); in splitBeforeCatchSwitch() local
108 BasicBlock *NewBlock = CurrentBlock->splitBasicBlock(CatchSwitch); in splitBeforeCatchSwitch()
109 CurrentBlock->getTerminator()->eraseFromParent(); in splitBeforeCatchSwitch()
112 CleanupPadInst::Create(CatchSwitch->getParentPad(), {}, "", CurrentBlock); in splitBeforeCatchSwitch()
114 CleanupReturnInst::Create(CleanupPad, NewBlock, CurrentBlock); in splitBeforeCatchSwitch()
H A DCoroFrame.cpp1086 BasicBlock *CurrentBlock = nullptr; in insertSpills() local
1092 if (CurrentBlock != U->getParent()) { in insertSpills()
1093 CurrentBlock = U->getParent(); in insertSpills()
1094 Builder.SetInsertPoint(CurrentBlock, in insertSpills()
1095 CurrentBlock->getFirstInsertionPt()); in insertSpills()
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DBlockIndexer.h42 Block CurrentBlock{0, 0, nullptr, {}};
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVN.cpp3010 BasicBlock *CurrentBlock = CurInst->getParent(); in performScalarPRE() local
3014 assignBlockRPONumber(*CurrentBlock->getParent()); in performScalarPRE()
3017 for (BasicBlock *P : predecessors(CurrentBlock)) { in performScalarPRE()
3025 assert(BlockRPONumber.count(P) && BlockRPONumber.count(CurrentBlock) && in performScalarPRE()
3027 if (BlockRPONumber[P] >= BlockRPONumber[CurrentBlock]) { in performScalarPRE()
3032 uint32_t TValNo = VN.phiTranslate(P, CurrentBlock, ValNo, *this); in performScalarPRE()
3075 unsigned SuccNum = GetSuccessorNumber(PREPred, CurrentBlock); in performScalarPRE()
3082 if (!performScalarPREInsertion(PREInstr, PREPred, CurrentBlock, ValNo)) { in performScalarPRE()
3101 Phi->insertBefore(CurrentBlock->begin()); in performScalarPRE()
3115 VN.eraseTranslateCacheEntry(ValNo, *CurrentBlock); in performScalarPRE()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp168 const CFGBlock *CurrentBlock) in TransferFunctions() argument
169 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {} in TransferFunctions()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLowOverheadLoops.cpp559 auto &CurrentBlock = ITBlocks[IT]; in INITIALIZE_PASS() local
560 CurrentBlock.erase(Dead); in INITIALIZE_PASS()
561 if (CurrentBlock.empty()) in INITIALIZE_PASS()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp390 VPBasicBlock *CurrentBlock = RepR->getParent(); in addReplicateRegions() local
391 VPBasicBlock *SplitBlock = CurrentBlock->splitAt(RepR->getIterator()); in addReplicateRegions()
398 Region->setParent(CurrentBlock->getParent()); in addReplicateRegions()
399 VPBlockUtils::insertOnEdge(CurrentBlock, SplitBlock, Region); in addReplicateRegions()
402 if (ParentRegion && ParentRegion->getExiting() == CurrentBlock) in addReplicateRegions()