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

Unified Diff: src/IceInst.cpp

Issue 395193005: Start processing function blocks in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues in patch set 10. Created 6 years, 5 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 | « src/IceInst.h ('k') | src/IceTranslator.h » ('j') | src/IceTypeConverter.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInst.cpp
diff --git a/src/IceInst.cpp b/src/IceInst.cpp
index af7152f0a690b8b221b58ae9d0a35b4234fbb60d..bec842100a97d25a01d5c5f5b374c2c65fbabf99 100644
--- a/src/IceInst.cpp
+++ b/src/IceInst.cpp
@@ -228,6 +228,12 @@ InstArithmetic::InstArithmetic(Cfg *Func, OpKind Op, Variable *Dest,
addSource(Source2);
}
+const char *InstArithmetic::getOpName(OpKind Op) {
+ size_t OpIndex = static_cast<size_t>(Op);
+ return OpIndex < InstArithmeticAttributesSize
Jim Stichnoth 2014/08/01 18:05:33 Instead of "OpIndex < InstArithmeticAttributesSize
Karl 2014/08/25 17:46:53 Done.
+ ? InstArithmeticAttributes[OpIndex].DisplayString : "???";
+}
+
bool InstArithmetic::isCommutative() const {
return InstArithmeticAttributes[getOp()].IsCommutative;
}
« no previous file with comments | « src/IceInst.h ('k') | src/IceTranslator.h » ('j') | src/IceTypeConverter.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698