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