HomeSort by: relevance | last modified time | path
    Searched defs:createDeadDef (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveIntervalCalc.cpp 42 static void createDeadDef(SlotIndexes &Indexes, VNInfo::Allocator &Alloc,
49 LR.createDeadDef(DefIdx, Alloc);
61 // createDeadDef() will deduplicate.
83 createDeadDef(*Indexes, *Alloc, SR, MO);
91 createDeadDef(*Indexes, *Alloc, LI, MO);
126 MainRange.createDeadDef(VNI->def, *Alloc);
140 // LR.createDeadDef() will deduplicate.
142 createDeadDef(*Indexes, *Alloc, LR, MO);
LiveInterval.cpp 76 /// A counterpart of LiveRange::createDeadDef: Make sure the range has a
87 VNInfo *createDeadDef(SlotIndex Def, VNInfo::Allocator *VNInfoAllocator,
370 VNInfo *LiveRange::createDeadDef(SlotIndex Def, VNInfo::Allocator &VNIAlloc) {
373 return CalcLiveRangeUtilSet(this).createDeadDef(Def, &VNIAlloc, nullptr);
375 return CalcLiveRangeUtilVector(this).createDeadDef(Def, &VNIAlloc, nullptr);
378 VNInfo *LiveRange::createDeadDef(VNInfo *VNI) {
381 return CalcLiveRangeUtilSet(this).createDeadDef(VNI->def, nullptr, VNI);
383 return CalcLiveRangeUtilVector(this).createDeadDef(VNI->def, nullptr, VNI);

Completed in 23 milliseconds