| Index: src/IceCfgNode.h
|
| diff --git a/src/IceCfgNode.h b/src/IceCfgNode.h
|
| index 645dc573a8d281ed45d037918dbc697bc02fc6a4..ea50dca6a01603dca0393cb3bc752df24f6333f1 100644
|
| --- a/src/IceCfgNode.h
|
| +++ b/src/IceCfgNode.h
|
| @@ -45,6 +45,7 @@ public:
|
| // Manage the instruction list.
|
| InstList &getInsts() { return Insts; }
|
| void appendInst(Inst *Inst);
|
| + void renumberInstructions();
|
|
|
| // Add a predecessor edge to the InEdges list for each of this
|
| // node's successors.
|
| @@ -53,7 +54,11 @@ public:
|
| void placePhiLoads();
|
| void placePhiStores();
|
| void deletePhis();
|
| + void doAddressOpt();
|
| void genCode();
|
| + void livenessLightweight();
|
| + bool liveness(Liveness *Liveness);
|
| + void livenessPostprocess(LivenessMode Mode, Liveness *Liveness);
|
| void emit(Cfg *Func) const;
|
| void dump(Cfg *Func) const;
|
|
|
|
|