]> git.lizzy.rs Git - rust.git/blob - src/allocator.rs
Change the CallConv for "rust" abi functions to "SystemV" to match the "C" abi
[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 pub fn codegen(module: &mut Module<impl Backend + 'static>, kind: AllocatorKind) {
17     let usize_ty = module.target_config().pointer_type();
18
19     for method in ALLOCATOR_METHODS {
20         let mut arg_tys = Vec::with_capacity(method.inputs.len());
21         for ty in method.inputs.iter() {
22             match *ty {
23                 AllocatorTy::Layout => {
24                     arg_tys.push(usize_ty); // size
25                     arg_tys.push(usize_ty); // align
26                 }
27                 AllocatorTy::Ptr => arg_tys.push(usize_ty),
28                 AllocatorTy::Usize => arg_tys.push(usize_ty),
29
30                 AllocatorTy::ResultPtr | AllocatorTy::Unit => panic!("invalid allocator arg"),
31             }
32         }
33         let output = match method.output {
34             AllocatorTy::ResultPtr => Some(usize_ty),
35             AllocatorTy::Unit => None,
36
37             AllocatorTy::Layout | AllocatorTy::Usize | AllocatorTy::Ptr => {
38                 panic!("invalid allocator output")
39             }
40         };
41
42         let sig = Signature {
43             call_conv: CallConv::SystemV,
44             params: arg_tys.iter().cloned().map(AbiParam::new).collect(),
45             returns: output.into_iter().map(AbiParam::new).collect(),
46         };
47
48         let caller_name = format!("__rust_{}", method.name);
49         let callee_name = kind.fn_name(method.name);
50         //eprintln!("Codegen allocator shim {} -> {} ({:?} -> {:?})", caller_name, callee_name, sig.params, sig.returns);
51
52         let func_id = module
53             .declare_function(&caller_name, Linkage::Export, &sig)
54             .unwrap();
55
56         let callee_func_id = module
57             .declare_function(&callee_name, Linkage::Import, &sig)
58             .unwrap();
59
60         let mut ctx = Context::new();
61         ctx.func = Function::with_name_signature(ExternalName::user(0, 0), sig.clone());
62         {
63             let mut func_ctx = FunctionBuilderContext::new();
64             let mut bcx = FunctionBuilder::new(&mut ctx.func, &mut func_ctx);
65
66             let ebb = bcx.create_ebb();
67             bcx.switch_to_block(ebb);
68             let args = arg_tys
69                 .into_iter()
70                 .map(|ty| bcx.append_ebb_param(ebb, ty))
71                 .collect::<Vec<Value>>();
72
73             let callee_func_ref = module.declare_func_in_func(callee_func_id, &mut bcx.func);
74
75             let call_inst = bcx.ins().call(callee_func_ref, &args);
76
77             let results = bcx.inst_results(call_inst).to_vec(); // Clone to prevent borrow error
78             bcx.ins().return_(&results);
79             bcx.seal_all_blocks();
80             bcx.finalize();
81         }
82         module.define_function(func_id, &mut ctx).unwrap();
83     }
84 }