Home
last modified time | relevance | path

Searched refs:LiveIndex (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceLiveness.cpp84 SizeT LiveIndex = InvalidLiveIndex; in initInternal() local
86 LiveIndex = TmpNumGlobals++; in initInternal()
87 LiveToVarMap[LiveIndex] = Var; in initInternal()
90 LiveIndex = Nodes[NodeIndex].NumLocals++; in initInternal()
91 Nodes[NodeIndex].LiveToVarMap[LiveIndex] = Var; in initInternal()
92 LiveIndex += NumGlobals; in initInternal()
94 VarToLiveMap[VarIndex] = LiveIndex; in initInternal()
95 if (LiveIndex == InvalidLiveIndex || Var->getIgnoreLiveness()) in initInternal()
135 Variable *Liveness::getVariable(SizeT LiveIndex, const CfgNode *Node) const { in getVariable() argument
136 if (LiveIndex < NumGlobals) in getVariable()
[all …]
DIceLiveness.h72 Variable *getVariable(SizeT LiveIndex, const CfgNode *Node) const;
74 const SizeT LiveIndex = VarToLiveMap[VarIndex]; in getLiveIndex() local
75 assert(LiveIndex != InvalidLiveIndex); in getLiveIndex()
76 return LiveIndex; in getLiveIndex()