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 the innermost block as appropriate. */
1050 update_innermost_block (struct block_symbol sym)
1052 if (symbol_read_needs_frame (sym.symbol))
1053 innermost_block.update (sym);
1056 /* A helper to look up a Rust type, or fail. This only works for
1057 types defined by rust_language_arch_info. */
1059 static struct type *
1060 rust_type (const char *name)
1064 type = language_lookup_primitive_type (current_parser->language (),
1065 current_parser->arch (),
1068 error (_("Could not find Rust type %s"), name);
1072 /* Lex a hex number with at least MIN digits and at most MAX
1076 lex_hex (int min, int max)
1078 uint32_t result = 0;
1080 /* We only want to stop at MAX if we're lexing a byte escape. */
1081 int check_max = min == max;
1083 while ((check_max ? len <= max : 1)
1084 && ((lexptr[0] >= 'a' && lexptr[0] <= 'f')
1085 || (lexptr[0] >= 'A' && lexptr[0] <= 'F')
1086 || (lexptr[0] >= '0' && lexptr[0] <= '9')))
1089 if (lexptr[0] >= 'a' && lexptr[0] <= 'f')
1090 result = result + 10 + lexptr[0] - 'a';
1091 else if (lexptr[0] >= 'A' && lexptr[0] <= 'F')
1092 result = result + 10 + lexptr[0] - 'A';
1094 result = result + lexptr[0] - '0';
1100 error (_("Not enough hex digits seen"));
1103 gdb_assert (min != max);
1104 error (_("Overlong hex escape"));
1110 /* Lex an escape. IS_BYTE is true if we're lexing a byte escape;
1111 otherwise we're lexing a character escape. */
1114 lex_escape (int is_byte)
1118 gdb_assert (lexptr[0] == '\\');
1124 result = lex_hex (2, 2);
1129 error (_("Unicode escape in byte literal"));
1131 if (lexptr[0] != '{')
1132 error (_("Missing '{' in Unicode escape"));
1134 result = lex_hex (1, 6);
1135 /* Could do range checks here. */
1136 if (lexptr[0] != '}')
1137 error (_("Missing '}' in Unicode escape"));
1171 error (_("Invalid escape \\%c in literal"), lexptr[0]);
1177 /* Lex a character constant. */
1180 lex_character (void)
1185 if (lexptr[0] == 'b')
1190 gdb_assert (lexptr[0] == '\'');
1192 /* This should handle UTF-8 here. */
1193 if (lexptr[0] == '\\')
1194 value = lex_escape (is_byte);
1197 value = lexptr[0] & 0xff;
1201 if (lexptr[0] != '\'')
1202 error (_("Unterminated character literal"));
1205 rustyylval.typed_val_int.val = value;
1206 rustyylval.typed_val_int.type = rust_type (is_byte ? "u8" : "char");
1211 /* Return the offset of the double quote if STR looks like the start
1212 of a raw string, or 0 if STR does not start a raw string. */
1215 starts_raw_string (const char *str)
1217 const char *save = str;
1222 while (str[0] == '#')
1229 /* Return true if STR looks like the end of a raw string that had N
1230 hashes at the start. */
1233 ends_raw_string (const char *str, int n)
1237 gdb_assert (str[0] == '"');
1238 for (i = 0; i < n; ++i)
1239 if (str[i + 1] != '#')
1244 /* Lex a string constant. */
1249 int is_byte = lexptr[0] == 'b';
1254 raw_length = starts_raw_string (lexptr);
1255 lexptr += raw_length;
1256 gdb_assert (lexptr[0] == '"');
1265 if (lexptr[0] == '"' && ends_raw_string (lexptr, raw_length - 1))
1267 /* Exit with lexptr pointing after the final "#". */
1268 lexptr += raw_length;
1271 else if (lexptr[0] == '\0')
1272 error (_("Unexpected EOF in string"));
1274 value = lexptr[0] & 0xff;
1275 if (is_byte && value > 127)
1276 error (_("Non-ASCII value in raw byte string"));
1277 obstack_1grow (work_obstack, value);
1281 else if (lexptr[0] == '"')
1283 /* Make sure to skip the quote. */
1287 else if (lexptr[0] == '\\')
1289 value = lex_escape (is_byte);
1292 obstack_1grow (work_obstack, value);
1294 convert_between_encodings ("UTF-32", "UTF-8", (gdb_byte *) &value,
1295 sizeof (value), sizeof (value),
1296 work_obstack, translit_none);
1298 else if (lexptr[0] == '\0')
1299 error (_("Unexpected EOF in string"));
1302 value = lexptr[0] & 0xff;
1303 if (is_byte && value > 127)
1304 error (_("Non-ASCII value in byte string"));
1305 obstack_1grow (work_obstack, value);
1310 rustyylval.sval.length = obstack_object_size (work_obstack);
1311 rustyylval.sval.ptr = (const char *) obstack_finish (work_obstack);
1312 return is_byte ? BYTESTRING : STRING;
1315 /* Return true if STRING starts with whitespace followed by a digit. */
1318 space_then_number (const char *string)
1320 const char *p = string;
1322 while (p[0] == ' ' || p[0] == '\t')
1327 return *p >= '0' && *p <= '9';
1330 /* Return true if C can start an identifier. */
1333 rust_identifier_start_p (char c)
1335 return ((c >= 'a' && c <= 'z')
1336 || (c >= 'A' && c <= 'Z')
1341 /* Lex an identifier. */
1344 lex_identifier (void)
1346 const char *start = lexptr;
1347 unsigned int length;
1348 const struct token_info *token;
1350 int is_gdb_var = lexptr[0] == '$';
1352 gdb_assert (rust_identifier_start_p (lexptr[0]));
1356 /* For the time being this doesn't handle Unicode rules. Non-ASCII
1357 identifiers are gated anyway. */
1358 while ((lexptr[0] >= 'a' && lexptr[0] <= 'z')
1359 || (lexptr[0] >= 'A' && lexptr[0] <= 'Z')
1361 || (is_gdb_var && lexptr[0] == '$')
1362 || (lexptr[0] >= '0' && lexptr[0] <= '9'))
1366 length = lexptr - start;
1368 for (i = 0; i < ARRAY_SIZE (identifier_tokens); ++i)
1370 if (length == strlen (identifier_tokens[i].name)
1371 && strncmp (identifier_tokens[i].name, start, length) == 0)
1373 token = &identifier_tokens[i];
1380 if (token->value == 0)
1382 /* Leave the terminating token alone. */
1387 else if (token == NULL
1388 && (strncmp (start, "thread", length) == 0
1389 || strncmp (start, "task", length) == 0)
1390 && space_then_number (lexptr))
1392 /* "task" or "thread" followed by a number terminates the
1393 parse, per gdb rules. */
1398 if (token == NULL || (parse_completion && lexptr[0] == '\0'))
1399 rustyylval.sval = make_stoken (rust_copy_name (start, length));
1401 if (parse_completion && lexptr[0] == '\0')
1403 /* Prevent rustyylex from returning two COMPLETE tokens. */
1404 prev_lexptr = lexptr;
1409 return token->value;
1415 /* Lex an operator. */
1420 const struct token_info *token = NULL;
1423 for (i = 0; i < ARRAY_SIZE (operator_tokens); ++i)
1425 if (strncmp (operator_tokens[i].name, lexptr,
1426 strlen (operator_tokens[i].name)) == 0)
1428 lexptr += strlen (operator_tokens[i].name);
1429 token = &operator_tokens[i];
1436 rustyylval.opcode = token->opcode;
1437 return token->value;
1448 regmatch_t subexps[NUM_SUBEXPRESSIONS];
1451 int could_be_decimal = 1;
1452 int implicit_i32 = 0;
1453 const char *type_name = NULL;
1456 int type_index = -1;
1459 match = regexec (&number_regex, lexptr, ARRAY_SIZE (subexps), subexps, 0);
1460 /* Failure means the regexp is broken. */
1461 gdb_assert (match == 0);
1463 if (subexps[INT_TEXT].rm_so != -1)
1465 /* Integer part matched. */
1467 end_index = subexps[INT_TEXT].rm_eo;
1468 if (subexps[INT_TYPE].rm_so == -1)
1475 type_index = INT_TYPE;
1476 could_be_decimal = 0;
1479 else if (subexps[FLOAT_TYPE1].rm_so != -1)
1481 /* Found floating point type suffix. */
1482 end_index = subexps[FLOAT_TYPE1].rm_so;
1483 type_index = FLOAT_TYPE1;
1485 else if (subexps[FLOAT_TYPE2].rm_so != -1)
1487 /* Found floating point type suffix. */
1488 end_index = subexps[FLOAT_TYPE2].rm_so;
1489 type_index = FLOAT_TYPE2;
1493 /* Any other floating point match. */
1494 end_index = subexps[0].rm_eo;
1498 /* We need a special case if the final character is ".". In this
1499 case we might need to parse an integer. For example, "23.f()" is
1500 a request for a trait method call, not a syntax error involving
1501 the floating point number "23.". */
1502 gdb_assert (subexps[0].rm_eo > 0);
1503 if (lexptr[subexps[0].rm_eo - 1] == '.')
1505 const char *next = skip_spaces (&lexptr[subexps[0].rm_eo]);
1507 if (rust_identifier_start_p (*next) || *next == '.')
1511 end_index = subexps[0].rm_eo;
1513 could_be_decimal = 1;
1518 /* Compute the type name if we haven't already. */
1519 std::string type_name_holder;
1520 if (type_name == NULL)
1522 gdb_assert (type_index != -1);
1523 type_name_holder = std::string (lexptr + subexps[type_index].rm_so,
1524 (subexps[type_index].rm_eo
1525 - subexps[type_index].rm_so));
1526 type_name = type_name_holder.c_str ();
1529 /* Look up the type. */
1530 type = rust_type (type_name);
1532 /* Copy the text of the number and remove the "_"s. */
1534 for (i = 0; i < end_index && lexptr[i]; ++i)
1536 if (lexptr[i] == '_')
1537 could_be_decimal = 0;
1539 number.push_back (lexptr[i]);
1542 /* Advance past the match. */
1543 lexptr += subexps[0].rm_eo;
1545 /* Parse the number. */
1552 if (number[0] == '0')
1554 if (number[1] == 'x')
1556 else if (number[1] == 'o')
1558 else if (number[1] == 'b')
1563 could_be_decimal = 0;
1567 value = strtoul (number.c_str () + offset, NULL, radix);
1568 if (implicit_i32 && value >= ((uint64_t) 1) << 31)
1569 type = rust_type ("i64");
1571 rustyylval.typed_val_int.val = value;
1572 rustyylval.typed_val_int.type = type;
1576 rustyylval.typed_val_float.type = type;
1577 bool parsed = parse_float (number.c_str (), number.length (),
1578 rustyylval.typed_val_float.type,
1579 rustyylval.typed_val_float.val);
1580 gdb_assert (parsed);
1583 return is_integer ? (could_be_decimal ? DECIMAL_INTEGER : INTEGER) : FLOAT;
1591 /* Skip all leading whitespace. */
1592 while (lexptr[0] == ' ' || lexptr[0] == '\t' || lexptr[0] == '\r'
1593 || lexptr[0] == '\n')
1596 /* If we hit EOF and we're completing, then return COMPLETE -- maybe
1597 we're completing an empty string at the end of a field_expr.
1598 But, we don't want to return two COMPLETE tokens in a row. */
1599 if (lexptr[0] == '\0' && lexptr == prev_lexptr)
1601 prev_lexptr = lexptr;
1602 if (lexptr[0] == '\0')
1604 if (parse_completion)
1606 rustyylval.sval = make_stoken ("");
1612 if (lexptr[0] >= '0' && lexptr[0] <= '9')
1613 return lex_number ();
1614 else if (lexptr[0] == 'b' && lexptr[1] == '\'')
1615 return lex_character ();
1616 else if (lexptr[0] == 'b' && lexptr[1] == '"')
1617 return lex_string ();
1618 else if (lexptr[0] == 'b' && starts_raw_string (lexptr + 1))
1619 return lex_string ();
1620 else if (starts_raw_string (lexptr))
1621 return lex_string ();
1622 else if (rust_identifier_start_p (lexptr[0]))
1623 return lex_identifier ();
1624 else if (lexptr[0] == '"')
1625 return lex_string ();
1626 else if (lexptr[0] == '\'')
1627 return lex_character ();
1628 else if (lexptr[0] == '}' || lexptr[0] == ']')
1630 /* Falls through to lex_operator. */
1633 else if (lexptr[0] == '(' || lexptr[0] == '{')
1635 /* Falls through to lex_operator. */
1638 else if (lexptr[0] == ',' && comma_terminates && paren_depth == 0)
1641 return lex_operator ();
1644 /* Push back a single character to be re-lexed. */
1647 rust_push_back (char c)
1649 /* Can't be called before any lexing. */
1650 gdb_assert (prev_lexptr != NULL);
1653 gdb_assert (*lexptr == c);
1658 /* Make an arbitrary operation and fill in the fields. */
1660 static const struct rust_op *
1661 ast_operation (enum exp_opcode opcode, const struct rust_op *left,
1662 const struct rust_op *right)
1664 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1666 result->opcode = opcode;
1667 result->left.op = left;
1668 result->right.op = right;
1673 /* Make a compound assignment operation. */
1675 static const struct rust_op *
1676 ast_compound_assignment (enum exp_opcode opcode, const struct rust_op *left,
1677 const struct rust_op *right)
1679 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1681 result->opcode = opcode;
1682 result->compound_assignment = 1;
1683 result->left.op = left;
1684 result->right.op = right;
1689 /* Make a typed integer literal operation. */
1691 static const struct rust_op *
1692 ast_literal (struct typed_val_int val)
1694 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1696 result->opcode = OP_LONG;
1697 result->left.typed_val_int = val;
1702 /* Make a typed floating point literal operation. */
1704 static const struct rust_op *
1705 ast_dliteral (struct typed_val_float val)
1707 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1709 result->opcode = OP_FLOAT;
1710 result->left.typed_val_float = val;
1715 /* Make a unary operation. */
1717 static const struct rust_op *
1718 ast_unary (enum exp_opcode opcode, const struct rust_op *expr)
1720 return ast_operation (opcode, expr, NULL);
1723 /* Make a cast operation. */
1725 static const struct rust_op *
1726 ast_cast (const struct rust_op *expr, const struct rust_op *type)
1728 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1730 result->opcode = UNOP_CAST;
1731 result->left.op = expr;
1732 result->right.op = type;
1737 /* Make a call-like operation. This is nominally a function call, but
1738 when lowering we may discover that it actually represents the
1739 creation of a tuple struct. */
1741 static const struct rust_op *
1742 ast_call_ish (enum exp_opcode opcode, const struct rust_op *expr,
1743 rust_op_vector *params)
1745 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1747 result->opcode = opcode;
1748 result->left.op = expr;
1749 result->right.params = params;
1754 /* Make a structure creation operation. */
1756 static const struct rust_op *
1757 ast_struct (const struct rust_op *name, rust_set_vector *fields)
1759 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1761 result->opcode = OP_AGGREGATE;
1762 result->left.op = name;
1763 result->right.field_inits = fields;
1768 /* Make an identifier path. */
1770 static const struct rust_op *
1771 ast_path (struct stoken path, rust_op_vector *params)
1773 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1775 result->opcode = OP_VAR_VALUE;
1776 result->left.sval = path;
1777 result->right.params = params;
1782 /* Make a string constant operation. */
1784 static const struct rust_op *
1785 ast_string (struct stoken str)
1787 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1789 result->opcode = OP_STRING;
1790 result->left.sval = str;
1795 /* Make a field expression. */
1797 static const struct rust_op *
1798 ast_structop (const struct rust_op *left, const char *name, int completing)
1800 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1802 result->opcode = STRUCTOP_STRUCT;
1803 result->completing = completing;
1804 result->left.op = left;
1805 result->right.sval = make_stoken (name);
1810 /* Make an anonymous struct operation, like 'x.0'. */
1812 static const struct rust_op *
1813 ast_structop_anonymous (const struct rust_op *left,
1814 struct typed_val_int number)
1816 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1818 result->opcode = STRUCTOP_ANONYMOUS;
1819 result->left.op = left;
1820 result->right.typed_val_int = number;
1825 /* Make a range operation. */
1827 static const struct rust_op *
1828 ast_range (const struct rust_op *lhs, const struct rust_op *rhs)
1830 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1832 result->opcode = OP_RANGE;
1833 result->left.op = lhs;
1834 result->right.op = rhs;
1839 /* A helper function to make a type-related AST node. */
1841 static struct rust_op *
1842 ast_basic_type (enum type_code typecode)
1844 struct rust_op *result = OBSTACK_ZALLOC (work_obstack, struct rust_op);
1846 result->opcode = OP_TYPE;
1847 result->typecode = typecode;
1851 /* Create an AST node describing an array type. */
1853 static const struct rust_op *
1854 ast_array_type (const struct rust_op *lhs, struct typed_val_int val)
1856 struct rust_op *result = ast_basic_type (TYPE_CODE_ARRAY);
1858 result->left.op = lhs;
1859 result->right.typed_val_int = val;
1863 /* Create an AST node describing a reference type. */
1865 static const struct rust_op *
1866 ast_slice_type (const struct rust_op *type)
1868 /* Use TYPE_CODE_COMPLEX just because it is handy. */
1869 struct rust_op *result = ast_basic_type (TYPE_CODE_COMPLEX);
1871 result->left.op = type;
1875 /* Create an AST node describing a reference type. */
1877 static const struct rust_op *
1878 ast_reference_type (const struct rust_op *type)
1880 struct rust_op *result = ast_basic_type (TYPE_CODE_REF);
1882 result->left.op = type;
1886 /* Create an AST node describing a pointer type. */
1888 static const struct rust_op *
1889 ast_pointer_type (const struct rust_op *type, int is_mut)
1891 struct rust_op *result = ast_basic_type (TYPE_CODE_PTR);
1893 result->left.op = type;
1894 /* For the time being we ignore is_mut. */
1898 /* Create an AST node describing a function type. */
1900 static const struct rust_op *
1901 ast_function_type (const struct rust_op *rtype, rust_op_vector *params)
1903 struct rust_op *result = ast_basic_type (TYPE_CODE_FUNC);
1905 result->left.op = rtype;
1906 result->right.params = params;
1910 /* Create an AST node describing a tuple type. */
1912 static const struct rust_op *
1913 ast_tuple_type (rust_op_vector *params)
1915 struct rust_op *result = ast_basic_type (TYPE_CODE_STRUCT);
1917 result->left.params = params;
1921 /* A helper to appropriately munge NAME and BLOCK depending on the
1922 presence of a leading "::". */
1925 munge_name_and_block (const char **name, const struct block **block)
1927 /* If it is a global reference, skip the current block in favor of
1928 the static block. */
1929 if (strncmp (*name, "::", 2) == 0)
1932 *block = block_static_block (*block);
1936 /* Like lookup_symbol, but handles Rust namespace conventions, and
1937 doesn't require field_of_this_result. */
1939 static struct block_symbol
1940 rust_lookup_symbol (const char *name, const struct block *block,
1941 const domain_enum domain)
1943 struct block_symbol result;
1945 munge_name_and_block (&name, &block);
1947 result = lookup_symbol (name, block, domain, NULL);
1948 if (result.symbol != NULL)
1949 update_innermost_block (result);
1953 /* Look up a type, following Rust namespace conventions. */
1955 static struct type *
1956 rust_lookup_type (const char *name, const struct block *block)
1958 struct block_symbol result;
1961 munge_name_and_block (&name, &block);
1963 result = lookup_symbol (name, block, STRUCT_DOMAIN, NULL);
1964 if (result.symbol != NULL)
1966 update_innermost_block (result);
1967 return SYMBOL_TYPE (result.symbol);
1970 type = lookup_typename (current_parser->language (), current_parser->arch (),
1975 /* Last chance, try a built-in type. */
1976 return language_lookup_primitive_type (current_parser->language (),
1977 current_parser->arch (),
1981 static struct type *convert_ast_to_type (struct parser_state *state,
1982 const struct rust_op *operation);
1983 static const char *convert_name (struct parser_state *state,
1984 const struct rust_op *operation);
1986 /* Convert a vector of rust_ops representing types to a vector of
1989 static std::vector<struct type *>
1990 convert_params_to_types (struct parser_state *state, rust_op_vector *params)
1992 std::vector<struct type *> result;
1994 for (const rust_op *op : *params)
1995 result.push_back (convert_ast_to_type (state, op));
2000 /* Convert a rust_op representing a type to a struct type *. */
2002 static struct type *
2003 convert_ast_to_type (struct parser_state *state,
2004 const struct rust_op *operation)
2006 struct type *type, *result = NULL;
2008 if (operation->opcode == OP_VAR_VALUE)
2010 const char *varname = convert_name (state, operation);
2012 result = rust_lookup_type (varname, expression_context_block);
2014 error (_("No typed name '%s' in current context"), varname);
2018 gdb_assert (operation->opcode == OP_TYPE);
2020 switch (operation->typecode)
2022 case TYPE_CODE_ARRAY:
2023 type = convert_ast_to_type (state, operation->left.op);
2024 if (operation->right.typed_val_int.val < 0)
2025 error (_("Negative array length"));
2026 result = lookup_array_range_type (type, 0,
2027 operation->right.typed_val_int.val - 1);
2030 case TYPE_CODE_COMPLEX:
2032 struct type *usize = rust_type ("usize");
2034 type = convert_ast_to_type (state, operation->left.op);
2035 result = rust_slice_type ("&[*gdb*]", type, usize);
2041 /* For now we treat &x and *x identically. */
2042 type = convert_ast_to_type (state, operation->left.op);
2043 result = lookup_pointer_type (type);
2046 case TYPE_CODE_FUNC:
2048 std::vector<struct type *> args
2049 (convert_params_to_types (state, operation->right.params));
2050 struct type **argtypes = NULL;
2052 type = convert_ast_to_type (state, operation->left.op);
2054 argtypes = args.data ();
2057 = lookup_function_type_with_arguments (type, args.size (),
2059 result = lookup_pointer_type (result);
2063 case TYPE_CODE_STRUCT:
2065 std::vector<struct type *> args
2066 (convert_params_to_types (state, operation->left.params));
2070 obstack_1grow (work_obstack, '(');
2071 for (i = 0; i < args.size (); ++i)
2073 std::string type_name = type_to_string (args[i]);
2076 obstack_1grow (work_obstack, ',');
2077 obstack_grow_str (work_obstack, type_name.c_str ());
2080 obstack_grow_str0 (work_obstack, ")");
2081 name = (const char *) obstack_finish (work_obstack);
2083 /* We don't allow creating new tuple types (yet), but we do
2084 allow looking up existing tuple types. */
2085 result = rust_lookup_type (name, expression_context_block);
2087 error (_("could not find tuple type '%s'"), name);
2092 gdb_assert_not_reached ("unhandled opcode in convert_ast_to_type");
2095 gdb_assert (result != NULL);
2099 /* A helper function to turn a rust_op representing a name into a full
2100 name. This applies generic arguments as needed. The returned name
2101 is allocated on the work obstack. */
2104 convert_name (struct parser_state *state, const struct rust_op *operation)
2108 gdb_assert (operation->opcode == OP_VAR_VALUE);
2110 if (operation->right.params == NULL)
2111 return operation->left.sval.ptr;
2113 std::vector<struct type *> types
2114 (convert_params_to_types (state, operation->right.params));
2116 obstack_grow_str (work_obstack, operation->left.sval.ptr);
2117 obstack_1grow (work_obstack, '<');
2118 for (i = 0; i < types.size (); ++i)
2120 std::string type_name = type_to_string (types[i]);
2123 obstack_1grow (work_obstack, ',');
2125 obstack_grow_str (work_obstack, type_name.c_str ());
2127 obstack_grow_str0 (work_obstack, ">");
2129 return (const char *) obstack_finish (work_obstack);
2132 static void convert_ast_to_expression (struct parser_state *state,
2133 const struct rust_op *operation,
2134 const struct rust_op *top,
2135 bool want_type = false);
2137 /* A helper function that converts a vec of rust_ops to a gdb
2141 convert_params_to_expression (struct parser_state *state,
2142 rust_op_vector *params,
2143 const struct rust_op *top)
2145 for (const rust_op *elem : *params)
2146 convert_ast_to_expression (state, elem, top);
2149 /* Lower a rust_op to a gdb expression. STATE is the parser state.
2150 OPERATION is the operation to lower. TOP is a pointer to the
2151 top-most operation; it is used to handle the special case where the
2152 top-most expression is an identifier and can be optionally lowered
2153 to OP_TYPE. WANT_TYPE is a flag indicating that, if the expression
2154 is the name of a type, then emit an OP_TYPE for it (rather than
2155 erroring). If WANT_TYPE is set, then the similar TOP handling is
2159 convert_ast_to_expression (struct parser_state *state,
2160 const struct rust_op *operation,
2161 const struct rust_op *top,
2164 switch (operation->opcode)
2167 write_exp_elt_opcode (state, OP_LONG);
2168 write_exp_elt_type (state, operation->left.typed_val_int.type);
2169 write_exp_elt_longcst (state, operation->left.typed_val_int.val);
2170 write_exp_elt_opcode (state, OP_LONG);
2174 write_exp_elt_opcode (state, OP_FLOAT);
2175 write_exp_elt_type (state, operation->left.typed_val_float.type);
2176 write_exp_elt_floatcst (state, operation->left.typed_val_float.val);
2177 write_exp_elt_opcode (state, OP_FLOAT);
2180 case STRUCTOP_STRUCT:
2182 convert_ast_to_expression (state, operation->left.op, top);
2184 if (operation->completing)
2185 mark_struct_expression (state);
2186 write_exp_elt_opcode (state, STRUCTOP_STRUCT);
2187 write_exp_string (state, operation->right.sval);
2188 write_exp_elt_opcode (state, STRUCTOP_STRUCT);
2192 case STRUCTOP_ANONYMOUS:
2194 convert_ast_to_expression (state, operation->left.op, top);
2196 write_exp_elt_opcode (state, STRUCTOP_ANONYMOUS);
2197 write_exp_elt_longcst (state, operation->right.typed_val_int.val);
2198 write_exp_elt_opcode (state, STRUCTOP_ANONYMOUS);
2203 convert_ast_to_expression (state, operation->left.op, top, true);
2204 write_exp_elt_opcode (state, UNOP_SIZEOF);
2209 case UNOP_COMPLEMENT:
2212 convert_ast_to_expression (state, operation->left.op, top);
2213 write_exp_elt_opcode (state, operation->opcode);
2216 case BINOP_SUBSCRIPT:
2223 case BINOP_BITWISE_AND:
2224 case BINOP_BITWISE_IOR:
2225 case BINOP_BITWISE_XOR:
2228 case BINOP_LOGICAL_OR:
2229 case BINOP_LOGICAL_AND:
2231 case BINOP_NOTEQUAL:
2238 convert_ast_to_expression (state, operation->left.op, top);
2239 convert_ast_to_expression (state, operation->right.op, top);
2240 if (operation->compound_assignment)
2242 write_exp_elt_opcode (state, BINOP_ASSIGN_MODIFY);
2243 write_exp_elt_opcode (state, operation->opcode);
2244 write_exp_elt_opcode (state, BINOP_ASSIGN_MODIFY);
2247 write_exp_elt_opcode (state, operation->opcode);
2249 if (operation->compound_assignment
2250 || operation->opcode == BINOP_ASSIGN)
2254 type = language_lookup_primitive_type (parse_language (state),
2255 parse_gdbarch (state),
2258 write_exp_elt_opcode (state, OP_LONG);
2259 write_exp_elt_type (state, type);
2260 write_exp_elt_longcst (state, 0);
2261 write_exp_elt_opcode (state, OP_LONG);
2263 write_exp_elt_opcode (state, BINOP_COMMA);
2269 struct type *type = convert_ast_to_type (state, operation->right.op);
2271 convert_ast_to_expression (state, operation->left.op, top);
2272 write_exp_elt_opcode (state, UNOP_CAST);
2273 write_exp_elt_type (state, type);
2274 write_exp_elt_opcode (state, UNOP_CAST);
2280 if (operation->left.op->opcode == OP_VAR_VALUE)
2283 const char *varname = convert_name (state, operation->left.op);
2285 type = rust_lookup_type (varname, expression_context_block);
2288 /* This is actually a tuple struct expression, not a
2290 rust_op_vector *params = operation->right.params;
2292 if (TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
2294 if (!rust_tuple_struct_type_p (type))
2295 error (_("Type %s is not a tuple struct"), varname);
2297 for (int i = 0; i < params->size (); ++i)
2299 char *cell = get_print_cell ();
2301 xsnprintf (cell, PRINT_CELL_SIZE, "__%d", i);
2302 write_exp_elt_opcode (state, OP_NAME);
2303 write_exp_string (state, make_stoken (cell));
2304 write_exp_elt_opcode (state, OP_NAME);
2306 convert_ast_to_expression (state, (*params)[i], top);
2309 write_exp_elt_opcode (state, OP_AGGREGATE);
2310 write_exp_elt_type (state, type);
2311 write_exp_elt_longcst (state, 2 * params->size ());
2312 write_exp_elt_opcode (state, OP_AGGREGATE);
2317 convert_ast_to_expression (state, operation->left.op, top);
2318 convert_params_to_expression (state, operation->right.params, top);
2319 write_exp_elt_opcode (state, OP_FUNCALL);
2320 write_exp_elt_longcst (state, operation->right.params->size ());
2321 write_exp_elt_longcst (state, OP_FUNCALL);
2326 gdb_assert (operation->left.op == NULL);
2327 convert_params_to_expression (state, operation->right.params, top);
2328 write_exp_elt_opcode (state, OP_ARRAY);
2329 write_exp_elt_longcst (state, 0);
2330 write_exp_elt_longcst (state, operation->right.params->size () - 1);
2331 write_exp_elt_longcst (state, OP_ARRAY);
2336 struct block_symbol sym;
2337 const char *varname;
2339 if (operation->left.sval.ptr[0] == '$')
2341 write_dollar_variable (state, operation->left.sval);
2345 varname = convert_name (state, operation);
2346 sym = rust_lookup_symbol (varname, expression_context_block,
2348 if (sym.symbol != NULL && SYMBOL_CLASS (sym.symbol) != LOC_TYPEDEF)
2350 write_exp_elt_opcode (state, OP_VAR_VALUE);
2351 write_exp_elt_block (state, sym.block);
2352 write_exp_elt_sym (state, sym.symbol);
2353 write_exp_elt_opcode (state, OP_VAR_VALUE);
2357 struct type *type = NULL;
2359 if (sym.symbol != NULL)
2361 gdb_assert (SYMBOL_CLASS (sym.symbol) == LOC_TYPEDEF);
2362 type = SYMBOL_TYPE (sym.symbol);
2365 type = rust_lookup_type (varname, expression_context_block);
2367 error (_("No symbol '%s' in current context"), varname);
2370 && TYPE_CODE (type) == TYPE_CODE_STRUCT
2371 && TYPE_NFIELDS (type) == 0)
2373 /* A unit-like struct. */
2374 write_exp_elt_opcode (state, OP_AGGREGATE);
2375 write_exp_elt_type (state, type);
2376 write_exp_elt_longcst (state, 0);
2377 write_exp_elt_opcode (state, OP_AGGREGATE);
2379 else if (want_type || operation == top)
2381 write_exp_elt_opcode (state, OP_TYPE);
2382 write_exp_elt_type (state, type);
2383 write_exp_elt_opcode (state, OP_TYPE);
2386 error (_("Found type '%s', which can't be "
2387 "evaluated in this context"),
2396 rust_set_vector *fields = operation->right.field_inits;
2401 for (const set_field &init : *fields)
2403 if (init.name.ptr != NULL)
2405 write_exp_elt_opcode (state, OP_NAME);
2406 write_exp_string (state, init.name);
2407 write_exp_elt_opcode (state, OP_NAME);
2411 convert_ast_to_expression (state, init.init, top);
2414 if (init.name.ptr == NULL)
2416 /* This is handled differently from Ada in our
2418 write_exp_elt_opcode (state, OP_OTHERS);
2422 name = convert_name (state, operation->left.op);
2423 type = rust_lookup_type (name, expression_context_block);
2425 error (_("Could not find type '%s'"), operation->left.sval.ptr);
2427 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
2428 || rust_tuple_type_p (type)
2429 || rust_tuple_struct_type_p (type))
2430 error (_("Struct expression applied to non-struct type"));
2432 write_exp_elt_opcode (state, OP_AGGREGATE);
2433 write_exp_elt_type (state, type);
2434 write_exp_elt_longcst (state, length);
2435 write_exp_elt_opcode (state, OP_AGGREGATE);
2441 write_exp_elt_opcode (state, OP_STRING);
2442 write_exp_string (state, operation->left.sval);
2443 write_exp_elt_opcode (state, OP_STRING);
2449 enum range_type kind = BOTH_BOUND_DEFAULT;
2451 if (operation->left.op != NULL)
2453 convert_ast_to_expression (state, operation->left.op, top);
2454 kind = HIGH_BOUND_DEFAULT;
2456 if (operation->right.op != NULL)
2458 convert_ast_to_expression (state, operation->right.op, top);
2459 if (kind == BOTH_BOUND_DEFAULT)
2460 kind = LOW_BOUND_DEFAULT;
2463 gdb_assert (kind == HIGH_BOUND_DEFAULT);
2464 kind = NONE_BOUND_DEFAULT;
2467 write_exp_elt_opcode (state, OP_RANGE);
2468 write_exp_elt_longcst (state, kind);
2469 write_exp_elt_opcode (state, OP_RANGE);
2474 gdb_assert_not_reached ("unhandled opcode in convert_ast_to_expression");
2480 /* The parser as exposed to gdb. */
2483 rust_parse (struct parser_state *state)
2487 /* This sets various globals and also clears them on
2489 rust_parser parser (state);
2491 result = rustyyparse ();
2493 if (!result || (parse_completion && parser.rust_ast != NULL))
2494 convert_ast_to_expression (state, parser.rust_ast, parser.rust_ast);
2499 /* The parser error handler. */
2502 rustyyerror (const char *msg)
2504 const char *where = prev_lexptr ? prev_lexptr : lexptr;
2505 error (_("%s in expression, near `%s'."), (msg ? msg : "Error"), where);
2512 /* Initialize the lexer for testing. */
2515 rust_lex_test_init (const char *input)
2522 /* A test helper that lexes a string, expecting a single token. It
2523 returns the lexer data for this token. */
2526 rust_lex_test_one (const char *input, int expected)
2531 rust_lex_test_init (input);
2533 token = rustyylex ();
2534 SELF_CHECK (token == expected);
2535 result = rustyylval;
2539 token = rustyylex ();
2540 SELF_CHECK (token == 0);
2546 /* Test that INPUT lexes as the integer VALUE. */
2549 rust_lex_int_test (const char *input, int value, int kind)
2551 RUSTSTYPE result = rust_lex_test_one (input, kind);
2552 SELF_CHECK (result.typed_val_int.val == value);
2555 /* Test that INPUT throws an exception with text ERR. */
2558 rust_lex_exception_test (const char *input, const char *err)
2562 /* The "kind" doesn't matter. */
2563 rust_lex_test_one (input, DECIMAL_INTEGER);
2566 CATCH (except, RETURN_MASK_ERROR)
2568 SELF_CHECK (strcmp (except.message, err) == 0);
2573 /* Test that INPUT lexes as the identifier, string, or byte-string
2574 VALUE. KIND holds the expected token kind. */
2577 rust_lex_stringish_test (const char *input, const char *value, int kind)
2579 RUSTSTYPE result = rust_lex_test_one (input, kind);
2580 SELF_CHECK (result.sval.length == strlen (value));
2581 SELF_CHECK (strncmp (result.sval.ptr, value, result.sval.length) == 0);
2584 /* Helper to test that a string parses as a given token sequence. */
2587 rust_lex_test_sequence (const char *input, int len, const int expected[])
2594 for (i = 0; i < len; ++i)
2596 int token = rustyylex ();
2598 SELF_CHECK (token == expected[i]);
2602 /* Tests for an integer-parsing corner case. */
2605 rust_lex_test_trailing_dot (void)
2607 const int expected1[] = { DECIMAL_INTEGER, '.', IDENT, '(', ')', 0 };
2608 const int expected2[] = { INTEGER, '.', IDENT, '(', ')', 0 };
2609 const int expected3[] = { FLOAT, EQEQ, '(', ')', 0 };
2610 const int expected4[] = { DECIMAL_INTEGER, DOTDOT, DECIMAL_INTEGER, 0 };
2612 rust_lex_test_sequence ("23.g()", ARRAY_SIZE (expected1), expected1);
2613 rust_lex_test_sequence ("23_0.g()", ARRAY_SIZE (expected2), expected2);
2614 rust_lex_test_sequence ("23.==()", ARRAY_SIZE (expected3), expected3);
2615 rust_lex_test_sequence ("23..25", ARRAY_SIZE (expected4), expected4);
2618 /* Tests of completion. */
2621 rust_lex_test_completion (void)
2623 const int expected[] = { IDENT, '.', COMPLETE, 0 };
2625 parse_completion = 1;
2627 rust_lex_test_sequence ("something.wha", ARRAY_SIZE (expected), expected);
2628 rust_lex_test_sequence ("something.", ARRAY_SIZE (expected), expected);
2630 parse_completion = 0;
2633 /* Test pushback. */
2636 rust_lex_test_push_back (void)
2640 rust_lex_test_init (">>=");
2642 token = rustyylex ();
2643 SELF_CHECK (token == COMPOUND_ASSIGN);
2644 SELF_CHECK (rustyylval.opcode == BINOP_RSH);
2646 rust_push_back ('=');
2648 token = rustyylex ();
2649 SELF_CHECK (token == '=');
2651 token = rustyylex ();
2652 SELF_CHECK (token == 0);
2655 /* Unit test the lexer. */
2658 rust_lex_tests (void)
2662 auto_obstack test_obstack;
2663 scoped_restore obstack_holder = make_scoped_restore (&work_obstack,
2666 // Set up dummy "parser", so that rust_type works.
2667 struct parser_state ps (0, &rust_language_defn, target_gdbarch ());
2668 rust_parser parser (&ps);
2670 rust_lex_test_one ("", 0);
2671 rust_lex_test_one (" \t \n \r ", 0);
2672 rust_lex_test_one ("thread 23", 0);
2673 rust_lex_test_one ("task 23", 0);
2674 rust_lex_test_one ("th 104", 0);
2675 rust_lex_test_one ("ta 97", 0);
2677 rust_lex_int_test ("'z'", 'z', INTEGER);
2678 rust_lex_int_test ("'\\xff'", 0xff, INTEGER);
2679 rust_lex_int_test ("'\\u{1016f}'", 0x1016f, INTEGER);
2680 rust_lex_int_test ("b'z'", 'z', INTEGER);
2681 rust_lex_int_test ("b'\\xfe'", 0xfe, INTEGER);
2682 rust_lex_int_test ("b'\\xFE'", 0xfe, INTEGER);
2683 rust_lex_int_test ("b'\\xfE'", 0xfe, INTEGER);
2685 /* Test all escapes in both modes. */
2686 rust_lex_int_test ("'\\n'", '\n', INTEGER);
2687 rust_lex_int_test ("'\\r'", '\r', INTEGER);
2688 rust_lex_int_test ("'\\t'", '\t', INTEGER);
2689 rust_lex_int_test ("'\\\\'", '\\', INTEGER);
2690 rust_lex_int_test ("'\\0'", '\0', INTEGER);
2691 rust_lex_int_test ("'\\''", '\'', INTEGER);
2692 rust_lex_int_test ("'\\\"'", '"', INTEGER);
2694 rust_lex_int_test ("b'\\n'", '\n', INTEGER);
2695 rust_lex_int_test ("b'\\r'", '\r', INTEGER);
2696 rust_lex_int_test ("b'\\t'", '\t', INTEGER);
2697 rust_lex_int_test ("b'\\\\'", '\\', INTEGER);
2698 rust_lex_int_test ("b'\\0'", '\0', INTEGER);
2699 rust_lex_int_test ("b'\\''", '\'', INTEGER);
2700 rust_lex_int_test ("b'\\\"'", '"', INTEGER);
2702 rust_lex_exception_test ("'z", "Unterminated character literal");
2703 rust_lex_exception_test ("b'\\x0'", "Not enough hex digits seen");
2704 rust_lex_exception_test ("b'\\u{0}'", "Unicode escape in byte literal");
2705 rust_lex_exception_test ("'\\x0'", "Not enough hex digits seen");
2706 rust_lex_exception_test ("'\\u0'", "Missing '{' in Unicode escape");
2707 rust_lex_exception_test ("'\\u{0", "Missing '}' in Unicode escape");
2708 rust_lex_exception_test ("'\\u{0000007}", "Overlong hex escape");
2709 rust_lex_exception_test ("'\\u{}", "Not enough hex digits seen");
2710 rust_lex_exception_test ("'\\Q'", "Invalid escape \\Q in literal");
2711 rust_lex_exception_test ("b'\\Q'", "Invalid escape \\Q in literal");
2713 rust_lex_int_test ("23", 23, DECIMAL_INTEGER);
2714 rust_lex_int_test ("2_344__29", 234429, INTEGER);
2715 rust_lex_int_test ("0x1f", 0x1f, INTEGER);
2716 rust_lex_int_test ("23usize", 23, INTEGER);
2717 rust_lex_int_test ("23i32", 23, INTEGER);
2718 rust_lex_int_test ("0x1_f", 0x1f, INTEGER);
2719 rust_lex_int_test ("0b1_101011__", 0x6b, INTEGER);
2720 rust_lex_int_test ("0o001177i64", 639, INTEGER);
2722 rust_lex_test_trailing_dot ();
2724 rust_lex_test_one ("23.", FLOAT);
2725 rust_lex_test_one ("23.99f32", FLOAT);
2726 rust_lex_test_one ("23e7", FLOAT);
2727 rust_lex_test_one ("23E-7", FLOAT);
2728 rust_lex_test_one ("23e+7", FLOAT);
2729 rust_lex_test_one ("23.99e+7f64", FLOAT);
2730 rust_lex_test_one ("23.82f32", FLOAT);
2732 rust_lex_stringish_test ("hibob", "hibob", IDENT);
2733 rust_lex_stringish_test ("hibob__93", "hibob__93", IDENT);
2734 rust_lex_stringish_test ("thread", "thread", IDENT);
2736 rust_lex_stringish_test ("\"string\"", "string", STRING);
2737 rust_lex_stringish_test ("\"str\\ting\"", "str\ting", STRING);
2738 rust_lex_stringish_test ("\"str\\\"ing\"", "str\"ing", STRING);
2739 rust_lex_stringish_test ("r\"str\\ing\"", "str\\ing", STRING);
2740 rust_lex_stringish_test ("r#\"str\\ting\"#", "str\\ting", STRING);
2741 rust_lex_stringish_test ("r###\"str\\\"ing\"###", "str\\\"ing", STRING);
2743 rust_lex_stringish_test ("b\"string\"", "string", BYTESTRING);
2744 rust_lex_stringish_test ("b\"\x73tring\"", "string", BYTESTRING);
2745 rust_lex_stringish_test ("b\"str\\\"ing\"", "str\"ing", BYTESTRING);
2746 rust_lex_stringish_test ("br####\"\\x73tring\"####", "\\x73tring",
2749 for (i = 0; i < ARRAY_SIZE (identifier_tokens); ++i)
2750 rust_lex_test_one (identifier_tokens[i].name, identifier_tokens[i].value);
2752 for (i = 0; i < ARRAY_SIZE (operator_tokens); ++i)
2753 rust_lex_test_one (operator_tokens[i].name, operator_tokens[i].value);
2755 rust_lex_test_completion ();
2756 rust_lex_test_push_back ();
2759 #endif /* GDB_SELF_TEST */
2762 _initialize_rust_exp (void)
2764 int code = regcomp (&number_regex, number_regex_text, REG_EXTENDED);
2765 /* If the regular expression was incorrect, it was a programming
2767 gdb_assert (code == 0);
2770 selftests::register_test ("rust-lex", rust_lex_tests);