Home
last modified time | relevance | path

Searched refs:BlockIdx (Results 1 – 7 of 7) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DSyncDependenceAnalysis.cpp288 for (int BlockIdx = (int)BlockLabels.size() - 1; BlockIdx > 0; --BlockIdx) { in printDefs() local
289 const auto *Label = BlockLabels[BlockIdx]; in printDefs()
290 Out << LoopPOT.getBlockAt(BlockIdx)->getName().str() << "(" << BlockIdx in printDefs()
360 int BlockIdx = 0; in computeJoinPoints() local
367 BlockIdx = std::max<int>(BlockIdx, SuccIdx); in computeJoinPoints()
383 for (; BlockIdx >= FloorIdx; --BlockIdx) { in computeJoinPoints()
387 const auto *Label = BlockLabels[BlockIdx]; in computeJoinPoints()
392 const auto *Block = LoopPOT.getBlockAt(BlockIdx); in computeJoinPoints()
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h369 for (unsigned BlockIdx = 0; BlockIdx < RegsRequired; ++BlockIdx) { in AllocateRegBlock() local
370 if (isAllocated(Regs[StartIdx + BlockIdx])) { in AllocateRegBlock()
377 for (unsigned BlockIdx = 0; BlockIdx < RegsRequired; ++BlockIdx) { in AllocateRegBlock() local
378 MarkAllocated(Regs[StartIdx + BlockIdx]); in AllocateRegBlock()
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DGenericUniformityImpl.h516 for (int BlockIdx = (int)CyclePOT.size() - 1; BlockIdx >= 0; --BlockIdx) { in printDefs() local
517 const auto *Block = CyclePOT[BlockIdx]; in printDefs()
519 Out << Context.print(Block) << "(" << BlockIdx << ") : "; in printDefs()
619 auto BlockIdx = FreshLabels.find_last(); in computeJoinPoints() local
620 if (BlockIdx == -1 || BlockIdx < FloorIdx) in computeJoinPoints()
625 FreshLabels.reset(BlockIdx); in computeJoinPoints()
626 if (BlockIdx == DivTermIdx) { in computeJoinPoints()
631 const auto *Block = CyclePOT[BlockIdx]; in computeJoinPoints()
633 << BlockIdx << "\n"); in computeJoinPoints()
/openbsd/gnu/llvm/compiler-rt/lib/fuzzer/dataflow/
H A DDataFlowCallbacks.cpp20 static inline bool BlockIsEntry(size_t BlockIdx) { in BlockIsEntry() argument
21 return __dft.PCsBeg[BlockIdx * 2 + 1] & PCFLAG_FUNC_ENTRY; in BlockIsEntry()
H A DDataFlow.cpp79 static inline bool BlockIsEntry(size_t BlockIdx) { in BlockIsEntry() argument
80 return __dft.PCsBeg[BlockIdx * 2 + 1] & PCFLAG_FUNC_ENTRY; in BlockIsEntry()
/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp216 int BlockIdx = PN->getBasicBlockIndex(OrigBlock); in NewLeafBlock() local
217 assert(BlockIdx != -1 && "Switch didn't go to this successor??"); in NewLeafBlock()
218 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
H A DSampleProfileInference.cpp666 std::vector<FlowJump *> findShortestPath(uint64_t BlockIdx) { in findShortestPath() argument
668 auto ForwardPath = findShortestPath(Func.Entry, BlockIdx); in findShortestPath()
670 auto BackwardPath = findShortestPath(BlockIdx, AnyExitBlock); in findShortestPath()