HomeSort by: relevance | last modified time | path
    Searched refs:CurrentBlock (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/XRay/
BlockIndexer.cpp 21 CurrentBlock.Records.push_back(&R);
22 CurrentBlock.WallclockTime = &R;
27 CurrentBlock.Records.push_back(&R);
32 CurrentBlock.Records.push_back(&R);
37 CurrentBlock.Records.push_back(&R);
42 CurrentBlock.Records.push_back(&R);
47 CurrentBlock.Records.push_back(&R);
52 CurrentBlock.Records.push_back(&R);
57 CurrentBlock.ProcessID = R.pid();
58 CurrentBlock.Records.push_back(&R)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
BlockIndexer.h 41 Block CurrentBlock{0, 0, nullptr, {}};
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
LinePrinter.cpp 147 uint32_t CurrentBlock = Blocks[0];
148 Runs.emplace_back(CurrentBlock);
152 if (NextBlock < CurrentBlock || (NextBlock - CurrentBlock > 1)) {
159 CurrentBlock = NextBlock;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
GVN.cpp 2660 BasicBlock *CurrentBlock = CurInst->getParent();
2664 assignBlockRPONumber(*CurrentBlock->getParent());
2667 for (BasicBlock *P : predecessors(CurrentBlock)) {
2674 // It is not safe to do PRE when P->CurrentBlock is a loop backedge, and
2675 // when CurInst has operand defined in CurrentBlock (so it may be defined
2677 assert(BlockRPONumber.count(P) && BlockRPONumber.count(CurrentBlock) &&
2679 if (BlockRPONumber[P] >= BlockRPONumber[CurrentBlock] &&
2682 return Inst->getParent() == CurrentBlock;
2689 uint32_t TValNo = VN.phiTranslate(P, CurrentBlock, ValNo, *this);
2737 unsigned SuccNum = GetSuccessorNumber(PREPred, CurrentBlock);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 1451 BasicBlock *CurrentBlock = CatchSwitch->getParent();
1452 BasicBlock *NewBlock = CurrentBlock->splitBasicBlock(CatchSwitch);
1453 CurrentBlock->getTerminator()->eraseFromParent();
1456 CleanupPadInst::Create(CatchSwitch->getParentPad(), {}, "", CurrentBlock);
1458 CleanupReturnInst::Create(CleanupPad, NewBlock, CurrentBlock);
1592 BasicBlock *CurrentBlock = nullptr;
1598 if (CurrentBlock != U->getParent()) {
1599 CurrentBlock = U->getParent();
1600 Builder.SetInsertPoint(&*CurrentBlock->getFirstInsertionPt());
1614 DIBuilder(*CurrentBlock->getParent()->getParent(), AllowUnresolved
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
LiveVariables.cpp 156 const CFGBlock *currentBlock;
161 const CFGBlock *CurrentBlock)
162 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {}
213 observer->observeStmt(S, currentBlock, val);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMLowOverheadLoops.cpp 569 auto &CurrentBlock = ITBlocks[IT];
570 CurrentBlock.erase(Dead);
571 if (CurrentBlock.empty())

Completed in 29 milliseconds