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

Unified Diff: src/IceInst.def

Issue 2124973005: Selectively invert ICMP operands for better address optimization (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Address comments Created 4 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
Index: src/IceInst.def
diff --git a/src/IceInst.def b/src/IceInst.def
index 6bd2efbf1c8463f69bb9dcd9ea969f82209c72f9..72ad03dbf7238627f30a5be7b18729e63cd62071 100644
--- a/src/IceInst.def
+++ b/src/IceInst.def
@@ -88,17 +88,17 @@
//#define X(tag, str)
#define ICEINSTICMP_TABLE \
- /* enum value, printable string */ \
- X(Eq, "eq") \
- X(Ne, "ne") \
- X(Ugt, "ugt") \
- X(Uge, "uge") \
- X(Ult, "ult") \
- X(Ule, "ule") \
- X(Sgt, "sgt") \
- X(Sge, "sge") \
- X(Slt, "slt") \
- X(Sle, "sle")
-//#define X(tag, str)
+ /* enum value, inverse, printable string */ \
John 2016/07/08 18:21:08 this is not the inverse of the condition... I woul
Jim Stichnoth 2016/07/10 13:25:32 Yeah, I think I would agree. My suggestion now is
manasijm 2016/07/11 22:27:04 Done.
+ X(Eq, InstIcmp::ICond::Eq, "eq") \
+ X(Ne, InstIcmp::ICond::Ne, "ne") \
+ X(Ugt, InstIcmp::ICond::Ult, "ugt") \
+ X(Uge, InstIcmp::ICond::Ule, "uge") \
+ X(Ult, InstIcmp::ICond::Ugt, "ult") \
+ X(Ule, InstIcmp::ICond::Uge, "ule") \
+ X(Sgt, InstIcmp::ICond::Slt, "sgt") \
+ X(Sge, InstIcmp::ICond::Sle, "sge") \
+ X(Slt, InstIcmp::ICond::Sgt, "slt") \
+ X(Sle, InstIcmp::ICond::Sge, "sle")
+//#define X(tag, inverse, str)
#endif // SUBZERO_SRC_ICEINST_DEF
« src/IceInst.cpp ('K') | « src/IceInst.cpp ('k') | src/IceTargetLowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698