2017-01-01 07:50:51 +01:00
|
|
|
# Copyright 2012-2017 Free Software Foundation, Inc.
|
2016-06-17 20:24:08 +02:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
standard_testfile jithost.c
|
|
|
|
|
|
|
|
if { (![istarget x86_64-*-*] && ![istarget i?86-*-*]) || ![is_lp64_target] } {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if {[skip_shlib_tests]} {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
if { ![isnative] } {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
if {[get_compiler_info]} {
|
|
|
|
untested "could not get compiler info"
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
set jit_host_src $srcfile
|
|
|
|
set jit_host_bin $binfile
|
|
|
|
|
|
|
|
# We inject the complete path to jit-reader.h into the source file
|
|
|
|
# lest we end up (incorrectly) building against a system-installed
|
|
|
|
# version.
|
|
|
|
set jit_reader_header [standard_output_file "../../../../../gdb/jit-reader.h"]
|
|
|
|
set jit_reader_flag "-DJIT_READER_H=\"$jit_reader_header\""
|
|
|
|
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${jit_host_src}" "${jit_host_bin}" \
|
|
|
|
executable [list debug additional_flags=$jit_reader_flag]] != "" } {
|
2016-12-23 17:52:18 +01:00
|
|
|
untested "failed to compile"
|
2016-06-17 20:24:08 +02:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
set jit_reader jitreader
|
|
|
|
set jit_reader_src ${jit_reader}.c
|
|
|
|
set jit_reader_bin [standard_output_file ${jit_reader}.so]
|
|
|
|
|
|
|
|
if { [gdb_compile_shlib "${srcdir}/${subdir}/${jit_reader_src}" "${jit_reader_bin}" \
|
|
|
|
[list debug additional_flags=$jit_reader_flag]] != "" } {
|
2016-12-23 17:52:18 +01:00
|
|
|
untested "failed to compile"
|
2016-06-17 20:24:08 +02:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
Extend JIT-reader test and fix GDB problems that exposes
The jit-reader.exp test isn't really exercising the jit-reader's
unwinder API at all. This commit address that, and then fixes GDB
problems exposed.
- The custom JIT reader provided for the jit-reader.exp testcase
always rejects the jitted function's frame...
This is because the custom JIT reader in the testcase never ever
sets state->code_begin/end, so the bounds check in
gdb.base/jitreader.c:unwind_frame:
if (this_ip >= state->code_end || this_ip < state->code_begin)
return GDB_FAIL;
tends to fail, unless you're "lucky" (because it references
uninitialized data).
The result is that GDB is always actually using a built-in unwinder
for the jitted function.
- The provided unwinder doesn't do anything that GDB's built-in
unwinder can't do.
IOW, we can't really tell whether the JIT reader's unwinder is
working or not.
I fixed that by making the jitted function mangle its own stack
pointer with a xor, and then teaching the jit unwinder to demangle
it back (another xor). So now "backtrace" with GDB's built-in
unwinder fails while with the jit unwinder, it succeeds.
- GDB crashes after unloading the JIT reader, and flushing frames...
I made the testcase use the "flushregs" command after unloading the
JIT reader, to force the JIT frames to be flushed. However, that
crashes GDB...
When reinit_frame_cache tears down a frame's cache, it calls its
unwinder's dealloc_cache method, which for JIT frames ends up in
jit.c:jit_dealloc_cache. This function calls each of the frame's
gdb_reg_value's "free" pointer:
for (i = 0; i < gdbarch_num_regs (frame_arch); i++)
if (priv_data->registers[i] && priv_data->registers[i]->free)
priv_data->registers[i]->free (priv_data->registers[i]);
and the problem is these gdb_reg_value instances have been returned
by the JIT reader that has been already unloaded, and their "free"
function pointers likely point to functions in the DSO that has
already been unloaded...
A fix for that could be to call reinit_frame_cache in
jit_reader_unload_command _before_ unloading the jit reader DSO so
that the jit reader is given a chance to clean up the gdb_reg_values
before it is unloaded. However, the fix for the point below makes
this unnecessary, because it stops jit.c from keeping around
gdb_reg_values in the first place.
- However, it still makes sense to clear the frame cache when loading
or unloading a JIT unwinder.
This makes testing a JIT unwinder a bit simpler.
- Not only the frame cache actually -- gdb is not unloading the
jit-registered objfiles when the JIT reader is unloaded, and not
loading the already-registered descriptors when a JIT reader is
loaded.
The new test exercises unloading the jit reader, loading it back
again, and then making sure the JIT reader's unwinder works again.
Without the unload/re-load of already-read descriptors, the newly
loaded JIT would have no idea where the new function is, because
it's stored at symbol read time.
- I added a couple "info frame" calls to the test, and that
crashes GDB...
The problem is that jit_frame_prev_register assumes it'll only be
called for raw registers, so when it gets a pseudo register number,
the "priv->registers[reg]" access is really an out-of-bounds access.
To fix that, I made jit_frame_prev_register use
gdbarch_pseudo_register_read_value for reading the pseudo-registers.
However, that works with a regcache and we don't have one. To fix
that, I made the JIT unwinder store a regcache in its cache instead
of an array of gdb_reg_value pointers.
gdb/ChangeLog:
2016-07-01 Pedro Alves <palves@redhat.com>
Tom Tromey <tom@tromey.com>
* jit.c (jit_reader_load_command): Call reinit_frame_cache and
jit_inferior_created_hook.
(jit_reader_unload_command): Call reinit_frame_cache and
jit_inferior_exit_hook.
* jit.c (struct jit_unwind_private) <registers>: Delete field.
<regcache>: New field.
(jit_unwind_reg_set_impl): Set the register's value in the
regcache. Free the passed-in gdb_reg_value.
(jit_dealloc_cache): Adjust to free the regcache.
(jit_frame_sniffer): Allocate a regcache instead of an array of
gdb_reg_value pointers.
(jit_frame_this_id): Adjust.
(jit_frame_prev_register): Read raw registers off of the regcache
instead of from the gdb_reg_value pointer array. Use
gdbarch_pseudo_register_read_value to read pseudo registers.
* regcache.c (regcache_raw_set_cached_value): New function,
factored out from ...
(regcache_raw_write): ... here.
* regcache.h (regcache_raw_set_cached_value): Declare.
gdb/testsuite/ChangeLog:
2016-07-01 Pedro Alves <palves@redhat.com>
* gdb.base/jit-reader.exp (info_registers_current_frame): New
procedure.
(jit_reader_test): Test the jit reader's unwinder.
* gdb.base/jithost.c (jit_function_00_code): New global.
(main): Use memcpy to fill in the mmapped code, instead of poking
bytes manually here.
* gdb.base/jitreader.c (enum register_mapping) <AMD64_RBP>: New
value.
(read_debug_info): Save the function's range.
(read_sp): New function.
(unwind_frame): Use it. Also unwind RBP.
(get_frame_id): Use read_sp.
(gdb_init_reader): Use calloc instead of malloc.
* lib/gdb.exp (get_hexadecimal_valueof): Add optional 'test'
parameter. Use gdb_test_multiple.
2016-07-01 12:56:39 +02:00
|
|
|
# Test "info registers" in the current frame, expecting RSP's value to
|
|
|
|
# be SP.
|
|
|
|
|
|
|
|
proc info_registers_current_frame {sp} {
|
|
|
|
global hex decimal
|
|
|
|
|
|
|
|
set any "\[^\r\n\]*"
|
|
|
|
|
|
|
|
gdb_test "info registers" \
|
|
|
|
[multi_line \
|
|
|
|
"rax $hex $decimal" \
|
|
|
|
"rbx $hex $decimal" \
|
|
|
|
"rcx $hex $decimal" \
|
|
|
|
"rdx $hex $decimal" \
|
|
|
|
"rsi $hex $decimal" \
|
|
|
|
"rdi $hex $decimal" \
|
|
|
|
"rbp $hex $hex" \
|
|
|
|
"rsp $sp $sp" \
|
|
|
|
"r8 $hex $decimal" \
|
|
|
|
"r9 $hex $decimal" \
|
|
|
|
"r10 $hex $decimal" \
|
|
|
|
"r11 $hex $decimal" \
|
|
|
|
"r12 $hex $decimal" \
|
|
|
|
"r13 $hex $decimal" \
|
|
|
|
"r14 $hex $decimal" \
|
|
|
|
"r15 $hex $decimal" \
|
|
|
|
"rip $hex $hex$any" \
|
|
|
|
"eflags $hex \\\[$any\\\]" \
|
|
|
|
"cs $hex $decimal" \
|
|
|
|
"ss $hex $decimal" \
|
|
|
|
"ds $hex $decimal" \
|
|
|
|
"es $hex $decimal" \
|
|
|
|
"fs $hex $decimal" \
|
|
|
|
"gs $hex $decimal" \
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-06-17 20:24:08 +02:00
|
|
|
proc jit_reader_test {} {
|
|
|
|
global jit_host_bin
|
|
|
|
global jit_reader_bin
|
|
|
|
global verbose
|
Extend JIT-reader test and fix GDB problems that exposes
The jit-reader.exp test isn't really exercising the jit-reader's
unwinder API at all. This commit address that, and then fixes GDB
problems exposed.
- The custom JIT reader provided for the jit-reader.exp testcase
always rejects the jitted function's frame...
This is because the custom JIT reader in the testcase never ever
sets state->code_begin/end, so the bounds check in
gdb.base/jitreader.c:unwind_frame:
if (this_ip >= state->code_end || this_ip < state->code_begin)
return GDB_FAIL;
tends to fail, unless you're "lucky" (because it references
uninitialized data).
The result is that GDB is always actually using a built-in unwinder
for the jitted function.
- The provided unwinder doesn't do anything that GDB's built-in
unwinder can't do.
IOW, we can't really tell whether the JIT reader's unwinder is
working or not.
I fixed that by making the jitted function mangle its own stack
pointer with a xor, and then teaching the jit unwinder to demangle
it back (another xor). So now "backtrace" with GDB's built-in
unwinder fails while with the jit unwinder, it succeeds.
- GDB crashes after unloading the JIT reader, and flushing frames...
I made the testcase use the "flushregs" command after unloading the
JIT reader, to force the JIT frames to be flushed. However, that
crashes GDB...
When reinit_frame_cache tears down a frame's cache, it calls its
unwinder's dealloc_cache method, which for JIT frames ends up in
jit.c:jit_dealloc_cache. This function calls each of the frame's
gdb_reg_value's "free" pointer:
for (i = 0; i < gdbarch_num_regs (frame_arch); i++)
if (priv_data->registers[i] && priv_data->registers[i]->free)
priv_data->registers[i]->free (priv_data->registers[i]);
and the problem is these gdb_reg_value instances have been returned
by the JIT reader that has been already unloaded, and their "free"
function pointers likely point to functions in the DSO that has
already been unloaded...
A fix for that could be to call reinit_frame_cache in
jit_reader_unload_command _before_ unloading the jit reader DSO so
that the jit reader is given a chance to clean up the gdb_reg_values
before it is unloaded. However, the fix for the point below makes
this unnecessary, because it stops jit.c from keeping around
gdb_reg_values in the first place.
- However, it still makes sense to clear the frame cache when loading
or unloading a JIT unwinder.
This makes testing a JIT unwinder a bit simpler.
- Not only the frame cache actually -- gdb is not unloading the
jit-registered objfiles when the JIT reader is unloaded, and not
loading the already-registered descriptors when a JIT reader is
loaded.
The new test exercises unloading the jit reader, loading it back
again, and then making sure the JIT reader's unwinder works again.
Without the unload/re-load of already-read descriptors, the newly
loaded JIT would have no idea where the new function is, because
it's stored at symbol read time.
- I added a couple "info frame" calls to the test, and that
crashes GDB...
The problem is that jit_frame_prev_register assumes it'll only be
called for raw registers, so when it gets a pseudo register number,
the "priv->registers[reg]" access is really an out-of-bounds access.
To fix that, I made jit_frame_prev_register use
gdbarch_pseudo_register_read_value for reading the pseudo-registers.
However, that works with a regcache and we don't have one. To fix
that, I made the JIT unwinder store a regcache in its cache instead
of an array of gdb_reg_value pointers.
gdb/ChangeLog:
2016-07-01 Pedro Alves <palves@redhat.com>
Tom Tromey <tom@tromey.com>
* jit.c (jit_reader_load_command): Call reinit_frame_cache and
jit_inferior_created_hook.
(jit_reader_unload_command): Call reinit_frame_cache and
jit_inferior_exit_hook.
* jit.c (struct jit_unwind_private) <registers>: Delete field.
<regcache>: New field.
(jit_unwind_reg_set_impl): Set the register's value in the
regcache. Free the passed-in gdb_reg_value.
(jit_dealloc_cache): Adjust to free the regcache.
(jit_frame_sniffer): Allocate a regcache instead of an array of
gdb_reg_value pointers.
(jit_frame_this_id): Adjust.
(jit_frame_prev_register): Read raw registers off of the regcache
instead of from the gdb_reg_value pointer array. Use
gdbarch_pseudo_register_read_value to read pseudo registers.
* regcache.c (regcache_raw_set_cached_value): New function,
factored out from ...
(regcache_raw_write): ... here.
* regcache.h (regcache_raw_set_cached_value): Declare.
gdb/testsuite/ChangeLog:
2016-07-01 Pedro Alves <palves@redhat.com>
* gdb.base/jit-reader.exp (info_registers_current_frame): New
procedure.
(jit_reader_test): Test the jit reader's unwinder.
* gdb.base/jithost.c (jit_function_00_code): New global.
(main): Use memcpy to fill in the mmapped code, instead of poking
bytes manually here.
* gdb.base/jitreader.c (enum register_mapping) <AMD64_RBP>: New
value.
(read_debug_info): Save the function's range.
(read_sp): New function.
(unwind_frame): Use it. Also unwind RBP.
(get_frame_id): Use read_sp.
(gdb_init_reader): Use calloc instead of malloc.
* lib/gdb.exp (get_hexadecimal_valueof): Add optional 'test'
parameter. Use gdb_test_multiple.
2016-07-01 12:56:39 +02:00
|
|
|
global hex decimal
|
|
|
|
|
|
|
|
set any "\[^\r\n\]*"
|
2016-06-17 20:24:08 +02:00
|
|
|
|
|
|
|
clean_restart $jit_host_bin
|
|
|
|
gdb_load_shlib $jit_reader_bin
|
|
|
|
|
|
|
|
if {$verbose > 0} {
|
|
|
|
gdb_test_no_output "set debug jit 1"
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test_no_output "jit-reader-load ${jit_reader_bin}" "jit-reader-load"
|
|
|
|
gdb_run_cmd
|
|
|
|
gdb_test "" "Program received signal SIGTRAP, .*" "expect SIGTRAP"
|
|
|
|
|
Extend JIT-reader test and fix GDB problems that exposes
The jit-reader.exp test isn't really exercising the jit-reader's
unwinder API at all. This commit address that, and then fixes GDB
problems exposed.
- The custom JIT reader provided for the jit-reader.exp testcase
always rejects the jitted function's frame...
This is because the custom JIT reader in the testcase never ever
sets state->code_begin/end, so the bounds check in
gdb.base/jitreader.c:unwind_frame:
if (this_ip >= state->code_end || this_ip < state->code_begin)
return GDB_FAIL;
tends to fail, unless you're "lucky" (because it references
uninitialized data).
The result is that GDB is always actually using a built-in unwinder
for the jitted function.
- The provided unwinder doesn't do anything that GDB's built-in
unwinder can't do.
IOW, we can't really tell whether the JIT reader's unwinder is
working or not.
I fixed that by making the jitted function mangle its own stack
pointer with a xor, and then teaching the jit unwinder to demangle
it back (another xor). So now "backtrace" with GDB's built-in
unwinder fails while with the jit unwinder, it succeeds.
- GDB crashes after unloading the JIT reader, and flushing frames...
I made the testcase use the "flushregs" command after unloading the
JIT reader, to force the JIT frames to be flushed. However, that
crashes GDB...
When reinit_frame_cache tears down a frame's cache, it calls its
unwinder's dealloc_cache method, which for JIT frames ends up in
jit.c:jit_dealloc_cache. This function calls each of the frame's
gdb_reg_value's "free" pointer:
for (i = 0; i < gdbarch_num_regs (frame_arch); i++)
if (priv_data->registers[i] && priv_data->registers[i]->free)
priv_data->registers[i]->free (priv_data->registers[i]);
and the problem is these gdb_reg_value instances have been returned
by the JIT reader that has been already unloaded, and their "free"
function pointers likely point to functions in the DSO that has
already been unloaded...
A fix for that could be to call reinit_frame_cache in
jit_reader_unload_command _before_ unloading the jit reader DSO so
that the jit reader is given a chance to clean up the gdb_reg_values
before it is unloaded. However, the fix for the point below makes
this unnecessary, because it stops jit.c from keeping around
gdb_reg_values in the first place.
- However, it still makes sense to clear the frame cache when loading
or unloading a JIT unwinder.
This makes testing a JIT unwinder a bit simpler.
- Not only the frame cache actually -- gdb is not unloading the
jit-registered objfiles when the JIT reader is unloaded, and not
loading the already-registered descriptors when a JIT reader is
loaded.
The new test exercises unloading the jit reader, loading it back
again, and then making sure the JIT reader's unwinder works again.
Without the unload/re-load of already-read descriptors, the newly
loaded JIT would have no idea where the new function is, because
it's stored at symbol read time.
- I added a couple "info frame" calls to the test, and that
crashes GDB...
The problem is that jit_frame_prev_register assumes it'll only be
called for raw registers, so when it gets a pseudo register number,
the "priv->registers[reg]" access is really an out-of-bounds access.
To fix that, I made jit_frame_prev_register use
gdbarch_pseudo_register_read_value for reading the pseudo-registers.
However, that works with a regcache and we don't have one. To fix
that, I made the JIT unwinder store a regcache in its cache instead
of an array of gdb_reg_value pointers.
gdb/ChangeLog:
2016-07-01 Pedro Alves <palves@redhat.com>
Tom Tromey <tom@tromey.com>
* jit.c (jit_reader_load_command): Call reinit_frame_cache and
jit_inferior_created_hook.
(jit_reader_unload_command): Call reinit_frame_cache and
jit_inferior_exit_hook.
* jit.c (struct jit_unwind_private) <registers>: Delete field.
<regcache>: New field.
(jit_unwind_reg_set_impl): Set the register's value in the
regcache. Free the passed-in gdb_reg_value.
(jit_dealloc_cache): Adjust to free the regcache.
(jit_frame_sniffer): Allocate a regcache instead of an array of
gdb_reg_value pointers.
(jit_frame_this_id): Adjust.
(jit_frame_prev_register): Read raw registers off of the regcache
instead of from the gdb_reg_value pointer array. Use
gdbarch_pseudo_register_read_value to read pseudo registers.
* regcache.c (regcache_raw_set_cached_value): New function,
factored out from ...
(regcache_raw_write): ... here.
* regcache.h (regcache_raw_set_cached_value): Declare.
gdb/testsuite/ChangeLog:
2016-07-01 Pedro Alves <palves@redhat.com>
* gdb.base/jit-reader.exp (info_registers_current_frame): New
procedure.
(jit_reader_test): Test the jit reader's unwinder.
* gdb.base/jithost.c (jit_function_00_code): New global.
(main): Use memcpy to fill in the mmapped code, instead of poking
bytes manually here.
* gdb.base/jitreader.c (enum register_mapping) <AMD64_RBP>: New
value.
(read_debug_info): Save the function's range.
(read_sp): New function.
(unwind_frame): Use it. Also unwind RBP.
(get_frame_id): Use read_sp.
(gdb_init_reader): Use calloc instead of malloc.
* lib/gdb.exp (get_hexadecimal_valueof): Add optional 'test'
parameter. Use gdb_test_multiple.
2016-07-01 12:56:39 +02:00
|
|
|
# Test the JIT reader unwinder.
|
|
|
|
with_test_prefix "with jit-reader" {
|
|
|
|
|
|
|
|
with_test_prefix "before mangling" {
|
|
|
|
gdb_test "bt" \
|
|
|
|
[multi_line \
|
|
|
|
"#0 ${any} in jit_function_00 ${any}" \
|
|
|
|
"#1 ${any} in main ${any}" \
|
|
|
|
] \
|
|
|
|
"bt works"
|
|
|
|
|
|
|
|
set sp_before_mangling \
|
|
|
|
[get_hexadecimal_valueof "\$sp" 0 "get sp"]
|
|
|
|
|
|
|
|
gdb_test "up" "#1 $any in main $any\r\n$any function $any" \
|
|
|
|
"move up to caller"
|
|
|
|
|
|
|
|
set caller_sp \
|
|
|
|
[get_hexadecimal_valueof "\$sp" 0 "get caller sp"]
|
|
|
|
}
|
|
|
|
|
|
|
|
# Step over the instruction that mangles the stack pointer.
|
|
|
|
# While that confuses GDB's built-in unwinder, the JIT
|
|
|
|
# reader's unwinder understands the mangling and should thus
|
|
|
|
# be able to unwind at that location.
|
|
|
|
with_test_prefix "after mangling" {
|
|
|
|
gdb_test "si" "in jit_function_00 .*" "step over stack mangling"
|
|
|
|
|
|
|
|
set sp_after_mangling \
|
|
|
|
[get_hexadecimal_valueof "\$sp" 0 "get sp"]
|
|
|
|
|
|
|
|
gdb_assert {$sp_before_mangling != $sp_after_mangling} \
|
|
|
|
"sp is mangled"
|
|
|
|
|
|
|
|
# Check that the jit unwinder manages to backtrace through
|
|
|
|
# the mangled stack pointer.
|
|
|
|
gdb_test "bt" \
|
|
|
|
[multi_line \
|
|
|
|
"#0 ${any} in jit_function_00 ${any}" \
|
|
|
|
"#1 ${any} in main ${any}" \
|
|
|
|
] \
|
|
|
|
"bt works"
|
|
|
|
|
|
|
|
with_test_prefix "current frame" {
|
|
|
|
info_registers_current_frame $sp_after_mangling
|
|
|
|
|
|
|
|
gdb_test "info frame" \
|
|
|
|
"Stack level 0, frame at $sp_before_mangling.*in jit_function_00.*"
|
|
|
|
}
|
|
|
|
|
|
|
|
with_test_prefix "caller frame" {
|
|
|
|
gdb_test "up" "#1 $any in main $any\r\n$any function $any" \
|
|
|
|
"up to caller"
|
|
|
|
|
|
|
|
# Since the JIT unwinder only provides RIP/RSP/RBP,
|
|
|
|
# all other registers should show as "<not saved>".
|
|
|
|
gdb_test "info registers" \
|
|
|
|
[multi_line \
|
|
|
|
"rax <not saved>" \
|
|
|
|
"rbx <not saved>" \
|
|
|
|
"rcx <not saved>" \
|
|
|
|
"rdx <not saved>" \
|
|
|
|
"rsi <not saved>" \
|
|
|
|
"rdi <not saved>" \
|
|
|
|
"rbp $hex $hex" \
|
|
|
|
"rsp $caller_sp $caller_sp" \
|
|
|
|
"r8 <not saved>" \
|
|
|
|
"r9 <not saved>" \
|
|
|
|
"r10 <not saved>" \
|
|
|
|
"r11 <not saved>" \
|
|
|
|
"r12 <not saved>" \
|
|
|
|
"r13 <not saved>" \
|
|
|
|
"r14 <not saved>" \
|
|
|
|
"r15 <not saved>" \
|
|
|
|
"rip $hex $hex $any" \
|
|
|
|
"eflags <not saved>" \
|
|
|
|
"cs <not saved>" \
|
|
|
|
"ss <not saved>" \
|
|
|
|
"ds <not saved>" \
|
|
|
|
"es <not saved>" \
|
|
|
|
"fs <not saved>" \
|
|
|
|
"gs <not saved>" \
|
|
|
|
]
|
|
|
|
|
|
|
|
# Make sure that "info frame" doesn't crash.
|
|
|
|
gdb_test "info frame" "Stack level 1, .*in main.*"
|
|
|
|
|
|
|
|
# ... and that neither does printing a pseudo
|
|
|
|
# register.
|
|
|
|
gdb_test "print /x \$ebp" " = $hex" "print pseudo register"
|
|
|
|
|
|
|
|
# There's no way for the JIT reader API to support
|
|
|
|
# modifyiable values.
|
|
|
|
gdb_test "print \$rbp = -1" \
|
|
|
|
"Attempt to assign to an unmodifiable value\." \
|
|
|
|
"cannot assign to register"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Now unload the jit reader, and ensure that backtracing really
|
|
|
|
# doesn't work without it.
|
|
|
|
with_test_prefix "without jit-reader" {
|
|
|
|
gdb_test_no_output "jit-reader-unload ${jit_reader_bin}" \
|
|
|
|
"jit-reader-unload"
|
|
|
|
|
|
|
|
# Check that we're no longer using the JIT unwinder, and that
|
|
|
|
# the built-in unwinder cannot backtrace through the mangled
|
|
|
|
# stack pointer.
|
|
|
|
gdb_test "bt" \
|
|
|
|
[multi_line \
|
|
|
|
"Backtrace stopped: Cannot access memory at address $sp_after_mangling" \
|
|
|
|
] \
|
|
|
|
"bt shows error"
|
|
|
|
|
|
|
|
gdb_test "info frame" "Cannot access memory at address.*" \
|
|
|
|
"info frame shows error"
|
|
|
|
info_registers_current_frame $sp_after_mangling
|
|
|
|
gdb_test "up" "Initial frame selected; you cannot go up\\." \
|
|
|
|
"cannot go up"
|
|
|
|
}
|
|
|
|
|
|
|
|
with_test_prefix "with jit-reader again" {
|
|
|
|
gdb_test_no_output "jit-reader-load ${jit_reader_bin}" "jit-reader-load"
|
|
|
|
|
|
|
|
# Check that the jit unwinder manages to backtrace through
|
|
|
|
# the mangled stack pointer.
|
|
|
|
gdb_test "bt" \
|
|
|
|
[multi_line \
|
|
|
|
"#0 ${any} in jit_function_00 ${any}" \
|
|
|
|
"#1 ${any} in main ${any}" \
|
|
|
|
]
|
|
|
|
}
|
2016-06-17 20:24:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
jit_reader_test
|