1 /* Bison parser for Rust expressions, for GDB.
2 Copyright (C) 2016-2018 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 /* Removing the last conflict seems difficult. */
28 #include "cp-support.h"
29 #include "gdb_obstack.h"
30 #include "gdb_regex.h"
31 #include "rust-lang.h"
32 #include "parser-defs.h"
37 #define GDB_YY_REMAP_PREFIX rust
40 #define RUSTSTYPE YYSTYPE
43 typedef std::vector<const struct rust_op *> rust_op_vector;
45 /* A typed integer constant. */
53 /* A typed floating point constant. */
55 struct typed_val_float
61 /* An identifier and an expression. This is used to represent one
62 element of a struct initializer. */
67 const struct rust_op *init;
70 typedef std::vector<set_field> rust_set_vector;
72 static int rustyylex (void);
73 static void rust_push_back (char c);
74 static const char *rust_copy_name (const char *, int);
75 static struct stoken rust_concat3 (const char *, const char *, const char *);
76 static struct stoken make_stoken (const char *);
77 static struct block_symbol rust_lookup_symbol (const char *name,
78 const struct block *block,
79 const domain_enum domain);
80 static struct type *rust_lookup_type (const char *name,
81 const struct block *block);
82 static struct type *rust_type (const char *name);
84 static const struct rust_op *crate_name (const struct rust_op *name);
85 static const struct rust_op *super_name (const struct rust_op *name,
86 unsigned int n_supers);
88 static const struct rust_op *ast_operation (enum exp_opcode opcode,
89 const struct rust_op *left,
90 const struct rust_op *right);
91 static const struct rust_op *ast_compound_assignment
92 (enum exp_opcode opcode, const struct rust_op *left,
93 const struct rust_op *rust_op);
94 static const struct rust_op *ast_literal (struct typed_val_int val);
95 static const struct rust_op *ast_dliteral (struct typed_val_float val);
96 static const struct rust_op *ast_structop (const struct rust_op *left,
99 static const struct rust_op *ast_structop_anonymous
100 (const struct rust_op *left, struct typed_val_int number);
101 static const struct rust_op *ast_unary (enum exp_opcode opcode,
102 const struct rust_op *expr);
103 static const struct rust_op *ast_cast (const struct rust_op *expr,
104 const struct rust_op *type);
105 static const struct rust_op *ast_call_ish (enum exp_opcode opcode,
106 const struct rust_op *expr,
107 rust_op_vector *params);
108 static const struct rust_op *ast_path (struct stoken name,
109 rust_op_vector *params);
110 static const struct rust_op *ast_string (struct stoken str);
111 static const struct rust_op *ast_struct (const struct rust_op *name,
112 rust_set_vector *fields);
113 static const struct rust_op *ast_range (const struct rust_op *lhs,
114 const struct rust_op *rhs);
115 static const struct rust_op *ast_array_type (const struct rust_op *lhs,
116 struct typed_val_int val);
117 static const struct rust_op *ast_slice_type (const struct rust_op *type);
118 static const struct rust_op *ast_reference_type (const struct rust_op *type);
119 static const struct rust_op *ast_pointer_type (const struct rust_op *type,
121 static const struct rust_op *ast_function_type (const struct rust_op *result,
122 rust_op_vector *params);
123 static const struct rust_op *ast_tuple_type (rust_op_vector *params);
125 /* The current rust parser. */
128 static rust_parser *current_parser;
130 /* A regular expression for matching Rust numbers. This is split up
131 since it is very long and this gives us a way to comment the
134 static const char *number_regex_text =
135 /* subexpression 1: allows use of alternation, otherwise uninteresting */
137 /* First comes floating point. */
138 /* Recognize number after the decimal point, with optional
139 exponent and optional type suffix.
140 subexpression 2: allows "?", otherwise uninteresting
141 subexpression 3: if present, type suffix
143 "[0-9][0-9_]*\\.[0-9][0-9_]*([eE][-+]?[0-9][0-9_]*)?(f32|f64)?"
144 #define FLOAT_TYPE1 3
146 /* Recognize exponent without decimal point, with optional type
148 subexpression 4: if present, type suffix
150 #define FLOAT_TYPE2 4
151 "[0-9][0-9_]*[eE][-+]?[0-9][0-9_]*(f32|f64)?"
153 /* "23." is a valid floating point number, but "23.e5" and
154 "23.f32" are not. So, handle the trailing-. case
158 /* Finally come integers.
159 subexpression 5: text of integer
160 subexpression 6: if present, type suffix
161 subexpression 7: allows use of alternation, otherwise uninteresting
165 "(0x[a-fA-F0-9_]+|0o[0-7_]+|0b[01_]+|[0-9][0-9_]*)"
166 "([iu](size|8|16|32|64))?"
168 /* The number of subexpressions to allocate space for, including the
169 "0th" whole match subexpression. */
170 #define NUM_SUBEXPRESSIONS 8
172 /* The compiled number-matching regex. */
174 static regex_t number_regex;
176 /* Obstack for data temporarily allocated during parsing. Points to
177 the obstack in the rust_parser, or to a temporary obstack during
180 static auto_obstack *work_obstack;
182 /* An instance of this is created before parsing, and destroyed when
183 parsing is finished. */
187 rust_parser (struct parser_state *state)
188 : rust_ast (nullptr),
191 gdb_assert (current_parser == nullptr);
192 current_parser = this;
193 work_obstack = &obstack;
198 /* Clean up the globals we set. */
199 current_parser = nullptr;
200 work_obstack = nullptr;
203 /* Create a new rust_set_vector. The storage for the new vector is
204 managed by this class. */
205 rust_set_vector *new_set_vector ()
207 rust_set_vector *result = new rust_set_vector;
208 set_vectors.push_back (std::unique_ptr<rust_set_vector> (result));
212 /* Create a new rust_ops_vector. The storage for the new vector is
213 managed by this class. */
214 rust_op_vector *new_op_vector ()
216 rust_op_vector *result = new rust_op_vector;
217 op_vectors.push_back (std::unique_ptr<rust_op_vector> (result));
221 /* Return the parser's language. */
222 const struct language_defn *language () const
224 return parse_language (pstate);
227 /* Return the parser's gdbarch. */
228 struct gdbarch *arch () const
230 return parse_gdbarch (pstate);
233 /* A pointer to this is installed globally. */
234 auto_obstack obstack;
236 /* Result of parsing. Points into obstack. */
237 const struct rust_op *rust_ast;
239 /* This keeps track of the various vectors we allocate. */
240 std::vector<std::unique_ptr<rust_set_vector>> set_vectors;
241 std::vector<std::unique_ptr<rust_op_vector>> op_vectors;
243 /* The parser state gdb gave us. */
244 struct parser_state *pstate;
251 /* A typed integer constant. */
252 struct typed_val_int typed_val_int;
254 /* A typed floating point constant. */
255 struct typed_val_float typed_val_float;
257 /* An identifier or string. */
260 /* A token representing an opcode, like "==". */
261 enum exp_opcode opcode;
263 /* A list of expressions; for example, the arguments to a function
265 rust_op_vector *params;
267 /* A list of field initializers. */
268 rust_set_vector *field_inits;
270 /* A single field initializer. */
271 struct set_field one_field_init;
274 const struct rust_op *op;
276 /* A plain integer, for example used to count the number of
277 "super::" prefixes on a path. */
283 /* Rust AST operations. We build a tree of these; then lower them
284 to gdb expressions when parsing has completed. */
289 enum exp_opcode opcode;
290 /* If OPCODE is OP_TYPE, then this holds information about what type
291 is described by this node. */
292 enum type_code typecode;
293 /* Indicates whether OPCODE actually represents a compound
294 assignment. For example, if OPCODE is GTGT and this is false,
295 then this rust_op represents an ordinary ">>"; but if this is
296 true, then this rust_op represents ">>=". Unused in other
298 unsigned int compound_assignment : 1;
299 /* Only used by a field expression; if set, indicates that the field
300 name occurred at the end of the expression and is eligible for
302 unsigned int completing : 1;
303 /* Operands of expression. Which one is used and how depends on the
304 particular opcode. */
313 %token <sval> COMPLETE
314 %token <typed_val_int> INTEGER
315 %token <typed_val_int> DECIMAL_INTEGER
317 %token <sval> BYTESTRING
318 %token <typed_val_float> FLOAT
319 %token <opcode> COMPOUND_ASSIGN
321 /* Keyword tokens. */
322 %token <voidval> KW_AS
323 %token <voidval> KW_IF
324 %token <voidval> KW_TRUE
325 %token <voidval> KW_FALSE
326 %token <voidval> KW_SUPER
327 %token <voidval> KW_SELF
328 %token <voidval> KW_MUT
329 %token <voidval> KW_EXTERN
330 %token <voidval> KW_CONST
331 %token <voidval> KW_FN
332 %token <voidval> KW_SIZEOF
334 /* Operator tokens. */
335 %token <voidval> DOTDOT
336 %token <voidval> OROR
337 %token <voidval> ANDAND
338 %token <voidval> EQEQ
339 %token <voidval> NOTEQ
340 %token <voidval> LTEQ
341 %token <voidval> GTEQ
342 %token <voidval> LSH RSH
343 %token <voidval> COLONCOLON
344 %token <voidval> ARROW
347 %type <op> path_for_expr
348 %type <op> identifier_path_for_expr
349 %type <op> path_for_type
350 %type <op> identifier_path_for_type
351 %type <op> just_identifiers_for_type
353 %type <params> maybe_type_list
354 %type <params> type_list
356 %type <depth> super_path
360 %type <op> field_expr
363 %type <op> binop_expr
364 %type <op> binop_expr_expr
365 %type <op> type_cast_expr
366 %type <op> assignment_expr
367 %type <op> compound_assignment_expr
368 %type <op> paren_expr
371 %type <op> tuple_expr
373 %type <op> struct_expr
374 %type <op> array_expr
375 %type <op> range_expr
377 %type <params> expr_list
378 %type <params> maybe_expr_list
379 %type <params> paren_expr_list
381 %type <field_inits> struct_expr_list
382 %type <one_field_init> struct_expr_tail
386 %right '=' COMPOUND_ASSIGN
389 %nonassoc EQEQ NOTEQ '<' '>' LTEQ GTEQ
397 /* These could be %precedence in Bison, but that isn't a yacc
408 /* If we are completing and see a valid parse,
409 rust_ast will already have been set. */
410 if (current_parser->rust_ast == NULL)
411 current_parser->rust_ast = $1;
415 /* Note that the Rust grammar includes a method_call_expr, but we
416 handle this differently, to avoid a shift/reduce conflict with
428 | unop_expr /* Must precede call_expr because of ambiguity with sizeof. */
435 '(' expr ',' maybe_expr_list ')'
438 error (_("Tuple expressions not supported yet"));
445 struct typed_val_int val;
448 = language_lookup_primitive_type (current_parser->language (),
449 current_parser->arch (),
452 $$ = ast_literal (val);
456 /* To avoid a shift/reduce conflict with call_expr, we don't handle
457 tuple struct expressions here, but instead when examining the
460 path_for_expr '{' struct_expr_list '}'
461 { $$ = ast_struct ($1, $3); }
488 $$ = current_parser->new_set_vector ();
492 rust_set_vector *result = current_parser->new_set_vector ();
493 result->push_back ($1);
496 | IDENT ':' expr ',' struct_expr_list
508 '[' KW_MUT expr_list ']'
509 { $$ = ast_call_ish (OP_ARRAY, NULL, $3); }
511 { $$ = ast_call_ish (OP_ARRAY, NULL, $2); }
512 | '[' KW_MUT expr ';' expr ']'
513 { $$ = ast_operation (OP_RUST_ARRAY, $3, $5); }
514 | '[' expr ';' expr ']'
515 { $$ = ast_operation (OP_RUST_ARRAY, $2, $4); }
520 { $$ = ast_range ($1, NULL); }
522 { $$ = ast_range ($1, $3); }
524 { $$ = ast_range (NULL, $2); }
526 { $$ = ast_range (NULL, NULL); }
531 { $$ = ast_literal ($1); }
533 { $$ = ast_literal ($1); }
535 { $$ = ast_dliteral ($1); }
538 const struct rust_op *str = ast_string ($1);
539 struct set_field field;
540 struct typed_val_int val;
543 rust_set_vector *fields = current_parser->new_set_vector ();
545 /* Wrap the raw string in the &str struct. */
546 field.name.ptr = "data_ptr";
547 field.name.length = strlen (field.name.ptr);
548 field.init = ast_unary (UNOP_ADDR, ast_string ($1));
549 fields->push_back (field);
551 val.type = rust_type ("usize");
554 field.name.ptr = "length";
555 field.name.length = strlen (field.name.ptr);
556 field.init = ast_literal (val);
557 fields->push_back (field);
560 token.length = strlen (token.ptr);
561 $$ = ast_struct (ast_path (token, NULL), fields);
564 { $$ = ast_string ($1); }
567 struct typed_val_int val;
569 val.type = language_bool_type (current_parser->language (),
570 current_parser->arch ());
572 $$ = ast_literal (val);
576 struct typed_val_int val;
578 val.type = language_bool_type (current_parser->language (),
579 current_parser->arch ());
581 $$ = ast_literal (val);
587 { $$ = ast_structop ($1, $3.ptr, 0); }
590 $$ = ast_structop ($1, $3.ptr, 1);
591 current_parser->rust_ast = $$;
593 | expr '.' DECIMAL_INTEGER
594 { $$ = ast_structop_anonymous ($1, $3); }
599 { $$ = ast_operation (BINOP_SUBSCRIPT, $1, $3); }
604 { $$ = ast_unary (UNOP_PLUS, $2); }
606 | '-' expr %prec UNARY
607 { $$ = ast_unary (UNOP_NEG, $2); }
609 | '!' expr %prec UNARY
611 /* Note that we provide a Rust-specific evaluator
612 override for UNOP_COMPLEMENT, so it can do the
613 right thing for both bool and integral
615 $$ = ast_unary (UNOP_COMPLEMENT, $2);
618 | '*' expr %prec UNARY
619 { $$ = ast_unary (UNOP_IND, $2); }
621 | '&' expr %prec UNARY
622 { $$ = ast_unary (UNOP_ADDR, $2); }
624 | '&' KW_MUT expr %prec UNARY
625 { $$ = ast_unary (UNOP_ADDR, $3); }
626 | KW_SIZEOF '(' expr ')' %prec UNARY
627 { $$ = ast_unary (UNOP_SIZEOF, $3); }
634 | compound_assignment_expr
639 { $$ = ast_operation (BINOP_MUL, $1, $3); }
642 { $$ = ast_operation (BINOP_REPEAT, $1, $3); }
645 { $$ = ast_operation (BINOP_DIV, $1, $3); }
648 { $$ = ast_operation (BINOP_REM, $1, $3); }
651 { $$ = ast_operation (BINOP_LESS, $1, $3); }
654 { $$ = ast_operation (BINOP_GTR, $1, $3); }
657 { $$ = ast_operation (BINOP_BITWISE_AND, $1, $3); }
660 { $$ = ast_operation (BINOP_BITWISE_IOR, $1, $3); }
663 { $$ = ast_operation (BINOP_BITWISE_XOR, $1, $3); }
666 { $$ = ast_operation (BINOP_ADD, $1, $3); }
669 { $$ = ast_operation (BINOP_SUB, $1, $3); }
672 { $$ = ast_operation (BINOP_LOGICAL_OR, $1, $3); }
675 { $$ = ast_operation (BINOP_LOGICAL_AND, $1, $3); }
678 { $$ = ast_operation (BINOP_EQUAL, $1, $3); }
681 { $$ = ast_operation (BINOP_NOTEQUAL, $1, $3); }
684 { $$ = ast_operation (BINOP_LEQ, $1, $3); }
687 { $$ = ast_operation (BINOP_GEQ, $1, $3); }
690 { $$ = ast_operation (BINOP_LSH, $1, $3); }
693 { $$ = ast_operation (BINOP_RSH, $1, $3); }
698 { $$ = ast_cast ($1, $3); }
703 { $$ = ast_operation (BINOP_ASSIGN, $1, $3); }
706 compound_assignment_expr:
707 expr COMPOUND_ASSIGN expr
708 { $$ = ast_compound_assignment ($2, $1, $3); }
720 $$ = current_parser->new_op_vector ();
733 /* The result can't be NULL. */
734 $$ = current_parser->new_op_vector ();
749 { $$ = ast_call_ish (OP_FUNCALL, $1, $2); }
760 | super_path KW_SUPER COLONCOLON
768 { $$ = ast_path ($1, NULL); }
770 { $$ = ast_path (make_stoken ("self"), NULL); }
774 identifier_path_for_expr
775 | KW_SELF COLONCOLON identifier_path_for_expr
776 { $$ = super_name ($3, 0); }
777 | maybe_self_path super_path identifier_path_for_expr
778 { $$ = super_name ($3, $2); }
779 | COLONCOLON identifier_path_for_expr
780 { $$ = crate_name ($2); }
781 | KW_EXTERN identifier_path_for_expr
783 /* This is a gdb extension to make it possible to
784 refer to items in other crates. It just bypasses
785 adding the current crate to the front of the
787 $$ = ast_path (rust_concat3 ("::", $2->left.sval.ptr, NULL),
792 identifier_path_for_expr:
794 { $$ = ast_path ($1, NULL); }
795 | identifier_path_for_expr COLONCOLON IDENT
797 $$ = ast_path (rust_concat3 ($1->left.sval.ptr, "::",
801 | identifier_path_for_expr COLONCOLON '<' type_list '>'
802 { $$ = ast_path ($1->left.sval, $4); }
803 | identifier_path_for_expr COLONCOLON '<' type_list RSH
805 $$ = ast_path ($1->left.sval, $4);
806 rust_push_back ('>');
811 identifier_path_for_type
812 | KW_SELF COLONCOLON identifier_path_for_type
813 { $$ = super_name ($3, 0); }
814 | maybe_self_path super_path identifier_path_for_type
815 { $$ = super_name ($3, $2); }
816 | COLONCOLON identifier_path_for_type
817 { $$ = crate_name ($2); }
818 | KW_EXTERN identifier_path_for_type
820 /* This is a gdb extension to make it possible to
821 refer to items in other crates. It just bypasses
822 adding the current crate to the front of the
824 $$ = ast_path (rust_concat3 ("::", $2->left.sval.ptr, NULL),
829 just_identifiers_for_type:
831 { $$ = ast_path ($1, NULL); }
832 | just_identifiers_for_type COLONCOLON IDENT
834 $$ = ast_path (rust_concat3 ($1->left.sval.ptr, "::",
840 identifier_path_for_type:
841 just_identifiers_for_type
842 | just_identifiers_for_type '<' type_list '>'
843 { $$ = ast_path ($1->left.sval, $3); }
844 | just_identifiers_for_type '<' type_list RSH
846 $$ = ast_path ($1->left.sval, $3);
847 rust_push_back ('>');
853 | '[' type ';' INTEGER ']'
854 { $$ = ast_array_type ($2, $4); }
855 | '[' type ';' DECIMAL_INTEGER ']'
856 { $$ = ast_array_type ($2, $4); }
858 { $$ = ast_slice_type ($3); }
860 { $$ = ast_reference_type ($2); }
862 { $$ = ast_pointer_type ($3, 1); }
864 { $$ = ast_pointer_type ($3, 0); }
865 | KW_FN '(' maybe_type_list ')' ARROW type
866 { $$ = ast_function_type ($6, $3); }
867 | '(' maybe_type_list ')'
868 { $$ = ast_tuple_type ($2); }
881 rust_op_vector *result = current_parser->new_op_vector ();
882 result->push_back ($1);
894 /* A struct of this type is used to describe a token. */
900 enum exp_opcode opcode;
903 /* Identifier tokens. */
905 static const struct token_info identifier_tokens[] =
907 { "as", KW_AS, OP_NULL },
908 { "false", KW_FALSE, OP_NULL },
909 { "if", 0, OP_NULL },
910 { "mut", KW_MUT, OP_NULL },
911 { "const", KW_CONST, OP_NULL },
912 { "self", KW_SELF, OP_NULL },
913 { "super", KW_SUPER, OP_NULL },
914 { "true", KW_TRUE, OP_NULL },
915 { "extern", KW_EXTERN, OP_NULL },
916 { "fn", KW_FN, OP_NULL },
917 { "sizeof", KW_SIZEOF, OP_NULL },
920 /* Operator tokens, sorted longest first. */
922 static const struct token_info operator_tokens[] =
924 { ">>=", COMPOUND_ASSIGN, BINOP_RSH },
925 { "<<=", COMPOUND_ASSIGN, BINOP_LSH },
927 { "<<", LSH, OP_NULL },
928 { ">>", RSH, OP_NULL },
929 { "&&", ANDAND, OP_NULL },
930 { "||", OROR, OP_NULL },
931 { "==", EQEQ, OP_NULL },
932 { "!=", NOTEQ, OP_NULL },
933 { "<=", LTEQ, OP_NULL },
934 { ">=", GTEQ, OP_NULL },
935 { "+=", COMPOUND_ASSIGN, BINOP_ADD },
936 { "-=", COMPOUND_ASSIGN, BINOP_SUB },
937 { "*=", COMPOUND_ASSIGN, BINOP_MUL },
938 { "/=", COMPOUND_ASSIGN, BINOP_DIV },
939 { "%=", COMPOUND_ASSIGN, BINOP_REM },
940 { "&=", COMPOUND_ASSIGN, BINOP_BITWISE_AND },
941 { "|=", COMPOUND_ASSIGN, BINOP_BITWISE_IOR },
942 { "^=", COMPOUND_ASSIGN, BINOP_BITWISE_XOR },
944 { "::", COLONCOLON, OP_NULL },
945 { "..", DOTDOT, OP_NULL },
946 { "->", ARROW, OP_NULL }
949 /* Helper function to copy to the name obstack. */
952 rust_copy_name (const char *name, int len)
954 return (const char *) obstack_copy0 (work_obstack, name, len);
957 /* Helper function to make an stoken from a C string. */
960 make_stoken (const char *p)
962 struct stoken result;
965 result.length = strlen (result.ptr);
969 /* Helper function to concatenate three strings on the name
973 rust_concat3 (const char *s1, const char *s2, const char *s3)
975 return make_stoken (obconcat (work_obstack, s1, s2, s3, (char *) NULL));
978 /* Return an AST node referring to NAME, but relative to the crate's
981 static const struct rust_op *
982 crate_name (const struct rust_op *name)
984 std::string crate = rust_crate_for_block (expression_context_block);
985 struct stoken result;
987 gdb_assert (name->opcode == OP_VAR_VALUE);
990 error (_("Could not find crate for current location"));
991 result = make_stoken (obconcat (work_obstack, "::", crate.c_str (), "::",
992 name->left.sval.ptr, (char *) NULL));
994 return ast_path (result, name->right.params);
997 /* Create an AST node referring to a "super::" qualified name. IDENT
998 is the base name and N_SUPERS is how many "super::"s were
999 provided. N_SUPERS can be zero. */
1001 static const struct rust_op *
1002 super_name (const struct rust_op *ident, unsigned int n_supers)
1004 const char *scope = block_scope (expression_context_block);
1007 gdb_assert (ident->opcode == OP_VAR_VALUE);
1009 if (scope[0] == '\0')
1010 error (_("Couldn't find namespace scope for self::"));
1015 std::vector<int> offsets;
1016 unsigned int current_len;
1018 current_len = cp_find_first_component (scope);
1019 while (scope[current_len] != '\0')
1021 offsets.push_back (current_len);
1022 gdb_assert (scope[current_len] == ':');
1025 current_len += cp_find_first_component (scope
1029 len = offsets.size ();
1030 if (n_supers >= len)
1031 error (_("Too many super:: uses from '%s'"), scope);
1033 offset = offsets[len - n_supers];
1036 offset = strlen (scope);
1038 obstack_grow (work_obstack, "::", 2);
1039 obstack_grow (work_obstack, scope, offset);
1040 obstack_grow (work_obstack, "::", 2);
1041 obstack_grow0 (work_obstack, ident->left.sval.ptr, ident->left.sval.length);
1043 return ast_path (make_stoken ((const char *) obstack_finish (work_obstack)),
1044 ident->right.params);
1047 /* A helper that updates innermost_block as appropriate. */
1050 update_innermost_block (struct block_symbol sym)
1052 if (symbol_read_needs_frame (sym.symbol)
1053 && (innermost_block == NULL
1054 || contained_in (sym.block, innermost_block)))
1055 innermost_block = sym.block;
1058 /* A helper to look up a Rust type, or fail. This only works for
1059 types defined by rust_language_arch_info. */
1061 static struct type *
1062 rust_type (const char *name)
1066 type = language_lookup_primitive_type (current_parser->language (),
1067 current_parser->arch (),
1070 error (_("Could not find Rust type %s"), name);
1074 /* Lex a hex number with at least MIN digits and at most MAX
1078 lex_hex (int min, int max)
1080 uint32_t result = 0;
1082 /* We only want to stop at MAX if we're lexing a byte escape. */
1083 int check_max = min == max;
1085 while ((check_max ? len <= max : 1)
1086 && ((lexptr[0] >= 'a' && lexptr[0] <= 'f')
1087 || (lexptr[0] >= 'A' && lexptr[0] <= 'F')
1088 || (lexptr[0] >= '0' && lexptr[0] <= '9')))
1091 if (lexptr[0] >= 'a' && lexptr[0] <= 'f')
1092 result = result + 10 + lexptr[0] - 'a';
1093 else if (lexptr[0] >= 'A' && lexptr[0] <= 'F')
1094 result = result + 10 + lexptr[0] - 'A';
1096 result = result + lexptr[0] - '0';
1102 error (_("Not enough hex digits seen"));
1105 gdb_assert (min != max);
1106 error (_("Overlong hex escape"));
1112 /* Lex an escape. IS_BYTE is true if we're lexing a byte escape;
1113 otherwise we're lexing a character escape. */
1116 lex_escape (int is_byte)
1120 gdb_assert (lexptr[0] == '\\');
1126 result = lex_hex (2, 2);
1131 error (_("Unicode escape in byte literal"));
1133 if (lexptr[0] != '{')
1134 error (_("Missing '{' in Unicode escape"));
1136 result = lex_hex (1, 6);
1137 /* Could do range checks here. */
1138 if (lexptr[0] != '}')
1139 error (_("Missing '}' in Unicode escape"));
1173 error (_("Invalid escape \\%c in literal"), lexptr[0]);
1179 /* Lex a character constant. */
1182 lex_character (void)
1187 if (lexptr[0] == 'b')
1192 gdb_assert (lexptr[0] == '\'');
1194 /* This should handle UTF-8 here. */
1195 if (lexptr[0] == '\\')
1196 value = lex_escape (is_byte);
1199 value = lexptr[0] & 0xff;
1203 if (lexptr[0] != '\'')
1204 error (_("Unterminated character literal"));
1207 rustyylval.typed_val_int.val = value;
1208 rustyylval.typed_val_int.type = rust_type (is_byte ? "u8" : "char");
1213 /* Return the offset of the double quote if STR looks like the start
1214 of a raw string, or 0 if STR does not start a raw string. */
1217 starts_raw_string (const char *str)
1219 const char *save = str;
1224 while (str[0] == '#')
1231 /* Return true if STR looks like the end of a raw string that had N
1232 hashes at the start. */
1235 ends_raw_string (const char *str, int n)
1239 gdb_assert (str[0] == '"');
1240 for (i = 0; i < n; ++i)
1241 if (str[i + 1] != '#')
1246 /* Lex a string constant. */
1251 int is_byte = lexptr[0] == 'b';
1256 raw_length = starts_raw_string (lexptr);
1257 lexptr += raw_length;
1258 gdb_assert (lexptr[0] == '"');
1267 if (lexptr[0] == '"' && ends_raw_string (lexptr, raw_length - 1))
1269 /* Exit with lexptr pointing after the final "#". */
1270 lexptr += raw_length;
1273 else if (lexptr[0] == '\0')
1274 error (_("Unexpected EOF in string"));
1276 value = lexptr[0] & 0xff;
1277 if (is_byte && value > 127)
1278 error (_("Non-ASCII value in raw byte string"));
1279 obstack_1grow (work_obstack, value);
1283 else if (lexptr[0] == '"')
1285 /* Make sure to skip the quote. */
1289 else if (lexptr[0] == '\\')
1291 value = lex_escape (is_byte);
1294 obstack_1grow (work_obstack, value);
1296 convert_between_encodings ("UTF-32", "UTF-8", (gdb_byte *) &value,
1297 sizeof (value), sizeof (value),
1298 work_obstack, translit_none);
1300 else if (lexptr[0] == '\0')
1301 error (_("Unexpected EOF in string"));
1304 value = lexptr[0] & 0xff;
1305 if (is_byte && value > 127)
1306 error (_("Non-ASCII value in byte string"));
1307 obstack_1grow (work_obstack, value);
1312 rustyylval.sval.length = obstack_object_size (work_obstack);
1313 rustyylval.sval.ptr = (const char *) obstack_finish (work_obstack);
1314 return is_byte ? BYTESTRING : STRING;
1317 /* Return true if STRING starts with whitespace followed by a digit. */
1320 space_then_number (const char *string)
1322 const char *p = string;
1324 while (p[0] == ' ' || p[0] == '\t')
1329 return *p >= '0' && *p <= '9';
1332 /* Return true if C can start an identifier. */
1335 rust_identifier_start_p (char c)
1337 return ((c >= 'a' && c <= 'z')
1338 || (c >= 'A' && c <= 'Z')
1343 /* Lex an identifier. */
1346 lex_identifier (void)
1348 const char *start = lexptr;
1349 unsigned int length;
1350 const struct token_info *token;
1352 int is_gdb_var = lexptr[0] == '$';
1354 gdb_assert (rust_identifier_start_p (lexptr[0]));
1358 /* For the time being this doesn't handle Unicode rules. Non-ASCII
1359 identifiers are gated anyway. */
1360 while ((lexptr[0] >= 'a' && lexptr[0] <= 'z')
1361 || (lexptr[0] >= 'A' && lexptr[0] <= 'Z')
1363 || (is_gdb_var && lexptr[0] == '$')
1364 || (lexptr[0] >= '0' && lexptr[0] <= '9'))
1368 length = lexptr - start;
1370 for (i = 0; i < ARRAY_SIZE (identifier_tokens); ++i)
1372 if (length == strlen (identifier_tokens[i].name)
1373 && strncmp (identifier_tokens[i].name, start, length) == 0)
1375 token = &identifier_tokens[i];
1382 if (token->value == 0)
1384 /* Leave the terminating token alone. */
1389 else if (token == NULL
1390 && (strncmp (start, "thread", length) == 0
1391 || strncmp (start, "task", length) == 0)
1392 && space_then_number (lexptr))
1394 /* "task" or "thread" followed by a number terminates the
1395 parse, per gdb rules. */
1400 if (token == NULL || (parse_completion && lexptr[0] == '\0'))
1401 rustyylval.sval = make_stoken (rust_copy_name (start, length));
1403 if (parse_completion && lexptr[0] == '\0')
1405 /* Prevent rustyylex from returning two COMPLETE tokens. */
1406 prev_lexptr = lexptr;
1411 return token->value;
1417 /* Lex an operator. */
1422 const struct token_info *token = NULL;
1425 for (i = 0; i < ARRAY_SIZE (operator_tokens); ++i)
1427 if (strncmp (operator_tokens[i].name, lexptr,
1428 strlen (operator_tokens[i].name)) == 0)
1430 lexptr += strlen (operator_tokens[i].name);
1431 token = &operator_tokens[i];
1438 rustyylval.opcode = token->opcode;
1439 return token->value;
1450 regmatch_t subexps[NUM_SUBEXPRESSIONS];
1453 int could_be_decimal = 1;
1454 int implicit_i32 = 0;
1455 const char *type_name = NULL;
1458 int type_index = -1;
1461 match = regexec (&number_regex, lexptr, ARRAY_SIZE (subexps), subexps, 0);
1462 /* Failure means the regexp is broken. */
1463 gdb_assert (match == 0);
1465 if (subexps[INT_TEXT].rm_so != -1)
1467 /* Integer part matched. */
1469 end_index = subexps[INT_TEXT].rm_eo;
1470 if (subexps[INT_TYPE].rm_so == -1)
1477 type_index = INT_TYPE;
1478 could_be_decimal = 0;
1481 else if (subexps[FLOAT_TYPE1].rm_so != -1)
1483 /* Found floating point type suffix. */
1484 end_index = subexps[FLOAT_TYPE1].rm_so;
1485 type_index = FLOAT_TYPE1;
1487 else if (subexps[FLOAT_TYPE2].rm_so != -1)
1489 /* Found floating point type suffix. */
1490 end_index = subexps[FLOAT_TYPE2].rm_so;
1491 type_index = FLOAT_TYPE2;
1495 /* Any other floating point match. */
1496 end_index = subexps[0].rm_eo;
1500 /* We need a special case if the final character is ".". In this
1501 case we might need to parse an integer. For example, "23.f()" is
1502 a request for a trait method call, not a syntax error involving
1503 the floating point number "23.". */
1504 gdb_assert (subexps[0].rm_eo > 0);
1505 if (lexptr[subexps[0].rm_eo - 1] == '.')
1507 const char *next = skip_spaces (&lexptr[subexps[0].rm_eo]);
1509 if (rust_identifier_start_p (*next) || *next == '.')
1513 end_index = subexps[0].rm_eo;
1515 could_be_decimal = 1;
1520 /* Compute the type name if we haven't already. */
1521 std::string type_name_holder;
1522 if (type_name == NULL)
1524 gdb_assert (type_index != -1);
1525 type_name_holder = std::string (lexptr + subexps[type_index].rm_so,
1526 (subexps[type_index].rm_eo
1527 - subexps[type_index].rm_so));
1528 type_name = type_name_holder.c_str ();
1531 /* Look up the type. */
1532 type = rust_type (type_name);
1534 /* Copy the text of the number and remove the "_"s. */
1536 for (i = 0; i < end_index && lexptr[i]; ++i)
1538 if (lexptr[i] == '_')
1539 could_be_decimal = 0;
1541 number.push_back (lexptr[i]);
1544 /* Advance past the match. */
1545 lexptr += subexps[0].rm_eo;
1547 /* Parse the number. */
1554 if (number[0] == '0')
1556 if (number[1] == 'x')
1558 else if (number[1] == 'o')
1560 else if (number[1] == 'b')
1565 could_be_decimal = 0;
1569 value = strtoul (number.c_str () + offset, NULL, radix);
1570 if (implicit_i32 && value >= ((uint64_t) 1) << 31)
1571 type = rust_type ("i64");
1573 rustyylval.typed_val_int.val = value;
1574 rustyylval.typed_val_int.type = type;
1578 rustyylval.typed_val_float.type = type;
1579 bool parsed = parse_float (number.c_str (), number.length (),
1580 rustyylval.typed_val_float.type,
1581 rustyylval.typed_val_float.val);
1582 gdb_assert (parsed);
1585 return is_integer ? (could_be_decimal ? DECIMAL_INTEGER : INTEGER) : FLOAT;
1593 /* Skip all leading whitespace. */
1594 while (lexptr[0] == ' ' || lexptr[0] == '\t' || lexptr[0] == '\r'
1595 || lexptr[0] == '\n')
1598 /* If we hit EOF and we're completing, then return COMPLETE -- maybe
1599 we're completing an empty string at the end of a field_expr.
1600 But, we don't want to return two COMPLETE tokens in a row. */
1601 if (lexptr[0] == '\0' && lexptr == prev_lexptr)
1603 prev_lexptr = lexptr;
1604 if (lexptr[0] == '\0')
1606 if (parse_completion)
1608 rustyylval.sval = make_stoken ("");
1614 if (lexptr[0] >= '0' && lexptr[0] <= '9')
1615 return lex_number ();
1616 else if (lexptr[0] == 'b' && lexptr[1] == '\'')
1617 return lex_character ();
1618 else if (lexptr[0] == 'b' && lexptr[1] == '"')
1619 return lex_string ();
1620 else if (lexptr[0] == 'b' && starts_raw_string (lexptr + 1))
1621 return lex_string ();
1622 else if (starts_raw_string (lexptr))
1623 return lex_string ();
1624 else if (rust_identifier_start_p (lexptr[0]))
1625 return lex_identifier ();
1626 else if (lexptr[0] == '"')
1627 return lex_string ();
1628 else if (lexptr[0] == '\'')
1629 return lex_character ();
1630 else if (lexptr[0] == '}' || lexptr[0] == ']')
1632 /* Falls through to lex_operator. */
1635 else if (lexptr[0] == '(' || lexptr[0] == '{')
1637 /* Falls through to lex_operator. */
1640 else if (lexptr[0] == ',' && comma_terminates && paren_depth == 0)
1643 return lex_operator ();
1646 /* Push back a single character to be re-lexed. */
1649 rust_push_back (char c)
1651 /* Can't be called before any lexing. */
1652 gdb_assert (prev_lexptr != NULL);
1655 gdb_assert (*lexptr == c);
1660 /* Make an arbitrary operation and fill in the fields. */
1662 static const struct rust_op *
1663 ast_operation (enum exp_opcode opcode, const struct rust_op *left,
1664 const struct rust_op *right)
1666 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1668 result->opcode = opcode;
1669 result->left.op = left;
1670 result->right.op = right;
1675 /* Make a compound assignment operation. */
1677 static const struct rust_op *
1678 ast_compound_assignment (enum exp_opcode opcode, const struct rust_op *left,
1679 const struct rust_op *right)
1681 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1683 result->opcode = opcode;
1684 result->compound_assignment = 1;
1685 result->left.op = left;
1686 result->right.op = right;
1691 /* Make a typed integer literal operation. */
1693 static const struct rust_op *
1694 ast_literal (struct typed_val_int val)
1696 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1698 result->opcode = OP_LONG;
1699 result->left.typed_val_int = val;
1704 /* Make a typed floating point literal operation. */
1706 static const struct rust_op *
1707 ast_dliteral (struct typed_val_float val)
1709 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1711 result->opcode = OP_FLOAT;
1712 result->left.typed_val_float = val;
1717 /* Make a unary operation. */
1719 static const struct rust_op *
1720 ast_unary (enum exp_opcode opcode, const struct rust_op *expr)
1722 return ast_operation (opcode, expr, NULL);
1725 /* Make a cast operation. */
1727 static const struct rust_op *
1728 ast_cast (const struct rust_op *expr, const struct rust_op *type)
1730 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1732 result->opcode = UNOP_CAST;
1733 result->left.op = expr;
1734 result->right.op = type;
1739 /* Make a call-like operation. This is nominally a function call, but
1740 when lowering we may discover that it actually represents the
1741 creation of a tuple struct. */
1743 static const struct rust_op *
1744 ast_call_ish (enum exp_opcode opcode, const struct rust_op *expr,
1745 rust_op_vector *params)
1747 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1749 result->opcode = opcode;
1750 result->left.op = expr;
1751 result->right.params = params;
1756 /* Make a structure creation operation. */
1758 static const struct rust_op *
1759 ast_struct (const struct rust_op *name, rust_set_vector *fields)
1761 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1763 result->opcode = OP_AGGREGATE;
1764 result->left.op = name;
1765 result->right.field_inits = fields;
1770 /* Make an identifier path. */
1772 static const struct rust_op *
1773 ast_path (struct stoken path, rust_op_vector *params)
1775 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1777 result->opcode = OP_VAR_VALUE;
1778 result->left.sval = path;
1779 result->right.params = params;
1784 /* Make a string constant operation. */
1786 static const struct rust_op *
1787 ast_string (struct stoken str)
1789 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1791 result->opcode = OP_STRING;
1792 result->left.sval = str;
1797 /* Make a field expression. */
1799 static const struct rust_op *
1800 ast_structop (const struct rust_op *left, const char *name, int completing)
1802 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1804 result->opcode = STRUCTOP_STRUCT;
1805 result->completing = completing;
1806 result->left.op = left;
1807 result->right.sval = make_stoken (name);
1812 /* Make an anonymous struct operation, like 'x.0'. */
1814 static const struct rust_op *
1815 ast_structop_anonymous (const struct rust_op *left,
1816 struct typed_val_int number)
1818 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1820 result->opcode = STRUCTOP_ANONYMOUS;
1821 result->left.op = left;
1822 result->right.typed_val_int = number;
1827 /* Make a range operation. */
1829 static const struct rust_op *
1830 ast_range (const struct rust_op *lhs, const struct rust_op *rhs)
1832 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1834 result->opcode = OP_RANGE;
1835 result->left.op = lhs;
1836 result->right.op = rhs;
1841 /* A helper function to make a type-related AST node. */
1843 static struct rust_op *
1844 ast_basic_type (enum type_code typecode)
1846 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1848 result->opcode = OP_TYPE;
1849 result->typecode = typecode;
1853 /* Create an AST node describing an array type. */
1855 static const struct rust_op *
1856 ast_array_type (const struct rust_op *lhs, struct typed_val_int val)
1858 struct rust_op *result = ast_basic_type (TYPE_CODE_ARRAY);
1860 result->left.op = lhs;
1861 result->right.typed_val_int = val;
1865 /* Create an AST node describing a reference type. */
1867 static const struct rust_op *
1868 ast_slice_type (const struct rust_op *type)
1870 /* Use TYPE_CODE_COMPLEX just because it is handy. */
1871 struct rust_op *result = ast_basic_type (TYPE_CODE_COMPLEX);
1873 result->left.op = type;
1877 /* Create an AST node describing a reference type. */
1879 static const struct rust_op *
1880 ast_reference_type (const struct rust_op *type)
1882 struct rust_op *result = ast_basic_type (TYPE_CODE_REF);
1884 result->left.op = type;
1888 /* Create an AST node describing a pointer type. */
1890 static const struct rust_op *
1891 ast_pointer_type (const struct rust_op *type, int is_mut)
1893 struct rust_op *result = ast_basic_type (TYPE_CODE_PTR);
1895 result->left.op = type;
1896 /* For the time being we ignore is_mut. */
1900 /* Create an AST node describing a function type. */
1902 static const struct rust_op *
1903 ast_function_type (const struct rust_op *rtype, rust_op_vector *params)
1905 struct rust_op *result = ast_basic_type (TYPE_CODE_FUNC);
1907 result->left.op = rtype;
1908 result->right.params = params;
1912 /* Create an AST node describing a tuple type. */
1914 static const struct rust_op *
1915 ast_tuple_type (rust_op_vector *params)
1917 struct rust_op *result = ast_basic_type (TYPE_CODE_STRUCT);
1919 result->left.params = params;
1923 /* A helper to appropriately munge NAME and BLOCK depending on the
1924 presence of a leading "::". */
1927 munge_name_and_block (const char **name, const struct block **block)
1929 /* If it is a global reference, skip the current block in favor of
1930 the static block. */
1931 if (strncmp (*name, "::", 2) == 0)
1934 *block = block_static_block (*block);
1938 /* Like lookup_symbol, but handles Rust namespace conventions, and
1939 doesn't require field_of_this_result. */
1941 static struct block_symbol
1942 rust_lookup_symbol (const char *name, const struct block *block,
1943 const domain_enum domain)
1945 struct block_symbol result;
1947 munge_name_and_block (&name, &block);
1949 result = lookup_symbol (name, block, domain, NULL);
1950 if (result.symbol != NULL)
1951 update_innermost_block (result);
1955 /* Look up a type, following Rust namespace conventions. */
1957 static struct type *
1958 rust_lookup_type (const char *name, const struct block *block)
1960 struct block_symbol result;
1963 munge_name_and_block (&name, &block);
1965 result = lookup_symbol (name, block, STRUCT_DOMAIN, NULL);
1966 if (result.symbol != NULL)
1968 update_innermost_block (result);
1969 return SYMBOL_TYPE (result.symbol);
1972 type = lookup_typename (current_parser->language (), current_parser->arch (),
1977 /* Last chance, try a built-in type. */
1978 return language_lookup_primitive_type (current_parser->language (),
1979 current_parser->arch (),
1983 static struct type *convert_ast_to_type (struct parser_state *state,
1984 const struct rust_op *operation);
1985 static const char *convert_name (struct parser_state *state,
1986 const struct rust_op *operation);
1988 /* Convert a vector of rust_ops representing types to a vector of
1991 static std::vector<struct type *>
1992 convert_params_to_types (struct parser_state *state, rust_op_vector *params)
1994 std::vector<struct type *> result;
1996 for (const rust_op *op : *params)
1997 result.push_back (convert_ast_to_type (state, op));
2002 /* Convert a rust_op representing a type to a struct type *. */
2004 static struct type *
2005 convert_ast_to_type (struct parser_state *state,
2006 const struct rust_op *operation)
2008 struct type *type, *result = NULL;
2010 if (operation->opcode == OP_VAR_VALUE)
2012 const char *varname = convert_name (state, operation);
2014 result = rust_lookup_type (varname, expression_context_block);
2016 error (_("No typed name '%s' in current context"), varname);
2020 gdb_assert (operation->opcode == OP_TYPE);
2022 switch (operation->typecode)
2024 case TYPE_CODE_ARRAY:
2025 type = convert_ast_to_type (state, operation->left.op);
2026 if (operation->right.typed_val_int.val < 0)
2027 error (_("Negative array length"));
2028 result = lookup_array_range_type (type, 0,
2029 operation->right.typed_val_int.val - 1);
2032 case TYPE_CODE_COMPLEX:
2034 struct type *usize = rust_type ("usize");
2036 type = convert_ast_to_type (state, operation->left.op);
2037 result = rust_slice_type ("&[*gdb*]", type, usize);
2043 /* For now we treat &x and *x identically. */
2044 type = convert_ast_to_type (state, operation->left.op);
2045 result = lookup_pointer_type (type);
2048 case TYPE_CODE_FUNC:
2050 std::vector<struct type *> args
2051 (convert_params_to_types (state, operation->right.params));
2052 struct type **argtypes = NULL;
2054 type = convert_ast_to_type (state, operation->left.op);
2056 argtypes = args.data ();
2059 = lookup_function_type_with_arguments (type, args.size (),
2061 result = lookup_pointer_type (result);
2065 case TYPE_CODE_STRUCT:
2067 std::vector<struct type *> args
2068 (convert_params_to_types (state, operation->left.params));
2072 obstack_1grow (work_obstack, '(');
2073 for (i = 0; i < args.size (); ++i)
2075 std::string type_name = type_to_string (args[i]);
2078 obstack_1grow (work_obstack, ',');
2079 obstack_grow_str (work_obstack, type_name.c_str ());
2082 obstack_grow_str0 (work_obstack, ")");
2083 name = (const char *) obstack_finish (work_obstack);
2085 /* We don't allow creating new tuple types (yet), but we do
2086 allow looking up existing tuple types. */
2087 result = rust_lookup_type (name, expression_context_block);
2089 error (_("could not find tuple type '%s'"), name);
2094 gdb_assert_not_reached ("unhandled opcode in convert_ast_to_type");
2097 gdb_assert (result != NULL);
2101 /* A helper function to turn a rust_op representing a name into a full
2102 name. This applies generic arguments as needed. The returned name
2103 is allocated on the work obstack. */
2106 convert_name (struct parser_state *state, const struct rust_op *operation)
2110 gdb_assert (operation->opcode == OP_VAR_VALUE);
2112 if (operation->right.params == NULL)
2113 return operation->left.sval.ptr;
2115 std::vector<struct type *> types
2116 (convert_params_to_types (state, operation->right.params));
2118 obstack_grow_str (work_obstack, operation->left.sval.ptr);
2119 obstack_1grow (work_obstack, '<');
2120 for (i = 0; i < types.size (); ++i)
2122 std::string type_name = type_to_string (types[i]);
2125 obstack_1grow (work_obstack, ',');
2127 obstack_grow_str (work_obstack, type_name.c_str ());
2129 obstack_grow_str0 (work_obstack, ">");
2131 return (const char *) obstack_finish (work_obstack);
2134 static void convert_ast_to_expression (struct parser_state *state,
2135 const struct rust_op *operation,
2136 const struct rust_op *top,
2137 bool want_type = false);
2139 /* A helper function that converts a vec of rust_ops to a gdb
2143 convert_params_to_expression (struct parser_state *state,
2144 rust_op_vector *params,
2145 const struct rust_op *top)
2147 for (const rust_op *elem : *params)
2148 convert_ast_to_expression (state, elem, top);
2151 /* Lower a rust_op to a gdb expression. STATE is the parser state.
2152 OPERATION is the operation to lower. TOP is a pointer to the
2153 top-most operation; it is used to handle the special case where the
2154 top-most expression is an identifier and can be optionally lowered
2155 to OP_TYPE. WANT_TYPE is a flag indicating that, if the expression
2156 is the name of a type, then emit an OP_TYPE for it (rather than
2157 erroring). If WANT_TYPE is set, then the similar TOP handling is
2161 convert_ast_to_expression (struct parser_state *state,
2162 const struct rust_op *operation,
2163 const struct rust_op *top,
2166 switch (operation->opcode)
2169 write_exp_elt_opcode (state, OP_LONG);
2170 write_exp_elt_type (state, operation->left.typed_val_int.type);
2171 write_exp_elt_longcst (state, operation->left.typed_val_int.val);
2172 write_exp_elt_opcode (state, OP_LONG);
2176 write_exp_elt_opcode (state, OP_FLOAT);
2177 write_exp_elt_type (state, operation->left.typed_val_float.type);
2178 write_exp_elt_floatcst (state, operation->left.typed_val_float.val);
2179 write_exp_elt_opcode (state, OP_FLOAT);
2182 case STRUCTOP_STRUCT:
2184 convert_ast_to_expression (state, operation->left.op, top);
2186 if (operation->completing)
2187 mark_struct_expression (state);
2188 write_exp_elt_opcode (state, STRUCTOP_STRUCT);
2189 write_exp_string (state, operation->right.sval);
2190 write_exp_elt_opcode (state, STRUCTOP_STRUCT);
2194 case STRUCTOP_ANONYMOUS:
2196 convert_ast_to_expression (state, operation->left.op, top);
2198 write_exp_elt_opcode (state, STRUCTOP_ANONYMOUS);
2199 write_exp_elt_longcst (state, operation->right.typed_val_int.val);
2200 write_exp_elt_opcode (state, STRUCTOP_ANONYMOUS);
2205 convert_ast_to_expression (state, operation->left.op, top, true);
2206 write_exp_elt_opcode (state, UNOP_SIZEOF);
2211 case UNOP_COMPLEMENT:
2214 convert_ast_to_expression (state, operation->left.op, top);
2215 write_exp_elt_opcode (state, operation->opcode);
2218 case BINOP_SUBSCRIPT:
2225 case BINOP_BITWISE_AND:
2226 case BINOP_BITWISE_IOR:
2227 case BINOP_BITWISE_XOR:
2230 case BINOP_LOGICAL_OR:
2231 case BINOP_LOGICAL_AND:
2233 case BINOP_NOTEQUAL:
2240 convert_ast_to_expression (state, operation->left.op, top);
2241 convert_ast_to_expression (state, operation->right.op, top);
2242 if (operation->compound_assignment)
2244 write_exp_elt_opcode (state, BINOP_ASSIGN_MODIFY);
2245 write_exp_elt_opcode (state, operation->opcode);
2246 write_exp_elt_opcode (state, BINOP_ASSIGN_MODIFY);
2249 write_exp_elt_opcode (state, operation->opcode);
2251 if (operation->compound_assignment
2252 || operation->opcode == BINOP_ASSIGN)
2256 type = language_lookup_primitive_type (parse_language (state),
2257 parse_gdbarch (state),
2260 write_exp_elt_opcode (state, OP_LONG);
2261 write_exp_elt_type (state, type);
2262 write_exp_elt_longcst (state, 0);
2263 write_exp_elt_opcode (state, OP_LONG);
2265 write_exp_elt_opcode (state, BINOP_COMMA);
2271 struct type *type = convert_ast_to_type (state, operation->right.op);
2273 convert_ast_to_expression (state, operation->left.op, top);
2274 write_exp_elt_opcode (state, UNOP_CAST);
2275 write_exp_elt_type (state, type);
2276 write_exp_elt_opcode (state, UNOP_CAST);
2282 if (operation->left.op->opcode == OP_VAR_VALUE)
2285 const char *varname = convert_name (state, operation->left.op);
2287 type = rust_lookup_type (varname, expression_context_block);
2290 /* This is actually a tuple struct expression, not a
2292 rust_op_vector *params = operation->right.params;
2294 if (TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
2296 if (!rust_tuple_struct_type_p (type))
2297 error (_("Type %s is not a tuple struct"), varname);
2299 for (int i = 0; i < params->size (); ++i)
2301 char *cell = get_print_cell ();
2303 xsnprintf (cell, PRINT_CELL_SIZE, "__%d", i);
2304 write_exp_elt_opcode (state, OP_NAME);
2305 write_exp_string (state, make_stoken (cell));
2306 write_exp_elt_opcode (state, OP_NAME);
2308 convert_ast_to_expression (state, (*params)[i], top);
2311 write_exp_elt_opcode (state, OP_AGGREGATE);
2312 write_exp_elt_type (state, type);
2313 write_exp_elt_longcst (state, 2 * params->size ());
2314 write_exp_elt_opcode (state, OP_AGGREGATE);
2319 convert_ast_to_expression (state, operation->left.op, top);
2320 convert_params_to_expression (state, operation->right.params, top);
2321 write_exp_elt_opcode (state, OP_FUNCALL);
2322 write_exp_elt_longcst (state, operation->right.params->size ());
2323 write_exp_elt_longcst (state, OP_FUNCALL);
2328 gdb_assert (operation->left.op == NULL);
2329 convert_params_to_expression (state, operation->right.params, top);
2330 write_exp_elt_opcode (state, OP_ARRAY);
2331 write_exp_elt_longcst (state, 0);
2332 write_exp_elt_longcst (state, operation->right.params->size () - 1);
2333 write_exp_elt_longcst (state, OP_ARRAY);
2338 struct block_symbol sym;
2339 const char *varname;
2341 if (operation->left.sval.ptr[0] == '$')
2343 write_dollar_variable (state, operation->left.sval);
2347 varname = convert_name (state, operation);
2348 sym = rust_lookup_symbol (varname, expression_context_block,
2350 if (sym.symbol != NULL && SYMBOL_CLASS (sym.symbol) != LOC_TYPEDEF)
2352 write_exp_elt_opcode (state, OP_VAR_VALUE);
2353 write_exp_elt_block (state, sym.block);
2354 write_exp_elt_sym (state, sym.symbol);
2355 write_exp_elt_opcode (state, OP_VAR_VALUE);
2359 struct type *type = NULL;
2361 if (sym.symbol != NULL)
2363 gdb_assert (SYMBOL_CLASS (sym.symbol) == LOC_TYPEDEF);
2364 type = SYMBOL_TYPE (sym.symbol);
2367 type = rust_lookup_type (varname, expression_context_block);
2369 error (_("No symbol '%s' in current context"), varname);
2372 && TYPE_CODE (type) == TYPE_CODE_STRUCT
2373 && TYPE_NFIELDS (type) == 0)
2375 /* A unit-like struct. */
2376 write_exp_elt_opcode (state, OP_AGGREGATE);
2377 write_exp_elt_type (state, type);
2378 write_exp_elt_longcst (state, 0);
2379 write_exp_elt_opcode (state, OP_AGGREGATE);
2381 else if (want_type || operation == top)
2383 write_exp_elt_opcode (state, OP_TYPE);
2384 write_exp_elt_type (state, type);
2385 write_exp_elt_opcode (state, OP_TYPE);
2388 error (_("Found type '%s', which can't be "
2389 "evaluated in this context"),
2398 rust_set_vector *fields = operation->right.field_inits;
2403 for (const set_field &init : *fields)
2405 if (init.name.ptr != NULL)
2407 write_exp_elt_opcode (state, OP_NAME);
2408 write_exp_string (state, init.name);
2409 write_exp_elt_opcode (state, OP_NAME);
2413 convert_ast_to_expression (state, init.init, top);
2416 if (init.name.ptr == NULL)
2418 /* This is handled differently from Ada in our
2420 write_exp_elt_opcode (state, OP_OTHERS);
2424 name = convert_name (state, operation->left.op);
2425 type = rust_lookup_type (name, expression_context_block);
2427 error (_("Could not find type '%s'"), operation->left.sval.ptr);
2429 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
2430 || rust_tuple_type_p (type)
2431 || rust_tuple_struct_type_p (type))
2432 error (_("Struct expression applied to non-struct type"));
2434 write_exp_elt_opcode (state, OP_AGGREGATE);
2435 write_exp_elt_type (state, type);
2436 write_exp_elt_longcst (state, length);
2437 write_exp_elt_opcode (state, OP_AGGREGATE);
2443 write_exp_elt_opcode (state, OP_STRING);
2444 write_exp_string (state, operation->left.sval);
2445 write_exp_elt_opcode (state, OP_STRING);
2451 enum range_type kind = BOTH_BOUND_DEFAULT;
2453 if (operation->left.op != NULL)
2455 convert_ast_to_expression (state, operation->left.op, top);
2456 kind = HIGH_BOUND_DEFAULT;
2458 if (operation->right.op != NULL)
2460 convert_ast_to_expression (state, operation->right.op, top);
2461 if (kind == BOTH_BOUND_DEFAULT)
2462 kind = LOW_BOUND_DEFAULT;
2465 gdb_assert (kind == HIGH_BOUND_DEFAULT);
2466 kind = NONE_BOUND_DEFAULT;
2469 write_exp_elt_opcode (state, OP_RANGE);
2470 write_exp_elt_longcst (state, kind);
2471 write_exp_elt_opcode (state, OP_RANGE);
2476 gdb_assert_not_reached ("unhandled opcode in convert_ast_to_expression");
2482 /* The parser as exposed to gdb. */
2485 rust_parse (struct parser_state *state)
2489 /* This sets various globals and also clears them on
2491 rust_parser parser (state);
2493 result = rustyyparse ();
2495 if (!result || (parse_completion && parser.rust_ast != NULL))
2496 convert_ast_to_expression (state, parser.rust_ast, parser.rust_ast);
2501 /* The parser error handler. */
2504 rustyyerror (const char *msg)
2506 const char *where = prev_lexptr ? prev_lexptr : lexptr;
2507 error (_("%s in expression, near `%s'."), (msg ? msg : "Error"), where);
2514 /* Initialize the lexer for testing. */
2517 rust_lex_test_init (const char *input)
2524 /* A test helper that lexes a string, expecting a single token. It
2525 returns the lexer data for this token. */
2528 rust_lex_test_one (const char *input, int expected)
2533 rust_lex_test_init (input);
2535 token = rustyylex ();
2536 SELF_CHECK (token == expected);
2537 result = rustyylval;
2541 token = rustyylex ();
2542 SELF_CHECK (token == 0);
2548 /* Test that INPUT lexes as the integer VALUE. */
2551 rust_lex_int_test (const char *input, int value, int kind)
2553 RUSTSTYPE result = rust_lex_test_one (input, kind);
2554 SELF_CHECK (result.typed_val_int.val == value);
2557 /* Test that INPUT throws an exception with text ERR. */
2560 rust_lex_exception_test (const char *input, const char *err)
2564 /* The "kind" doesn't matter. */
2565 rust_lex_test_one (input, DECIMAL_INTEGER);
2568 CATCH (except, RETURN_MASK_ERROR)
2570 SELF_CHECK (strcmp (except.message, err) == 0);
2575 /* Test that INPUT lexes as the identifier, string, or byte-string
2576 VALUE. KIND holds the expected token kind. */
2579 rust_lex_stringish_test (const char *input, const char *value, int kind)
2581 RUSTSTYPE result = rust_lex_test_one (input, kind);
2582 SELF_CHECK (result.sval.length == strlen (value));
2583 SELF_CHECK (strncmp (result.sval.ptr, value, result.sval.length) == 0);
2586 /* Helper to test that a string parses as a given token sequence. */
2589 rust_lex_test_sequence (const char *input, int len, const int expected[])
2596 for (i = 0; i < len; ++i)
2598 int token = rustyylex ();
2600 SELF_CHECK (token == expected[i]);
2604 /* Tests for an integer-parsing corner case. */
2607 rust_lex_test_trailing_dot (void)
2609 const int expected1[] = { DECIMAL_INTEGER, '.', IDENT, '(', ')', 0 };
2610 const int expected2[] = { INTEGER, '.', IDENT, '(', ')', 0 };
2611 const int expected3[] = { FLOAT, EQEQ, '(', ')', 0 };
2612 const int expected4[] = { DECIMAL_INTEGER, DOTDOT, DECIMAL_INTEGER, 0 };
2614 rust_lex_test_sequence ("23.g()", ARRAY_SIZE (expected1), expected1);
2615 rust_lex_test_sequence ("23_0.g()", ARRAY_SIZE (expected2), expected2);
2616 rust_lex_test_sequence ("23.==()", ARRAY_SIZE (expected3), expected3);
2617 rust_lex_test_sequence ("23..25", ARRAY_SIZE (expected4), expected4);
2620 /* Tests of completion. */
2623 rust_lex_test_completion (void)
2625 const int expected[] = { IDENT, '.', COMPLETE, 0 };
2627 parse_completion = 1;
2629 rust_lex_test_sequence ("something.wha", ARRAY_SIZE (expected), expected);
2630 rust_lex_test_sequence ("something.", ARRAY_SIZE (expected), expected);
2632 parse_completion = 0;
2635 /* Test pushback. */
2638 rust_lex_test_push_back (void)
2642 rust_lex_test_init (">>=");
2644 token = rustyylex ();
2645 SELF_CHECK (token == COMPOUND_ASSIGN);
2646 SELF_CHECK (rustyylval.opcode == BINOP_RSH);
2648 rust_push_back ('=');
2650 token = rustyylex ();
2651 SELF_CHECK (token == '=');
2653 token = rustyylex ();
2654 SELF_CHECK (token == 0);
2657 /* Unit test the lexer. */
2660 rust_lex_tests (void)
2664 auto_obstack test_obstack;
2665 scoped_restore obstack_holder = make_scoped_restore (&work_obstack,
2668 // Set up dummy "parser", so that rust_type works.
2669 struct parser_state ps (0, &rust_language_defn, target_gdbarch ());
2670 rust_parser parser (&ps);
2672 rust_lex_test_one ("", 0);
2673 rust_lex_test_one (" \t \n \r ", 0);
2674 rust_lex_test_one ("thread 23", 0);
2675 rust_lex_test_one ("task 23", 0);
2676 rust_lex_test_one ("th 104", 0);
2677 rust_lex_test_one ("ta 97", 0);
2679 rust_lex_int_test ("'z'", 'z', INTEGER);
2680 rust_lex_int_test ("'\\xff'", 0xff, INTEGER);
2681 rust_lex_int_test ("'\\u{1016f}'", 0x1016f, INTEGER);
2682 rust_lex_int_test ("b'z'", 'z', INTEGER);
2683 rust_lex_int_test ("b'\\xfe'", 0xfe, INTEGER);
2684 rust_lex_int_test ("b'\\xFE'", 0xfe, INTEGER);
2685 rust_lex_int_test ("b'\\xfE'", 0xfe, INTEGER);
2687 /* Test all escapes in both modes. */
2688 rust_lex_int_test ("'\\n'", '\n', INTEGER);
2689 rust_lex_int_test ("'\\r'", '\r', INTEGER);
2690 rust_lex_int_test ("'\\t'", '\t', INTEGER);
2691 rust_lex_int_test ("'\\\\'", '\\', INTEGER);
2692 rust_lex_int_test ("'\\0'", '\0', INTEGER);
2693 rust_lex_int_test ("'\\''", '\'', INTEGER);
2694 rust_lex_int_test ("'\\\"'", '"', INTEGER);
2696 rust_lex_int_test ("b'\\n'", '\n', INTEGER);
2697 rust_lex_int_test ("b'\\r'", '\r', INTEGER);
2698 rust_lex_int_test ("b'\\t'", '\t', INTEGER);
2699 rust_lex_int_test ("b'\\\\'", '\\', INTEGER);
2700 rust_lex_int_test ("b'\\0'", '\0', INTEGER);
2701 rust_lex_int_test ("b'\\''", '\'', INTEGER);
2702 rust_lex_int_test ("b'\\\"'", '"', INTEGER);
2704 rust_lex_exception_test ("'z", "Unterminated character literal");
2705 rust_lex_exception_test ("b'\\x0'", "Not enough hex digits seen");
2706 rust_lex_exception_test ("b'\\u{0}'", "Unicode escape in byte literal");
2707 rust_lex_exception_test ("'\\x0'", "Not enough hex digits seen");
2708 rust_lex_exception_test ("'\\u0'", "Missing '{' in Unicode escape");
2709 rust_lex_exception_test ("'\\u{0", "Missing '}' in Unicode escape");
2710 rust_lex_exception_test ("'\\u{0000007}", "Overlong hex escape");
2711 rust_lex_exception_test ("'\\u{}", "Not enough hex digits seen");
2712 rust_lex_exception_test ("'\\Q'", "Invalid escape \\Q in literal");
2713 rust_lex_exception_test ("b'\\Q'", "Invalid escape \\Q in literal");
2715 rust_lex_int_test ("23", 23, DECIMAL_INTEGER);
2716 rust_lex_int_test ("2_344__29", 234429, INTEGER);
2717 rust_lex_int_test ("0x1f", 0x1f, INTEGER);
2718 rust_lex_int_test ("23usize", 23, INTEGER);
2719 rust_lex_int_test ("23i32", 23, INTEGER);
2720 rust_lex_int_test ("0x1_f", 0x1f, INTEGER);
2721 rust_lex_int_test ("0b1_101011__", 0x6b, INTEGER);
2722 rust_lex_int_test ("0o001177i64", 639, INTEGER);
2724 rust_lex_test_trailing_dot ();
2726 rust_lex_test_one ("23.", FLOAT);
2727 rust_lex_test_one ("23.99f32", FLOAT);
2728 rust_lex_test_one ("23e7", FLOAT);
2729 rust_lex_test_one ("23E-7", FLOAT);
2730 rust_lex_test_one ("23e+7", FLOAT);
2731 rust_lex_test_one ("23.99e+7f64", FLOAT);
2732 rust_lex_test_one ("23.82f32", FLOAT);
2734 rust_lex_stringish_test ("hibob", "hibob", IDENT);
2735 rust_lex_stringish_test ("hibob__93", "hibob__93", IDENT);
2736 rust_lex_stringish_test ("thread", "thread", IDENT);
2738 rust_lex_stringish_test ("\"string\"", "string", STRING);
2739 rust_lex_stringish_test ("\"str\\ting\"", "str\ting", STRING);
2740 rust_lex_stringish_test ("\"str\\\"ing\"", "str\"ing", STRING);
2741 rust_lex_stringish_test ("r\"str\\ing\"", "str\\ing", STRING);
2742 rust_lex_stringish_test ("r#\"str\\ting\"#", "str\\ting", STRING);
2743 rust_lex_stringish_test ("r###\"str\\\"ing\"###", "str\\\"ing", STRING);
2745 rust_lex_stringish_test ("b\"string\"", "string", BYTESTRING);
2746 rust_lex_stringish_test ("b\"\x73tring\"", "string", BYTESTRING);
2747 rust_lex_stringish_test ("b\"str\\\"ing\"", "str\"ing", BYTESTRING);
2748 rust_lex_stringish_test ("br####\"\\x73tring\"####", "\\x73tring",
2751 for (i = 0; i < ARRAY_SIZE (identifier_tokens); ++i)
2752 rust_lex_test_one (identifier_tokens[i].name, identifier_tokens[i].value);
2754 for (i = 0; i < ARRAY_SIZE (operator_tokens); ++i)
2755 rust_lex_test_one (operator_tokens[i].name, operator_tokens[i].value);
2757 rust_lex_test_completion ();
2758 rust_lex_test_push_back ();
2761 #endif /* GDB_SELF_TEST */
2764 _initialize_rust_exp (void)
2766 int code = regcomp (&number_regex, number_regex_text, REG_EXTENDED);
2767 /* If the regular expression was incorrect, it was a programming
2769 gdb_assert (code == 0);
2772 selftests::register_test ("rust-lex", rust_lex_tests);