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

Side by Side Diff: src/IceTypes.def

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 13. Created 6 years, 3 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
« no previous file with comments | « src/IceTypes.cpp ('k') | src/PNaClTranslator.h » ('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
(...skipping 17 matching lines...) Expand all
28 X(IceType_f64, 8, 8, 1, IceType_f64, "double") \ 28 X(IceType_f64, 8, 8, 1, IceType_f64, "double") \
29 X(IceType_v4i1, 16, 1, 4, IceType_i1, "<4 x i1>") \ 29 X(IceType_v4i1, 16, 1, 4, IceType_i1, "<4 x i1>") \
30 X(IceType_v8i1, 16, 1, 8, IceType_i1, "<8 x i1>") \ 30 X(IceType_v8i1, 16, 1, 8, IceType_i1, "<8 x i1>") \
31 X(IceType_v16i1, 16, 1, 16, IceType_i1, "<16 x i1>") \ 31 X(IceType_v16i1, 16, 1, 16, IceType_i1, "<16 x i1>") \
32 X(IceType_v16i8, 16, 1, 16, IceType_i8, "<16 x i8>") \ 32 X(IceType_v16i8, 16, 1, 16, IceType_i8, "<16 x i8>") \
33 X(IceType_v8i16, 16, 2, 8, IceType_i16, "<8 x i16>") \ 33 X(IceType_v8i16, 16, 2, 8, IceType_i16, "<8 x i16>") \
34 X(IceType_v4i32, 16, 4, 4, IceType_i32, "<4 x i32>") \ 34 X(IceType_v4i32, 16, 4, 4, IceType_i32, "<4 x i32>") \
35 X(IceType_v4f32, 16, 4, 4, IceType_f32, "<4 x float>") \ 35 X(IceType_v4f32, 16, 4, 4, IceType_f32, "<4 x float>") \
36 //#define X(tag, size, align, elts, elty, str) 36 //#define X(tag, size, align, elts, elty, str)
37 37
38 // Dictionary:
39 // V - Is vector type.
40 // I - Is integer value (scalar or vector).
41 // F - Is floating point value (scalar or vector).
42 // IA - Is integer arithmetic type
43 #define ICETYPE_PROPS_TABLE \
44 /* Enum Value V I F IA */ \
45 X(IceType_void, 0, 0, 0, 0) \
46 X(IceType_i1, 0, 1, 0, 0) \
47 X(IceType_i8, 0, 1, 0, 1) \
48 X(IceType_i16, 0, 1, 0, 1) \
49 X(IceType_i32, 0, 1, 0, 1) \
50 X(IceType_i64, 0, 1, 0, 1) \
51 X(IceType_f32, 0, 0, 1, 0) \
52 X(IceType_f64, 0, 0, 1, 0) \
53 X(IceType_v4i1, 1, 1, 0, 0) \
54 X(IceType_v8i1, 1, 1, 0, 0) \
55 X(IceType_v16i1, 1, 1, 0, 0) \
56 X(IceType_v16i8, 1, 1, 0, 1) \
57 X(IceType_v8i16, 1, 1, 0, 1) \
58 X(IceType_v4i32, 1, 1, 0, 1) \
59 X(IceType_v4f32, 1, 0, 1, 0) \
60 //#define X(tag, IsVec, IsInt, IsFloat, IsIntArith)
61
38 #endif // SUBZERO_SRC_ICETYPES_DEF 62 #endif // SUBZERO_SRC_ICETYPES_DEF
OLDNEW
« no previous file with comments | « src/IceTypes.cpp ('k') | src/PNaClTranslator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698