10 struct type_descriptor
{
16 struct source_location
{
17 const char *file_name
;
19 unsigned long reported
;
27 struct overflow_data
{
28 struct source_location location
;
29 struct type_descriptor
*type
;
32 struct type_mismatch_data
{
33 struct source_location location
;
34 struct type_descriptor
*type
;
35 unsigned long alignment
;
36 unsigned char type_check_kind
;
39 struct nonnull_arg_data
{
40 struct source_location location
;
41 struct source_location attr_location
;
45 struct nonnull_return_data
{
46 struct source_location location
;
47 struct source_location attr_location
;
50 struct vla_bound_data
{
51 struct source_location location
;
52 struct type_descriptor
*type
;
55 struct out_of_bounds_data
{
56 struct source_location location
;
57 struct type_descriptor
*array_type
;
58 struct type_descriptor
*index_type
;
61 struct shift_out_of_bounds_data
{
62 struct source_location location
;
63 struct type_descriptor
*lhs_type
;
64 struct type_descriptor
*rhs_type
;
67 struct unreachable_data
{
68 struct source_location location
;
71 struct invalid_value_data
{
72 struct source_location location
;
73 struct type_descriptor
*type
;
76 #if defined(CONFIG_ARCH_SUPPORTS_INT128) && defined(__SIZEOF_INT128__)
77 typedef __int128 s_max
;
78 typedef unsigned __int128 u_max
;