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

Side by Side Diff: src/IceTypes.def

Issue 659513005: Allow conditional lit tests in Subzero, based on build flags. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add -Wno-error=unused-parameter Created 6 years, 1 month 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
« no previous file with comments | « src/IceTypes.cpp ('k') | src/llvm2ice.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceTypes.def - X-macros for ICE types --------*- C++ -*-===// 1 //===- subzero/src/IceTypes.def - X-macros for ICE types --------*- 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 primitive types in the form of 10 // This file defines properties of ICE primitive types in the form of
11 // x-macros. 11 // x-macros.
12 // 12 //
13 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===//
14 14
15 #ifndef SUBZERO_SRC_ICETYPES_DEF 15 #ifndef SUBZERO_SRC_ICETYPES_DEF
16 #define SUBZERO_SRC_ICETYPES_DEF 16 #define SUBZERO_SRC_ICETYPES_DEF
17 17
18 #define TARGETARCH_TABLE \
19 /* enum value, printable string */ \
20 X(Target_X8632, "x86-32") \
21 X(Target_X8664, "x86-64") \
22 X(Target_ARM32, "arm32") \
23 X(Target_ARM64, "arm64") \
24 //#define X(tag, str)
25
18 #define ICETYPE_TABLE \ 26 #define ICETYPE_TABLE \
19 /* enum value, size, align, # elts, element type, printable string */ \ 27 /* enum value, size, align, # elts, element type, printable string */ \
20 /* (size and alignment in bytes) */ \ 28 /* (size and alignment in bytes) */ \
21 X(IceType_void, 0, 0, 1, IceType_void, "void") \ 29 X(IceType_void, 0, 0, 1, IceType_void, "void") \
22 X(IceType_i1, 1, 1, 1, IceType_i1, "i1") \ 30 X(IceType_i1, 1, 1, 1, IceType_i1, "i1") \
23 X(IceType_i8, 1, 1, 1, IceType_i8, "i8") \ 31 X(IceType_i8, 1, 1, 1, IceType_i8, "i8") \
24 X(IceType_i16, 2, 1, 1, IceType_i16, "i16") \ 32 X(IceType_i16, 2, 1, 1, IceType_i16, "i16") \
25 X(IceType_i32, 4, 1, 1, IceType_i32, "i32") \ 33 X(IceType_i32, 4, 1, 1, IceType_i32, "i32") \
26 X(IceType_i64, 8, 1, 1, IceType_i64, "i64") \ 34 X(IceType_i64, 8, 1, 1, IceType_i64, "i64") \
27 X(IceType_f32, 4, 4, 1, IceType_f32, "float") \ 35 X(IceType_f32, 4, 4, 1, IceType_f32, "float") \
(...skipping 28 matching lines...) Expand all
56 X(IceType_v4i1, 1, 1, 0, 0, 0, IceType_v4i1) \ 64 X(IceType_v4i1, 1, 1, 0, 0, 0, IceType_v4i1) \
57 X(IceType_v8i1, 1, 1, 0, 0, 0, IceType_v8i1) \ 65 X(IceType_v8i1, 1, 1, 0, 0, 0, IceType_v8i1) \
58 X(IceType_v16i1, 1, 1, 0, 0, 0, IceType_v16i1) \ 66 X(IceType_v16i1, 1, 1, 0, 0, 0, IceType_v16i1) \
59 X(IceType_v16i8, 1, 1, 0, 1, 1, IceType_v16i1) \ 67 X(IceType_v16i8, 1, 1, 0, 1, 1, IceType_v16i1) \
60 X(IceType_v8i16, 1, 1, 0, 1, 1, IceType_v8i1) \ 68 X(IceType_v8i16, 1, 1, 0, 1, 1, IceType_v8i1) \
61 X(IceType_v4i32, 1, 1, 0, 1, 1, IceType_v4i1) \ 69 X(IceType_v4i32, 1, 1, 0, 1, 1, IceType_v4i1) \
62 X(IceType_v4f32, 1, 0, 1, 0, 1, IceType_v4i1) \ 70 X(IceType_v4f32, 1, 0, 1, 0, 1, IceType_v4i1) \
63 //#define X(tag, IsVec, IsInt, IsFloat, IsIntArith, IsLoadStore, CompareResult) 71 //#define X(tag, IsVec, IsInt, IsFloat, IsIntArith, IsLoadStore, CompareResult)
64 72
65 #endif // SUBZERO_SRC_ICETYPES_DEF 73 #endif // SUBZERO_SRC_ICETYPES_DEF
OLDNEW
« no previous file with comments | « src/IceTypes.cpp ('k') | src/llvm2ice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698