]> git.lizzy.rs Git - rust.git/blob - src/librustc_allocator/lib.rs
Use the GlobalAlloc trait for #[global_allocator]
[rust.git] / src / librustc_allocator / lib.rs
1 // Copyright 2016 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 #![feature(rustc_private)]
12
13 extern crate rustc;
14 extern crate rustc_errors;
15 extern crate syntax;
16 extern crate syntax_pos;
17
18 pub mod expand;
19
20 pub static ALLOCATOR_METHODS: &[AllocatorMethod] = &[
21     AllocatorMethod {
22         name: "alloc",
23         inputs: &[AllocatorTy::Layout],
24         output: AllocatorTy::ResultPtr,
25     },
26     AllocatorMethod {
27         name: "dealloc",
28         inputs: &[AllocatorTy::Ptr, AllocatorTy::Layout],
29         output: AllocatorTy::Unit,
30     },
31     AllocatorMethod {
32         name: "realloc",
33         inputs: &[AllocatorTy::Ptr, AllocatorTy::Layout, AllocatorTy::Usize],
34         output: AllocatorTy::ResultPtr,
35     },
36     AllocatorMethod {
37         name: "alloc_zeroed",
38         inputs: &[AllocatorTy::Layout],
39         output: AllocatorTy::ResultPtr,
40     },
41 ];
42
43 pub struct AllocatorMethod {
44     pub name: &'static str,
45     pub inputs: &'static [AllocatorTy],
46     pub output: AllocatorTy,
47 }
48
49 pub enum AllocatorTy {
50     Layout,
51     Ptr,
52     ResultPtr,
53     Unit,
54     Usize,
55 }