47d4871188
File list found with: $ grep "along with this program" * -A 1 -rn \ | grep "*/" \ | grep -v "along with this program" \ | sed 's,-[0-9]\+-.*,,g' Tested on x86_64 Fedora 17. gdb/ 2013-06-07 Pedro Alves <palves@redhat.com> * darwin-nat.c: Fix formating in copyright header. * darwin-nat.h: Likewise. * gnu-nat.c: Likewise. * machoread.c: Likewise. gdb/testsuite/ 2013-06-07 Pedro Alves <palves@redhat.com> * gdb.ada/info_types.c: Fix formating in copyright header. * gdb.base/break-on-linker-gcd-function.cc: Likewise. * gdb.base/float.c: Likewise. * gdb.base/inferior-died.c: Likewise. * gdb.base/interp.c: Likewise. * gdb.base/jit-main.c: Likewise. * gdb.base/jit-solib.c: Likewise. * gdb.base/long_long.c: Likewise. * gdb.base/longjmp.c: Likewise. * gdb.base/nextoverexit.c: Likewise. * gdb.base/pr11022.c: Likewise. * gdb.base/prelink-lib.c: Likewise. * gdb.base/prelink.c: Likewise. * gdb.base/prologue.c: Likewise. * gdb.base/restore.c: Likewise. * gdb.base/sigchld.c: Likewise. * gdb.base/solib-search-lib1.c: Likewise. * gdb.base/solib-search-lib2.c: Likewise. * gdb.base/solib-search.c: Likewise. * gdb.base/solib-search.h: Likewise. * gdb.base/whatis.c: Likewise. * gdb.cp/abstract-origin.cc: Likewise. * gdb.cp/anon-struct.cc: Likewise. * gdb.cp/baseenum.cc: Likewise. * gdb.cp/bs15503.cc: Likewise. * gdb.cp/call-c-1.c: Likewise. * gdb.cp/call-c.cc: Likewise. * gdb.cp/class2.cc: Likewise. * gdb.cp/classes.cc: Likewise. * gdb.cp/cttiadd.cc: Likewise. * gdb.cp/cttiadd1.cc: Likewise. * gdb.cp/cttiadd2.cc: Likewise. * gdb.cp/cttiadd3.cc: Likewise. * gdb.cp/derivation.cc: Likewise. * gdb.cp/derivation2.cc: Likewise. * gdb.cp/dispcxx.cc: Likewise. * gdb.cp/exception.cc: Likewise. * gdb.cp/gdb2384-base.cc: Likewise. * gdb.cp/gdb2384-base.h: Likewise. * gdb.cp/gdb2384.cc: Likewise. * gdb.cp/gdb2495.cc: Likewise. * gdb.cp/mb-inline.h: Likewise. * gdb.cp/mb-inline1.cc: Likewise. * gdb.cp/mb-inline2.cc: Likewise. * gdb.cp/member-name.cc: Likewise. * gdb.cp/member-ptr.cc: Likewise. * gdb.cp/misc.cc: Likewise. * gdb.cp/namespace1.cc: Likewise. * gdb.cp/nextoverthrow.cc: Likewise. * gdb.cp/pr-574.cc: Likewise. * gdb.cp/pr9631.cc: Likewise. * gdb.cp/printmethod.cc: Likewise. * gdb.cp/psmang1.cc: Likewise. * gdb.cp/psmang2.cc: Likewise. * gdb.cp/psymtab-parameter.cc: Likewise. * gdb.cp/ptype-flags.cc: Likewise. * gdb.cp/ref-params.cc: Likewise. * gdb.cp/ref-types.cc: Likewise. * gdb.cp/smartp.cc: Likewise. * gdb.cp/try_catch.cc: Likewise. * gdb.cp/userdef.cc: Likewise. * gdb.cp/using-crash.cc: Likewise. * gdb.cp/virtfunc.cc: Likewise. * gdb.cp/virtfunc2.cc: Likewise. * gdb.dwarf2/callframecfa.S: Likewise. * gdb.dwarf2/dw2-ranges.c: Likewise. * gdb.dwarf2/dw2-ranges2.c: Likewise. * gdb.dwarf2/dw2-ranges3.c: Likewise. * gdb.dwarf2/dw2-restore.S: Likewise. * gdb.dwarf2/pieces.S: Likewise. * gdb.dwarf2/valop.S: Likewise. * gdb.java/jnpe.java: Likewise. * gdb.mi/mi-stepn.c: Likewise. * gdb.mi/mi-var-cp.cc: Likewise. * gdb.mi/mi-var-rtti.cc: Likewise. * gdb.mi/ns-stale-regcache.c: Likewise. * gdb.mi/pr11022.c: Likewise. * gdb.mi/solib-lib.c: Likewise. * gdb.mi/solib-main.c: Likewise. * gdb.python/py-arch.c: Likewise. * gdb.python/py-block.c: Likewise. * gdb.python/py-breakpoint.c: Likewise. * gdb.python/py-events.c: Likewise. * gdb.python/py-evthreads.c: Likewise. * gdb.python/py-explore.c: Likewise. * gdb.python/py-explore.cc: Likewise. * gdb.python/py-finish-breakpoint.c: Likewise. * gdb.python/py-finish-breakpoint2.cc: Likewise. * gdb.python/py-symbol.c: Likewise. * gdb.threads/execl.c: Likewise. * gdb.threads/execl1.c: Likewise.
219 lines
6.3 KiB
C
219 lines
6.3 KiB
C
/* This test program is part of GDB, the GNU debugger.
|
|
|
|
Copyright 2011-2013 Free Software Foundation, Inc.
|
|
|
|
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/>. */
|
|
|
|
/* Simulate loading of JIT code. */
|
|
|
|
#include <elf.h>
|
|
#include <link.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/stat.h>
|
|
|
|
/* ElfW is coming from linux. On other platforms it does not exist.
|
|
Let us define it here. */
|
|
#ifndef ElfW
|
|
# if (defined (_LP64) || defined (__LP64__))
|
|
# define WORDSIZE 64
|
|
# else
|
|
# define WORDSIZE 32
|
|
# endif /* _LP64 || __LP64__ */
|
|
#define ElfW(type) _ElfW (Elf, WORDSIZE, type)
|
|
#define _ElfW(e,w,t) _ElfW_1 (e, w, _##t)
|
|
#define _ElfW_1(e,w,t) e##w##t
|
|
#endif /* !ElfW */
|
|
|
|
typedef enum
|
|
{
|
|
JIT_NOACTION = 0,
|
|
JIT_REGISTER_FN,
|
|
JIT_UNREGISTER_FN
|
|
} jit_actions_t;
|
|
|
|
struct jit_code_entry
|
|
{
|
|
struct jit_code_entry *next_entry;
|
|
struct jit_code_entry *prev_entry;
|
|
const char *symfile_addr;
|
|
uint64_t symfile_size;
|
|
};
|
|
|
|
struct jit_descriptor
|
|
{
|
|
uint32_t version;
|
|
/* This type should be jit_actions_t, but we use uint32_t
|
|
to be explicit about the bitwidth. */
|
|
uint32_t action_flag;
|
|
struct jit_code_entry *relevant_entry;
|
|
struct jit_code_entry *first_entry;
|
|
};
|
|
|
|
/* GDB puts a breakpoint in this function. */
|
|
void __attribute__((noinline)) __jit_debug_register_code () { }
|
|
|
|
/* Make sure to specify the version statically, because the
|
|
debugger may check the version before we can set it. */
|
|
struct jit_descriptor __jit_debug_descriptor = { 1, 0, 0, 0 };
|
|
|
|
static void
|
|
usage (const char *const argv0)
|
|
{
|
|
fprintf (stderr, "Usage: %s library [count]\n", argv0);
|
|
exit (1);
|
|
}
|
|
|
|
/* Update .p_vaddr and .sh_addr as if the code was JITted to ADDR. */
|
|
|
|
static void
|
|
update_locations (const void *const addr, int idx)
|
|
{
|
|
const ElfW (Ehdr) *const ehdr = (ElfW (Ehdr) *)addr;
|
|
ElfW (Shdr) *const shdr = (ElfW (Shdr) *)((char *)addr + ehdr->e_shoff);
|
|
ElfW (Phdr) *const phdr = (ElfW (Phdr) *)((char *)addr + ehdr->e_phoff);
|
|
int i;
|
|
|
|
for (i = 0; i < ehdr->e_phnum; ++i)
|
|
if (phdr[i].p_type == PT_LOAD)
|
|
phdr[i].p_vaddr += (ElfW (Addr))addr;
|
|
|
|
for (i = 0; i < ehdr->e_shnum; ++i)
|
|
{
|
|
if (shdr[i].sh_type == SHT_STRTAB)
|
|
{
|
|
/* Note: we update both .strtab and .dynstr. The latter would
|
|
not be correct if this were a regular shared library (.hash
|
|
would be wrong), but this is a simulation -- the library is
|
|
never exposed to the dynamic loader, so it all ends up ok. */
|
|
char *const strtab = (char *)((ElfW (Addr))addr + shdr[i].sh_offset);
|
|
char *const strtab_end = strtab + shdr[i].sh_size;
|
|
char *p;
|
|
|
|
for (p = strtab; p < strtab_end; p += strlen (p) + 1)
|
|
if (strcmp (p, "jit_function_XXXX") == 0)
|
|
sprintf (p, "jit_function_%04d", idx);
|
|
}
|
|
|
|
if (shdr[i].sh_flags & SHF_ALLOC)
|
|
shdr[i].sh_addr += (ElfW (Addr))addr;
|
|
}
|
|
}
|
|
|
|
#ifndef MAIN
|
|
#define MAIN main
|
|
#endif
|
|
|
|
int
|
|
MAIN (int argc, char *argv[])
|
|
{
|
|
/* These variables are here so they can easily be set from jit.exp. */
|
|
const char *libname = NULL;
|
|
int count = 0;
|
|
|
|
count = count; /* gdb break here 0 */
|
|
|
|
if (argc < 2)
|
|
usage (argv[0]);
|
|
else
|
|
{
|
|
int i, fd;
|
|
struct stat st;
|
|
|
|
if (libname == NULL)
|
|
/* Only set if not already set from GDB. */
|
|
libname = argv[1];
|
|
|
|
if (argc > 2 && count == 0)
|
|
/* Only set if not already set from GDB. */
|
|
count = atoi (argv[2]);
|
|
|
|
printf ("%s:%d: libname = %s, count = %d\n", __FILE__, __LINE__,
|
|
libname, count);
|
|
|
|
if ((fd = open (libname, O_RDONLY)) == -1)
|
|
{
|
|
fprintf (stderr, "open (\"%s\", O_RDONLY): %s\n", libname,
|
|
strerror (errno));
|
|
exit (1);
|
|
}
|
|
|
|
if (fstat (fd, &st) != 0)
|
|
{
|
|
fprintf (stderr, "fstat (\"%d\"): %s\n", fd, strerror (errno));
|
|
exit (1);
|
|
}
|
|
|
|
for (i = 0; i < count; ++i)
|
|
{
|
|
const void *const addr = mmap (0, st.st_size, PROT_READ|PROT_WRITE,
|
|
MAP_PRIVATE, fd, 0);
|
|
struct jit_code_entry *const entry = calloc (1, sizeof (*entry));
|
|
|
|
if (addr == MAP_FAILED)
|
|
{
|
|
fprintf (stderr, "mmap: %s\n", strerror (errno));
|
|
exit (1);
|
|
}
|
|
|
|
update_locations (addr, i);
|
|
|
|
/* Link entry at the end of the list. */
|
|
entry->symfile_addr = (const char *)addr;
|
|
entry->symfile_size = st.st_size;
|
|
entry->prev_entry = __jit_debug_descriptor.relevant_entry;
|
|
__jit_debug_descriptor.relevant_entry = entry;
|
|
|
|
if (entry->prev_entry != NULL)
|
|
entry->prev_entry->next_entry = entry;
|
|
else
|
|
__jit_debug_descriptor.first_entry = entry;
|
|
|
|
/* Notify GDB. */
|
|
__jit_debug_descriptor.action_flag = JIT_REGISTER_FN;
|
|
__jit_debug_register_code ();
|
|
}
|
|
|
|
i = 0; /* gdb break here 1 */
|
|
|
|
/* Now unregister them all in reverse order. */
|
|
while (__jit_debug_descriptor.relevant_entry != NULL)
|
|
{
|
|
struct jit_code_entry *const entry =
|
|
__jit_debug_descriptor.relevant_entry;
|
|
struct jit_code_entry *const prev_entry = entry->prev_entry;
|
|
|
|
if (prev_entry != NULL)
|
|
{
|
|
prev_entry->next_entry = NULL;
|
|
entry->prev_entry = NULL;
|
|
}
|
|
else
|
|
__jit_debug_descriptor.first_entry = NULL;
|
|
|
|
/* Notify GDB. */
|
|
__jit_debug_descriptor.action_flag = JIT_UNREGISTER_FN;
|
|
__jit_debug_register_code ();
|
|
|
|
__jit_debug_descriptor.relevant_entry = prev_entry;
|
|
free (entry);
|
|
}
|
|
}
|
|
return 0; /* gdb break here 2 */
|
|
}
|