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

  /external/swiftshader/third_party/subzero/src/
IceLiveness.h 60 // LiveBegin and LiveEnd track the instruction numbers of the start and end
63 LiveBeginEndMap LiveBegin, LiveEnd;
104 return &Nodes[Index].LiveEnd;
IceCfgNode.cpp 682 LiveBeginEndMap *LiveEnd = nullptr;
687 LiveEnd = Liveness->getLiveEnd(this);
689 LiveEnd->clear();
693 LiveEnd->reserve(getInstCountEstimate());
718 I.liveness(I.getNumber(), Live, Liveness, LiveBegin, LiveEnd);
729 if (I.liveness(FirstPhiNumber, Live, Liveness, LiveBegin, LiveEnd))
    [all...]
IceInst.cpp 216 LiveBeginEndMap *LiveEnd) {
256 // traversed backwards, we make sure LiveEnd is only set once by
257 // setting it only when LiveEnd[VarNum]==0 (sentinel value). Note that
260 if (LiveEnd && Liveness->getRangeMask(Var->getIndex())) {
262 // block, but this can't be done very efficiently with LiveEnd as a
265 LiveEnd->push_back(std::make_pair(VarNum, InstNumber));
680 // Print "LIVEEND={a,b,c}" for all source operands whose live ranges are
686 Str << " // LIVEEND={";
    [all...]
IceInst.h 168 LiveBeginEndMap *LiveBegin, LiveBeginEndMap *LiveEnd);
    [all...]

Completed in 299 milliseconds