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

Side by Side Diff: IceTypes.h

Issue 205613002: Initial skeleton of Subzero. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 9 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
« IceCfg.h ('K') | « IceOperand.cpp ('k') | 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
(Empty)
1 // -*- Mode: c++ -*-
2 /* Copyright 2014 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can
4 * be found in the LICENSE file.
5 */
6
7 #ifndef _IceTypes_h
8 #define _IceTypes_h
9
10 enum IceType {
11 IceType_void,
12 IceType_i1,
13 IceType_i8,
14 IceType_i16,
15 IceType_i32,
16 IceType_i64,
17 IceType_f32,
18 IceType_f64,
19 IceType_NUM
20 };
21
22 uint32_t iceTypeWidth(IceType T);
23 IceOstream &operator<<(class IceOstream &Str, IceType T);
24
25 #endif // _IceTypes_h
OLDNEW
« IceCfg.h ('K') | « IceOperand.cpp ('k') | IceTypes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698