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

  /external/llvm/include/llvm/CodeGen/
LiveRangeEdit.h 177 VNInfo *ParentVNI; // parent_'s value at the remat location.
178 MachineInstr *OrigMI; // Instruction defining ParentVNI.
179 explicit Remat(VNInfo *ParentVNI) : ParentVNI(ParentVNI), OrigMI(nullptr) {}
182 /// canRematerializeAt - Determine if ParentVNI can be rematerialized at
183 /// UseIdx. It is assumed that parent_.getVNINfoAt(UseIdx) == ParentVNI.
189 /// rematerializeAt - Rematerialize RM.ParentVNI into DestReg by inserting an
202 void markRematerialized(const VNInfo *ParentVNI) {
203 Rematted.insert(ParentVNI);
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.cpp 363 const VNInfo *ParentVNI,
365 assert(ParentVNI && "Mapping NULL value");
367 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
375 Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id),
378 // This was the first time (RegIdx, ParentVNI) was mapped.
398 void SplitEditor::forceRecompute(unsigned RegIdx, const VNInfo *ParentVNI) {
399 assert(ParentVNI && "Mapping NULL value");
400 ValueForcePair &VFP = Values[std::make_pair(RegIdx, ParentVNI->id)];
403 // ParentVNI was either unmapped or already complex mapped. Either way, just
420 VNInfo *ParentVNI,
    [all...]
SplitKit.h 277 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
302 /// defValue - define a value in RegIdx from ParentVNI at Idx.
303 /// Idx does not have to be ParentVNI->def, but it must be contained within
304 /// ParentVNI's live range in ParentLI. The new value is added to the value
307 VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx);
309 /// forceRecompute - Force the live range of ParentVNI in RegIdx to be
313 void forceRecompute(unsigned RegIdx, const VNInfo *ParentVNI);
315 /// defFromParent - Define Reg from ParentVNI at UseIdx using either
318 VNInfo *ParentVNI,
LiveRangeEdit.cpp 122 if (!Remattable.count(RM.ParentVNI))
130 DefIdx = RM.ParentVNI->def;
154 Rematted.insert(RM.ParentVNI);
InlineSpiller.cpp 868 VNInfo *ParentVNI = VirtReg.getVNInfoAt(UseIdx.getBaseIndex());
870 if (!ParentVNI) {
884 // Use an OrigVNI from traceSiblingValue when ParentVNI is a sibling copy.
885 LiveRangeEdit::Remat RM(ParentVNI);
886 SibValueMap::const_iterator SibI = SibValues.find(ParentVNI);
    [all...]

Completed in 6942 milliseconds