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

Side by Side 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 unified diff | Download patch
OLDNEW
1 //===- subzero/src/IceInst.def - X-macros for ICE instructions -*- C++ -*-===// 1 //===- subzero/src/IceInst.def - X-macros for ICE instructions -*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This file defines properties of ICE instructions in the form of x-macros. 10 // This file defines properties of ICE instructions in the form of x-macros.
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 X(Ugt, "ugt") \ 81 X(Ugt, "ugt") \
82 X(Uge, "uge") \ 82 X(Uge, "uge") \
83 X(Ult, "ult") \ 83 X(Ult, "ult") \
84 X(Ule, "ule") \ 84 X(Ule, "ule") \
85 X(Une, "une") \ 85 X(Une, "une") \
86 X(Uno, "uno") \ 86 X(Uno, "uno") \
87 X(True, "true") 87 X(True, "true")
88 //#define X(tag, str) 88 //#define X(tag, str)
89 89
90 #define ICEINSTICMP_TABLE \ 90 #define ICEINSTICMP_TABLE \
91 /* enum value, printable string */ \ 91 /* 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.
92 X(Eq, "eq") \ 92 X(Eq, InstIcmp::ICond::Eq, "eq") \
93 X(Ne, "ne") \ 93 X(Ne, InstIcmp::ICond::Ne, "ne") \
94 X(Ugt, "ugt") \ 94 X(Ugt, InstIcmp::ICond::Ult, "ugt") \
95 X(Uge, "uge") \ 95 X(Uge, InstIcmp::ICond::Ule, "uge") \
96 X(Ult, "ult") \ 96 X(Ult, InstIcmp::ICond::Ugt, "ult") \
97 X(Ule, "ule") \ 97 X(Ule, InstIcmp::ICond::Uge, "ule") \
98 X(Sgt, "sgt") \ 98 X(Sgt, InstIcmp::ICond::Slt, "sgt") \
99 X(Sge, "sge") \ 99 X(Sge, InstIcmp::ICond::Sle, "sge") \
100 X(Slt, "slt") \ 100 X(Slt, InstIcmp::ICond::Sgt, "slt") \
101 X(Sle, "sle") 101 X(Sle, InstIcmp::ICond::Sge, "sle")
102 //#define X(tag, str) 102 //#define X(tag, inverse, str)
103 103
104 #endif // SUBZERO_SRC_ICEINST_DEF 104 #endif // SUBZERO_SRC_ICEINST_DEF
OLDNEW
« 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