HomeSort by relevance Sort by last modified time
    Searched refs:StartIdx (Results 1 - 20 of 20) sorted by null

  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 342 for (unsigned StartIdx = 0; StartIdx <= NumRegs - RegsRequired; ++StartIdx) {
346 if (isAllocated(Regs[StartIdx + BlockIdx])) {
354 MarkAllocated(Regs[StartIdx + BlockIdx]);
356 return Regs[StartIdx];
StackMaps.h 81 unsigned getNextScratchIdx(unsigned StartIdx = 0) const;
FastISel.h 422 const CallInst *CI, unsigned StartIdx);
LiveInterval.h 408 /// that starts at StartIdx, extend it to be live up to Kill, and return
410 VNInfo *extendInBlock(SlotIndex StartIdx, SlotIndex Kill);
  /external/clang/include/clang/Lex/
HeaderSearch.h 197 unsigned StartIdx;
205 LookupFileCacheInfo(): StartIdx(0), HitIdx(0), MappedName(nullptr) {}
207 void reset(unsigned StartIdx) {
208 this->StartIdx = StartIdx;
  /external/llvm/lib/Target/AArch64/
AArch64ExpandPseudoInsts.cpp 279 int StartIdx = NotSet;
288 StartIdx = Idx;
294 if (StartIdx == NotSet || EndIdx == NotSet)
305 if (StartIdx > EndIdx) {
306 std::swap(StartIdx, EndIdx);
321 if ((Idx < StartIdx || EndIdx < Idx) && Chunk != Outside) {
332 } else if (Idx > StartIdx && Idx < EndIdx && Chunk != Inside) {
  /external/llvm/lib/CodeGen/
StackMaps.cpp 56 unsigned PatchPointOpers::getNextScratchIdx(unsigned StartIdx) const {
57 if (!StartIdx)
58 StartIdx = getVarIdx();
61 unsigned ScratchIdx = StartIdx, e = MI->getNumOperands();
TargetInstrInfo.cpp 384 unsigned StartIdx = 0;
387 StartIdx = 2; // Skip ID, nShadowBytes.
392 StartIdx = opers.getVarIdx();
403 if (*I < StartIdx)
412 for (unsigned i = 0; i < StartIdx; ++i)
415 for (unsigned i = StartIdx; i < MI->getNumOperands(); ++i) {
LiveInterval.cpp 330 /// block that starts at StartIdx, extend it to be live up to Kill and return
332 VNInfo *LiveRange::extendInBlock(SlotIndex StartIdx, SlotIndex Kill) {
339 if (I->end <= StartIdx)
RegAllocGreedy.cpp     [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 55 unsigned StartIdx, formatted_raw_ostream &OS);
147 unsigned StartIdx = CurrentIdx;
202 return CurrentIdx - StartIdx + 1;
275 unsigned StartIdx = CurrentIdx;
359 return CurrentIdx-StartIdx;
CodeGenSchedule.cpp     [all...]
RegisterInfoEmitter.cpp 252 for (unsigned i = 0, StartIdx = 0, e = NumRCUnitSets; i != e; ++i) {
253 RCSetStarts[i] = StartIdx;
264 ++StartIdx;
277 ++StartIdx;
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 352 virtual Value *getConsecutiveVector(Value* Val, int StartIdx, bool Negate);
471 Value *getConsecutiveVector(Value* Val, int StartIdx, bool Negate) override;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 637 unsigned StartIdx = SimpVect.size();
658 if (StartIdx + 1 != SimpVect.size()) {
660 R = *SimpVect[StartIdx];
661 for (unsigned Idx = StartIdx + 1; Idx < SimpVect.size(); Idx++)
665 SimpVect.resize(StartIdx);
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 567 const CallInst *CI, unsigned StartIdx) {
568 for (unsigned i = StartIdx, e = CI->getNumArgOperands(); i != e; ++i) {
    [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 703 if (!SkipCache && CacheLookup.StartIdx == i+1) {
712 CacheLookup.reset(/*StartIdx=*/i+1);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 736 milliseconds