diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2020-07-22 15:56:08 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-07-22 15:56:08 +0200 |
commit | a7b4ff4f0a0e503414b6b9a4184365fdb1f00fbe (patch) | |
tree | 8d7c740bc940b30ba277f6b609baf9daa97f0f20 /gdb/jit.c | |
parent | 2340e834dfb3110a33e2867297469d5ff33013a4 (diff) | |
download | binutils-a7b4ff4f0a0e503414b6b9a4184365fdb1f00fbe.zip binutils-a7b4ff4f0a0e503414b6b9a4184365fdb1f00fbe.tar.gz binutils-a7b4ff4f0a0e503414b6b9a4184365fdb1f00fbe.tar.bz2 |
gdb/jit: skip jit symbol lookup if already detected the symbols don't exist
To detect whether an objfile is a JITer, we lookup JIT interface
symbols in the objfile. If an objfile does not have these symbols, we
conclude that it is not a JITer. An objfile that does not have the
symbols will never have them. Therefore, once we do a lookup and find
out that the objfile does not have JIT symbols, just set a flag so
that we can skip symbol lookup for that objfile the next time we reset
JIT breakpoints.
gdb/ChangeLog:
2020-07-22 Simon Marchi <simon.marchi@polymtl.ca>
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* objfiles.h (struct objfile) <skip_jit_symbol_lookup>: New field.
* jit.c (jit_breakpoint_re_set_internal): Use the
`skip_jit_symbol_lookup` field.
Diffstat (limited to 'gdb/jit.c')
-rw-r--r-- | gdb/jit.c | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -893,19 +893,30 @@ jit_breakpoint_re_set_internal (struct gdbarch *gdbarch, program_space *pspace) { for (objfile *the_objfile : pspace->objfiles ()) { + if (the_objfile->skip_jit_symbol_lookup) + continue; + /* Lookup the registration symbol. If it is missing, then we assume we are not attached to a JIT. */ bound_minimal_symbol reg_symbol = lookup_minimal_symbol (jit_break_name, nullptr, the_objfile); if (reg_symbol.minsym == NULL || BMSYMBOL_VALUE_ADDRESS (reg_symbol) == 0) - continue; + { + /* No need to repeat the lookup the next time. */ + the_objfile->skip_jit_symbol_lookup = true; + continue; + } bound_minimal_symbol desc_symbol = lookup_minimal_symbol (jit_descriptor_name, NULL, the_objfile); if (desc_symbol.minsym == NULL || BMSYMBOL_VALUE_ADDRESS (desc_symbol) == 0) - continue; + { + /* No need to repeat the lookup the next time. */ + the_objfile->skip_jit_symbol_lookup = true; + continue; + } jiter_objfile_data *objf_data = get_jiter_objfile_data (reg_symbol.objfile); |