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

Unified Diff: src/IceCfg.h

Issue 2380023002: [SubZero] Vector types support for MIPS (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addressed review comments Created 4 years, 3 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
« no previous file with comments | « no previous file | src/IceCfg.cpp » ('j') | src/IceOperand.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfg.h
diff --git a/src/IceCfg.h b/src/IceCfg.h
index 3a3dcbfdf709392c088b0e6ca4e6a3ec08e2ffba..0df09ee9f9aaf31eb0f9dbb250bcab261c5c4bfe 100644
--- a/src/IceCfg.h
+++ b/src/IceCfg.h
@@ -133,6 +133,8 @@ public:
VarList &getArgs() { return Args; }
void addImplicitArg(Variable *Arg);
const VarList &getImplicitArgs() const { return ImplicitArgs; }
+ void setImplicitRet(Variable *Ret) { ImplicitRet = Ret; }
+ Variable *getImplicitRet() const { return ImplicitRet; }
/// @}
/// \name Manage the jump tables.
@@ -325,8 +327,9 @@ private:
NodeList Nodes; /// linearized node list; Entry should be first
InstNumberT NextInstNumber;
VarList Variables;
- VarList Args; /// subset of Variables, in argument order
- VarList ImplicitArgs; /// subset of Variables
+ VarList Args; /// subset of Variables, in argument order
+ VarList ImplicitArgs; /// subset of Variables
+ Variable *ImplicitRet; /// Implicit return
Jim Stichnoth 2016/09/30 17:37:39 This is something that, so far, is only needed by
jaydeep.patil 2016/10/03 06:38:55 Done.
// Separate string pools for CfgNode and Variable names, due to a combination
// of the uniqueness requirement, and assumptions in lit tests.
std::unique_ptr<StringPool> NodeStrings;
« no previous file with comments | « no previous file | src/IceCfg.cpp » ('j') | src/IceOperand.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698