Go to the documentation of this file.
24 #ifndef FIRM_TYPEREP_H
25 #define FIRM_TYPEREP_H
122 IR_LINKAGE_DEFAULT = 0,
373 unsigned char offset);
388 #define IR_VTABLE_NUM_NOT_SET ((unsigned)(-1))
452 #define IR_VA_START_PARAMETER_NUMBER ((size_t)-1)
706 allocation_automatic,
707 allocation_parameter,
718 peculiarity_existent,
719 peculiarity_description,
720 peculiarity_inherited
790 tpo_uninitialized = 0,
856 #define is_SuperClass_of(high, low) is_SubClass_of(low, high)
864 #define is_SuperClass_ptr_of(low, high) is_SubClass_ptr_of(high, low)
1027 ir_class_casts_state_max
1360 #define INVALID_MEMBER_INDEX ((size_t)-1)
1701 #define cc_cdecl_set (0)
1703 #define cc_stdcall_set cc_callee_clear_stk
1705 #define cc_fastcall_set (cc_reg_param|cc_callee_clear_stk)
1710 #define IS_CDECL(cc_mask) (((cc_mask) & cc_bits) == cc_cdecl_set)
1715 #define IS_STDCALL(cc_mask) (((cc_mask) & cc_bits) == cc_stdcall_set)
1720 #define IS_FASTCALL(cc_mask) (((cc_mask) & cc_bits) == cc_fastcall_set)
1725 #define SET_CDECL(cc_mask) (((cc_mask) & ~cc_bits) | cc_cdecl_set)
1730 #define SET_STDCALL(cc_mask) (((cc_mask) & ~cc_bits) | cc_stdcall_set)
1735 #define SET_FASTCALL(cc_mask) (((cc_mask) & ~cc_bits) | cc_fastcall_set)
1810 int lower_bound,
int upper_bound);
2256 unsigned alignment,
int at_start);