2019-02-18 03:58:58 +09:00
|
|
|
use crate::attributes;
|
2017-06-03 14:54:08 -07:00
|
|
|
use libc::c_uint;
|
2021-07-03 16:46:41 +02:00
|
|
|
use rustc_ast::expand::allocator::{
|
2021-07-06 18:56:01 +02:00
|
|
|
alloc_error_handler_name, default_fn_name, global_fn_name, AllocatorKind, AllocatorTy,
|
2022-09-10 11:33:44 +00:00
|
|
|
ALLOCATOR_METHODS, NO_ALLOC_SHIM_IS_UNSTABLE,
|
2021-07-03 16:46:41 +02:00
|
|
|
};
|
2020-03-29 16:41:09 +02:00
|
|
|
use rustc_middle::bug;
|
|
|
|
use rustc_middle::ty::TyCtxt;
|
2021-10-06 15:52:54 +01:00
|
|
|
use rustc_session::config::{DebugInfo, OomStrategy};
|
2017-06-03 14:54:08 -07:00
|
|
|
|
2021-08-31 11:16:10 -07:00
|
|
|
use crate::debuginfo;
|
2023-07-15 12:38:59 +00:00
|
|
|
use crate::llvm::{self, Context, False, Module, True, Type};
|
2019-02-18 03:58:58 +09:00
|
|
|
use crate::ModuleLlvm;
|
2017-06-03 14:54:08 -07:00
|
|
|
|
2020-09-07 10:45:20 +02:00
|
|
|
pub(crate) unsafe fn codegen(
|
|
|
|
tcx: TyCtxt<'_>,
|
2021-08-31 11:16:10 -07:00
|
|
|
module_llvm: &mut ModuleLlvm,
|
|
|
|
module_name: &str,
|
2020-09-07 10:45:20 +02:00
|
|
|
kind: AllocatorKind,
|
2023-04-25 00:08:35 +02:00
|
|
|
alloc_error_handler_kind: AllocatorKind,
|
2020-09-07 10:45:20 +02:00
|
|
|
) {
|
2021-08-31 11:16:10 -07:00
|
|
|
let llcx = &*module_llvm.llcx;
|
|
|
|
let llmod = module_llvm.llmod();
|
2020-10-15 11:44:00 +02:00
|
|
|
let usize = match tcx.sess.target.pointer_width {
|
2020-10-14 18:22:10 +02:00
|
|
|
16 => llvm::LLVMInt16TypeInContext(llcx),
|
|
|
|
32 => llvm::LLVMInt32TypeInContext(llcx),
|
|
|
|
64 => llvm::LLVMInt64TypeInContext(llcx),
|
2017-06-03 14:54:08 -07:00
|
|
|
tws => bug!("Unsupported target word size for int: {}", tws),
|
|
|
|
};
|
|
|
|
let i8 = llvm::LLVMInt8TypeInContext(llcx);
|
2022-12-06 00:07:28 -05:00
|
|
|
let i8p = llvm::LLVMPointerTypeInContext(llcx, 0);
|
2017-06-03 14:54:08 -07:00
|
|
|
|
2021-07-03 16:46:41 +02:00
|
|
|
if kind == AllocatorKind::Default {
|
|
|
|
for method in ALLOCATOR_METHODS {
|
|
|
|
let mut args = Vec::with_capacity(method.inputs.len());
|
2023-08-06 07:20:31 -07:00
|
|
|
for input in method.inputs.iter() {
|
|
|
|
match input.ty {
|
2021-07-03 16:46:41 +02:00
|
|
|
AllocatorTy::Layout => {
|
|
|
|
args.push(usize); // size
|
|
|
|
args.push(usize); // align
|
|
|
|
}
|
|
|
|
AllocatorTy::Ptr => args.push(i8p),
|
|
|
|
AllocatorTy::Usize => args.push(usize),
|
2017-06-03 14:54:08 -07:00
|
|
|
|
2021-07-03 16:46:41 +02:00
|
|
|
AllocatorTy::ResultPtr | AllocatorTy::Unit => panic!("invalid allocator arg"),
|
|
|
|
}
|
2017-06-03 14:54:08 -07:00
|
|
|
}
|
2021-07-03 16:46:41 +02:00
|
|
|
let output = match method.output {
|
|
|
|
AllocatorTy::ResultPtr => Some(i8p),
|
|
|
|
AllocatorTy::Unit => None,
|
2017-06-03 14:54:08 -07:00
|
|
|
|
2021-07-03 16:46:41 +02:00
|
|
|
AllocatorTy::Layout | AllocatorTy::Usize | AllocatorTy::Ptr => {
|
|
|
|
panic!("invalid allocator output")
|
|
|
|
}
|
|
|
|
};
|
2018-01-30 11:54:07 -08:00
|
|
|
|
2023-07-15 12:38:59 +00:00
|
|
|
let from_name = global_fn_name(method.name);
|
|
|
|
let to_name = default_fn_name(method.name);
|
|
|
|
|
|
|
|
create_wrapper_function(tcx, llcx, llmod, &from_name, &to_name, &args, output, false);
|
2017-06-03 14:54:08 -07:00
|
|
|
}
|
|
|
|
}
|
2020-09-07 10:45:20 +02:00
|
|
|
|
2023-04-25 00:08:35 +02:00
|
|
|
// rust alloc error handler
|
2023-07-15 12:38:59 +00:00
|
|
|
create_wrapper_function(
|
|
|
|
tcx,
|
|
|
|
llcx,
|
|
|
|
llmod,
|
|
|
|
"__rust_alloc_error_handler",
|
|
|
|
&alloc_error_handler_name(alloc_error_handler_kind),
|
|
|
|
&[usize, usize], // size, align
|
|
|
|
None,
|
|
|
|
true,
|
2023-04-25 00:08:35 +02:00
|
|
|
);
|
|
|
|
|
2021-10-06 15:52:54 +01:00
|
|
|
// __rust_alloc_error_handler_should_panic
|
|
|
|
let name = OomStrategy::SYMBOL;
|
|
|
|
let ll_g = llvm::LLVMRustGetOrInsertGlobal(llmod, name.as_ptr().cast(), name.len(), i8);
|
|
|
|
if tcx.sess.target.default_hidden_visibility {
|
|
|
|
llvm::LLVMRustSetVisibility(ll_g, llvm::Visibility::Hidden);
|
|
|
|
}
|
2022-07-06 07:44:47 -05:00
|
|
|
let val = tcx.sess.opts.unstable_opts.oom.should_panic();
|
2021-10-06 15:52:54 +01:00
|
|
|
let llval = llvm::LLVMConstInt(i8, val as u64, False);
|
|
|
|
llvm::LLVMSetInitializer(ll_g, llval);
|
|
|
|
|
2022-09-10 11:33:44 +00:00
|
|
|
let name = NO_ALLOC_SHIM_IS_UNSTABLE;
|
|
|
|
let ll_g = llvm::LLVMRustGetOrInsertGlobal(llmod, name.as_ptr().cast(), name.len(), i8);
|
|
|
|
if tcx.sess.target.default_hidden_visibility {
|
|
|
|
llvm::LLVMRustSetVisibility(ll_g, llvm::Visibility::Hidden);
|
|
|
|
}
|
|
|
|
let llval = llvm::LLVMConstInt(i8, 0, False);
|
|
|
|
llvm::LLVMSetInitializer(ll_g, llval);
|
|
|
|
|
2021-08-31 11:16:10 -07:00
|
|
|
if tcx.sess.opts.debuginfo != DebugInfo::None {
|
2022-03-03 11:15:25 +01:00
|
|
|
let dbg_cx = debuginfo::CodegenUnitDebugContext::new(llmod);
|
|
|
|
debuginfo::metadata::build_compile_unit_di_node(tcx, module_name, &dbg_cx);
|
2021-08-31 11:16:10 -07:00
|
|
|
dbg_cx.finalize(tcx.sess);
|
|
|
|
}
|
2017-06-03 14:54:08 -07:00
|
|
|
}
|
2023-07-15 12:38:59 +00:00
|
|
|
|
|
|
|
fn create_wrapper_function(
|
|
|
|
tcx: TyCtxt<'_>,
|
|
|
|
llcx: &Context,
|
|
|
|
llmod: &Module,
|
|
|
|
from_name: &str,
|
|
|
|
to_name: &str,
|
|
|
|
args: &[&Type],
|
|
|
|
output: Option<&Type>,
|
|
|
|
no_return: bool,
|
|
|
|
) {
|
|
|
|
unsafe {
|
|
|
|
let ty = llvm::LLVMFunctionType(
|
|
|
|
output.unwrap_or_else(|| llvm::LLVMVoidTypeInContext(llcx)),
|
|
|
|
args.as_ptr(),
|
|
|
|
args.len() as c_uint,
|
|
|
|
False,
|
|
|
|
);
|
|
|
|
let llfn = llvm::LLVMRustGetOrInsertFunction(
|
|
|
|
llmod,
|
|
|
|
from_name.as_ptr().cast(),
|
|
|
|
from_name.len(),
|
|
|
|
ty,
|
|
|
|
);
|
|
|
|
let no_return = if no_return {
|
|
|
|
// -> ! DIFlagNoReturn
|
|
|
|
let no_return = llvm::AttributeKind::NoReturn.create_attr(llcx);
|
|
|
|
attributes::apply_to_llfn(llfn, llvm::AttributePlace::Function, &[no_return]);
|
|
|
|
Some(no_return)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
if tcx.sess.target.default_hidden_visibility {
|
|
|
|
llvm::LLVMRustSetVisibility(llfn, llvm::Visibility::Hidden);
|
|
|
|
}
|
|
|
|
if tcx.sess.must_emit_unwind_tables() {
|
|
|
|
let uwtable = attributes::uwtable_attr(llcx);
|
|
|
|
attributes::apply_to_llfn(llfn, llvm::AttributePlace::Function, &[uwtable]);
|
|
|
|
}
|
|
|
|
|
|
|
|
let callee =
|
|
|
|
llvm::LLVMRustGetOrInsertFunction(llmod, to_name.as_ptr().cast(), to_name.len(), ty);
|
|
|
|
if let Some(no_return) = no_return {
|
|
|
|
// -> ! DIFlagNoReturn
|
|
|
|
attributes::apply_to_llfn(callee, llvm::AttributePlace::Function, &[no_return]);
|
|
|
|
}
|
|
|
|
llvm::LLVMRustSetVisibility(callee, llvm::Visibility::Hidden);
|
|
|
|
|
|
|
|
let llbb = llvm::LLVMAppendBasicBlockInContext(llcx, llfn, "entry\0".as_ptr().cast());
|
|
|
|
|
|
|
|
let llbuilder = llvm::LLVMCreateBuilderInContext(llcx);
|
|
|
|
llvm::LLVMPositionBuilderAtEnd(llbuilder, llbb);
|
|
|
|
let args = args
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.map(|(i, _)| llvm::LLVMGetParam(llfn, i as c_uint))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
let ret = llvm::LLVMRustBuildCall(
|
|
|
|
llbuilder,
|
|
|
|
ty,
|
|
|
|
callee,
|
|
|
|
args.as_ptr(),
|
|
|
|
args.len() as c_uint,
|
|
|
|
[].as_ptr(),
|
|
|
|
0 as c_uint,
|
|
|
|
);
|
|
|
|
llvm::LLVMSetTailCall(ret, True);
|
|
|
|
if output.is_some() {
|
|
|
|
llvm::LLVMBuildRet(llbuilder, ret);
|
|
|
|
} else {
|
|
|
|
llvm::LLVMBuildRetVoid(llbuilder);
|
|
|
|
}
|
|
|
|
llvm::LLVMDisposeBuilder(llbuilder);
|
|
|
|
}
|
|
|
|
}
|