Automatic date update in version.in
[binutils-gdb/blckswan.git] / gdb / rust-lang.h
blob514494a2c82ff1b0d0b20f85e20a41a3b33e5aee
1 /* Rust language support definitions for GDB, the GNU debugger.
3 Copyright (C) 2016-2022 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #ifndef RUST_LANG_H
21 #define RUST_LANG_H
23 #include "demangle.h"
24 #include "language.h"
25 #include "value.h"
26 #include "c-lang.h"
28 struct parser_state;
29 struct type;
31 /* Return true if TYPE is a tuple type; otherwise false. */
32 extern bool rust_tuple_type_p (struct type *type);
34 /* Return true if TYPE is a tuple struct type; otherwise false. */
35 extern bool rust_tuple_struct_type_p (struct type *type);
37 /* Given a block, find the name of the block's crate. Returns an empty
38 stringif no crate name can be found. */
39 extern std::string rust_crate_for_block (const struct block *block);
41 /* Returns the last segment of a Rust path like foo::bar::baz. Will
42 not handle cases where the last segment contains generics. */
44 extern const char *rust_last_path_segment (const char *path);
46 /* Create a new slice type. NAME is the name of the type. ELT_TYPE
47 is the type of the elements of the slice. USIZE_TYPE is the Rust
48 "usize" type to use. The new type is allocated whereever ELT_TYPE
49 is allocated. */
50 extern struct type *rust_slice_type (const char *name, struct type *elt_type,
51 struct type *usize_type);
53 /* Class representing the Rust language. */
55 class rust_language : public language_defn
57 public:
58 rust_language ()
59 : language_defn (language_rust)
60 { /* Nothing. */ }
62 /* See language.h. */
64 const char *name () const override
65 { return "rust"; }
67 /* See language.h. */
69 const char *natural_name () const override
70 { return "Rust"; }
72 /* See language.h. */
74 const std::vector<const char *> &filename_extensions () const override
76 static const std::vector<const char *> extensions = { ".rs" };
77 return extensions;
80 /* See language.h. */
82 void language_arch_info (struct gdbarch *gdbarch,
83 struct language_arch_info *lai) const override;
85 /* See language.h. */
87 bool sniff_from_mangled_name
88 (const char *mangled, gdb::unique_xmalloc_ptr<char> *demangled)
89 const override
91 *demangled = gdb_demangle (mangled, DMGL_PARAMS | DMGL_ANSI);
92 return *demangled != NULL;
95 /* See language.h. */
97 gdb::unique_xmalloc_ptr<char> demangle_symbol (const char *mangled,
98 int options) const override
100 return gdb_demangle (mangled, options);
103 /* See language.h. */
105 void print_type (struct type *type, const char *varstring,
106 struct ui_file *stream, int show, int level,
107 const struct type_print_options *flags) const override;
109 /* See language.h. */
111 gdb::unique_xmalloc_ptr<char> watch_location_expression
112 (struct type *type, CORE_ADDR addr) const override
114 type = check_typedef (TYPE_TARGET_TYPE (check_typedef (type)));
115 std::string name = type_to_string (type);
116 return xstrprintf ("*(%s as *mut %s)", core_addr_to_string (addr),
117 name.c_str ());
120 /* See language.h. */
122 void value_print_inner
123 (struct value *val, struct ui_file *stream, int recurse,
124 const struct value_print_options *options) const override;
126 /* See language.h. */
128 void value_print (struct value *val, struct ui_file *stream,
129 const struct value_print_options *options) const override;
131 /* See language.h. */
133 struct block_symbol lookup_symbol_nonlocal
134 (const char *name, const struct block *block,
135 const domain_enum domain) const override
137 struct block_symbol result = {};
139 if (symbol_lookup_debug)
141 gdb_printf (gdb_stdlog,
142 "rust_lookup_symbol_non_local"
143 " (%s, %s (scope %s), %s)\n",
144 name, host_address_to_string (block),
145 block_scope (block), domain_name (domain));
148 /* Look up bare names in the block's scope. */
149 std::string scopedname;
150 if (name[cp_find_first_component (name)] == '\0')
152 const char *scope = block_scope (block);
154 if (scope[0] != '\0')
156 scopedname = std::string (scope) + "::" + name;
157 name = scopedname.c_str ();
159 else
160 name = NULL;
163 if (name != NULL)
165 result = lookup_symbol_in_static_block (name, block, domain);
166 if (result.symbol == NULL)
167 result = lookup_global_symbol (name, block, domain);
169 return result;
172 /* See language.h. */
174 int parser (struct parser_state *ps) const override;
176 /* See language.h. */
178 void emitchar (int ch, struct type *chtype,
179 struct ui_file *stream, int quoter) const override;
181 /* See language.h. */
183 void printchar (int ch, struct type *chtype,
184 struct ui_file *stream) const override
186 gdb_puts ("'", stream);
187 emitchar (ch, chtype, stream, '\'');
188 gdb_puts ("'", stream);
191 /* See language.h. */
193 void printstr (struct ui_file *stream, struct type *elttype,
194 const gdb_byte *string, unsigned int length,
195 const char *encoding, int force_ellipses,
196 const struct value_print_options *options) const override;
198 /* See language.h. */
200 void print_typedef (struct type *type, struct symbol *new_symbol,
201 struct ui_file *stream) const override
203 type = check_typedef (type);
204 gdb_printf (stream, "type %s = ", new_symbol->print_name ());
205 type_print (type, "", stream, 0);
206 gdb_printf (stream, ";");
209 /* See language.h. */
211 bool is_string_type_p (struct type *type) const override;
213 /* See language.h. */
215 bool range_checking_on_by_default () const override
216 { return true; }
218 private:
220 /* Helper for value_print_inner, arguments are as for that function.
221 Prints structs and untagged unions. */
223 void val_print_struct (struct value *val, struct ui_file *stream,
224 int recurse,
225 const struct value_print_options *options) const;
227 /* Helper for value_print_inner, arguments are as for that function.
228 Prints discriminated unions (Rust enums). */
230 void print_enum (struct value *val, struct ui_file *stream, int recurse,
231 const struct value_print_options *options) const;
234 #endif /* RUST_LANG_H */