Searched refs:NewIdx (Results 1 - 8 of 8) sorted by relevance
/external/llvm/lib/CodeGen/ |
H A D | LiveIntervalAnalysis.cpp | 714 SlotIndex NewIdx; member in class:LiveIntervals::HMEditor 721 SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags) 722 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx), 736 /// NewIdx. 738 DEBUG(dbgs() << "handleMove " << OldIdx << " -> " << NewIdx << ": " << *MI); 770 /// OldIdx to NewIdx. 782 if (SlotIndex::isEarlierInstr(OldIdx, NewIdx)) 791 /// to NewIdx. 794 /// Move def to NewIdx, asser 719 HMEditor(LiveIntervals& LIS, const MachineRegisterInfo& MRI, const TargetRegisterInfo& TRI, SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags) argument [all...] |
/external/llvm/lib/IR/ |
H A D | DebugLoc.cpp | 307 int NewIdx = Ctx->getOrAddScopeInlinedAtIdxEntry(Entry.first.get(), local 311 if (NewIdx != Idx) {
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | Store.cpp | 471 nonloc::ConcreteInt NewIdx(svalBuilder.getBasicValueFactory().getValue(BaseIdxI + 476 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, NewIdx, ArrayR,
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstructionCombining.cpp | 1268 if (Value *NewIdx = Descale(Idx, APInt(BitWidth, Scale), NSW)) { 1269 // Successfully decomposed Idx as NewIdx * Scale, form a new GEP. 1270 // If the multiplication NewIdx * Scale may overflow then the new 1273 Builder->CreateInBoundsGEP(StrippedPtr, NewIdx, GEP.getName()) : 1274 Builder->CreateGEP(StrippedPtr, NewIdx, GEP.getName()); 1303 if (Value *NewIdx = Descale(Idx, APInt(BitWidth, Scale), NSW)) { 1304 // Successfully decomposed Idx as NewIdx * Scale, form a new GEP. 1305 // If the multiplication NewIdx * Scale may overflow then the new 1309 Off[1] = NewIdx;
|
/external/llvm/lib/Analysis/ |
H A D | ConstantFolding.cpp | 754 APInt NewIdx = Offset.udiv(ElemSize); local 755 Offset -= NewIdx * ElemSize; 756 NewIdxs.push_back(ConstantInt::get(IntPtrTy, NewIdx));
|
/external/llvm/utils/TableGen/ |
H A D | CodeGenRegisters.cpp | 458 CodeGenSubRegIndex *NewIdx = NewSubRegs[i].first; local 460 SubReg2Idx.insert(std::make_pair(NewSubReg, NewIdx)); 465 CodeGenSubRegIndex *NewIdx = NewSubRegs[i].first; local 473 NewIdx->addComposite(SI->first, SubIdx);
|
/external/clang/lib/Sema/ |
H A D | SemaTemplateInstantiateDecl.cpp | 2382 unsigned NewIdx = 0; local 2396 ParmVarDecl *NewParam = NewProtoLoc.getArg(NewIdx++); 2403 ParmVarDecl *NewParam = NewProtoLoc.getArg(NewIdx++);
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | SROA.cpp | 634 unsigned NewIdx = P.Partitions.size() - 1; local 636 = MemTransferPartitionMap.insert(std::make_pair(&II, NewIdx)).second;
|
Completed in 396 milliseconds