Introduce C++ support in libcc1
Extend libcc1's with an API for C++ support.
Extend libcc1's C API to distinguish between integral types with the
same width, as in C++. Likewise for float types.
Export small bits of functionality from the C++ front-end for use in
libcc1. Add support for the C++ front-end to look up names and
addresses using a libcc1-registered binding oracle. Add support for
global friends.
for gcc/cp/ChangeLog
Introduce C++ support in libcc1.
* cp-tree.h (struct lang_identifier): Add oracle_looked_up.
(ansi_opname): Rename to...
(cp_operator_id): ... this. Adjust all callers.
(ansi_assopname): Rename to...
(cp_assignment_operator_id): ... this. Adjust all callers.
(cp_literal_operator_id): Declare.
(set_global_friend): Declare.
(is_global_friend): Declare.
(enum cp_oracle_request): New type.
(cp_binding_oracle_function): New type.
(cp_binding_oracle): Declare.
(cp_finish_injected_record_type): Declare.
* friend.c (global_friend): New var.
(set_global_friend): New fn.
(is_global_friend): New fn.
(is_friend): Call is_global_friend.
* name-lookup.c (cp_binding_oracle): New var.
(query_oracle): New fn.
(qualified_lookup_using_namespace): Call query_oracle.
(lookup_name_real_1): Likewise.
* parser.c (cp_literal_operator_id): Drop static.
* search.c (friend_accessible_p): Call is_global_friend.
* semantics.c (is_this_parameter): Accept a variable if the
binding oracle is enabled.
for include/ChangeLog
Introduce C++ support in libcc1.
* gcc-c-fe.def (int_type_v0): Rename from...
(int_type): ... this. Introduce new version.
(float_type_v0): Rename from...
(float_type): ... this. Introduce new version.
(char_type): New.
* gcc-c-interface.h (gcc_c_api_version): Add GCC_C_FE_VERSION_1.
(gcc_type_array): Move...
* gcc-interface.h: ... here.
* gcc-cp-fe.def: New.
* gcc-cp-interface.h: New.
for libcc1/ChangeLog
Introduce C++ support.
* Makefile.am (AM_CPPFLAGS): Move some -I flags to...
(CPPFLAGS_FOR_C_FAMILY, CPPFLAGS_FOR_C, CPPFLAGS_FOR_CXX): ...
new macros.
(plugin_LTLIBRARIES): Add libcp1plugin.la.
(BUILT_SOURCES, MOSTLYCLEANFILES): Add...
(cp-compiler-name.h): ... this. New.
(c-compiler-name.h): Rename all over from...
(compiler-name.h): ... this. Create it atomically.
(marshall_c_source, marshall_cxx_source): New macros.
(libcc1plugin_la_SOURCES): Rename plugin.cc to libcc1plugin.cc.
Add marshall_c_source expansion.
(libcc1plugin.lo_CPPFLAGS): New macro.
(libcp1plugin_la_LDFLAGS): Likewise.
(libcp1plugin_la_SOURCES): Likewise.
(libcp1plugin.lo_CPPFLAGS): Likewise.
(libcp1plugin_la_LIBADD): Likewise.
(libcp1plugin_la_DEPENDENCIES): Likewise.
(libcp1plugin_la_LINK): Likewise.
(libcc1_la_SOURCES): Added marshall_c_source and
marshall_cxx_source expansions.
* Makefile.in: Rebuild.
* compiler-name.h: Rename all over to...
* c-compiler-name.h: ... this. Define C_COMPILER_NAME instead
of COMPILER_NAME.
* plugin.cc: Rename all over to...
* libcc1plugin.cc: ... this. Include marshall-c.hh.
(address_rewriter): Drop cleaning up of VLA sizes.
(plugin_build_decl): Mark decls as external.
(plugin_tagbind): Propagate name to all variants.
(build_anonymous_node): New.
(plugin_build_record_type): Use it instead of make_node.
(plugin_build_union_type): Likewise.
(plugin_build_enum_type): Likewise.
(plugin_finish_record_or_union): Update all type variants.
(safe_lookup_builtin_type): New.
(plugin_int_check): Factor out of, and add checks to, ...
(plugin_int_type): ... this. Rename to...
(plugin_int_type_v0): ... this.
(plugin_int_type): New interface, new implementation.
(plugin_char_type): New.
(plugin_float_type_v0): Rename from...
(plugin_float_type): ... this. New interface, new implementation.
(plugin_init): Bump handshake version.
* libcc1.cc: Include marshall-c.hh. Drop gcc-interface.h.
(call_binding_oracle): Rename to...
(c_call_binding_oracle): ... this, into anonymous namespace.
(call_symbol_address): Rename to...
(c_call_symbol_address): ... this, likewise.
(GCC_METHOD#): Move methods into cc1plugin::c:: namespace.
(libcc1::compiler::find): Refer to C_COMPILER_NAME.
(fork_exec): Bump to GCC_C_FE_VERSION_1.
(libcc1_compile): Prefix callbacks with c_.
(gcc_c_fe_context): Accept GCC_C_FE_VERSION_1.
* libcc1.sym: Export gcc_cp_fe_context.
* libcp1.cc: New, mostly copied and adjusted from libcc1.cc.
* libcp1plugin.cc: New, initially copied from libcc1plugin.cc.
* libcp1plugin.sym: New.
* marshall-c.hh: New. Move C-specific types from...
* marshall.cc: ... this.
(cc1_plugin::marshall_array_start): New.
(cc1_plugin::marshall_array_elmts): New.
(cc1_plugin::marshall for gcc_type_array): Use the above.
(cc1_plugin::unmarshall_array_start): New.
(cc1_plugin::unmarshall_array_elmts): New.
(cc1_plugin::unmarshall for gcc_type_array): Use the above.
* marshall.hh: Declare the new array building blocks.
Drop C-specific unmarshall declarations.
* marshall-cp.hh: New.
* names.cc (GCC_METHOD#): Add LANG:: to method names.
(LANG): Define while including gcc-c-fe.def and gcc-cp-fe.def.
* names.hh: Include gcc-c-fe.def and gcc-cp-fe.def in the
corresponding namespaces.
* rpc.hh: Don't include marshall.hh.
[GCC_CP_INTERFACE_H] (argument_wrapper): Specialize for
gcc_vbase_array, gcc_cp_template_args, gcc_cp_function_args.
From-SVN: r245051
2017-01-31 02:02:03 +01:00
|
|
|
|
/* The library used by gdb.
|
2020-01-01 12:51:42 +01:00
|
|
|
|
Copyright (C) 2014-2020 Free Software Foundation, Inc.
|
Introduce C++ support in libcc1
Extend libcc1's with an API for C++ support.
Extend libcc1's C API to distinguish between integral types with the
same width, as in C++. Likewise for float types.
Export small bits of functionality from the C++ front-end for use in
libcc1. Add support for the C++ front-end to look up names and
addresses using a libcc1-registered binding oracle. Add support for
global friends.
for gcc/cp/ChangeLog
Introduce C++ support in libcc1.
* cp-tree.h (struct lang_identifier): Add oracle_looked_up.
(ansi_opname): Rename to...
(cp_operator_id): ... this. Adjust all callers.
(ansi_assopname): Rename to...
(cp_assignment_operator_id): ... this. Adjust all callers.
(cp_literal_operator_id): Declare.
(set_global_friend): Declare.
(is_global_friend): Declare.
(enum cp_oracle_request): New type.
(cp_binding_oracle_function): New type.
(cp_binding_oracle): Declare.
(cp_finish_injected_record_type): Declare.
* friend.c (global_friend): New var.
(set_global_friend): New fn.
(is_global_friend): New fn.
(is_friend): Call is_global_friend.
* name-lookup.c (cp_binding_oracle): New var.
(query_oracle): New fn.
(qualified_lookup_using_namespace): Call query_oracle.
(lookup_name_real_1): Likewise.
* parser.c (cp_literal_operator_id): Drop static.
* search.c (friend_accessible_p): Call is_global_friend.
* semantics.c (is_this_parameter): Accept a variable if the
binding oracle is enabled.
for include/ChangeLog
Introduce C++ support in libcc1.
* gcc-c-fe.def (int_type_v0): Rename from...
(int_type): ... this. Introduce new version.
(float_type_v0): Rename from...
(float_type): ... this. Introduce new version.
(char_type): New.
* gcc-c-interface.h (gcc_c_api_version): Add GCC_C_FE_VERSION_1.
(gcc_type_array): Move...
* gcc-interface.h: ... here.
* gcc-cp-fe.def: New.
* gcc-cp-interface.h: New.
for libcc1/ChangeLog
Introduce C++ support.
* Makefile.am (AM_CPPFLAGS): Move some -I flags to...
(CPPFLAGS_FOR_C_FAMILY, CPPFLAGS_FOR_C, CPPFLAGS_FOR_CXX): ...
new macros.
(plugin_LTLIBRARIES): Add libcp1plugin.la.
(BUILT_SOURCES, MOSTLYCLEANFILES): Add...
(cp-compiler-name.h): ... this. New.
(c-compiler-name.h): Rename all over from...
(compiler-name.h): ... this. Create it atomically.
(marshall_c_source, marshall_cxx_source): New macros.
(libcc1plugin_la_SOURCES): Rename plugin.cc to libcc1plugin.cc.
Add marshall_c_source expansion.
(libcc1plugin.lo_CPPFLAGS): New macro.
(libcp1plugin_la_LDFLAGS): Likewise.
(libcp1plugin_la_SOURCES): Likewise.
(libcp1plugin.lo_CPPFLAGS): Likewise.
(libcp1plugin_la_LIBADD): Likewise.
(libcp1plugin_la_DEPENDENCIES): Likewise.
(libcp1plugin_la_LINK): Likewise.
(libcc1_la_SOURCES): Added marshall_c_source and
marshall_cxx_source expansions.
* Makefile.in: Rebuild.
* compiler-name.h: Rename all over to...
* c-compiler-name.h: ... this. Define C_COMPILER_NAME instead
of COMPILER_NAME.
* plugin.cc: Rename all over to...
* libcc1plugin.cc: ... this. Include marshall-c.hh.
(address_rewriter): Drop cleaning up of VLA sizes.
(plugin_build_decl): Mark decls as external.
(plugin_tagbind): Propagate name to all variants.
(build_anonymous_node): New.
(plugin_build_record_type): Use it instead of make_node.
(plugin_build_union_type): Likewise.
(plugin_build_enum_type): Likewise.
(plugin_finish_record_or_union): Update all type variants.
(safe_lookup_builtin_type): New.
(plugin_int_check): Factor out of, and add checks to, ...
(plugin_int_type): ... this. Rename to...
(plugin_int_type_v0): ... this.
(plugin_int_type): New interface, new implementation.
(plugin_char_type): New.
(plugin_float_type_v0): Rename from...
(plugin_float_type): ... this. New interface, new implementation.
(plugin_init): Bump handshake version.
* libcc1.cc: Include marshall-c.hh. Drop gcc-interface.h.
(call_binding_oracle): Rename to...
(c_call_binding_oracle): ... this, into anonymous namespace.
(call_symbol_address): Rename to...
(c_call_symbol_address): ... this, likewise.
(GCC_METHOD#): Move methods into cc1plugin::c:: namespace.
(libcc1::compiler::find): Refer to C_COMPILER_NAME.
(fork_exec): Bump to GCC_C_FE_VERSION_1.
(libcc1_compile): Prefix callbacks with c_.
(gcc_c_fe_context): Accept GCC_C_FE_VERSION_1.
* libcc1.sym: Export gcc_cp_fe_context.
* libcp1.cc: New, mostly copied and adjusted from libcc1.cc.
* libcp1plugin.cc: New, initially copied from libcc1plugin.cc.
* libcp1plugin.sym: New.
* marshall-c.hh: New. Move C-specific types from...
* marshall.cc: ... this.
(cc1_plugin::marshall_array_start): New.
(cc1_plugin::marshall_array_elmts): New.
(cc1_plugin::marshall for gcc_type_array): Use the above.
(cc1_plugin::unmarshall_array_start): New.
(cc1_plugin::unmarshall_array_elmts): New.
(cc1_plugin::unmarshall for gcc_type_array): Use the above.
* marshall.hh: Declare the new array building blocks.
Drop C-specific unmarshall declarations.
* marshall-cp.hh: New.
* names.cc (GCC_METHOD#): Add LANG:: to method names.
(LANG): Define while including gcc-c-fe.def and gcc-cp-fe.def.
* names.hh: Include gcc-c-fe.def and gcc-cp-fe.def in the
corresponding namespaces.
* rpc.hh: Don't include marshall.hh.
[GCC_CP_INTERFACE_H] (argument_wrapper): Specialize for
gcc_vbase_array, gcc_cp_template_args, gcc_cp_function_args.
From-SVN: r245051
2017-01-31 02:02:03 +01:00
|
|
|
|
|
|
|
|
|
This file is part of GCC.
|
|
|
|
|
|
|
|
|
|
GCC is free software; you can redistribute it and/or modify it under
|
|
|
|
|
the terms of the GNU General Public License as published by the Free
|
|
|
|
|
Software Foundation; either version 3, or (at your option) any later
|
|
|
|
|
version.
|
|
|
|
|
|
|
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GCC; see the file COPYING3. If not see
|
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
|
|
#include <cc1plugin-config.h>
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <sstream>
|
|
|
|
|
#include "marshall-cp.hh"
|
|
|
|
|
#include "rpc.hh"
|
|
|
|
|
#include "connection.hh"
|
|
|
|
|
#include "names.hh"
|
|
|
|
|
#include "callbacks.hh"
|
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
#include "xregex.h"
|
|
|
|
|
#include "findcomp.hh"
|
2017-11-16 19:15:33 +01:00
|
|
|
|
#include "compiler-name.hh"
|
Introduce C++ support in libcc1
Extend libcc1's with an API for C++ support.
Extend libcc1's C API to distinguish between integral types with the
same width, as in C++. Likewise for float types.
Export small bits of functionality from the C++ front-end for use in
libcc1. Add support for the C++ front-end to look up names and
addresses using a libcc1-registered binding oracle. Add support for
global friends.
for gcc/cp/ChangeLog
Introduce C++ support in libcc1.
* cp-tree.h (struct lang_identifier): Add oracle_looked_up.
(ansi_opname): Rename to...
(cp_operator_id): ... this. Adjust all callers.
(ansi_assopname): Rename to...
(cp_assignment_operator_id): ... this. Adjust all callers.
(cp_literal_operator_id): Declare.
(set_global_friend): Declare.
(is_global_friend): Declare.
(enum cp_oracle_request): New type.
(cp_binding_oracle_function): New type.
(cp_binding_oracle): Declare.
(cp_finish_injected_record_type): Declare.
* friend.c (global_friend): New var.
(set_global_friend): New fn.
(is_global_friend): New fn.
(is_friend): Call is_global_friend.
* name-lookup.c (cp_binding_oracle): New var.
(query_oracle): New fn.
(qualified_lookup_using_namespace): Call query_oracle.
(lookup_name_real_1): Likewise.
* parser.c (cp_literal_operator_id): Drop static.
* search.c (friend_accessible_p): Call is_global_friend.
* semantics.c (is_this_parameter): Accept a variable if the
binding oracle is enabled.
for include/ChangeLog
Introduce C++ support in libcc1.
* gcc-c-fe.def (int_type_v0): Rename from...
(int_type): ... this. Introduce new version.
(float_type_v0): Rename from...
(float_type): ... this. Introduce new version.
(char_type): New.
* gcc-c-interface.h (gcc_c_api_version): Add GCC_C_FE_VERSION_1.
(gcc_type_array): Move...
* gcc-interface.h: ... here.
* gcc-cp-fe.def: New.
* gcc-cp-interface.h: New.
for libcc1/ChangeLog
Introduce C++ support.
* Makefile.am (AM_CPPFLAGS): Move some -I flags to...
(CPPFLAGS_FOR_C_FAMILY, CPPFLAGS_FOR_C, CPPFLAGS_FOR_CXX): ...
new macros.
(plugin_LTLIBRARIES): Add libcp1plugin.la.
(BUILT_SOURCES, MOSTLYCLEANFILES): Add...
(cp-compiler-name.h): ... this. New.
(c-compiler-name.h): Rename all over from...
(compiler-name.h): ... this. Create it atomically.
(marshall_c_source, marshall_cxx_source): New macros.
(libcc1plugin_la_SOURCES): Rename plugin.cc to libcc1plugin.cc.
Add marshall_c_source expansion.
(libcc1plugin.lo_CPPFLAGS): New macro.
(libcp1plugin_la_LDFLAGS): Likewise.
(libcp1plugin_la_SOURCES): Likewise.
(libcp1plugin.lo_CPPFLAGS): Likewise.
(libcp1plugin_la_LIBADD): Likewise.
(libcp1plugin_la_DEPENDENCIES): Likewise.
(libcp1plugin_la_LINK): Likewise.
(libcc1_la_SOURCES): Added marshall_c_source and
marshall_cxx_source expansions.
* Makefile.in: Rebuild.
* compiler-name.h: Rename all over to...
* c-compiler-name.h: ... this. Define C_COMPILER_NAME instead
of COMPILER_NAME.
* plugin.cc: Rename all over to...
* libcc1plugin.cc: ... this. Include marshall-c.hh.
(address_rewriter): Drop cleaning up of VLA sizes.
(plugin_build_decl): Mark decls as external.
(plugin_tagbind): Propagate name to all variants.
(build_anonymous_node): New.
(plugin_build_record_type): Use it instead of make_node.
(plugin_build_union_type): Likewise.
(plugin_build_enum_type): Likewise.
(plugin_finish_record_or_union): Update all type variants.
(safe_lookup_builtin_type): New.
(plugin_int_check): Factor out of, and add checks to, ...
(plugin_int_type): ... this. Rename to...
(plugin_int_type_v0): ... this.
(plugin_int_type): New interface, new implementation.
(plugin_char_type): New.
(plugin_float_type_v0): Rename from...
(plugin_float_type): ... this. New interface, new implementation.
(plugin_init): Bump handshake version.
* libcc1.cc: Include marshall-c.hh. Drop gcc-interface.h.
(call_binding_oracle): Rename to...
(c_call_binding_oracle): ... this, into anonymous namespace.
(call_symbol_address): Rename to...
(c_call_symbol_address): ... this, likewise.
(GCC_METHOD#): Move methods into cc1plugin::c:: namespace.
(libcc1::compiler::find): Refer to C_COMPILER_NAME.
(fork_exec): Bump to GCC_C_FE_VERSION_1.
(libcc1_compile): Prefix callbacks with c_.
(gcc_c_fe_context): Accept GCC_C_FE_VERSION_1.
* libcc1.sym: Export gcc_cp_fe_context.
* libcp1.cc: New, mostly copied and adjusted from libcc1.cc.
* libcp1plugin.cc: New, initially copied from libcc1plugin.cc.
* libcp1plugin.sym: New.
* marshall-c.hh: New. Move C-specific types from...
* marshall.cc: ... this.
(cc1_plugin::marshall_array_start): New.
(cc1_plugin::marshall_array_elmts): New.
(cc1_plugin::marshall for gcc_type_array): Use the above.
(cc1_plugin::unmarshall_array_start): New.
(cc1_plugin::unmarshall_array_elmts): New.
(cc1_plugin::unmarshall for gcc_type_array): Use the above.
* marshall.hh: Declare the new array building blocks.
Drop C-specific unmarshall declarations.
* marshall-cp.hh: New.
* names.cc (GCC_METHOD#): Add LANG:: to method names.
(LANG): Define while including gcc-c-fe.def and gcc-cp-fe.def.
* names.hh: Include gcc-c-fe.def and gcc-cp-fe.def in the
corresponding namespaces.
* rpc.hh: Don't include marshall.hh.
[GCC_CP_INTERFACE_H] (argument_wrapper): Specialize for
gcc_vbase_array, gcc_cp_template_args, gcc_cp_function_args.
From-SVN: r245051
2017-01-31 02:02:03 +01:00
|
|
|
|
#include "intl.h"
|
|
|
|
|
|
|
|
|
|
struct libcp1;
|
|
|
|
|
|
|
|
|
|
class libcp1_connection;
|
|
|
|
|
|
|
|
|
|
// The C compiler context that we hand back to our caller.
|
|
|
|
|
struct libcp1 : public gcc_cp_context
|
|
|
|
|
{
|
|
|
|
|
libcp1 (const gcc_base_vtable *, const gcc_cp_fe_vtable *);
|
|
|
|
|
~libcp1 ();
|
|
|
|
|
|
|
|
|
|
// A convenience function to print something.
|
|
|
|
|
void print (const char *str)
|
|
|
|
|
{
|
|
|
|
|
this->print_function (this->print_datum, str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
libcp1_connection *connection;
|
|
|
|
|
|
|
|
|
|
gcc_cp_oracle_function *binding_oracle;
|
|
|
|
|
gcc_cp_symbol_address_function *address_oracle;
|
|
|
|
|
gcc_cp_enter_leave_user_expr_scope_function *enter_scope;
|
|
|
|
|
gcc_cp_enter_leave_user_expr_scope_function *leave_scope;
|
|
|
|
|
void *oracle_datum;
|
|
|
|
|
|
|
|
|
|
void (*print_function) (void *datum, const char *message);
|
|
|
|
|
void *print_datum;
|
|
|
|
|
|
|
|
|
|
std::vector<std::string> args;
|
|
|
|
|
std::string source_file;
|
|
|
|
|
|
|
|
|
|
/* Non-zero as an equivalent to gcc driver option "-v". */
|
|
|
|
|
bool verbose;
|
|
|
|
|
|
|
|
|
|
/* Compiler to set by set_triplet_regexp or set_driver_filename. */
|
|
|
|
|
class compiler
|
|
|
|
|
{
|
|
|
|
|
protected:
|
|
|
|
|
libcp1 *self_;
|
|
|
|
|
public:
|
|
|
|
|
compiler (libcp1 *self) : self_ (self)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
virtual char *find (std::string &compiler) const;
|
|
|
|
|
virtual ~compiler ()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
} *compilerp;
|
|
|
|
|
|
|
|
|
|
/* Compiler to set by set_triplet_regexp. */
|
|
|
|
|
class compiler_triplet_regexp : public compiler
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
std::string triplet_regexp_;
|
|
|
|
|
public:
|
|
|
|
|
virtual char *find (std::string &compiler) const;
|
|
|
|
|
compiler_triplet_regexp (libcp1 *self, std::string triplet_regexp)
|
|
|
|
|
: compiler (self), triplet_regexp_ (triplet_regexp)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
virtual ~compiler_triplet_regexp ()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Compiler to set by set_driver_filename. */
|
|
|
|
|
class compiler_driver_filename : public compiler
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
std::string driver_filename_;
|
|
|
|
|
public:
|
|
|
|
|
virtual char *find (std::string &compiler) const;
|
|
|
|
|
compiler_driver_filename (libcp1 *self, std::string driver_filename)
|
|
|
|
|
: compiler (self), driver_filename_ (driver_filename)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
virtual ~compiler_driver_filename ()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// A local subclass of connection that holds a back-pointer to the
|
|
|
|
|
// gcc_c_context object that we provide to our caller.
|
|
|
|
|
class libcp1_connection : public cc1_plugin::connection
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
libcp1_connection (int fd, int aux_fd, libcp1 *b)
|
|
|
|
|
: connection (fd, aux_fd),
|
|
|
|
|
back_ptr (b)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void print (const char *buf)
|
|
|
|
|
{
|
|
|
|
|
back_ptr->print (buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
libcp1 *back_ptr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
libcp1::libcp1 (const gcc_base_vtable *v,
|
|
|
|
|
const gcc_cp_fe_vtable *cv)
|
|
|
|
|
: connection (NULL),
|
|
|
|
|
binding_oracle (NULL),
|
|
|
|
|
address_oracle (NULL),
|
|
|
|
|
oracle_datum (NULL),
|
|
|
|
|
print_function (NULL),
|
|
|
|
|
print_datum (NULL),
|
|
|
|
|
args (),
|
|
|
|
|
source_file (),
|
|
|
|
|
verbose (false),
|
|
|
|
|
compilerp (new libcp1::compiler (this))
|
|
|
|
|
{
|
|
|
|
|
base.ops = v;
|
|
|
|
|
cp_ops = cv;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
libcp1::~libcp1 ()
|
|
|
|
|
{
|
|
|
|
|
delete connection;
|
|
|
|
|
delete compilerp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Enclose these functions in an anonymous namespace because they
|
|
|
|
|
// shouldn't be exported, but they can't be static because they're
|
|
|
|
|
// used as template arguments.
|
|
|
|
|
namespace {
|
|
|
|
|
// This is a wrapper function that is called by the RPC system and
|
|
|
|
|
// that then forwards the call to the library user. Note that the
|
|
|
|
|
// return value is not used; the type cannot be 'void' due to
|
|
|
|
|
// limitations in our simple RPC.
|
|
|
|
|
int
|
|
|
|
|
cp_call_binding_oracle (cc1_plugin::connection *conn,
|
|
|
|
|
enum gcc_cp_oracle_request request,
|
|
|
|
|
const char *identifier)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = ((libcp1_connection *) conn)->back_ptr;
|
|
|
|
|
|
|
|
|
|
self->binding_oracle (self->oracle_datum, self, request, identifier);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This is a wrapper function that is called by the RPC system and
|
|
|
|
|
// that then forwards the call to the library user.
|
|
|
|
|
gcc_address
|
|
|
|
|
cp_call_symbol_address (cc1_plugin::connection *conn, const char *identifier)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = ((libcp1_connection *) conn)->back_ptr;
|
|
|
|
|
|
|
|
|
|
return self->address_oracle (self->oracle_datum, self, identifier);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
cp_call_enter_scope (cc1_plugin::connection *conn)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = ((libcp1_connection *) conn)->back_ptr;
|
|
|
|
|
|
|
|
|
|
self->enter_scope (self->oracle_datum, self);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
cp_call_leave_scope (cc1_plugin::connection *conn)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = ((libcp1_connection *) conn)->back_ptr;
|
|
|
|
|
|
|
|
|
|
self->leave_scope (self->oracle_datum, self);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
} /* anonymous namespace */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
set_callbacks (struct gcc_cp_context *s,
|
|
|
|
|
gcc_cp_oracle_function *binding_oracle,
|
|
|
|
|
gcc_cp_symbol_address_function *address_oracle,
|
|
|
|
|
gcc_cp_enter_leave_user_expr_scope_function *enter_scope,
|
|
|
|
|
gcc_cp_enter_leave_user_expr_scope_function *leave_scope,
|
|
|
|
|
void *datum)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
|
|
|
|
|
self->binding_oracle = binding_oracle;
|
|
|
|
|
self->address_oracle = address_oracle;
|
|
|
|
|
self->enter_scope = enter_scope;
|
|
|
|
|
self->leave_scope = leave_scope;
|
|
|
|
|
self->oracle_datum = datum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Instances of these rpc<> template functions are installed into the
|
|
|
|
|
// "cp_vtable". These functions are parameterized by type and method
|
|
|
|
|
// name and forward the call via the connection.
|
|
|
|
|
|
|
|
|
|
template<typename R, const char *&NAME>
|
|
|
|
|
R rpc (struct gcc_cp_context *s)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
R result;
|
|
|
|
|
|
|
|
|
|
if (!cc1_plugin::call (self->connection, NAME, &result))
|
|
|
|
|
return 0;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename R, const char *&NAME, typename A>
|
|
|
|
|
R rpc (struct gcc_cp_context *s, A arg)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
R result;
|
|
|
|
|
|
|
|
|
|
if (!cc1_plugin::call (self->connection, NAME, &result, arg))
|
|
|
|
|
return 0;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename R, const char *&NAME, typename A1, typename A2>
|
|
|
|
|
R rpc (struct gcc_cp_context *s, A1 arg1, A2 arg2)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
R result;
|
|
|
|
|
|
|
|
|
|
if (!cc1_plugin::call (self->connection, NAME, &result, arg1, arg2))
|
|
|
|
|
return 0;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename R, const char *&NAME, typename A1, typename A2, typename A3>
|
|
|
|
|
R rpc (struct gcc_cp_context *s, A1 arg1, A2 arg2, A3 arg3)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
R result;
|
|
|
|
|
|
|
|
|
|
if (!cc1_plugin::call (self->connection, NAME, &result, arg1, arg2, arg3))
|
|
|
|
|
return 0;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename R, const char *&NAME, typename A1, typename A2, typename A3,
|
|
|
|
|
typename A4>
|
|
|
|
|
R rpc (struct gcc_cp_context *s, A1 arg1, A2 arg2, A3 arg3, A4 arg4)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
R result;
|
|
|
|
|
|
|
|
|
|
if (!cc1_plugin::call (self->connection, NAME, &result, arg1, arg2, arg3,
|
|
|
|
|
arg4))
|
|
|
|
|
return 0;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename R, const char *&NAME, typename A1, typename A2, typename A3,
|
|
|
|
|
typename A4, typename A5>
|
|
|
|
|
R rpc (struct gcc_cp_context *s, A1 arg1, A2 arg2, A3 arg3, A4 arg4, A5 arg5)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
R result;
|
|
|
|
|
|
|
|
|
|
if (!cc1_plugin::call (self->connection, NAME, &result, arg1, arg2, arg3,
|
|
|
|
|
arg4, arg5))
|
|
|
|
|
return 0;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename R, const char *&NAME, typename A1, typename A2, typename A3,
|
|
|
|
|
typename A4, typename A5, typename A6, typename A7>
|
|
|
|
|
R rpc (struct gcc_cp_context *s, A1 arg1, A2 arg2, A3 arg3, A4 arg4, A5 arg5,
|
|
|
|
|
A6 arg6, A7 arg7)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
R result;
|
|
|
|
|
|
|
|
|
|
if (!cc1_plugin::call (self->connection, NAME, &result, arg1, arg2, arg3,
|
|
|
|
|
arg4, arg5, arg6, arg7))
|
|
|
|
|
return 0;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct gcc_cp_fe_vtable cp_vtable =
|
|
|
|
|
{
|
|
|
|
|
GCC_CP_FE_VERSION_0,
|
|
|
|
|
set_callbacks,
|
|
|
|
|
|
|
|
|
|
#define GCC_METHOD0(R, N) \
|
|
|
|
|
rpc<R, cc1_plugin::cp::N>,
|
|
|
|
|
#define GCC_METHOD1(R, N, A) \
|
|
|
|
|
rpc<R, cc1_plugin::cp::N, A>,
|
|
|
|
|
#define GCC_METHOD2(R, N, A, B) \
|
|
|
|
|
rpc<R, cc1_plugin::cp::N, A, B>,
|
|
|
|
|
#define GCC_METHOD3(R, N, A, B, C) \
|
|
|
|
|
rpc<R, cc1_plugin::cp::N, A, B, C>,
|
|
|
|
|
#define GCC_METHOD4(R, N, A, B, C, D) \
|
|
|
|
|
rpc<R, cc1_plugin::cp::N, A, B, C, D>,
|
|
|
|
|
#define GCC_METHOD5(R, N, A, B, C, D, E) \
|
|
|
|
|
rpc<R, cc1_plugin::cp::N, A, B, C, D, E>,
|
|
|
|
|
#define GCC_METHOD7(R, N, A, B, C, D, E, F, G) \
|
|
|
|
|
rpc<R, cc1_plugin::cp::N, A, B, C, D, E, F, G>,
|
|
|
|
|
|
|
|
|
|
#include "gcc-cp-fe.def"
|
|
|
|
|
|
|
|
|
|
#undef GCC_METHOD0
|
|
|
|
|
#undef GCC_METHOD1
|
|
|
|
|
#undef GCC_METHOD2
|
|
|
|
|
#undef GCC_METHOD3
|
|
|
|
|
#undef GCC_METHOD4
|
|
|
|
|
#undef GCC_METHOD5
|
|
|
|
|
#undef GCC_METHOD7
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Construct an appropriate regexp to match the compiler name.
|
|
|
|
|
static std::string
|
|
|
|
|
make_regexp (const char *triplet_regexp, const char *compiler)
|
|
|
|
|
{
|
|
|
|
|
std::stringstream buf;
|
|
|
|
|
|
|
|
|
|
buf << "^" << triplet_regexp << "-";
|
|
|
|
|
|
|
|
|
|
// Quote the compiler name in case it has something funny in it.
|
|
|
|
|
for (const char *p = compiler; *p; ++p)
|
|
|
|
|
{
|
|
|
|
|
switch (*p)
|
|
|
|
|
{
|
|
|
|
|
case '.':
|
|
|
|
|
case '^':
|
|
|
|
|
case '$':
|
|
|
|
|
case '*':
|
|
|
|
|
case '+':
|
|
|
|
|
case '?':
|
|
|
|
|
case '(':
|
|
|
|
|
case ')':
|
|
|
|
|
case '[':
|
|
|
|
|
case '{':
|
|
|
|
|
case '\\':
|
|
|
|
|
case '|':
|
|
|
|
|
buf << '\\';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
buf << *p;
|
|
|
|
|
}
|
|
|
|
|
buf << "$";
|
|
|
|
|
|
|
|
|
|
return buf.str ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
libcp1_set_verbose (struct gcc_base_context *s, int /* bool */ verbose)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
|
|
|
|
|
self->verbose = verbose != 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
libcp1::compiler::find (std::string &compiler ATTRIBUTE_UNUSED) const
|
|
|
|
|
{
|
|
|
|
|
return xstrdup (_("Compiler has not been specified"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
libcp1::compiler_triplet_regexp::find (std::string &compiler) const
|
|
|
|
|
{
|
|
|
|
|
std::string rx = make_regexp (triplet_regexp_.c_str (), CP_COMPILER_NAME);
|
|
|
|
|
if (self_->verbose)
|
|
|
|
|
fprintf (stderr, _("searching for compiler matching regex %s\n"),
|
|
|
|
|
rx.c_str());
|
|
|
|
|
regex_t triplet;
|
|
|
|
|
int code = regcomp (&triplet, rx.c_str (), REG_EXTENDED | REG_NOSUB);
|
|
|
|
|
if (code != 0)
|
|
|
|
|
{
|
|
|
|
|
size_t len = regerror (code, &triplet, NULL, 0);
|
|
|
|
|
char err[len];
|
|
|
|
|
|
|
|
|
|
regerror (code, &triplet, err, len);
|
|
|
|
|
|
|
|
|
|
return concat ("Could not compile regexp \"",
|
|
|
|
|
rx.c_str (),
|
|
|
|
|
"\": ",
|
|
|
|
|
err,
|
|
|
|
|
(char *) NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!find_compiler (triplet, &compiler))
|
|
|
|
|
{
|
|
|
|
|
regfree (&triplet);
|
|
|
|
|
return concat ("Could not find a compiler matching \"",
|
|
|
|
|
rx.c_str (),
|
|
|
|
|
"\"",
|
|
|
|
|
(char *) NULL);
|
|
|
|
|
}
|
|
|
|
|
regfree (&triplet);
|
|
|
|
|
if (self_->verbose)
|
|
|
|
|
fprintf (stderr, _("found compiler %s\n"), compiler.c_str());
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
libcp1::compiler_driver_filename::find (std::string &compiler) const
|
|
|
|
|
{
|
|
|
|
|
// Simulate fnotice by fprintf.
|
|
|
|
|
if (self_->verbose)
|
|
|
|
|
fprintf (stderr, _("using explicit compiler filename %s\n"),
|
|
|
|
|
driver_filename_.c_str());
|
|
|
|
|
compiler = driver_filename_;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
libcp1_set_arguments (struct gcc_base_context *s,
|
|
|
|
|
int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
|
|
|
|
|
std::string compiler;
|
|
|
|
|
char *errmsg = self->compilerp->find (compiler);
|
|
|
|
|
if (errmsg != NULL)
|
|
|
|
|
return errmsg;
|
|
|
|
|
|
|
|
|
|
self->args.push_back (compiler);
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < argc; ++i)
|
|
|
|
|
self->args.push_back (argv[i]);
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
libcp1_set_triplet_regexp (struct gcc_base_context *s,
|
|
|
|
|
const char *triplet_regexp)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
|
|
|
|
|
delete self->compilerp;
|
|
|
|
|
self->compilerp = new libcp1::compiler_triplet_regexp (self, triplet_regexp);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
libcp1_set_driver_filename (struct gcc_base_context *s,
|
|
|
|
|
const char *driver_filename)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
|
|
|
|
|
delete self->compilerp;
|
|
|
|
|
self->compilerp = new libcp1::compiler_driver_filename (self,
|
|
|
|
|
driver_filename);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
libcp1_set_arguments_v0 (struct gcc_base_context *s,
|
|
|
|
|
const char *triplet_regexp,
|
|
|
|
|
int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
char *errmsg = libcp1_set_triplet_regexp (s, triplet_regexp);
|
|
|
|
|
if (errmsg != NULL)
|
|
|
|
|
return errmsg;
|
|
|
|
|
|
|
|
|
|
return libcp1_set_arguments (s, argc, argv);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
libcp1_set_source_file (struct gcc_base_context *s,
|
|
|
|
|
const char *file)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
|
|
|
|
|
self->source_file = file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
libcp1_set_print_callback (struct gcc_base_context *s,
|
|
|
|
|
void (*print_function) (void *datum,
|
|
|
|
|
const char *message),
|
|
|
|
|
void *datum)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
|
|
|
|
|
self->print_function = print_function;
|
|
|
|
|
self->print_datum = datum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
fork_exec (libcp1 *self, char **argv, int spair_fds[2], int stderr_fds[2])
|
|
|
|
|
{
|
|
|
|
|
pid_t child_pid = fork ();
|
|
|
|
|
|
|
|
|
|
if (child_pid == -1)
|
|
|
|
|
{
|
|
|
|
|
close (spair_fds[0]);
|
|
|
|
|
close (spair_fds[1]);
|
|
|
|
|
close (stderr_fds[0]);
|
|
|
|
|
close (stderr_fds[1]);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (child_pid == 0)
|
|
|
|
|
{
|
|
|
|
|
// Child.
|
|
|
|
|
dup2 (stderr_fds[1], 1);
|
|
|
|
|
dup2 (stderr_fds[1], 2);
|
|
|
|
|
close (stderr_fds[0]);
|
|
|
|
|
close (stderr_fds[1]);
|
|
|
|
|
close (spair_fds[0]);
|
|
|
|
|
|
|
|
|
|
execvp (argv[0], argv);
|
|
|
|
|
_exit (127);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Parent.
|
|
|
|
|
close (spair_fds[1]);
|
|
|
|
|
close (stderr_fds[1]);
|
|
|
|
|
|
|
|
|
|
cc1_plugin::status result = cc1_plugin::FAIL;
|
|
|
|
|
if (self->connection->send ('H')
|
|
|
|
|
&& ::cc1_plugin::marshall (self->connection, GCC_CP_FE_VERSION_0))
|
|
|
|
|
result = self->connection->wait_for_query ();
|
|
|
|
|
|
|
|
|
|
close (spair_fds[0]);
|
|
|
|
|
close (stderr_fds[0]);
|
|
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
int status;
|
|
|
|
|
|
|
|
|
|
if (waitpid (child_pid, &status, 0) == -1)
|
|
|
|
|
{
|
|
|
|
|
if (errno != EINTR)
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!WIFEXITED (status) || WEXITSTATUS (status) != 0)
|
|
|
|
|
return 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!result)
|
|
|
|
|
return 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
libcp1_compile (struct gcc_base_context *s,
|
|
|
|
|
const char *filename)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
|
|
|
|
|
int fds[2];
|
|
|
|
|
if (socketpair (AF_UNIX, SOCK_STREAM, 0, fds) != 0)
|
|
|
|
|
{
|
|
|
|
|
self->print ("could not create socketpair\n");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int stderr_fds[2];
|
|
|
|
|
if (pipe (stderr_fds) != 0)
|
|
|
|
|
{
|
|
|
|
|
self->print ("could not create pipe\n");
|
|
|
|
|
close (fds[0]);
|
|
|
|
|
close (fds[1]);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
self->args.push_back ("-fplugin=libcp1plugin");
|
|
|
|
|
char buf[100];
|
|
|
|
|
if (snprintf (buf, sizeof (buf), "-fplugin-arg-libcp1plugin-fd=%d", fds[1])
|
|
|
|
|
>= (long) sizeof (buf))
|
|
|
|
|
abort ();
|
|
|
|
|
self->args.push_back (buf);
|
|
|
|
|
|
|
|
|
|
self->args.push_back (self->source_file);
|
|
|
|
|
self->args.push_back ("-c");
|
|
|
|
|
self->args.push_back ("-o");
|
|
|
|
|
self->args.push_back (filename);
|
|
|
|
|
if (self->verbose)
|
|
|
|
|
self->args.push_back ("-v");
|
|
|
|
|
|
|
|
|
|
self->connection = new libcp1_connection (fds[0], stderr_fds[0], self);
|
|
|
|
|
|
|
|
|
|
cc1_plugin::callback_ftype *fun
|
|
|
|
|
= cc1_plugin::callback<int,
|
|
|
|
|
enum gcc_cp_oracle_request,
|
|
|
|
|
const char *,
|
|
|
|
|
cp_call_binding_oracle>;
|
|
|
|
|
self->connection->add_callback ("binding_oracle", fun);
|
|
|
|
|
|
|
|
|
|
fun = cc1_plugin::callback<gcc_address,
|
|
|
|
|
const char *,
|
|
|
|
|
cp_call_symbol_address>;
|
|
|
|
|
self->connection->add_callback ("address_oracle", fun);
|
|
|
|
|
|
|
|
|
|
fun = cc1_plugin::callback<int,
|
|
|
|
|
cp_call_enter_scope>;
|
|
|
|
|
self->connection->add_callback ("enter_scope", fun);
|
|
|
|
|
|
|
|
|
|
fun = cc1_plugin::callback<int,
|
|
|
|
|
cp_call_leave_scope>;
|
|
|
|
|
self->connection->add_callback ("leave_scope", fun);
|
|
|
|
|
|
|
|
|
|
char **argv = new (std::nothrow) char *[self->args.size () + 1];
|
|
|
|
|
if (argv == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < self->args.size (); ++i)
|
|
|
|
|
argv[i] = const_cast<char *> (self->args[i].c_str ());
|
|
|
|
|
argv[self->args.size ()] = NULL;
|
|
|
|
|
|
|
|
|
|
return fork_exec (self, argv, fds, stderr_fds);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
libcp1_compile_v0 (struct gcc_base_context *s, const char *filename,
|
|
|
|
|
int verbose)
|
|
|
|
|
{
|
|
|
|
|
libcp1_set_verbose (s, verbose);
|
|
|
|
|
return libcp1_compile (s, filename);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
libcp1_destroy (struct gcc_base_context *s)
|
|
|
|
|
{
|
|
|
|
|
libcp1 *self = (libcp1 *) s;
|
|
|
|
|
|
|
|
|
|
delete self;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct gcc_base_vtable vtable =
|
|
|
|
|
{
|
|
|
|
|
GCC_FE_VERSION_0,
|
|
|
|
|
libcp1_set_arguments_v0,
|
|
|
|
|
libcp1_set_source_file,
|
|
|
|
|
libcp1_set_print_callback,
|
|
|
|
|
libcp1_compile_v0,
|
|
|
|
|
libcp1_destroy,
|
|
|
|
|
libcp1_set_verbose,
|
|
|
|
|
libcp1_compile,
|
|
|
|
|
libcp1_set_arguments,
|
|
|
|
|
libcp1_set_triplet_regexp,
|
|
|
|
|
libcp1_set_driver_filename,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern "C" gcc_cp_fe_context_function gcc_cp_fe_context;
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
|
#pragma GCC visibility push(default)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
|
struct gcc_cp_context *
|
|
|
|
|
gcc_cp_fe_context (enum gcc_base_api_version base_version,
|
|
|
|
|
enum gcc_cp_api_version cp_version)
|
|
|
|
|
{
|
|
|
|
|
if ((base_version != GCC_FE_VERSION_0 && base_version != GCC_FE_VERSION_1)
|
|
|
|
|
|| cp_version != GCC_CP_FE_VERSION_0)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
return new libcp1 (&vtable, &cp_vtable);
|
|
|
|
|
}
|