This makes it easier to debug testcases: - the entity numbers in a .cton file match the entity numbers used within Cretonne. - serializing and deserializing doesn't cause indices to change. One disadvantage is that if a .cton file uses sparse entity numbers, deserializing to the in-memory form doesn't compact it. However, the text format is not intended to be performance-critical, so this isn't expected to be a big burden.
26 lines
699 B
Plaintext
26 lines
699 B
Plaintext
; binary emission of 32-bit code.
|
|
test binemit
|
|
set is_compressed
|
|
set allones_funcaddrs
|
|
isa intel haswell
|
|
|
|
; The binary encodings can be verified with the command:
|
|
;
|
|
; sed -ne 's/^ *; asm: *//p' filetests/isa/intel/allones_funcaddrs32.cton | llvm-mc -show-encoding -triple=i386
|
|
;
|
|
|
|
; Tests from binary32.cton affected by allones_funcaddrs.
|
|
function %I32() {
|
|
sig0 = ()
|
|
fn0 = function %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
|
|
}
|