Home
last modified time | relevance | path

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

/external/llvm/include/llvm/MC/
DMCInstrItineraries.h174 unsigned LastIdx = Itineraries[ItinClassIndx].LastOperandCycle; in getOperandCycle() local
175 if ((FirstIdx + OperandIdx) >= LastIdx) in getOperandCycle()
/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp1795 for (unsigned LastIdx = 0, Idx = 1, Size = Factors.size(); in buildMinimalMultiplyDAG() local
1797 if (Factors[Idx].Power != Factors[LastIdx].Power) { in buildMinimalMultiplyDAG()
1798 LastIdx = Idx; in buildMinimalMultiplyDAG()
1806 InnerProduct.push_back(Factors[LastIdx].Base); in buildMinimalMultiplyDAG()
1810 } while (Idx < Size && Factors[Idx].Power == Factors[LastIdx].Power); in buildMinimalMultiplyDAG()
1814 Value *M = Factors[LastIdx].Base = buildMultiplyTree(Builder, InnerProduct); in buildMinimalMultiplyDAG()
1818 LastIdx = Idx; in buildMinimalMultiplyDAG()
/external/llvm/lib/CodeGen/
DLiveIntervalAnalysis.cpp537 SlotIndex LastIdx; in shrinkToUses() local
551 if (Idx == LastIdx) in shrinkToUses()
553 LastIdx = Idx; in shrinkToUses()
/external/clang/tools/libclang/
DCIndex.cpp6321 unsigned LastIdx = finished ? NextIdx-1 : NextIdx-2; in annotatePreprocessorTokens() local
6322 assert(TokIdx <= LastIdx); in annotatePreprocessorTokens()
6324 SourceLocation::getFromRawEncoding(Tokens[LastIdx].int_data[1]); in annotatePreprocessorTokens()
6328 for (; TokIdx <= LastIdx; ++TokIdx) in annotatePreprocessorTokens()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp5880 unsigned BaseIdx, unsigned LastIdx, in isHorizontalBinOp() argument
5884 assert(BaseIdx * 2 <= LastIdx && "Invalid Indices in input!"); in isHorizontalBinOp()
5885 assert(VT.isVector() && VT.getVectorNumElements() >= LastIdx && in isHorizontalBinOp()
5891 unsigned NumElts = LastIdx - BaseIdx; in isHorizontalBinOp()