1 /* GCC C plug-in wrapper for GDB. 2 3 Copyright (C) 2018-2023 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 #ifndef COMPILE_GCC_C_PLUGIN_H 21 #define COMPILE_GCC_C_PLUGIN_H 22 23 #include "compile-internal.h" 24 25 /* A class representing the C plug-in. */ 26 27 class gcc_c_plugin 28 { 29 public: 30 31 explicit gcc_c_plugin (struct gcc_c_context *gcc_c) 32 : m_context (gcc_c) 33 { 34 } 35 36 /* Set the oracle callbacks to be used by the compiler plug-in. */ 37 void set_callbacks (gcc_c_oracle_function *binding_oracle, 38 gcc_c_symbol_address_function *address_oracle, 39 void *datum) 40 { 41 m_context->c_ops->set_callbacks (m_context, binding_oracle, 42 address_oracle, datum); 43 } 44 45 /* Returns the interface version of the compiler plug-in. */ 46 int version () const { return m_context->c_ops->c_version; } 47 48 #define GCC_METHOD0(R, N) R N () const; 49 #define GCC_METHOD1(R, N, A) R N (A) const; 50 #define GCC_METHOD2(R, N, A, B) R N (A, B) const; 51 #define GCC_METHOD3(R, N, A, B, C) R N (A, B, C) const; 52 #define GCC_METHOD4(R, N, A, B, C, D) R N (A, B, C, D) const; 53 #define GCC_METHOD5(R, N, A, B, C, D, E) R N (A, B, C, D, E) const; 54 #define GCC_METHOD7(R, N, A, B, C, D, E, F, G) R N (A, B, C, D, E, F, G) const; 55 56 #include "gcc-c-fe.def" 57 58 #undef GCC_METHOD0 59 #undef GCC_METHOD1 60 #undef GCC_METHOD2 61 #undef GCC_METHOD3 62 #undef GCC_METHOD4 63 #undef GCC_METHOD5 64 #undef GCC_METHOD7 65 66 private: 67 /* The GCC C context. */ 68 struct gcc_c_context *m_context; 69 }; 70 71 #endif /* COMPILE_GCC_C_PLUGIN_H */ 72