]> git.lizzy.rs Git - rust.git/blob - src/librustc_allocator/lib.rs
Rollup merge of #49913 - varkor:RegionParameterDef-InternedString, r=petrochenkov
[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: "oom",
28         inputs: &[],
29         output: AllocatorTy::Bang,
30     },
31     AllocatorMethod {
32         name: "dealloc",
33         inputs: &[AllocatorTy::Ptr, AllocatorTy::Layout],
34         output: AllocatorTy::Unit,
35     },
36     AllocatorMethod {
37         name: "realloc",
38         inputs: &[AllocatorTy::Ptr, AllocatorTy::Layout, AllocatorTy::Usize],
39         output: AllocatorTy::ResultPtr,
40     },
41     AllocatorMethod {
42         name: "alloc_zeroed",
43         inputs: &[AllocatorTy::Layout],
44         output: AllocatorTy::ResultPtr,
45     },
46 ];
47
48 pub struct AllocatorMethod {
49     pub name: &'static str,
50     pub inputs: &'static [AllocatorTy],
51     pub output: AllocatorTy,
52 }
53
54 pub enum AllocatorTy {
55     Bang,
56     Layout,
57     Ptr,
58     ResultPtr,
59     Unit,
60     Usize,
61 }