2
2
3
3
use super :: { address:: Address , regs} ;
4
4
use crate :: masm:: { ExtendKind , FloatCmpKind , IntCmpKind , RoundingMode , ShiftKind } ;
5
+ use crate :: CallingConvention ;
5
6
use crate :: {
6
7
masm:: OperandSize ,
7
8
reg:: { writable, Reg , WritableReg } ,
@@ -17,7 +18,6 @@ use cranelift_codegen::{
17
18
FPUOpRIMod , FPURightShiftImm , FpuRoundMode , Imm12 , ImmLogic , ImmShift , Inst , PairAMode ,
18
19
ScalarSize , VecLanesOp , VecMisc2 , VectorSize ,
19
20
} ,
20
- isa:: CallConv ,
21
21
settings, Final , MachBuffer , MachBufferFinalized , MachInst , MachInstEmit , MachInstEmitState ,
22
22
MachLabel , Writable ,
23
23
} ;
@@ -911,35 +911,35 @@ impl Assembler {
911
911
912
912
/// Emits a direct call to a function defined locally and
913
913
/// 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 ) {
915
915
self . emit ( Inst :: Call {
916
916
info : Box :: new ( cranelift_codegen:: CallInfo :: empty (
917
917
ExternalName :: user ( name) ,
918
- CallConv :: SystemV ,
918
+ call_conv . into ( ) ,
919
919
) ) ,
920
920
} )
921
921
}
922
922
923
- /// Emits an indirect call to a function whose address is
923
+ /// Emits an indirect call to a function whose address is
924
924
/// 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 ) {
926
926
self . emit ( Inst :: CallInd {
927
927
info : Box :: new ( cranelift_codegen:: CallInfo :: empty (
928
928
callee. into ( ) ,
929
- CallConv :: SystemV ,
929
+ call_conv . into ( ) ,
930
930
) ) ,
931
931
} )
932
932
}
933
933
934
934
/// Emit a call to a well-known libcall.
935
935
/// `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 ) {
937
937
let name = ExternalName :: LibCall ( lib) ;
938
938
self . emit ( Inst :: LoadExtName {
939
939
rd : writable ! ( dst. into( ) ) ,
940
940
name : name. into ( ) ,
941
941
offset : 0 ,
942
942
} ) ;
943
- self . call_with_reg ( dst)
943
+ self . call_with_reg ( dst, call_conv )
944
944
}
945
945
}
0 commit comments