Last change
on this file since c5f69fd was
c5f69fd,
checked in by Peter A. Buhr <pabuhr@…>, 8 weeks ago
|
clean up naming of float-point types, and start to add new ARM floating-point types
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[7a780ad] | 1 | // |
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo |
---|
| 3 | // |
---|
| 4 | // The contents of this file are covered under the licence agreement in the |
---|
| 5 | // file "LICENCE" distributed with Cforall. |
---|
| 6 | // |
---|
| 7 | // BasicKind.hpp -- Declares all kinds of basic types. |
---|
| 8 | // |
---|
| 9 | // Author : Andrew Beach |
---|
| 10 | // Created On : Thu Apr 18 14:00:00 2024 |
---|
[c5f69fd] | 11 | // Last Modified By : Peter A. Buhr |
---|
| 12 | // Last Modified On : Mon Sep 9 20:51:13 2024 |
---|
| 13 | // Update Count : 2 |
---|
[7a780ad] | 14 | // |
---|
| 15 | |
---|
| 16 | #pragma once |
---|
| 17 | |
---|
| 18 | namespace ast { |
---|
| 19 | |
---|
| 20 | // GENERATED START, DO NOT EDIT |
---|
[b2ea0cd] | 21 | // GENERATED BY BasicTypes-gen.cpp |
---|
[7a780ad] | 22 | enum BasicKind { |
---|
| 23 | Bool, |
---|
| 24 | Char, |
---|
| 25 | SignedChar, |
---|
| 26 | UnsignedChar, |
---|
| 27 | ShortSignedInt, |
---|
| 28 | ShortUnsignedInt, |
---|
| 29 | SignedInt, |
---|
| 30 | UnsignedInt, |
---|
| 31 | LongSignedInt, |
---|
| 32 | LongUnsignedInt, |
---|
| 33 | LongLongSignedInt, |
---|
| 34 | LongLongUnsignedInt, |
---|
| 35 | SignedInt128, |
---|
| 36 | UnsignedInt128, |
---|
[c5f69fd] | 37 | Float16, |
---|
| 38 | Float16Complex, |
---|
| 39 | Float32, |
---|
| 40 | Float32Complex, |
---|
[7a780ad] | 41 | Float, |
---|
| 42 | FloatComplex, |
---|
[c5f69fd] | 43 | Float32x, |
---|
| 44 | Float32xComplex, |
---|
| 45 | Float64, |
---|
| 46 | Float64Complex, |
---|
[7a780ad] | 47 | Double, |
---|
| 48 | DoubleComplex, |
---|
[c5f69fd] | 49 | Float64x, |
---|
| 50 | Float64xComplex, |
---|
| 51 | Float80, |
---|
| 52 | Float128, |
---|
| 53 | Float128Complex, |
---|
[7a780ad] | 54 | uuFloat128, |
---|
| 55 | LongDouble, |
---|
| 56 | LongDoubleComplex, |
---|
[c5f69fd] | 57 | Float128x, |
---|
| 58 | Float128xComplex, |
---|
[7a780ad] | 59 | NUMBER_OF_BASIC_TYPES, |
---|
| 60 | MAX_INTEGER_TYPE = UnsignedInt128, |
---|
| 61 | }; |
---|
| 62 | // GENERATED END |
---|
| 63 | |
---|
| 64 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.