Home | History | Annotate | Download | only in src

Lines Matching refs:Node

14 /// The node-specific information tracked for each Variable includes whether it
72 Variable *getVariable(SizeT LiveIndex, const CfgNode *Node) const;
79 SizeT getNumVarsInNode(const CfgNode *Node) const {
80 return NumGlobals + Nodes[Node->getIndex()].NumLocals;
82 SizeT &getNumNonDeadPhis(const CfgNode *Node) {
83 return Nodes[Node->getIndex()].NumNonDeadPhis;
85 LivenessBV &getLiveIn(const CfgNode *Node) {
86 SizeT Index = Node->getIndex();
90 LivenessBV &getLiveOut(const CfgNode *Node) {
91 SizeT Index = Node->getIndex();
96 LiveBeginEndMap *getLiveBegin(const CfgNode *Node) {
97 SizeT Index = Node->getIndex();
101 LiveBeginEndMap *getLiveEnd(const CfgNode *Node) {
102 SizeT Index = Node->getIndex();