Home
last modified time | relevance | path

Searched refs:Undefs (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DLiveRangeCalc.cpp158 SmallVector<SlotIndex, 4> Undefs; in extendToUses() local
160 LI->computeSubRangeUndefs(Undefs, Mask, *MRI, *Indexes); in extendToUses()
212 extend(LR, UseIdx, Reg, Undefs); in extendToUses()
242 ArrayRef<SlotIndex> Undefs) { in extend() argument
251 auto EP = LR.extendInBlock(Undefs, Indexes->getMBBStartIdx(UseMBB), Use); in extend()
259 if (findReachingDefs(LR, *UseMBB, Use, PhysReg, Undefs)) in extend()
276 bool LiveRangeCalc::isDefOnEntry(LiveRange &LR, ArrayRef<SlotIndex> Undefs, in isDefOnEntry() argument
322 if (LR.isUndefIn(Undefs, Seg.end, End)) in isDefOnEntry()
330 if (UndefOnEntry[N] || LR.isUndefIn(Undefs, Begin, End)) { in isDefOnEntry()
348 ArrayRef<SlotIndex> Undefs) { in findReachingDefs() argument
[all …]
DLiveRangeCalc.h129 bool isDefOnEntry(LiveRange &LR, ArrayRef<SlotIndex> Undefs,
151 ArrayRef<SlotIndex> Undefs);
213 ArrayRef<SlotIndex> Undefs);
DLiveInterval.cpp136 std::pair<VNInfo*,bool> extendInBlock(ArrayRef<SlotIndex> Undefs, in extendInBlock() argument
143 return std::make_pair(nullptr, LR->isUndefIn(Undefs, StartIdx, BeforeUse)); in extendInBlock()
146 return std::make_pair(nullptr, LR->isUndefIn(Undefs, StartIdx, BeforeUse)); in extendInBlock()
148 if (LR->isUndefIn(Undefs, I->end, BeforeUse)) in extendInBlock()
567 std::pair<VNInfo*,bool> LiveRange::extendInBlock(ArrayRef<SlotIndex> Undefs, in extendInBlock() argument
571 return CalcLiveRangeUtilSet(this).extendInBlock(Undefs, StartIdx, Kill); in extendInBlock()
573 return CalcLiveRangeUtilVector(this).extendInBlock(Undefs, StartIdx, Kill); in extendInBlock()
920 void LiveInterval::computeSubRangeUndefs(SmallVectorImpl<SlotIndex> &Undefs, in computeSubRangeUndefs() argument
939 Undefs.push_back(Pos); in computeSubRangeUndefs()
DSplitKit.cpp1243 ArrayRef<SlotIndex> Undefs) { in extendPHIRange() argument
1255 LRC.extend(LR, End, /*PhysReg=*/0, Undefs); in extendPHIRange()
1279 SmallVector<SlotIndex, 4> Undefs; in extendPHIKillRanges() local
1295 Undefs.clear(); in extendPHIKillRanges()
1296 LI.computeSubRangeUndefs(Undefs, PS.LaneMask, MRI, *LIS.getSlotIndexes()); in extendPHIKillRanges()
1297 extendPHIRange(B, SubLRC, S, PS.LaneMask, Undefs); in extendPHIKillRanges()
1391 SmallVector<SlotIndex, 4> Undefs; in rewriteAssigned() local
1392 LI.computeSubRangeUndefs(Undefs, S.LaneMask, MRI, *LIS.getSlotIndexes()); in rewriteAssigned()
1393 SubLRC.extend(S, EP.Next, 0, Undefs); in rewriteAssigned()
DLiveIntervals.cpp432 SmallVector<SlotIndex,8> Undefs; in extendSegmentsToUses() local
433 LI.computeSubRangeUndefs(Undefs, LaneMask, *MRI, *Indexes); in extendSegmentsToUses()
434 assert(LiveRangeCalc::isJointlyDominated(Pred, Undefs, *Indexes) && in extendSegmentsToUses()
615 ArrayRef<SlotIndex> Undefs) { in extendToIndices() argument
619 LRCalc->extend(LR, Idx, /*PhysReg=*/0, Undefs); in extendToIndices()
DSplitKit.h403 ArrayRef<SlotIndex> Undefs);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DLiveInterval.h484 std::pair<VNInfo*,bool> extendInBlock(ArrayRef<SlotIndex> Undefs,
595 bool isUndefIn(ArrayRef<SlotIndex> Undefs, SlotIndex Begin, in isUndefIn() argument
597 return std::any_of(Undefs.begin(), Undefs.end(), in isUndefIn()
778 void computeSubRangeUndefs(SmallVectorImpl<SlotIndex> &Undefs,
DLiveIntervals.h185 ArrayRef<SlotIndex> Undefs);
/external/llvm/lib/LTO/
DLTOCodeGenerator.cpp158 const std::vector<const char*> &Undefs = Mod->getAsmUndefinedRefs(); in setModule() local
159 for (int I = 0, E = Undefs.size(); I != E; ++I) in setModule()
160 AsmUndefinedRefs[Undefs[I]] = 1; in setModule()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonExpandCondsets.cpp425 SmallVector<SlotIndex,8> Undefs; in updateDeadsInRange() local
427 LI.computeSubRangeUndefs(Undefs, LM, *MRI, *LIS->getSlotIndexes()); in updateDeadsInRange()
431 auto P = Range.extendInBlock(Undefs, LIS->getMBBStartIdx(BB), SI); in updateDeadsInRange()
460 LIS->extendToIndices(Range, ExtTo, Undefs); in updateDeadsInRange()
/external/swiftshader/third_party/subzero/src/
DIceGlobalContext.cpp215 UndefPool Undefs; member in Ice::ConstantPool
821 return getConstPool()->Undefs.getOrAdd(this, Ty); in getConstantUndef()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp5034 static SDValue getConstVector(ArrayRef<APInt> Bits, APInt &Undefs, in getConstVector() argument
5036 assert(Bits.size() == Undefs.getBitWidth() && in getConstVector()
5051 if (Undefs[i]) { in getConstVector()
5578 auto CollectConstantBits = [](const Constant *Cst, APInt &Mask, APInt &Undefs, in getTargetConstantBitsFromNode()
5583 Undefs.setBit(UndefBitIndex); in getTargetConstantBitsFromNode()
34214 APInt Undefs(NumDstElts, 0); in combineVectorPack() local
34223 Undefs.setBit(Lane * NumDstEltsPerLane + Elt); in combineVectorPack()
34253 return getConstVector(Bits, Undefs, VT.getSimpleVT(), DAG, SDLoc(N)); in combineVectorPack()
39282 APInt Undefs(NumElts, 0); in combineVSZext() local
39288 Undefs.setBit(i); in combineVSZext()
[all …]