Add a calling-convention setting to the `Flags` used as part of the `TargetIsa`. This allows Cretonne code that generates calls to use the correct convention, such as when emitting libcalls during legalization or when the wasm frontend is decoding functions. This setting can be overridden per-function. This also adds "fast", "cold", and "fastcall" conventions, with "fast" as the new default. Note that "fast" and "cold" are not intended to be ABI-compatible across Cretonne versions. This will also ensure Windows users will get an `unimplemented!` rather than silent calling-convention mismatches, which reflects the fact that Windows calling conventions are not yet implemented. This also renames SpiderWASM, which isn't camel-case, to Baldrdash, which is, and which is also a more relevant name.
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
; Test the parser's support for encoding annotations.
|
|
test legalizer
|
|
isa riscv
|
|
|
|
function %parse_encoding(i32 [%x5]) -> i32 [%x10] {
|
|
; check: function %parse_encoding(i32 [%x5], i32 link [%x1]) -> i32 [%x10], i32 link [%x1] fast {
|
|
|
|
sig0 = (i32 [%x10]) -> i32 [%x10] system_v
|
|
; check: sig0 = (i32 [%x10]) -> i32 [%x10] system_v
|
|
|
|
sig1 = (i32 [%x10], i32 [%x11]) -> b1 [%x10] system_v
|
|
; check: sig1 = (i32 [%x10], i32 [%x11]) -> b1 [%x10] system_v
|
|
|
|
sig2 = (f32 [%f10], i32 [%x12], i32 [%x13]) -> f64 [%f10] system_v
|
|
; check: sig2 = (f32 [%f10], i32 [%x12], i32 [%x13]) -> f64 [%f10] system_v
|
|
|
|
; Arguments on stack where not necessary
|
|
sig3 = (f64 [%f10], i32 [0], i32 [4]) -> f64 [%f10] system_v
|
|
; check: sig3 = (f64 [%f10], i32 [0], i32 [4]) -> f64 [%f10] system_v
|
|
|
|
; Stack argument before register argument
|
|
sig4 = (f32 [72], i32 [%x10]) system_v
|
|
; check: sig4 = (f32 [72], i32 [%x10]) system_v
|
|
|
|
; Return value on stack
|
|
sig5 = () -> f32 [0] system_v
|
|
; check: sig5 = () -> f32 [0] system_v
|
|
|
|
; function + signature
|
|
fn0 = %bar(i32 [%x10]) -> b1 [%x10] system_v
|
|
; check: sig6 = (i32 [%x10]) -> b1 [%x10] system_v
|
|
; nextln: fn0 = %bar sig6
|
|
|
|
ebb0(v0: i32):
|
|
return v0
|
|
}
|