HomeSort by: relevance | last modified time | path
    Searched refs:endPoint (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveIntervals.cpp 653 if (LRQ.endPoint() < MBBEnd) {
654 LR.removeSegment(Kill, LRQ.endPoint());
655 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
685 if (LRQ.endPoint() < MBBEnd) {
686 LR.removeSegment(MBBStart, LRQ.endPoint());
687 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
RegisterCoalescer.cpp 1218 // the copy appear as an endpoint from pruneValue(), but we don't want it
1220 // endpoint; there is no other situation here that there could be a use at
2787 if (OtherLRQ.isKill() && OtherLRQ.endPoint() <= VNI->def)
2847 if (OtherLRQ.endPoint() >= Indexes->getMBBEndIdx(MBB))
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
LiveInterval.h 93 const SlotIndex EndPoint;
97 LiveQueryResult(VNInfo *EarlyVal, VNInfo *LateVal, SlotIndex EndPoint,
99 : EarlyVal(EarlyVal), LateVal(LateVal), EndPoint(EndPoint), Kill(Kill)
118 return EndPoint.isDead();
147 SlotIndex endPoint() const {
148 return EndPoint;
545 SlotIndex EndPoint;
549 EndPoint = I->end;
554 return LiveQueryResult(EarlyVal, LateVal, EndPoint, Kill)
    [all...]

Completed in 23 milliseconds