URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [gdbinit.in] - Rev 684
Compare with Previous | Blame | View Log
# Copyright (C) 2001, 2002, 2003, 2004, 2006,# 2008, 2010 Free Software Foundation, Inc.## This file is part of GCC.## GCC 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, or (at your option)# any later version.## GCC 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 GCC; see the file COPYING3. If not see# <http://www.gnu.org/licenses/>.define prset debug_rtx ($)enddocument prPrint the full structure of the rtx that is $.Works only when an inferior is executing.enddefine prlset debug_rtx_list ($, debug_rtx_count)enddocument prlPrint the full structure of all rtx insns beginning at $.Works only when an inferior is executing.Uses variable debug_rtx_count to control number of insns printed:debug_rtx_count > 0: print from $ on.debug_rtx_count < 0: print a window around $.There is also debug_rtx_find (rtx, uid) that will scan a list for UID and printit using debug_rtx_list. Usage example: set $foo=debug_rtx_find(first, 42)enddefine ptset debug_tree ($)enddocument ptPrint the full structure of the tree that is $.Works only when an inferior is executing.enddefine pctset debug_c_tree ($)enddocument pctPrint the tree that is $ in C syntax.Works only when an inferior is executing.enddefine pggset debug_gimple_stmt ($)enddocument pggPrint the Gimple statement that is $ in C syntax.Works only when an inferior is executing.enddefine pgqset debug_gimple_seq ($)enddocument pgqPrint the Gimple sequence that is $ in C syntax.Works only when an inferior is executing.enddefine pgsset debug_generic_stmt ($)enddocument pgsPrint the statement that is $ in C syntax.Works only when an inferior is executing.enddefine pgeset debug_generic_expr ($)enddocument pgePrint the expression that is $ in C syntax.Works only when an inferior is executing.enddefine ptcoutput (enum tree_code) $.common.codeecho \nenddocument ptcPrint the tree-code of the tree node that is $.enddefine pdnoutput $.decl_minimal.name->identifier.id.strecho \nenddocument pdnPrint the name of the decl-node that is $.enddefine ptnoutput $.type.name->decl_minimal.name->identifier.id.strecho \nenddocument ptnPrint the name of the type-node that is $.enddefine pvtset debug_vec_tree ($)enddocument pvtPrint the VEC(tree) that is in $.enddefine pddset debug_dwarf_die ($)enddocument pddPrint the dw_die_ref that is in $.enddefine prcoutput (enum rtx_code) $.codeecho \ (output $.modeecho )\nenddocument prcPrint the rtx-code and machine mode of the rtx that is $.enddefine piprint $.u.fld[0].rt_rtx@7enddocument piPrint the fields of an instruction that is $.enddefine pbsset print_binding_stack ()enddocument pbsIn cc1plus, print the current binding stack, frame by frame, up to andincluding the global binding level.enddefine pbbset dump_bb ($, stderr, 0)enddocument pbbDump the basic block that is in $, including rtx.enddefine pbmset bitmap_print (stderr, $, "", "\n")enddocument pbmDump the bitmap that is in $ as a comma-separated list of numbers.end# Put breakpoints at exit and fancy_abort in case abort is mapped# to either fprintf/exit or fancy_abort.b fancy_abort# Put a breakpoint on internal_error to help with debugging ICEs.b internal_errorset complaints 0# Don't let abort actually run, as it will make# stdio stop working and therefore the `pr' command above as well.# Put this last because gcc does not reference it any more unless# USE_SYSTEM_ABORT is defined, so gdb may complain and bail out.b exitb abort
