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

Side by Side Diff: src/IceTypes.h

Issue 576243002: Add switch instruction to Subzero bitcode reader. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues in patch set 2. 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 | « no previous file | src/IceTypes.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.h - Primitive ICE types -------------*- C++ -*-===// 1 //===- subzero/src/IceTypes.h - Primitive 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 declares a few properties of the primitive types allowed 10 // This file declares a few properties of the primitive types allowed
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 bool isVectorFloatingType(Type Ty); 59 bool isVectorFloatingType(Type Ty);
60 60
61 /// Returns true if the given type can be used in a load instruction. 61 /// Returns true if the given type can be used in a load instruction.
62 bool isLoadStoreType(Type Ty); 62 bool isLoadStoreType(Type Ty);
63 63
64 /// Returns type generated by applying the compare instructions (icmp and fcmp) 64 /// Returns type generated by applying the compare instructions (icmp and fcmp)
65 /// to arguments of the given type. Returns IceType_void if compare is not 65 /// to arguments of the given type. Returns IceType_void if compare is not
66 /// allowed. 66 /// allowed.
67 Type getCompareResultType(Type Ty); 67 Type getCompareResultType(Type Ty);
68 68
69 /// Returns the number of bits in a scalar integer type.
70 SizeT getScalarIntBitWidth(Type Ty);
71
69 template <typename StreamType> 72 template <typename StreamType>
70 inline StreamType &operator<<(StreamType &Str, const Type &Ty) { 73 inline StreamType &operator<<(StreamType &Str, const Type &Ty) {
71 Str << typeString(Ty); 74 Str << typeString(Ty);
72 return Str; 75 return Str;
73 } 76 }
74 77
75 } // end of namespace Ice 78 } // end of namespace Ice
76 79
77 #endif // SUBZERO_SRC_ICETYPES_H 80 #endif // SUBZERO_SRC_ICETYPES_H
OLDNEW
« no previous file with comments | « no previous file | src/IceTypes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698