This switches from a custom list of architectures to use the target-lexicon crate. - "set is_64bit=1; isa x86" is replaced with "target x86_64", and similar for other architectures, and the `is_64bit` flag is removed entirely. - The `is_compressed` flag is removed too; it's no longer being used to control REX prefixes on x86-64, ARM and Thumb are separate architectures in target-lexicon, and we can figure out how to select RISC-V compressed encodings when we're ready.
26 lines
691 B
Plaintext
26 lines
691 B
Plaintext
; binary emission of 32-bit code.
|
|
test binemit
|
|
set opt_level=best
|
|
set allones_funcaddrs
|
|
target i686 haswell
|
|
|
|
; The binary encodings can be verified with the command:
|
|
;
|
|
; sed -ne 's/^ *; asm: *//p' filetests/isa/x86/allones_funcaddrs32.cton | llvm-mc -show-encoding -triple=i386
|
|
;
|
|
|
|
; Tests from binary32.cton affected by allones_funcaddrs.
|
|
function %I32() {
|
|
sig0 = ()
|
|
fn0 = %foo()
|
|
|
|
ebb0:
|
|
|
|
; asm: movl $-1, %ecx
|
|
[-,%rcx] v400 = func_addr.i32 fn0 ; bin: b9 Abs4(%foo) ffffffff
|
|
; asm: movl $-1, %esi
|
|
[-,%rsi] v401 = func_addr.i32 fn0 ; bin: be Abs4(%foo) ffffffff
|
|
|
|
return ; bin: c3
|
|
}
|