Merge landing_pad and set_cleanup into cleanup_landing_pad
This commit is contained in:
parent
7a164509d3
commit
f6ce771172
4 changed files with 21 additions and 30 deletions
|
@ -1260,7 +1260,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
|
||||||
// TODO(antoyo)
|
// TODO(antoyo)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn landing_pad(&mut self, _ty: Type<'gcc>, _pers_fn: RValue<'gcc>, _num_clauses: usize) -> RValue<'gcc> {
|
fn cleanup_landing_pad(&mut self, _ty: Type<'gcc>, _pers_fn: RValue<'gcc>) -> RValue<'gcc> {
|
||||||
let field1 = self.context.new_field(None, self.u8_type, "landing_pad_field_1");
|
let field1 = self.context.new_field(None, self.u8_type, "landing_pad_field_1");
|
||||||
let field2 = self.context.new_field(None, self.i32_type, "landing_pad_field_1");
|
let field2 = self.context.new_field(None, self.i32_type, "landing_pad_field_1");
|
||||||
let struct_type = self.context.new_struct_type(None, "landing_pad", &[field1, field2]);
|
let struct_type = self.context.new_struct_type(None, "landing_pad", &[field1, field2]);
|
||||||
|
@ -1271,10 +1271,6 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
|
||||||
// rustc_codegen_ssa now calls the unwinding builder methods even on panic=abort.
|
// rustc_codegen_ssa now calls the unwinding builder methods even on panic=abort.
|
||||||
}
|
}
|
||||||
|
|
||||||
fn set_cleanup(&mut self, _landing_pad: RValue<'gcc>) {
|
|
||||||
// TODO(antoyo)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn resume(&mut self, _exn: RValue<'gcc>) {
|
fn resume(&mut self, _exn: RValue<'gcc>) {
|
||||||
unimplemented!();
|
unimplemented!();
|
||||||
}
|
}
|
||||||
|
|
|
@ -962,25 +962,12 @@ impl<'a, 'll, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn landing_pad(
|
fn cleanup_landing_pad(&mut self, ty: &'ll Type, pers_fn: &'ll Value) -> &'ll Value {
|
||||||
&mut self,
|
let landing_pad = self.landing_pad(ty, pers_fn, 1 /* FIXME should this be 0? */);
|
||||||
ty: &'ll Type,
|
|
||||||
pers_fn: &'ll Value,
|
|
||||||
num_clauses: usize,
|
|
||||||
) -> &'ll Value {
|
|
||||||
// Use LLVMSetPersonalityFn to set the personality. It supports arbitrary Consts while,
|
|
||||||
// LLVMBuildLandingPad requires the argument to be a Function (as of LLVM 12). The
|
|
||||||
// personality lives on the parent function anyway.
|
|
||||||
self.set_personality_fn(pers_fn);
|
|
||||||
unsafe {
|
|
||||||
llvm::LLVMBuildLandingPad(self.llbuilder, ty, None, num_clauses as c_uint, UNNAMED)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn set_cleanup(&mut self, landing_pad: &'ll Value) {
|
|
||||||
unsafe {
|
unsafe {
|
||||||
llvm::LLVMSetCleanup(landing_pad, llvm::True);
|
llvm::LLVMSetCleanup(landing_pad, llvm::True);
|
||||||
}
|
}
|
||||||
|
landing_pad
|
||||||
}
|
}
|
||||||
|
|
||||||
fn resume(&mut self, exn: &'ll Value) {
|
fn resume(&mut self, exn: &'ll Value) {
|
||||||
|
@ -1477,4 +1464,19 @@ impl<'a, 'll, 'tcx> Builder<'a, 'll, 'tcx> {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub(crate) fn landing_pad(
|
||||||
|
&mut self,
|
||||||
|
ty: &'ll Type,
|
||||||
|
pers_fn: &'ll Value,
|
||||||
|
num_clauses: usize,
|
||||||
|
) -> &'ll Value {
|
||||||
|
// Use LLVMSetPersonalityFn to set the personality. It supports arbitrary Consts while,
|
||||||
|
// LLVMBuildLandingPad requires the argument to be a Function (as of LLVM 12). The
|
||||||
|
// personality lives on the parent function anyway.
|
||||||
|
self.set_personality_fn(pers_fn);
|
||||||
|
unsafe {
|
||||||
|
llvm::LLVMBuildLandingPad(self.llbuilder, ty, None, num_clauses as c_uint, UNNAMED)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1373,8 +1373,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
|
||||||
|
|
||||||
let llpersonality = self.cx.eh_personality();
|
let llpersonality = self.cx.eh_personality();
|
||||||
let llretty = self.landing_pad_type();
|
let llretty = self.landing_pad_type();
|
||||||
let lp = bx.landing_pad(llretty, llpersonality, 1);
|
let lp = bx.cleanup_landing_pad(llretty, llpersonality);
|
||||||
bx.set_cleanup(lp);
|
|
||||||
|
|
||||||
let slot = self.get_personality_slot(&mut bx);
|
let slot = self.get_personality_slot(&mut bx);
|
||||||
slot.storage_live(&mut bx);
|
slot.storage_live(&mut bx);
|
||||||
|
|
|
@ -424,13 +424,7 @@ pub trait BuilderMethods<'a, 'tcx>:
|
||||||
fn set_personality_fn(&mut self, personality: Self::Value);
|
fn set_personality_fn(&mut self, personality: Self::Value);
|
||||||
|
|
||||||
// These are used by everyone except msvc
|
// These are used by everyone except msvc
|
||||||
fn landing_pad(
|
fn cleanup_landing_pad(&mut self, ty: Self::Type, pers_fn: Self::Value) -> Self::Value;
|
||||||
&mut self,
|
|
||||||
ty: Self::Type,
|
|
||||||
pers_fn: Self::Value,
|
|
||||||
num_clauses: usize,
|
|
||||||
) -> Self::Value;
|
|
||||||
fn set_cleanup(&mut self, landing_pad: Self::Value);
|
|
||||||
fn resume(&mut self, exn: Self::Value);
|
fn resume(&mut self, exn: Self::Value);
|
||||||
|
|
||||||
// These are used only by msvc
|
// These are used only by msvc
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue