Home
last modified time | relevance | path

Searched refs:gdb (Results 1 – 25 of 64) sorted by relevance

123

/dragonfly/contrib/gdb-7/
H A DREADME.DELETED444 gdb/NEWS
562 gdb/doc/gdb.info
563 gdb/doc/gdb.info-1
564 gdb/doc/gdb.info-2
565 gdb/doc/gdb.info-3
566 gdb/doc/gdb.info-4
567 gdb/doc/gdb.info-5
568 gdb/doc/gdb.info-6
569 gdb/doc/gdb.info-7
570 gdb/doc/gdb.texinfo
[all …]
H A DREADME.DRAGONFLY17 gdb/i386dfly-nat.c
21 gdb/amd64-tdep.h
22 gdb/common/ptid.h
24 gdb/configure.tgt
25 gdb/defs.h
26 gdb/exec.c
27 gdb/i386-tdep.h
28 gdb/i386bsd-nat.c
30 gdb/inferiors.c
31 gdb/main.c
[all …]
/dragonfly/contrib/gdb-7/gdb/python/lib/gdb/command/
H A Dexplore.py19 import gdb
33 gdb.TYPE_CODE_CHAR,
34 gdb.TYPE_CODE_INT,
35 gdb.TYPE_CODE_BOOL,
36 gdb.TYPE_CODE_FLT,
37 gdb.TYPE_CODE_VOID,
38 gdb.TYPE_CODE_ENUM,
251 except gdb.MemoryError:
345 except gdb.MemoryError:
683 raise gdb.GdbError(
[all …]
H A Dtype_printers.py18 import gdb
22 class InfoTypePrinter(gdb.Command):
48 for objfile in gdb.objfiles():
53 if gdb.current_progspace().type_printers:
57 if gdb.type_printers:
59 self.list_type_printers(gdb.type_printers)
61 class _EnableOrDisableCommand(gdb.Command):
78 for objfile in gdb.objfiles():
83 if self.set_some(name, gdb.type_printers):
95 for objfile in gdb.objfiles():
[all …]
H A Dpretty_printers.py20 import gdb
41 argv = gdb.string_to_argv(arg);
84 class InfoPrettyPrinter(gdb.Command):
100 gdb.COMMAND_DATA)
157 cp = gdb.current_progspace()
161 for objfile in gdb.objfiles():
198 for objfile in gdb.objfiles():
287 cp = gdb.current_progspace()
291 for objfile in gdb.objfiles():
316 class EnablePrettyPrinter (gdb.Command):
[all …]
H A Dprompt.py19 import gdb
20 import gdb.prompt
22 class _ExtendedPrompt(gdb.Parameter):
35 __doc__ = __doc__ + gdb.prompt.prompt_help()
42 gdb.COMMAND_SUPPORT,
43 gdb.PARAM_STRING_NOESCAPE)
55 gdb.prompt_hook = self.before_prompt_hook
61 newprompt = gdb.prompt.substitute_prompt(self.value)
/dragonfly/contrib/gdb-7/gdb/python/lib/gdb/
H A Dtypes.py19 import gdb
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
58 if (type_.code != gdb.TYPE_CODE_STRUCT and
59 type_.code != gdb.TYPE_CODE_UNION):
85 if enum_type.code != gdb.TYPE_CODE_ENUM:
149 for objfile in gdb.objfiles():
152 _get_some_type_recognizers(result, gdb.current_progspace().type_printers)
154 _get_some_type_recognizers(result, gdb.type_printers)
[all …]
H A Dprinting.py19 import gdb
20 import gdb.types
118 if gdb.parameter("verbose"):
119 gdb.write("Registering global %s pretty-printer ...\n" % name)
120 obj = gdb
122 if gdb.parameter("verbose"):
123 gdb.write("Registering %s pretty-printer for %s ...\n" %
201 typename = gdb.types.get_basic_type(val.type).tag
252 flags = gdb.lookup_type(self.name)
H A Dprompt.py19 import gdb
32 except gdb.error:
44 return _prompt_object_attr(gdb.selected_frame, 'frame', attr, 'name')
48 return _prompt_object_attr(gdb.selected_thread, 'thread', attr, 'num')
52 return gdb.VERSION
72 return gdb.parameter(attr)
/dragonfly/contrib/gdb-7/gdb/
H A DREADME42 cp gdb/gdb /usr/local/bin/gdb (or wherever you want)
55 cp gdb/gdb /usr/local/bin/gdb (or wherever you want)
67 /berman/migchain/source/gdb-VERSION/gdb/configure # WRONG
71 'gdb-VERSION/gdb/configure', then you are configuring only the gdb
109 `gdb-VERSION/gdb/doc/gdb.info', and it refers to subordinate files
124 cd gdb/doc
165 `gdb' program.
179 `gdb-VERSION/gdb'
278 directory `gdb-sun4/libiberty', and GDB itself in `gdb-sun4/gdb'.
612 (2) cd gdb-VERSION/gdb
[all …]
H A Dsolib.c714 gdb = so_list_head; in update_solib_list()
716 while (gdb) in update_solib_list()
747 gdb_link = &gdb->next; in update_solib_list()
748 gdb = *gdb_link; in update_solib_list()
761 *gdb_link = gdb->next; in update_solib_list()
764 if (gdb->objfile && ! (gdb->objfile->flags & OBJF_USERLOADED) in update_solib_list()
770 remove_target_sections (gdb, gdb->abfd); in update_solib_list()
772 free_so (gdb); in update_solib_list()
773 gdb = *gdb_link; in update_solib_list()
874 struct so_list *gdb; in solib_add() local
[all …]
H A Dgdb-gdb.py18 import gdb
89 flags = gdb.lookup_type("enum type_flag_value")
95 iflags = gdb.lookup_type("enum type_instance_flag_value")
231 if self.val['code'] == gdb.TYPE_CODE_RANGE:
253 if gdb.current_objfile() is not None:
257 register_pretty_printer(gdb.current_objfile())
263 for objfile in gdb.objfiles():
H A Dgdb-gdb.gdb.in1 echo Setting up the environment for debugging gdb.\n
24 set prompt (top-gdb)
H A Dgdb.gdb1 # Examples of using gdb's command language to print out various gdb data
/dragonfly/contrib/gdb-7/gdb/data-directory/
H A DMakefile.in46 gdb-syscalls.dtd \
55 gdb/__init__.py \
56 gdb/types.py \
57 gdb/printing.py \
58 gdb/prompt.py \
59 gdb/command/__init__.py \
60 gdb/command/type_printers.py \
62 gdb/command/prompt.py \
63 gdb/command/explore.py \
64 gdb/function/__init__.py \
[all …]
/dragonfly/contrib/gdb-7/gdb/python/lib/gdb/function/
H A Dstrfns.py19 import gdb
23 class _MemEq(gdb.Function):
41 byte_vector = gdb.lookup_type("char").vector(length - 1)
48 class _StrLen(gdb.Function):
65 class _StrEq(gdb.Function):
85 class _RegEx(gdb.Function):
/dragonfly/gnu/usr.bin/gdb/gdb/
H A DMakefile1 PROG= gdb
2 MAN= gdb.1 gdbint.7
6 CFLAGS+= -I${BASEDIR}/bfd -I${BASEDIR}/gdb
7 CFLAGS+= -I${BASEDIR}/gdb/common -I${.CURDIR}/../libbfd
24 .PATH: ${BASEDIR}/gdb
/dragonfly/gnu/usr.bin/gdb/kgdb/
H A DMakefile6 CFLAGS+= -I${BASEDIR}/bfd -I${BASEDIR}/gdb -I${.CURDIR}/../libbfd
7 CFLAGS+= -I${.OBJDIR}/../libbfd -I${BASEDIR}/gdb/common
28 .PATH: ${BASEDIR}/gdb
/dragonfly/test/x86_64/
H A DMakefile233 cd ${QEMUDIR} && gdb qemu-system-x86_64
238 cd /usr/src/gnu/usr.bin/gdb && (make clean; make TARGET_ARCH=x86_64)
239 cp /usr/obj/usr/src/gnu/usr.bin/gdb/gdb/gdb /usr/local/bin/gdb64
240 cd /usr/src/gnu/usr.bin/gdb && make clean
/dragonfly/gnu/usr.bin/gdb/libgnu/
H A DMakefile11 .PATH: ${BASEDIR}/gdb/gnulib/import
13 CFLAGS+= -I${.CURDIR} -I${.OBJDIR} -I${BASEDIR}/gdb/gnulib/import
/dragonfly/gnu/usr.bin/gdb/libgdb/
H A DMakefile5 LIB= gdb
8 CONTRIBDIR= ${BASEDIR}/gdb
97 common-utils.c buffer.c ptid.c gdb-dlfcn.c common-agent.c \
107 SRCS+= remote.c dcache.c tracepoint.c ax-general.c ax-gdb.c \
165 gdb-target.dtd \
/dragonfly/sys/bus/firewire/
H A D00README87 dmesg and gdb those are statically linked.
89 as gdb with /dev/mem or want to insert savectx(&dumppcb) into panic(),
100 # gdb -k -c /dev/fwmem0 /sys/i386/compile/GENERIC/kernel.debug
103 remote gdb at 400,000,000 bps :-)
/dragonfly/contrib/xz/
H A DREADME174 using gdb:
175 $ gdb /path/to/app-binary # Load the app to the debugger.
176 (gdb) core core # Open the coredump.
177 (gdb) bt # Print the backtrace. Copy & paste to bug report.
178 (gdb) quit # Quit gdb.
/dragonfly/contrib/binutils-2.34/
H A DREADME6 If you are receiving this as part of a GDB release, see the file gdb/README.
46 REPORTING BUGS: Again, see gdb/README, binutils/README, etc., for info
/dragonfly/contrib/binutils-2.27/
H A DREADME6 If you are receiving this as part of a GDB release, see the file gdb/README.
46 REPORTING BUGS: Again, see gdb/README, binutils/README, etc., for info

123