cprover
c_types.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module:
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
9 
10 #ifndef CPROVER_UTIL_C_TYPES_H
11 #define CPROVER_UTIL_C_TYPES_H
12 
13 #include "std_types.h"
14 
40 
41 // This is for Java and C++
43 
44 // Turns an ID_C_c_type into a string, e.g.,
45 // ID_signed_int gets "signed int".
46 std::string c_type_as_string(const irep_idt &);
47 
48 #endif // CPROVER_UTIL_C_TYPES_H
floatbv_typet float_type()
Definition: c_types.cpp:185
bitvector_typet index_type()
Definition: c_types.cpp:16
signedbv_typet signed_long_int_type()
Definition: c_types.cpp:80
signedbv_typet signed_char_type()
Definition: c_types.cpp:142
unsignedbv_typet unsigned_int_type()
Definition: c_types.cpp:44
unsignedbv_typet unsigned_long_long_int_type()
Definition: c_types.cpp:101
unsignedbv_typet char32_t_type()
Definition: c_types.cpp:175
unsignedbv_typet unsigned_long_int_type()
Definition: c_types.cpp:94
unsignedbv_typet size_type()
Definition: c_types.cpp:58
empty_typet void_type()
Definition: c_types.cpp:253
signedbv_typet signed_int_type()
Definition: c_types.cpp:30
signedbv_typet pointer_diff_type()
Definition: c_types.cpp:228
unsignedbv_typet unsigned_char_type()
Definition: c_types.cpp:135
signedbv_typet signed_size_type()
Definition: c_types.cpp:74
bitvector_typet char_type()
Definition: c_types.cpp:114
signedbv_typet signed_long_long_int_type()
Definition: c_types.cpp:87
pointer_typet pointer_type(const typet &)
Definition: c_types.cpp:243
bitvector_typet wchar_t_type()
Definition: c_types.cpp:149
floatbv_typet long_double_type()
Definition: c_types.cpp:201
bitvector_typet enum_constant_type()
return type of enum constants
Definition: c_types.cpp:23
typet c_bool_type()
Definition: c_types.cpp:108
reference_typet reference_type(const typet &)
Definition: c_types.cpp:248
floatbv_typet double_type()
Definition: c_types.cpp:193
signedbv_typet signed_short_int_type()
Definition: c_types.cpp:37
unsignedbv_typet unsigned_short_int_type()
Definition: c_types.cpp:51
unsignedbv_typet char16_t_type()
Definition: c_types.cpp:165
std::string c_type_as_string(const irep_idt &)
Definition: c_types.cpp:259
Base class of fixed-width bit-vector types.
Definition: std_types.h:1037
dstringt has one field, an unsigned integer no which is an index into a static table of strings.
Definition: dstring.h:37
The empty type.
Definition: std_types.h:46
Fixed-width bit-vector with IEEE floating-point interpretation.
Definition: std_types.h:1386
The pointer type These are both 'bitvector_typet' (they have a width) and 'type_with_subtypet' (they ...
Definition: std_types.h:1495
The reference type.
Definition: std_types.h:1560
Fixed-width bit-vector with two's complement interpretation.
Definition: std_types.h:1272
The type of an expression, extends irept.
Definition: type.h:28
Fixed-width bit-vector with unsigned binary interpretation.
Definition: std_types.h:1223
Pre-defined types.