Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h371 for (unsigned BlockIdx = 0; BlockIdx < RegsRequired; ++BlockIdx) { in AllocateRegBlock() local
372 if (isAllocated(Regs[StartIdx + BlockIdx])) { in AllocateRegBlock()
379 for (unsigned BlockIdx = 0; BlockIdx < RegsRequired; ++BlockIdx) { in AllocateRegBlock() local
380 MarkAllocated(Regs[StartIdx + BlockIdx]); in AllocateRegBlock()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DGenericUniformityImpl.h525 for (int BlockIdx = (int)CyclePOT.size() - 1; BlockIdx >= 0; --BlockIdx) { in printDefs() local
526 const auto *Block = CyclePOT[BlockIdx]; in printDefs()
528 Out << Context.print(Block) << "(" << BlockIdx << ") : "; in printDefs()
628 auto BlockIdx = FreshLabels.find_last(); in computeJoinPoints() local
629 if (BlockIdx == -1 || BlockIdx < FloorIdx) in computeJoinPoints()
634 FreshLabels.reset(BlockIdx); in computeJoinPoints()
635 if (BlockIdx == DivTermIdx) { in computeJoinPoints()
640 const auto *Block = CyclePOT[BlockIdx]; in computeJoinPoints()
642 << BlockIdx << "\n"); in computeJoinPoints()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTypeErasedDataflowAnalysis.cpp197 PrettyStackTraceCFGElement(const CFGElement &Element, int BlockIdx, in PrettyStackTraceCFGElement() argument
199 : Element(Element), BlockIdx(BlockIdx), ElementIdx(ElementIdx), in PrettyStackTraceCFGElement()
203 OS << Message << ": Element [B" << BlockIdx << "." << ElementIdx << "]\n"; in print()
213 int BlockIdx; member in clang::dataflow::__anonbea4f3b00211::PrettyStackTraceCFGElement
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp215 int BlockIdx = PN->getBasicBlockIndex(OrigBlock); in NewLeafBlock() local
216 assert(BlockIdx != -1 && "Switch didn't go to this successor??"); in NewLeafBlock()
217 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf); in NewLeafBlock()
H A DSampleProfileInference.cpp667 std::vector<FlowJump *> findShortestPath(uint64_t BlockIdx) { in findShortestPath() argument
669 auto ForwardPath = findShortestPath(Func.Entry, BlockIdx); in findShortestPath()
671 auto BackwardPath = findShortestPath(BlockIdx, AnyExitBlock); in findShortestPath()