Home
last modified time | relevance | path

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

/external/llvm/include/llvm/MC/
DMCInstrItineraries.h175 unsigned LastIdx = Itineraries[ItinClassIndx].LastOperandCycle; in getOperandCycle() local
176 if ((FirstIdx + OperandIdx) >= LastIdx) in getOperandCycle()
/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp1812 for (unsigned LastIdx = 0, Idx = 1, Size = Factors.size(); in buildMinimalMultiplyDAG() local
1814 if (Factors[Idx].Power != Factors[LastIdx].Power) { in buildMinimalMultiplyDAG()
1815 LastIdx = Idx; in buildMinimalMultiplyDAG()
1823 InnerProduct.push_back(Factors[LastIdx].Base); in buildMinimalMultiplyDAG()
1827 } while (Idx < Size && Factors[Idx].Power == Factors[LastIdx].Power); in buildMinimalMultiplyDAG()
1831 Value *M = Factors[LastIdx].Base = buildMultiplyTree(Builder, InnerProduct); in buildMinimalMultiplyDAG()
1835 LastIdx = Idx; in buildMinimalMultiplyDAG()
/external/llvm/lib/CodeGen/
DLiveIntervalAnalysis.cpp507 SlotIndex LastIdx; in shrinkToUses() local
521 if (Idx == LastIdx) in shrinkToUses()
523 LastIdx = Idx; in shrinkToUses()
/external/clang/tools/libclang/
DCIndex.cpp6075 unsigned LastIdx = finished ? NextIdx-1 : NextIdx-2; in annotatePreprocessorTokens() local
6076 assert(TokIdx <= LastIdx); in annotatePreprocessorTokens()
6078 SourceLocation::getFromRawEncoding(Tokens[LastIdx].int_data[1]); in annotatePreprocessorTokens()
6082 for (; TokIdx <= LastIdx; ++TokIdx) in annotatePreprocessorTokens()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp5227 unsigned BaseIdx, unsigned LastIdx, in isHorizontalBinOp() argument
5231 assert(BaseIdx * 2 <= LastIdx && "Invalid Indices in input!"); in isHorizontalBinOp()
5232 assert(VT.isVector() && VT.getVectorNumElements() >= LastIdx && in isHorizontalBinOp()
5238 unsigned NumElts = LastIdx - BaseIdx; in isHorizontalBinOp()