Home
last modified time | relevance | path

Searched refs:LivenessBV (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceLiveness.h59 LivenessBV LiveIn, LiveOut;
85 LivenessBV &getLiveIn(const CfgNode *Node) { in getLiveIn()
90 LivenessBV &getLiveOut(const CfgNode *Node) { in getLiveOut()
95 LivenessBV &getScratchBV() { return ScratchBV; } in getScratchBV()
151 LivenessBV RangeMask;
154 LivenessBV ScratchBV;
DIceCfgNode.cpp636 LivenessBV Live(NumVars); in livenessLightweight()
656 LivenessBV &Live = Liveness->getScratchBV(); in liveness()
676 const LivenessBV &LiveIn = Liveness->getLiveIn(Succ); in liveness()
736 LivenessBV &LiveIn = Liveness->getLiveIn(this); in liveness()
816 const LivenessBV &LiveIn = Liveness->getLiveIn(this); in livenessAddIntervals()
817 const LivenessBV &LiveOut = Liveness->getLiveOut(this); in livenessAddIntervals()
828 LivenessBV &LiveInAndOut = Liveness->getScratchBV(); in livenessAddIntervals()
957 const LivenessBV *Live; in emitRegisterUsage()
1389 const LivenessBV &LiveIn = Liveness->getLiveIn(this); in dump()
1415 const LivenessBV &LiveOut = Liveness->getLiveOut(this); in dump()
DIceInst.cpp191 void Inst::livenessLightweight(Cfg *Func, LivenessBV &Live) { in livenessLightweight()
206 bool Inst::liveness(InstNumberT InstNumber, LivenessBV &Live, in liveness()
431 void InstPhi::livenessPhiOperand(LivenessBV &Live, CfgNode *Target, in livenessPhiOperand()
DIceInst.h166 void livenessLightweight(Cfg *Func, LivenessBV &Live);
172 bool liveness(InstNumberT InstNumber, LivenessBV &Live, Liveness *Liveness,
688 void livenessPhiOperand(LivenessBV &Live, CfgNode *Target,
DIceDefs.h286 using LivenessBV = BitVectorTmpl<LivenessAllocator>; variable