]>
Commit | Line | Data |
---|---|---|
a766d390 DE |
1 | /* Go language support definitions for GDB, the GNU debugger. |
2 | ||
3 | Copyright (C) 2012 Free Software Foundation, Inc. | |
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 | #if !defined (GO_LANG_H) | |
21 | #define GO_LANG_H 1 | |
22 | ||
23 | #include "gdbtypes.h" | |
24 | #include "symtab.h" | |
25 | #include "value.h" | |
26 | ||
27 | struct builtin_go_type | |
28 | { | |
29 | struct type *builtin_void; | |
30 | struct type *builtin_char; | |
31 | struct type *builtin_bool; | |
32 | struct type *builtin_int; | |
33 | struct type *builtin_uint; | |
34 | struct type *builtin_uintptr; | |
35 | struct type *builtin_int8; | |
36 | struct type *builtin_int16; | |
37 | struct type *builtin_int32; | |
38 | struct type *builtin_int64; | |
39 | struct type *builtin_uint8; | |
40 | struct type *builtin_uint16; | |
41 | struct type *builtin_uint32; | |
42 | struct type *builtin_uint64; | |
43 | struct type *builtin_float32; | |
44 | struct type *builtin_float64; | |
45 | struct type *builtin_complex64; | |
46 | struct type *builtin_complex128; | |
47 | }; | |
48 | ||
49 | enum go_type | |
50 | { | |
51 | GO_TYPE_NONE, /* Not a Go object. */ | |
52 | GO_TYPE_STRING | |
53 | }; | |
54 | ||
55 | /* Defined in go-exp.y. */ | |
56 | ||
57 | extern int go_parse (void); | |
58 | ||
59 | extern void go_error (char *); | |
60 | ||
61 | /* Defined in go-lang.c. */ | |
62 | ||
63 | extern const char *go_main_name (void); | |
64 | ||
65 | extern enum go_type go_classify_struct_type (struct type *type); | |
66 | ||
67 | extern char *go_demangle (const char *mangled, int options); | |
68 | ||
69 | extern char *go_symbol_package_name (const struct symbol *sym); | |
70 | ||
71 | extern char *go_block_package_name (const struct block *block); | |
72 | ||
73 | extern const struct builtin_go_type *builtin_go_type (struct gdbarch *); | |
74 | ||
75 | /* Defined in go-typeprint.c. */ | |
76 | ||
77 | extern void go_print_type (struct type *type, const char *varstring, | |
78 | struct ui_file *stream, int show, int level); | |
79 | ||
80 | /* Defined in go-valprint.c. */ | |
81 | ||
82 | extern void go_val_print (struct type *type, const gdb_byte *valaddr, | |
83 | int embedded_offset, CORE_ADDR address, | |
84 | struct ui_file *stream, int recurse, | |
85 | const struct value *val, | |
86 | const struct value_print_options *options); | |
87 | ||
88 | #endif /* !defined (GO_LANG_H) */ |