Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: src/IceCfgNode.h

Issue 300563003: Subzero: Initial O2 lowering (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/IceCfgNode.h
diff --git a/src/IceCfgNode.h b/src/IceCfgNode.h
index 645dc573a8d281ed45d037918dbc697bc02fc6a4..37f0f1ac0a8a583e8008baccde3c1a39d8949fc0 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,10 @@ public:
void placePhiLoads();
void placePhiStores();
void deletePhis();
+ void doAddressOpt();
void genCode();
+ bool liveness(LivenessMode Mode, Liveness *Liveness);
+ void livenessPostprocess(LivenessMode Mode, Liveness *Liveness);
void emit(Cfg *Func) const;
void dump(Cfg *Func) const;

Powered by Google App Engine
This is Rietveld 408576698