Lines Matching defs:gcc

15     pub fn type_ix(&self, num_bits: u64) -> Type<'gcc> {  in type_ix()
31 pub fn type_void(&self) -> Type<'gcc> { in type_void()
35 pub fn type_size_t(&self) -> Type<'gcc> { in type_size_t()
39 pub fn type_u8(&self) -> Type<'gcc> { in type_u8()
43 pub fn type_u16(&self) -> Type<'gcc> { in type_u16()
47 pub fn type_u32(&self) -> Type<'gcc> { in type_u32()
51 pub fn type_u64(&self) -> Type<'gcc> { in type_u64()
55 pub fn type_u128(&self) -> Type<'gcc> { in type_u128()
59 pub fn type_pointee_for_align(&self, align: Align) -> Type<'gcc> { in type_pointee_for_align()
67 fn type_i1(&self) -> Type<'gcc> { in type_i1()
71 fn type_i8(&self) -> Type<'gcc> { in type_i8()
75 fn type_i16(&self) -> Type<'gcc> { in type_i16()
79 fn type_i32(&self) -> Type<'gcc> { in type_i32()
83 fn type_i64(&self) -> Type<'gcc> { in type_i64()
87 fn type_i128(&self) -> Type<'gcc> { in type_i128()
91 fn type_isize(&self) -> Type<'gcc> { in type_isize()
95 fn type_f32(&self) -> Type<'gcc> { in type_f32()
99 fn type_f64(&self) -> Type<'gcc> { in type_f64()
103 fn type_func(&self, params: &[Type<'gcc>], return_type: Type<'gcc>) -> Type<'gcc> { in type_func()
107 fn type_struct(&self, fields: &[Type<'gcc>], _packed: bool) -> Type<'gcc> { in type_struct()
134 fn type_ptr_to(&self, ty: Type<'gcc>) -> Type<'gcc> { in type_ptr_to()
138 fn type_ptr_to_ext(&self, ty: Type<'gcc>, _address_space: AddressSpace) -> Type<'gcc> { in type_ptr_to_ext()
143 fn element_type(&self, ty: Type<'gcc>) -> Type<'gcc> { in element_type()
198 fn val_ty(&self, value: RValue<'gcc>) -> Type<'gcc> { in val_ty()
204 pub fn type_padding_filler(&self, size: Size, align: Align) -> Type<'gcc> { in type_padding_filler()
212 pub fn set_struct_body(&self, typ: Struct<'gcc>, fields: &[Type<'gcc>], _packed: bool) { in set_struct_body()
220 pub fn type_named_struct(&self, name: &str) -> Struct<'gcc> { in type_named_struct()
224 pub fn type_array(&self, ty: Type<'gcc>, mut len: u64) -> Type<'gcc> { in type_array()
246 pub fn struct_fields<'gcc, 'tcx>(cx: &CodegenCx<'gcc, 'tcx>, layout: TyAndLayout<'tcx>) -> (Vec<Typ… in struct_fields()