]> git.lizzy.rs Git - rust.git/blob - src/librustc_allocator/lib.rs
Rollup merge of #49665 - draganmladjenovic:mips_tests, r=nikomatsakis
[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: &[AllocatorTy::AllocErr],
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: "usable_size",
38         inputs: &[AllocatorTy::LayoutRef],
39         output: AllocatorTy::UsizePair,
40     },
41     AllocatorMethod {
42         name: "realloc",
43         inputs: &[AllocatorTy::Ptr, AllocatorTy::Layout, AllocatorTy::Layout],
44         output: AllocatorTy::ResultPtr,
45     },
46     AllocatorMethod {
47         name: "alloc_zeroed",
48         inputs: &[AllocatorTy::Layout],
49         output: AllocatorTy::ResultPtr,
50     },
51     AllocatorMethod {
52         name: "alloc_excess",
53         inputs: &[AllocatorTy::Layout],
54         output: AllocatorTy::ResultExcess,
55     },
56     AllocatorMethod {
57         name: "realloc_excess",
58         inputs: &[AllocatorTy::Ptr, AllocatorTy::Layout, AllocatorTy::Layout],
59         output: AllocatorTy::ResultExcess,
60     },
61     AllocatorMethod {
62         name: "grow_in_place",
63         inputs: &[AllocatorTy::Ptr, AllocatorTy::Layout, AllocatorTy::Layout],
64         output: AllocatorTy::ResultUnit,
65     },
66     AllocatorMethod {
67         name: "shrink_in_place",
68         inputs: &[AllocatorTy::Ptr, AllocatorTy::Layout, AllocatorTy::Layout],
69         output: AllocatorTy::ResultUnit,
70     },
71 ];
72
73 pub struct AllocatorMethod {
74     pub name: &'static str,
75     pub inputs: &'static [AllocatorTy],
76     pub output: AllocatorTy,
77 }
78
79 pub enum AllocatorTy {
80     AllocErr,
81     Bang,
82     Layout,
83     LayoutRef,
84     Ptr,
85     ResultExcess,
86     ResultPtr,
87     ResultUnit,
88     Unit,
89     UsizePair,
90 }