Home
last modified time | relevance | path

Searched refs:CurrentIdx (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
H A DInstructionSelectorImpl.h58 uint64_t CurrentIdx = 0; in executeMatchTable() local
69 dbgs() << CurrentIdx << ": Rejected\n"); in executeMatchTable()
72 CurrentIdx = OnFailResumeAt.pop_back_val(); in executeMatchTable()
74 dbgs() << CurrentIdx << ": Resume at " << CurrentIdx << " (" in executeMatchTable()
93 assert(CurrentIdx != ~0u && "Invalid MatchTable index"); in executeMatchTable()
94 int64_t MatcherOpcode = MatchTable[CurrentIdx++]; in executeMatchTable()
98 dbgs() << CurrentIdx << ": Begin try-block\n"); in executeMatchTable()
99 OnFailResumeAt.push_back(MatchTable[CurrentIdx++]); in executeMatchTable()
104 int64_t NewInsnID = MatchTable[CurrentIdx++]; in executeMatchTable()
105 int64_t InsnID = MatchTable[CurrentIdx++]; in executeMatchTable()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp106 unsigned EmitMatcher(const Matcher *N, const unsigned Indent, unsigned CurrentIdx,
374 EmitMatcher(const Matcher *N, const unsigned Indent, unsigned CurrentIdx, in EmitMatcher() argument
381 unsigned StartIdx = CurrentIdx; in EmitMatcher()
387 ++CurrentIdx; in EmitMatcher()
390 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/"; in EmitMatcher()
399 OS << "/*->" << CurrentIdx + VBRSize + ChildSize << "*/"; in EmitMatcher()
406 CurrentIdx + VBRSize, OS); in EmitMatcher()
409 CurrentIdx += VBRSize + ChildSize; in EmitMatcher()
414 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/"; in EmitMatcher()
419 return CurrentIdx - StartIdx + 1; in EmitMatcher()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp3571 unsigned CurrentIdx = *getExtractIndex(cast<Instruction>(V)); in computeExtractCost() local
3573 AllConsecutive &= PrevIdx + 1 == CurrentIdx && in computeExtractCost()
3574 CurrentIdx % EltsPerVector == Idx % EltsPerVector; in computeExtractCost()