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

Side by Side Diff: src/IceTypes.def

Issue 1341423002: Reflow comments to use the full width. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix spelling and rebase Created 5 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/IceUtils.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 x-macros.
11 // x-macros.
12 // 11 //
13 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===//
14 13
15 #ifndef SUBZERO_SRC_ICETYPES_DEF 14 #ifndef SUBZERO_SRC_ICETYPES_DEF
16 #define SUBZERO_SRC_ICETYPES_DEF 15 #define SUBZERO_SRC_ICETYPES_DEF
17 16
18 // Attributes of each target architecture. 17 // Attributes of each target architecture.
19 // NOTE on is_elf64 -- At some point NaCl would like to use ELF32 for all 18 // NOTE on is_elf64 -- At some point NaCl would like to use ELF32 for all ILP32
20 // ILP32 sandboxes, but for now the 64-bit architectures use ELF64: 19 // sandboxes, but for now the 64-bit architectures use ELF64:
21 // https://code.google.com/p/nativeclient/issues/detail?id=349 20 // https://code.google.com/p/nativeclient/issues/detail?id=349 TODO: Whoever
22 // TODO: Whoever adds AArch64 will need to set ABI e_flags. 21 // adds AArch64 will need to set ABI e_flags.
23 #define TARGETARCH_TABLE \ 22 #define TARGETARCH_TABLE \
24 /* enum value, printable string, is_elf64, e_machine, e_flags */ \ 23 /* enum value, printable string, is_elf64, e_machine, e_flags */ \
25 X(Target_X8632, "x86-32", false, EM_386, 0) \ 24 X(Target_X8632, "x86-32", false, EM_386, 0) \
26 X(Target_X8664, "x86-64", true, EM_X86_64, 0) \ 25 X(Target_X8664, "x86-64", true, EM_X86_64, 0) \
27 X(Target_ARM32, "arm32", false, EM_ARM, EF_ARM_EABI_VER5) \ 26 X(Target_ARM32, "arm32", false, EM_ARM, EF_ARM_EABI_VER5) \
28 X(Target_ARM64, "arm64", true, EM_AARCH64, 0) \ 27 X(Target_ARM64, "arm64", true, EM_AARCH64, 0) \
29 X(Target_MIPS32,"mips32", false, EM_MIPS, 0) \ 28 X(Target_MIPS32,"mips32", false, EM_MIPS, 0) \
30 //#define X(tag, str, is_elf64, e_machine, e_flags) 29 //#define X(tag, str, is_elf64, e_machine, e_flags)
31 30
32 #define ICETYPE_TABLE \ 31 #define ICETYPE_TABLE \
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 X(IceType_v4i1, 1, 1, 0, 0, 0, IceType_v4i1) \ 69 X(IceType_v4i1, 1, 1, 0, 0, 0, IceType_v4i1) \
71 X(IceType_v8i1, 1, 1, 0, 0, 0, IceType_v8i1) \ 70 X(IceType_v8i1, 1, 1, 0, 0, 0, IceType_v8i1) \
72 X(IceType_v16i1, 1, 1, 0, 0, 0, IceType_v16i1) \ 71 X(IceType_v16i1, 1, 1, 0, 0, 0, IceType_v16i1) \
73 X(IceType_v16i8, 1, 1, 0, 1, 1, IceType_v16i1) \ 72 X(IceType_v16i8, 1, 1, 0, 1, 1, IceType_v16i1) \
74 X(IceType_v8i16, 1, 1, 0, 1, 1, IceType_v8i1) \ 73 X(IceType_v8i16, 1, 1, 0, 1, 1, IceType_v8i1) \
75 X(IceType_v4i32, 1, 1, 0, 1, 1, IceType_v4i1) \ 74 X(IceType_v4i32, 1, 1, 0, 1, 1, IceType_v4i1) \
76 X(IceType_v4f32, 1, 0, 1, 0, 1, IceType_v4i1) \ 75 X(IceType_v4f32, 1, 0, 1, 0, 1, IceType_v4i1) \
77 //#define X(tag, IsVec, IsInt, IsFloat, IsIntArith, IsLoadStore, CompareResult) 76 //#define X(tag, IsVec, IsInt, IsFloat, IsIntArith, IsLoadStore, CompareResult)
78 77
79 #endif // SUBZERO_SRC_ICETYPES_DEF 78 #endif // SUBZERO_SRC_ICETYPES_DEF
OLDNEW
« no previous file with comments | « src/IceTypes.cpp ('k') | src/IceUtils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698