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

Side by Side Diff: src/IceInst.def

Issue 412593002: Lower icmp operations between vector values. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Pass -filetype=obj to llvm-mc. 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 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 10 // This file defines properties of ICE instructions in the form of
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 X(Ueq, "ueq") \ 64 X(Ueq, "ueq") \
65 X(Ugt, "ugt") \ 65 X(Ugt, "ugt") \
66 X(Uge, "uge") \ 66 X(Uge, "uge") \
67 X(Ult, "ult") \ 67 X(Ult, "ult") \
68 X(Ule, "ule") \ 68 X(Ule, "ule") \
69 X(Une, "une") \ 69 X(Une, "une") \
70 X(Uno, "uno") \ 70 X(Uno, "uno") \
71 X(True, "true") 71 X(True, "true")
72 //#define X(tag, str) 72 //#define X(tag, str)
73 73
74 #define ICEINSTICMP_TABLE \ 74 #define ICEINSTICMP_TABLE \
75 /* enum value, printable string */ \ 75 /* enum value, printable string, unsigned */ \
76 X(Eq, "eq") \ 76 X(Eq, "eq", 0) \
77 X(Ne, "ne") \ 77 X(Ne, "ne", 0) \
78 X(Ugt, "ugt") \ 78 X(Ugt, "ugt", 1) \
79 X(Uge, "uge") \ 79 X(Uge, "uge", 1) \
80 X(Ult, "ult") \ 80 X(Ult, "ult", 1) \
81 X(Ule, "ule") \ 81 X(Ule, "ule", 1) \
82 X(Sgt, "sgt") \ 82 X(Sgt, "sgt", 0) \
83 X(Sge, "sge") \ 83 X(Sge, "sge", 0) \
84 X(Slt, "slt") \ 84 X(Slt, "slt", 0) \
85 X(Sle, "sle") 85 X(Sle, "sle", 0)
86 //#define X(tag, str) 86 //#define X(tag, str)
Jim Stichnoth 2014/07/23 17:29:28 Update this comment
wala 2014/07/23 20:40:36 Reverted to older version.
87 87
88 #endif // SUBZERO_SRC_ICEINST_DEF 88 #endif // SUBZERO_SRC_ICEINST_DEF
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698