Skip to content

Commit f4a6cf7

Browse files
committed
pass calling convention down to asm
after #9757
1 parent f1a56f1 commit f4a6cf7

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

winch/codegen/src/isa/aarch64/asm.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
use super::{address::Address, regs};
44
use crate::masm::{ExtendKind, FloatCmpKind, IntCmpKind, RoundingMode, ShiftKind};
5+
use crate::CallingConvention;
56
use crate::{
67
masm::OperandSize,
78
reg::{writable, Reg, WritableReg},
@@ -17,7 +18,6 @@ use cranelift_codegen::{
1718
FPUOpRIMod, FPURightShiftImm, FpuRoundMode, Imm12, ImmLogic, ImmShift, Inst, PairAMode,
1819
ScalarSize, VecLanesOp, VecMisc2, VectorSize,
1920
},
20-
isa::CallConv,
2121
settings, Final, MachBuffer, MachBufferFinalized, MachInst, MachInstEmit, MachInstEmitState,
2222
MachLabel, Writable,
2323
};
@@ -911,35 +911,35 @@ impl Assembler {
911911

912912
/// Emits a direct call to a function defined locally and
913913
/// referenced to by `name`.
914-
pub fn call_with_name(&mut self, name: UserExternalNameRef) {
914+
pub fn call_with_name(&mut self, name: UserExternalNameRef, call_conv: CallingConvention) {
915915
self.emit(Inst::Call {
916916
info: Box::new(cranelift_codegen::CallInfo::empty(
917917
ExternalName::user(name),
918-
CallConv::SystemV,
918+
call_conv.into(),
919919
)),
920920
})
921921
}
922922

923-
/// Emits an indirect call to a function whose address is
923+
/// Emits an indirect call to a function whose address is
924924
/// stored the `callee` register.
925-
pub fn call_with_reg(&mut self, callee: Reg) {
925+
pub fn call_with_reg(&mut self, callee: Reg, call_conv: CallingConvention) {
926926
self.emit(Inst::CallInd {
927927
info: Box::new(cranelift_codegen::CallInfo::empty(
928928
callee.into(),
929-
CallConv::SystemV,
929+
call_conv.into(),
930930
)),
931931
})
932932
}
933933

934934
/// Emit a call to a well-known libcall.
935935
/// `dst` is used as a scratch register to hold the address of the libcall function
936-
pub fn call_with_lib(&mut self, lib: LibCall, dst: Reg) {
936+
pub fn call_with_lib(&mut self, lib: LibCall, dst: Reg, call_conv: CallingConvention) {
937937
let name = ExternalName::LibCall(lib);
938938
self.emit(Inst::LoadExtName {
939939
rd: writable!(dst.into()),
940940
name: name.into(),
941941
offset: 0,
942942
});
943-
self.call_with_reg(dst)
943+
self.call_with_reg(dst, call_conv)
944944
}
945945
}

winch/codegen/src/isa/aarch64/masm.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,11 @@ impl Masm for MacroAssembler {
179179
let aligned_args_size = align_to(stack_args_size, alignment);
180180
let total_stack = delta + aligned_args_size;
181181
self.reserve_stack(total_stack);
182-
let callee = load_callee(self);
182+
let (callee, call_conv) = load_callee(self);
183183
match callee {
184-
CalleeKind::Indirect(reg) => self.asm.call_with_reg(reg),
185-
CalleeKind::Direct(idx) => self.asm.call_with_name(idx),
186-
CalleeKind::LibCall(lib) => self.asm.call_with_lib(lib, scratch()),
184+
CalleeKind::Indirect(reg) => self.asm.call_with_reg(reg, call_conv),
185+
CalleeKind::Direct(idx) => self.asm.call_with_name(idx, call_conv),
186+
CalleeKind::LibCall(lib) => self.asm.call_with_lib(lib, scratch(), call_conv),
187187
}
188188

189189
total_stack

0 commit comments

Comments
 (0)