* ada-lang.c (ada_make_symbol_completion_list): Add 'code'
[deliverable/binutils-gdb.git] / gdb / expression.h
CommitLineData
c906108c 1/* Definitions for expressions stored in reversed prefix form, for GDB.
1bac305b 2
0b302171
JB
3 Copyright (C) 1986, 1989, 1992, 1994, 2000, 2003, 2005, 2007-2012
4 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21#if !defined (EXPRESSION_H)
22#define EXPRESSION_H 1
23
24
0963b4bd 25#include "symtab.h" /* Needed for "struct block" type. */
d16aafd8 26#include "doublest.h" /* Needed for DOUBLEST. */
c906108c
SS
27
28
29/* Definitions for saved C expressions. */
30
31/* An expression is represented as a vector of union exp_element's.
32 Each exp_element is an opcode, except that some opcodes cause
33 the following exp_element to be treated as a long or double constant
34 or as a variable. The opcodes are obeyed, using a stack for temporaries.
35 The value is left on the temporary stack at the end. */
36
37/* When it is necessary to include a string,
38 it can occupy as many exp_elements as it needs.
39 We find the length of the string using strlen,
40 divide to find out how many exp_elements are used up,
41 and skip that many. Strings, like numbers, are indicated
42 by the preceding opcode. */
43
44enum exp_opcode
c5aa993b 45 {
56c12414 46#define OP(name) name ,
c906108c 47
56c12414 48#include "std-operator.def"
c906108c 49
56c12414
JK
50 /* First extension operator. Individual language modules define extra
51 operators in *.def include files below with numbers higher than
52 OP_EXTENDED0. */
53 OP (OP_EXTENDED0)
c5aa993b 54
56c12414
JK
55/* Language specific operators. */
56#include "ada-operator.def"
c5aa993b 57
56c12414 58#undef OP
8285870a
JK
59
60 /* Existing only to swallow the last comma (',') from last .inc file. */
61 OP_UNUSED_LAST
c5aa993b 62 };
c906108c
SS
63
64union exp_element
c5aa993b
JM
65 {
66 enum exp_opcode opcode;
67 struct symbol *symbol;
68 LONGEST longconst;
69 DOUBLEST doubleconst;
27bc4d80 70 gdb_byte decfloatconst[16];
c5aa993b
JM
71 /* Really sizeof (union exp_element) characters (or less for the last
72 element of a string). */
73 char string;
74 struct type *type;
75 struct internalvar *internalvar;
270140bd 76 const struct block *block;
9e35dae4 77 struct objfile *objfile;
c5aa993b 78 };
c906108c
SS
79
80struct expression
c5aa993b 81 {
3e43a32a 82 const struct language_defn *language_defn; /* language it was
0963b4bd
MS
83 entered in. */
84 struct gdbarch *gdbarch; /* architecture it was parsed in. */
c5aa993b
JM
85 int nelts;
86 union exp_element elts[1];
87 };
c906108c
SS
88
89/* Macros for converting between number of expression elements and bytes
0963b4bd 90 to store that many expression elements. */
c906108c
SS
91
92#define EXP_ELEM_TO_BYTES(elements) \
93 ((elements) * sizeof (union exp_element))
94#define BYTES_TO_EXP_ELEM(bytes) \
95 (((bytes) + sizeof (union exp_element) - 1) / sizeof (union exp_element))
96
97/* From parse.c */
98
a14ed312 99extern struct expression *parse_expression (char *);
c906108c 100
2f68a895
TT
101extern struct type *parse_expression_for_completion (char *, char **,
102 enum type_code *);
65d12d83 103
270140bd
TT
104extern struct expression *parse_exp_1 (char **, CORE_ADDR pc,
105 const struct block *, int);
c906108c 106
65d12d83 107/* For use by parsers; set if we want to parse an expression and
155da517
TT
108 attempt completion. */
109extern int parse_completion;
65d12d83 110
c906108c
SS
111/* The innermost context required by the stack and register variables
112 we've encountered so far. To use this, set it to NULL, then call
113 parse_<whatever>, then look at it. */
270140bd 114extern const struct block *innermost_block;
c906108c
SS
115
116/* From eval.c */
117
389e51db 118/* Values of NOSIDE argument to eval_subexp. */
c906108c
SS
119
120enum noside
c5aa993b
JM
121 {
122 EVAL_NORMAL,
123 EVAL_SKIP, /* Only effect is to increment pos. */
124 EVAL_AVOID_SIDE_EFFECTS /* Don't modify any variables or
c906108c
SS
125 call any functions. The value
126 returned will have the correct
127 type, and will have an
128 approximately correct lvalue
129 type (inaccuracy: anything that is
130 listed as being in a register in
131 the function in which it was
132 declared will be lval_register). */
c5aa993b 133 };
c906108c 134
c5aa993b 135extern struct value *evaluate_subexp_standard
a14ed312 136 (struct type *, struct expression *, int *, enum noside);
c906108c
SS
137
138/* From expprint.c */
139
d9fcf2fb 140extern void print_expression (struct expression *, struct ui_file *);
c906108c 141
bd0b9f9e
JB
142extern char *op_name (struct expression *exp, enum exp_opcode opcode);
143
a14ed312 144extern char *op_string (enum exp_opcode);
c906108c 145
3e43a32a
MS
146extern void dump_raw_expression (struct expression *,
147 struct ui_file *, char *);
24daaebc 148extern void dump_prefix_expression (struct expression *, struct ui_file *);
c906108c 149
c5aa993b 150#endif /* !defined (EXPRESSION_H) */
This page took 1.381783 seconds and 4 git commands to generate.