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

Unified Diff: src/IceCfgNode.h

Issue 1837663002: Initial Subzero WASM prototype. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Merging with master Created 4 years, 9 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 b81c5c204a890918d574b79e69cc9abb6c7b9c60..b92e63b805e6734811a989e3f5b3df931fef4965 100644
--- a/src/IceCfgNode.h
+++ b/src/IceCfgNode.h
@@ -72,7 +72,7 @@ public:
/// @{
InstList &getInsts() { return Insts; }
PhiList &getPhis() { return Phis; }
- void appendInst(Inst *Instr);
+ void appendInst(Inst *Instr, bool AllowPhisAnywhere = false);
void renumberInstructions();
/// Rough and generally conservative estimate of the number of instructions in
/// the block. It is updated when an instruction is added, but not when
@@ -110,6 +110,9 @@ public:
void profileExecutionCount(VariableDeclaration *Var);
+ void addOutEdge(CfgNode *Out) { OutEdges.push_back(Out); }
+ void addInEdge(CfgNode *In) { InEdges.push_back(In); }
+
private:
CfgNode(Cfg *Func, SizeT Number);
bool livenessValidateIntervals(Liveness *Liveness) const;

Powered by Google App Engine
This is Rietveld 408576698