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

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: Cleanup 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 f7e7b0e20ee07e190a13a94901874682ba04a85e..0693dad0907b478f0c5c6859203143d5765dccd2 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); }
Jim Stichnoth 2016/03/29 17:49:57 Capitalize Out and In vars per LLVM convention.
Eric Holk 2016/03/29 22:58:07 Done.
+ void addInEdge(CfgNode *in) { InEdges.push_back(in); }
+
private:
CfgNode(Cfg *Func, SizeT LabelIndex);
bool livenessValidateIntervals(Liveness *Liveness) const;

Powered by Google App Engine
This is Rietveld 408576698