mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-19 08:22:36 +08:00
2011-01-05 Michael Snyder <msnyder@vmware.com>
* addrmap.c: Shorten lines of >= 80 columns. * arch-utils.c: Ditto. * arch-utils.h: Ditto. * ax-gdb.c: Ditto. * ax-general.c: Ditto. * bcache.c: Ditto. * blockframe.c: Ditto. * breakpoint.c: Ditto. * buildsym.c: Ditto. * c-lang.c: Ditto. * c-typeprint.c: Ditto. * charset.c: Ditto. * coffread.c: Ditto. * command.h: Ditto. * corelow.c: Ditto. * cp-abi.c: Ditto. * cp-namespace.c: Ditto. * cp-support.c: Ditto. * dbug-rom.c: Ditto. * dbxread.c: Ditto. * defs.h: Ditto. * dfp.c: Ditto. * dfp.h: Ditto. * dictionary.c: Ditto. * disasm.c: Ditto. * doublest.c: Ditto. * dwarf2-frame.c: Ditto. * dwarf2expr.c: Ditto. * dwarf2loc.c: Ditto. * dwarf2read.c: Ditto. * elfread.c: Ditto. * eval.c: Ditto. * event-loop.c: Ditto. * event-loop.h: Ditto. * exceptions.h: Ditto. * exec.c: Ditto. * expprint.c: Ditto. * expression.h: Ditto. * f-lang.c: Ditto. * f-valprint.c: Ditto. * findcmd.c: Ditto. * frame-base.c: Ditto. * frame-unwind.c: Ditto. * frame-unwind.h: Ditto. * frame.c: Ditto. * frame.h: Ditto. * gcore.c: Ditto. * gdb-stabs.h: Ditto. * gdb_assert.h: Ditto. * gdb_dirent.h: Ditto. * gdb_obstack.h: Ditto. * gdbcore.h: Ditto. * gdbtypes.c: Ditto. * gdbtypes.h: Ditto. * inf-ttrace.c: Ditto. * infcall.c: Ditto. * infcmd.c: Ditto. * inflow.c: Ditto. * infrun.c: Ditto. * inline-frame.h: Ditto. * language.c: Ditto. * language.h: Ditto. * libunwind-frame.c: Ditto. * libunwind-frame.h: Ditto. * linespec.c: Ditto. * linux-nat.c: Ditto. * linux-nat.h: Ditto. * linux-thread-db.c: Ditto. * machoread.c: Ditto. * macroexp.c: Ditto. * macrotab.c: Ditto. * main.c: Ditto. * maint.c: Ditto. * mdebugread.c: Ditto. * memattr.c: Ditto. * minsyms.c: Ditto. * monitor.c: Ditto. * monitor.h: Ditto. * objfiles.c: Ditto. * objfiles.h: Ditto. * osabi.c: Ditto. * p-typeprint.c: Ditto. * p-valprint.c: Ditto. * parse.c: Ditto. * printcmd.c: Ditto. * proc-events.c: Ditto. * procfs.c: Ditto. * progspace.c: Ditto. * progspace.h: Ditto. * psympriv.h: Ditto. * psymtab.c: Ditto. * record.c: Ditto. * regcache.c: Ditto. * regcache.h: Ditto. * remote-fileio.c: Ditto. * remote.c: Ditto. * ser-mingw.c: Ditto. * ser-tcp.c: Ditto. * ser-unix.c: Ditto. * serial.c: Ditto. * serial.h: Ditto. * solib-frv.c: Ditto. * solib-irix.c: Ditto. * solib-osf.c: Ditto. * solib-pa64.c: Ditto. * solib-som.c: Ditto. * solib-sunos.c: Ditto. * solib-svr4.c: Ditto. * solib-target.c: Ditto. * solib.c: Ditto. * somread.c: Ditto. * source.c: Ditto. * stabsread.c: Ditto. * stabsread.c: Ditto. * stack.c: Ditto. * stack.h: Ditto. * symfile-mem.c: Ditto. * symfile.c: Ditto. * symfile.h: Ditto. * symmisc.c: Ditto. * symtab.c: Ditto. * symtab.h: Ditto. * target-descriptions.c: Ditto. * target-memory.c: Ditto. * target.c: Ditto. * target.h: Ditto. * terminal.h: Ditto. * thread.c: Ditto. * top.c: Ditto. * tracepoint.c: Ditto. * tracepoint.h: Ditto. * ui-file.c: Ditto. * ui-file.h: Ditto. * ui-out.h: Ditto. * user-regs.c: Ditto. * user-regs.h: Ditto. * utils.c: Ditto. * valarith.c: Ditto. * valops.c: Ditto. * valprint.c: Ditto. * valprint.h: Ditto. * value.c: Ditto. * varobj.c: Ditto. * varobj.h: Ditto. * vec.h: Ditto. * xcoffread.c: Ditto. * xcoffsolib.c: Ditto. * xcoffsolib.h: Ditto. * xml-syscall.c: Ditto. * xml-tdesc.c: Ditto.
This commit is contained in:
@ -153,14 +153,16 @@ enum exp_opcode
|
||||
Thus, the operation occupies four exp_elements. */
|
||||
OP_LONG,
|
||||
|
||||
/* OP_DOUBLE is similar but takes a DOUBLEST constant instead of a long. */
|
||||
/* OP_DOUBLE is similar but takes a DOUBLEST constant instead of a
|
||||
long. */
|
||||
OP_DOUBLE,
|
||||
|
||||
/* OP_VAR_VALUE takes one struct block * in the following element,
|
||||
and one struct symbol * in the following exp_element, followed by
|
||||
another OP_VAR_VALUE, making four exp_elements. If the block is
|
||||
non-NULL, evaluate the symbol relative to the innermost frame
|
||||
executing in that block; if the block is NULL use the selected frame. */
|
||||
and one struct symbol * in the following exp_element, followed
|
||||
by another OP_VAR_VALUE, making four exp_elements. If the
|
||||
block is non-NULL, evaluate the symbol relative to the
|
||||
innermost frame executing in that block; if the block is NULL
|
||||
use the selected frame. */
|
||||
OP_VAR_VALUE,
|
||||
|
||||
/* OP_LAST is followed by an integer in the next exp_element.
|
||||
@ -173,8 +175,9 @@ enum exp_opcode
|
||||
This is the name of a register to fetch. */
|
||||
OP_REGISTER,
|
||||
|
||||
/* OP_INTERNALVAR is followed by an internalvar ptr in the next exp_element.
|
||||
With another OP_INTERNALVAR at the end, this makes three exp_elements. */
|
||||
/* OP_INTERNALVAR is followed by an internalvar ptr in the next
|
||||
exp_element. With another OP_INTERNALVAR at the end, this
|
||||
makes three exp_elements. */
|
||||
OP_INTERNALVAR,
|
||||
|
||||
/* OP_FUNCALL is followed by an integer in the next exp_element.
|
||||
@ -185,10 +188,11 @@ enum exp_opcode
|
||||
making three exp_elements. */
|
||||
OP_FUNCALL,
|
||||
|
||||
/* OP_OBJC_MSGCALL is followed by a string in the next exp_element and then an
|
||||
integer. The string is the selector string. The integer is the number
|
||||
of arguments to the message call. That many plus one values are used,
|
||||
the first one being the object pointer. This is an Objective C message */
|
||||
/* OP_OBJC_MSGCALL is followed by a string in the next exp_element
|
||||
and then an integer. The string is the selector string. The
|
||||
integer is the number of arguments to the message call. That
|
||||
many plus one values are used, the first one being the object
|
||||
pointer. This is an Objective C message */
|
||||
OP_OBJC_MSGCALL,
|
||||
|
||||
/* This is EXACTLY like OP_FUNCALL but is semantically different.
|
||||
@ -298,8 +302,9 @@ enum exp_opcode
|
||||
It just comes in a tight (OP_THIS, OP_THIS) pair. */
|
||||
OP_THIS,
|
||||
|
||||
/* Objective-C: OP_OBJC_SELF is just a placeholder for the class instance
|
||||
variable. It just comes in a tight (OP_OBJC_SELF, OP_OBJC_SELF) pair. */
|
||||
/* Objective-C: OP_OBJC_SELF is just a placeholder for the class
|
||||
instance variable. It just comes in a tight (OP_OBJC_SELF,
|
||||
OP_OBJC_SELF) pair. */
|
||||
OP_OBJC_SELF,
|
||||
|
||||
/* Objective C: "@selector" pseudo-operator */
|
||||
@ -388,7 +393,8 @@ union exp_element
|
||||
|
||||
struct expression
|
||||
{
|
||||
const struct language_defn *language_defn; /* language it was entered in */
|
||||
const struct language_defn *language_defn; /* language it was
|
||||
entered in */
|
||||
struct gdbarch *gdbarch; /* architecture it was parsed in */
|
||||
int nelts;
|
||||
union exp_element elts[1];
|
||||
@ -447,7 +453,8 @@ extern void print_expression (struct expression *, struct ui_file *);
|
||||
|
||||
extern char *op_string (enum exp_opcode);
|
||||
|
||||
extern void dump_raw_expression (struct expression *, struct ui_file *, char *);
|
||||
extern void dump_raw_expression (struct expression *,
|
||||
struct ui_file *, char *);
|
||||
extern void dump_prefix_expression (struct expression *, struct ui_file *);
|
||||
|
||||
#endif /* !defined (EXPRESSION_H) */
|
||||
|
Reference in New Issue
Block a user