Update README on using libraries in non-standard locations
[bpt/guile.git] / libguile / gdb_interface.h
CommitLineData
0527e687
DH
1/* classes: h_files */
2
3#ifndef GDB_INTERFACE_H
4#define GDB_INTERFACE_H
504388eb 5/* Simple interpreter interface for GDB, the GNU debugger.
2b829bbb 6 Copyright (C) 1996, 2000, 2001, 2006 Free Software Foundation
504388eb 7
73be1d9e
MV
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
12
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public
19 License along with this library; if not, write to the Free Software
92205699 20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c22adbeb 21
504388eb
MD
22The author can be reached at djurfeldt@nada.kth.se
23Mikael Djurfeldt, SANS/NADA KTH, 10044 STOCKHOLM, SWEDEN */
24
25/* This is the header file for GDB's interpreter interface. The
26 interpreter must supply definitions of all symbols declared in this
27 file.
28
29 Before including this file, you must #define GDB_TYPE to be the
30 data type used for communication with the interpreter. */
31
32/* The following macro can be used to anchor the symbols of the
33 interface in your main program. This is necessary if the interface
34 is defined in a library, such as Guile. */
35
c01a6af5 36#if !defined (__MINGW32__) && !defined (__CYGWIN__)
504388eb
MD
37#define GDB_INTERFACE \
38void *gdb_interface[] = { \
39 &gdb_options, \
40 &gdb_language, \
41 &gdb_result, \
42 &gdb_output, \
43 &gdb_output_length, \
01c77a0a
MD
44 (void *) gdb_maybe_valid_type_p, \
45 (void *) gdb_read, \
46 (void *) gdb_eval, \
47 (void *) gdb_print, \
48 (void *) gdb_binding \
8f9dc614 49}
c01a6af5 50#else /* __MINGW32__, __CYGWIN__ */
82893676
MG
51/* Because the following functions are imported from a DLL (some kind of
52 shared library) these are NO static initializers. That is why you need to
53 define them and assign the functions and data items at run time. */
54#define GDB_INTERFACE \
55void *gdb_interface[] = \
56 { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL };
57#define GDB_INTERFACE_INIT \
58 do { \
59 gdb_interface[0] = &gdb_options; \
60 gdb_interface[1] = &gdb_language; \
61 gdb_interface[2] = &gdb_result; \
62 gdb_interface[3] = &gdb_output; \
63 gdb_interface[4] = &gdb_output_length; \
64 gdb_interface[5] = (void *) gdb_maybe_valid_type_p; \
65 gdb_interface[6] = (void *) gdb_read; \
66 gdb_interface[7] = (void *) gdb_eval; \
67 gdb_interface[8] = (void *) gdb_print; \
68 gdb_interface[9] = (void *) gdb_binding; \
69 } while (0);
70#endif /* __MINGW32__ */
504388eb
MD
71
72/* GDB_OPTIONS is a set of flags informing gdb what features are present
73 in the interface. Currently only one option is supported: */
74
75/* GDB_HAVE_BINDINGS: Set this bit if your interpreter can create new
76 top level bindings on demand (through gdb_top_level_binding) */
77
78#define GDB_HAVE_BINDINGS 1
79
c01a6af5 80SCM_API unsigned short gdb_options;
504388eb
MD
81
82/* GDB_LANGUAGE holds the name of the preferred language mode for this
83 interpreter. For lisp interpreters, the suggested mode is "lisp/c". */
84
c01a6af5 85SCM_API char *gdb_language;
504388eb
MD
86
87/* GDB_RESULT is used for passing results from the interpreter to GDB */
88
c01a6af5 89SCM_API GDB_TYPE gdb_result;
504388eb
MD
90
91/* The interpreter passes strings to GDB in GDB_OUTPUT and
92 GDB_OUTPUT_LENGTH. GDB_OUTPUT should hold the pointer to the
93 string. GDB_OUTPUT_LENGTH should hold its length. The string
94 doesn't need to be terminated by '\0'. */
95
c01a6af5 96SCM_API char *gdb_output;
504388eb 97
c01a6af5 98SCM_API int gdb_output_length;
504388eb 99
504388eb
MD
100/* Return TRUE if the interpreter regards VALUE's type as valid. A
101 lazy implementation is allowed to pass TRUE always. FALSE should
102 only be returned when it is certain that VALUE is not valid.
103
104 In the "lisp/c" language mode, this is used to heuristically
105 discriminate lisp values from C values during printing. */
106
c01a6af5 107SCM_API int gdb_maybe_valid_type_p (GDB_TYPE value);
504388eb
MD
108
109/* Parse expression in string STR. Store result in GDB_RESULT, then
110 return 0 to indicate success. On error, return -1 to indicate
111 failure. An error string can be passed in GDB_OUTPUT and
112 GDB_OUTPUT_LENGTH. Be careful to set GDB_OUTPUT_LENGTH to zero if
113 no message is passed. Please note that the resulting value should
114 be protected against garbage collection. */
115
c01a6af5 116SCM_API int gdb_read (char *str);
504388eb
MD
117
118/* Evaluate expression EXP. Store result in GDB_RESULT, then return 0
119 to indicate success. On error, return -1 to indicate failure. Any
120 output (both on success and failure) can be passed in GDB_OUTPUT
121 and GDB_OUTPUT_LENGTH. Be careful to set GDB_OUTPUT_LENGTH to zero
122 if no output is passed. Please note that the resulting lisp object
123 should be protected against garbage collection. */
124
c01a6af5 125SCM_API int gdb_eval (GDB_TYPE exp);
504388eb
MD
126
127/* Print VALUE. Store output in GDB_OUTPUT and GDB_OUTPUT_LENGTH.
128 Return 0 to indicate success. On error, return -1 to indicate
129 failure. GDB will not look at GDB_OUTPUT or GDB_OUTPUT_LENGTH on
130 failure. Note that this function should be robust against strange
131 values. It could in fact be passed any kind of value. */
132
c01a6af5 133SCM_API int gdb_print (GDB_TYPE value);
504388eb
MD
134
135/* Bind NAME to VALUE in interpreter. (GDB has previously obtained
136 NAME by passing a string to gdb_read.) Return 0 to indicate
137 success or -1 to indicate failure. This feature is optional. GDB
138 will only call this function if the GDB_HAVE_BINDINGS flag is set
139 in gdb_options. Note that GDB may call this function many times
140 for the same name.
141
142 For scheme interpreters, this function should introduce top-level
143 bindings. */
144
c01a6af5 145SCM_API int gdb_binding (GDB_TYPE name, GDB_TYPE value);
504388eb 146
0527e687 147#endif /* GDB_INTERFACE_H */
89e00824
ML
148
149/*
150 Local Variables:
151 c-file-style: "gnu"
152 End:
153*/