Automatic date update in version.in
[deliverable/binutils-gdb.git] / gdb / compile / gcc-c-plugin.h
CommitLineData
18cdc6d8
KS
1/* GCC C plug-in wrapper for GDB.
2
42a4f53d 3 Copyright (C) 2018-2019 Free Software Foundation, Inc.
18cdc6d8
KS
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
951d1049
TT
20#include "compile-internal.h"
21
18cdc6d8
KS
22/* A class representing the C plug-in. */
23
24class gcc_c_plugin
25{
26public:
27
28 explicit gcc_c_plugin (struct gcc_c_context *gcc_c)
29 : m_context (gcc_c)
30 {
31 }
32
33 /* Set the oracle callbacks to be used by the compiler plug-in. */
34 void set_callbacks (gcc_c_oracle_function *binding_oracle,
35 gcc_c_symbol_address_function *address_oracle,
36 void *datum)
37 {
38 m_context->c_ops->set_callbacks (m_context, binding_oracle,
39 address_oracle, datum);
40 }
41
42 /* Returns the interface version of the compiler plug-in. */
43 int version () const { return m_context->c_ops->c_version; }
44
45#define GCC_METHOD0(R, N) R N () const;
46#define GCC_METHOD1(R, N, A) R N (A) const;
47#define GCC_METHOD2(R, N, A, B) R N (A, B) const;
48#define GCC_METHOD3(R, N, A, B, C) R N (A, B, C) const;
49#define GCC_METHOD4(R, N, A, B, C, D) R N (A, B, C, D) const;
50#define GCC_METHOD5(R, N, A, B, C, D, E) R N (A, B, C, D, E) const;
51#define GCC_METHOD7(R, N, A, B, C, D, E, F, G) R N (A, B, C, D, E, F, G) const;
52
53#include "gcc-c-fe.def"
54
55#undef GCC_METHOD0
56#undef GCC_METHOD1
57#undef GCC_METHOD2
58#undef GCC_METHOD3
59#undef GCC_METHOD4
60#undef GCC_METHOD5
61#undef GCC_METHOD7
62
63private:
64 /* The GCC C context. */
65 struct gcc_c_context *m_context;
66};
This page took 0.056438 seconds and 4 git commands to generate.