Home
last modified time | relevance | path

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

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/subzero/src/
H A 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;
H A DIceCfgNode.cpp658 LivenessBV Live(NumVars); in livenessLightweight()
678 LivenessBV &Live = Liveness->getScratchBV(); in liveness()
698 const LivenessBV &LiveIn = Liveness->getLiveIn(Succ); in liveness()
758 LivenessBV &LiveIn = Liveness->getLiveIn(this); in liveness()
838 const LivenessBV &LiveIn = Liveness->getLiveIn(this); in livenessAddIntervals()
839 const LivenessBV &LiveOut = Liveness->getLiveOut(this); in livenessAddIntervals()
850 LivenessBV &LiveInAndOut = Liveness->getScratchBV(); in livenessAddIntervals()
979 const LivenessBV *Live; in emitRegisterUsage()
1411 const LivenessBV &LiveIn = Liveness->getLiveIn(this); in dump()
1437 const LivenessBV &LiveOut = Liveness->getLiveOut(this); in dump()
H A 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()
H A DIceInst.h161 void livenessLightweight(Cfg *Func, LivenessBV &Live);
167 bool liveness(InstNumberT InstNumber, LivenessBV &Live, Liveness *Liveness,
684 void livenessPhiOperand(LivenessBV &Live, CfgNode *Target,
H A DIceDefs.h286 using LivenessBV = BitVectorTmpl<LivenessAllocator>; variable