Commit | Line | Data |
---|---|---|
c44af4eb TT |
1 | /* Rust language support definitions for GDB, the GNU debugger. |
2 | ||
61baf725 | 3 | Copyright (C) 2016-2017 Free Software Foundation, Inc. |
c44af4eb TT |
4 | |
5 | This file is part of GDB. | |
6 | ||
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. | |
11 | ||
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. | |
16 | ||
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/>. */ | |
19 | ||
20 | #ifndef RUST_LANG_H | |
21 | #define RUST_LANG_H | |
22 | ||
23 | struct parser_state; | |
24 | struct type; | |
25 | ||
26 | /* The la_parser implementation for Rust. */ | |
27 | extern int rust_parse (struct parser_state *); | |
28 | ||
29 | /* The la_error implementation for Rust. */ | |
a121b7c1 | 30 | extern void rustyyerror (const char *); |
c44af4eb TT |
31 | |
32 | /* Return true if TYPE is a tuple type; otherwise false. */ | |
65c40c95 | 33 | extern bool rust_tuple_type_p (struct type *type); |
c44af4eb TT |
34 | |
35 | /* Return true if TYPE is a tuple struct type; otherwise false. */ | |
65c40c95 | 36 | extern bool rust_tuple_struct_type_p (struct type *type); |
c44af4eb | 37 | |
03c85b11 TT |
38 | /* Given a block, find the name of the block's crate. Returns an empty |
39 | stringif no crate name can be found. */ | |
40 | extern std::string rust_crate_for_block (const struct block *block); | |
c44af4eb TT |
41 | |
42 | /* Create a new slice type. NAME is the name of the type. ELT_TYPE | |
43 | is the type of the elements of the slice. USIZE_TYPE is the Rust | |
44 | "usize" type to use. The new type is allocated whereever ELT_TYPE | |
45 | is allocated. */ | |
888e3ddb TT |
46 | extern struct type *rust_slice_type (const char *name, struct type *elt_type, |
47 | struct type *usize_type); | |
c44af4eb TT |
48 | |
49 | #endif /* RUST_LANG_H */ |