| use rustc_macros::HashStable_Generic; |
| use rustc_span::{Symbol, sym}; |
| |
| #[derive(Clone, Debug, Copy, Eq, PartialEq, HashStable_Generic)] |
| pub enum AllocatorKind { |
| /// Use `#[global_allocator]` as global allocator. |
| Global, |
| /// Use the default implementation in libstd as global allocator. |
| Default, |
| } |
| |
| pub fn global_fn_name(base: Symbol) -> String { |
| format!("__rust_{base}") |
| } |
| |
| pub fn default_fn_name(base: Symbol) -> String { |
| format!("__rdl_{base}") |
| } |
| |
| pub const ALLOC_ERROR_HANDLER: Symbol = sym::alloc_error_handler; |
| pub const NO_ALLOC_SHIM_IS_UNSTABLE: &str = "__rust_no_alloc_shim_is_unstable_v2"; |
| |
| /// Argument or return type for methods in the allocator shim |
| #[derive(Copy, Clone)] |
| pub enum AllocatorTy { |
| Layout, |
| Never, |
| Ptr, |
| ResultPtr, |
| Unit, |
| Usize, |
| } |
| |
| /// Some allocator methods are known to the compiler: they act more like |
| /// intrinsics/language primitives than library-defined functions. |
| /// FIXME: ideally this would be derived from attributes like `#[rustc_allocator]`, |
| /// so we don't have two sources of truth. |
| #[derive(Copy, Clone, Debug)] |
| pub enum SpecialAllocatorMethod { |
| Alloc, |
| AllocZeroed, |
| Dealloc, |
| Realloc, |
| } |
| |
| /// A method that will be codegened in the allocator shim. |
| #[derive(Copy, Clone)] |
| pub struct AllocatorMethod { |
| pub name: Symbol, |
| pub special: Option<SpecialAllocatorMethod>, |
| pub inputs: &'static [AllocatorMethodInput], |
| pub output: AllocatorTy, |
| } |
| |
| pub struct AllocatorMethodInput { |
| pub name: &'static str, |
| pub ty: AllocatorTy, |
| } |
| |
| pub static ALLOCATOR_METHODS: &[AllocatorMethod] = &[ |
| AllocatorMethod { |
| name: sym::alloc, |
| special: Some(SpecialAllocatorMethod::Alloc), |
| inputs: &[AllocatorMethodInput { name: "layout", ty: AllocatorTy::Layout }], |
| output: AllocatorTy::ResultPtr, |
| }, |
| AllocatorMethod { |
| name: sym::dealloc, |
| special: Some(SpecialAllocatorMethod::Dealloc), |
| inputs: &[ |
| AllocatorMethodInput { name: "ptr", ty: AllocatorTy::Ptr }, |
| AllocatorMethodInput { name: "layout", ty: AllocatorTy::Layout }, |
| ], |
| output: AllocatorTy::Unit, |
| }, |
| AllocatorMethod { |
| name: sym::realloc, |
| special: Some(SpecialAllocatorMethod::Realloc), |
| inputs: &[ |
| AllocatorMethodInput { name: "ptr", ty: AllocatorTy::Ptr }, |
| AllocatorMethodInput { name: "layout", ty: AllocatorTy::Layout }, |
| AllocatorMethodInput { name: "new_size", ty: AllocatorTy::Usize }, |
| ], |
| output: AllocatorTy::ResultPtr, |
| }, |
| AllocatorMethod { |
| name: sym::alloc_zeroed, |
| special: Some(SpecialAllocatorMethod::AllocZeroed), |
| inputs: &[AllocatorMethodInput { name: "layout", ty: AllocatorTy::Layout }], |
| output: AllocatorTy::ResultPtr, |
| }, |
| ]; |