mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
10dadadc5b
On SLE-11 I ran into: ... (gdb) print $_probe_arg0^M Cannot access memory at address 0x8000003fe05c^M (gdb) FAIL: gdb.arch/amd64-stap-special-operands.exp: probe: three_arg: \ print $_probe_arg0 ... The memory cannot be accessed because the address used to evaluate $_probe_arg0 at the probe point is incorrect. The address is calculated using this expression: ... .asciz "-4@-4(%rbp,%ebx,0)" ... which uses $ebx, but $ebx is uninitialized at the probe point. The test-case does contain a "movl $0, %ebx" insn to set $ebx to 0, but that insn is placed after the probe point. We could fix this by moving the insn to before the probe point. But, $ebx is also a callee-save register, so normally, if we modify it, we also need to save and restore it, which is currently not done. This is currently not harmful, because we don't run the test-case further than the probe point, but it's bound to cause confusion. So, fix this instead by using $eax instead in the expression, and moving the insn setting $eax to 0 to before the probe point. gdb/testsuite/ChangeLog: 2021-01-11 Tom de Vries <tdevries@suse.de> PR testsuite/26968 * gdb.arch/amd64-stap-three-arg-disp.S: Remove insn modifying $ebx. Move insn setting $eax to before probe point.
58 lines
1.1 KiB
ArmAsm
58 lines
1.1 KiB
ArmAsm
.file "amd64-stap-three-arg-disp.c"
|
|
.text
|
|
.globl main
|
|
.type main, @function
|
|
main:
|
|
.LFB0:
|
|
.cfi_startproc
|
|
# BLOCK 2 seq:0
|
|
# PRED: ENTRY (fallthru)
|
|
pushq %rbp
|
|
.cfi_def_cfa_offset 16
|
|
.cfi_offset 6, -16
|
|
movq %rsp, %rbp
|
|
.cfi_def_cfa_register 6
|
|
movl %edi, -20(%rbp)
|
|
movq %rsi, -32(%rbp)
|
|
movl $10, -4(%rbp)
|
|
movl $0, %eax
|
|
#APP
|
|
# 8 "amd64-stap-three-arg-disp.c" 1
|
|
990: nop
|
|
.pushsection .note.stapsdt,"?","note"
|
|
.balign 4
|
|
.4byte 992f-991f,994f-993f,3
|
|
991: .asciz "stapsdt"
|
|
992: .balign 4
|
|
993: .8byte 990b
|
|
.8byte _.stapsdt.base
|
|
.8byte 0
|
|
.asciz "test"
|
|
.asciz "three_arg"
|
|
.asciz "-4@-4(%rbp,%eax,0)"
|
|
994: .balign 4
|
|
.popsection
|
|
|
|
# 0 "" 2
|
|
# 8 "amd64-stap-three-arg-disp.c" 1
|
|
.ifndef _.stapsdt.base
|
|
.pushsection .stapsdt.base,"aG","progbits",.stapsdt.base,comdat
|
|
.weak _.stapsdt.base
|
|
.hidden _.stapsdt.base
|
|
_.stapsdt.base: .space 1
|
|
.size _.stapsdt.base,1
|
|
.popsection
|
|
.endif
|
|
|
|
# 0 "" 2
|
|
#NO_APP
|
|
popq %rbp
|
|
.cfi_def_cfa 7, 8
|
|
# SUCC: EXIT [100.0%]
|
|
ret
|
|
.cfi_endproc
|
|
.LFE0:
|
|
.size main, .-main
|
|
.ident "GCC: (GNU) 4.7.2 20120921 (Red Hat 4.7.2-2)"
|
|
.section .note.GNU-stack,"",@progbits
|