Home | History | Annotate | Download | only in src

Lines Matching refs:Func

31   static CfgNode *create(Cfg *Func, SizeT Number) {
32 return new (Func->allocate<CfgNode>()) CfgNode(Func, Number);
35 Cfg *getCfg() const { return Func; }
48 Name = NodeString::createWithString(Func, NewName);
51 return ".L" + Func->getFunctionName() + "$" + getName();
113 void emit(Cfg *Func) const;
114 void emitIAS(Cfg *Func) const;
115 void dump(Cfg *Func) const;
131 CfgNode(Cfg *Func, SizeT Number)
132 : Func(Func), Number(Number), NumberOrig(Number),
133 Name(NodeString::createWithoutString(Func)) {}
135 Cfg *const Func;
136 SizeT Number; /// invariant: Func->Nodes[Number]==this