]> git.lizzy.rs Git - rust.git/blob - src/librustc_codegen_llvm/type_.rs
Auto merge of #55935 - alexcrichton:vs2017, r=Mark-Simulacrum
[rust.git] / src / librustc_codegen_llvm / type_.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![allow(non_upper_case_globals)]
12
13 pub use llvm::Type;
14
15 use llvm;
16 use llvm::{Bool, False, True};
17 use context::CodegenCx;
18 use rustc_codegen_ssa::traits::*;
19 use value::Value;
20
21 use rustc::util::nodemap::FxHashMap;
22 use rustc::ty::Ty;
23 use rustc::ty::layout::TyLayout;
24 use rustc_target::abi::call::{CastTarget, FnType, Reg};
25 use rustc_data_structures::small_c_str::SmallCStr;
26 use common;
27 use rustc_codegen_ssa::common::TypeKind;
28 use type_of::LayoutLlvmExt;
29 use abi::{LlvmType, FnTypeExt};
30
31 use std::fmt;
32 use std::cell::RefCell;
33
34 use libc::c_uint;
35
36 impl PartialEq for Type {
37     fn eq(&self, other: &Self) -> bool {
38         self as *const _ == other as *const _
39     }
40 }
41
42 impl fmt::Debug for Type {
43     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
44         f.write_str(&llvm::build_string(|s| unsafe {
45             llvm::LLVMRustWriteTypeToString(self, s);
46         }).expect("non-UTF8 type description from LLVM"))
47     }
48 }
49
50 impl BaseTypeMethods<'tcx> for CodegenCx<'ll, 'tcx> {
51     fn type_void(&self) -> &'ll Type {
52         unsafe {
53             llvm::LLVMVoidTypeInContext(self.llcx)
54         }
55     }
56
57     fn type_metadata(&self) -> &'ll Type {
58         unsafe {
59             llvm::LLVMRustMetadataTypeInContext(self.llcx)
60         }
61     }
62
63     fn type_i1(&self) -> &'ll Type {
64         unsafe {
65             llvm::LLVMInt1TypeInContext(self.llcx)
66         }
67     }
68
69     fn type_i8(&self) -> &'ll Type {
70         unsafe {
71             llvm::LLVMInt8TypeInContext(self.llcx)
72         }
73     }
74
75
76     fn type_i16(&self) -> &'ll Type {
77         unsafe {
78
79             llvm::LLVMInt16TypeInContext(self.llcx)
80         }
81     }
82
83     fn type_i32(&self) -> &'ll Type {
84         unsafe {
85             llvm::LLVMInt32TypeInContext(self.llcx)
86         }
87     }
88
89     fn type_i64(&self) -> &'ll Type {
90         unsafe {
91             llvm::LLVMInt64TypeInContext(self.llcx)
92         }
93     }
94
95     fn type_i128(&self) -> &'ll Type {
96         unsafe {
97             llvm::LLVMIntTypeInContext(self.llcx, 128)
98         }
99     }
100
101     fn type_ix(&self, num_bits: u64) -> &'ll Type {
102         unsafe {
103             llvm::LLVMIntTypeInContext(self.llcx, num_bits as c_uint)
104         }
105     }
106
107     fn type_isize(&self) -> &'ll Type {
108         self.isize_ty
109     }
110
111     fn type_f32(&self) -> &'ll Type {
112         unsafe {
113             llvm::LLVMFloatTypeInContext(self.llcx)
114         }
115     }
116
117     fn type_f64(&self) -> &'ll Type {
118         unsafe {
119             llvm::LLVMDoubleTypeInContext(self.llcx)
120         }
121     }
122
123     fn type_x86_mmx(&self) -> &'ll Type {
124         unsafe {
125             llvm::LLVMX86MMXTypeInContext(self.llcx)
126         }
127     }
128
129     fn type_func(
130         &self,
131         args: &[&'ll Type],
132         ret: &'ll Type
133     ) -> &'ll Type {
134         unsafe {
135             llvm::LLVMFunctionType(ret, args.as_ptr(),
136                                    args.len() as c_uint, False)
137         }
138     }
139
140     fn type_variadic_func(
141         &self,
142         args: &[&'ll Type],
143         ret: &'ll Type
144     ) -> &'ll Type {
145         unsafe {
146             llvm::LLVMFunctionType(ret, args.as_ptr(),
147                                    args.len() as c_uint, True)
148         }
149     }
150
151     fn type_struct(
152         &self,
153         els: &[&'ll Type],
154         packed: bool
155     ) -> &'ll Type {
156         unsafe {
157             llvm::LLVMStructTypeInContext(self.llcx, els.as_ptr(),
158                                           els.len() as c_uint,
159                                           packed as Bool)
160         }
161     }
162
163     fn type_named_struct(&self, name: &str) -> &'ll Type {
164         let name = SmallCStr::new(name);
165         unsafe {
166             llvm::LLVMStructCreateNamed(self.llcx, name.as_ptr())
167         }
168     }
169
170
171     fn type_array(&self, ty: &'ll Type, len: u64) -> &'ll Type {
172         unsafe {
173             llvm::LLVMRustArrayType(ty, len)
174         }
175     }
176
177     fn type_vector(&self, ty: &'ll Type, len: u64) -> &'ll Type {
178         unsafe {
179             llvm::LLVMVectorType(ty, len as c_uint)
180         }
181     }
182
183     fn type_kind(&self, ty: &'ll Type) -> TypeKind {
184         unsafe {
185             llvm::LLVMRustGetTypeKind(ty).to_generic()
186         }
187     }
188
189     fn set_struct_body(&self, ty: &'ll Type, els: &[&'ll Type], packed: bool) {
190         unsafe {
191             llvm::LLVMStructSetBody(ty, els.as_ptr(),
192                                     els.len() as c_uint, packed as Bool)
193         }
194     }
195
196     fn type_ptr_to(&self, ty: &'ll Type) -> &'ll Type {
197         assert_ne!(self.type_kind(ty), TypeKind::Function,
198                    "don't call ptr_to on function types, use ptr_to_llvm_type on FnType instead");
199         ty.ptr_to()
200     }
201
202     fn element_type(&self, ty: &'ll Type) -> &'ll Type {
203         unsafe {
204             llvm::LLVMGetElementType(ty)
205         }
206     }
207
208     fn vector_length(&self, ty: &'ll Type) -> usize {
209         unsafe {
210             llvm::LLVMGetVectorSize(ty) as usize
211         }
212     }
213
214     fn func_params_types(&self, ty: &'ll Type) -> Vec<&'ll Type> {
215         unsafe {
216             let n_args = llvm::LLVMCountParamTypes(ty) as usize;
217             let mut args = Vec::with_capacity(n_args);
218             llvm::LLVMGetParamTypes(ty, args.as_mut_ptr());
219             args.set_len(n_args);
220             args
221         }
222     }
223
224     fn float_width(&self, ty: &'ll Type) -> usize {
225         match self.type_kind(ty) {
226             TypeKind::Float => 32,
227             TypeKind::Double => 64,
228             TypeKind::X86_FP80 => 80,
229             TypeKind::FP128 | TypeKind::PPC_FP128 => 128,
230             _ => bug!("llvm_float_width called on a non-float type")
231         }
232     }
233
234     fn int_width(&self, ty: &'ll Type) -> u64 {
235         unsafe {
236             llvm::LLVMGetIntTypeWidth(ty) as u64
237         }
238     }
239
240     fn val_ty(&self, v: &'ll Value) -> &'ll Type {
241         common::val_ty(v)
242     }
243
244     fn scalar_lltypes(&self) -> &RefCell<FxHashMap<Ty<'tcx>, Self::Type>> {
245         &self.scalar_lltypes
246     }
247 }
248
249 impl Type {
250     pub fn i8_llcx(llcx: &llvm::Context) -> &Type {
251         unsafe {
252             llvm::LLVMInt8TypeInContext(llcx)
253         }
254     }
255
256     // Creates an integer type with the given number of bits, e.g. i24
257     pub fn ix_llcx(
258         llcx: &llvm::Context,
259         num_bits: u64
260     ) -> &Type {
261         unsafe {
262             llvm::LLVMIntTypeInContext(llcx, num_bits as c_uint)
263         }
264     }
265
266     pub fn i8p_llcx(llcx: &'ll llvm::Context) -> &'ll Type {
267         Type::i8_llcx(llcx).ptr_to()
268     }
269
270     fn ptr_to(&self) -> &Type {
271         unsafe {
272             llvm::LLVMPointerType(&self, 0)
273         }
274     }
275 }
276
277
278 impl LayoutTypeMethods<'tcx> for CodegenCx<'ll, 'tcx> {
279     fn backend_type(&self, layout: TyLayout<'tcx>) -> &'ll Type {
280         layout.llvm_type(self)
281     }
282     fn immediate_backend_type(&self, layout: TyLayout<'tcx>) -> &'ll Type {
283         layout.immediate_llvm_type(self)
284     }
285     fn is_backend_immediate(&self, layout: TyLayout<'tcx>) -> bool {
286         layout.is_llvm_immediate()
287     }
288     fn is_backend_scalar_pair(&self, layout: TyLayout<'tcx>) -> bool {
289         layout.is_llvm_scalar_pair()
290     }
291     fn backend_field_index(&self, layout: TyLayout<'tcx>, index: usize) -> u64 {
292         layout.llvm_field_index(index)
293     }
294     fn scalar_pair_element_backend_type<'a>(
295         &self,
296         layout: TyLayout<'tcx>,
297         index: usize,
298         immediate: bool
299     ) -> &'ll Type {
300         layout.scalar_pair_element_llvm_type(self, index, immediate)
301     }
302     fn cast_backend_type(&self, ty: &CastTarget) -> &'ll Type {
303         ty.llvm_type(self)
304     }
305     fn fn_backend_type(&self, ty: &FnType<'tcx, Ty<'tcx>>) -> &'ll Type {
306         ty.llvm_type(self)
307     }
308     fn fn_ptr_backend_type(&self, ty: &FnType<'tcx, Ty<'tcx>>) -> &'ll Type {
309         ty.ptr_to_llvm_type(self)
310     }
311     fn reg_backend_type(&self, ty: &Reg) -> &'ll Type {
312         ty.llvm_type(self)
313     }
314 }