]> git.lizzy.rs Git - rust.git/blob - src/allocator.rs
Rustup to rustc 1.37.0-nightly (2887008e0 2019-06-12)
[rust.git] / src / allocator.rs
1 // Copyright 2017 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 use crate::prelude::*;
12
13 use rustc::middle::allocator::AllocatorKind;
14 use rustc_allocator::{AllocatorTy, ALLOCATOR_METHODS};
15
16 /// Returns whether an allocator shim was created
17 pub fn codegen(sess: &Session, module: &mut Module<impl Backend + 'static>) -> bool {
18     let any_dynamic_crate = sess.dependency_formats.borrow().iter().any(|(_, list)| {
19         use rustc::middle::dependency_format::Linkage;
20         list.iter().any(|&linkage| linkage == Linkage::Dynamic)
21     });
22     if any_dynamic_crate {
23         false
24     } else if let Some(kind) = *sess.allocator_kind.get() {
25         codegen_inner(module, kind);
26         true
27     } else {
28         false
29     }
30 }
31
32 pub fn codegen_inner(module: &mut Module<impl Backend + 'static>, kind: AllocatorKind) {
33     let usize_ty = module.target_config().pointer_type();
34
35     for method in ALLOCATOR_METHODS {
36         let mut arg_tys = Vec::with_capacity(method.inputs.len());
37         for ty in method.inputs.iter() {
38             match *ty {
39                 AllocatorTy::Layout => {
40                     arg_tys.push(usize_ty); // size
41                     arg_tys.push(usize_ty); // align
42                 }
43                 AllocatorTy::Ptr => arg_tys.push(usize_ty),
44                 AllocatorTy::Usize => arg_tys.push(usize_ty),
45
46                 AllocatorTy::ResultPtr | AllocatorTy::Unit => panic!("invalid allocator arg"),
47             }
48         }
49         let output = match method.output {
50             AllocatorTy::ResultPtr => Some(usize_ty),
51             AllocatorTy::Unit => None,
52
53             AllocatorTy::Layout | AllocatorTy::Usize | AllocatorTy::Ptr => {
54                 panic!("invalid allocator output")
55             }
56         };
57
58         let sig = Signature {
59             call_conv: CallConv::SystemV,
60             params: arg_tys.iter().cloned().map(AbiParam::new).collect(),
61             returns: output.into_iter().map(AbiParam::new).collect(),
62         };
63
64         let caller_name = format!("__rust_{}", method.name);
65         let callee_name = kind.fn_name(method.name);
66         //eprintln!("Codegen allocator shim {} -> {} ({:?} -> {:?})", caller_name, callee_name, sig.params, sig.returns);
67
68         let func_id = module
69             .declare_function(&caller_name, Linkage::Export, &sig)
70             .unwrap();
71
72         let callee_func_id = module
73             .declare_function(&callee_name, Linkage::Import, &sig)
74             .unwrap();
75
76         let mut ctx = Context::new();
77         ctx.func = Function::with_name_signature(ExternalName::user(0, 0), sig.clone());
78         {
79             let mut func_ctx = FunctionBuilderContext::new();
80             let mut bcx = FunctionBuilder::new(&mut ctx.func, &mut func_ctx);
81
82             let ebb = bcx.create_ebb();
83             bcx.switch_to_block(ebb);
84             let args = arg_tys
85                 .into_iter()
86                 .map(|ty| bcx.append_ebb_param(ebb, ty))
87                 .collect::<Vec<Value>>();
88
89             let callee_func_ref = module.declare_func_in_func(callee_func_id, &mut bcx.func);
90
91             let call_inst = bcx.ins().call(callee_func_ref, &args);
92
93             let results = bcx.inst_results(call_inst).to_vec(); // Clone to prevent borrow error
94             bcx.ins().return_(&results);
95             bcx.seal_all_blocks();
96             bcx.finalize();
97         }
98         module.define_function(func_id, &mut ctx).unwrap();
99     }
100 }