* gcc/java/decl.c: Include langhooks.h. (builtin_function): Remove. (java_init_decl_processing): Replace calls to builtin_function with add_builtin_function. * gcc/java/Make-lang.in (jc1$(exeext)): Depend on and link with attribs.o. (java/decl.o): Depend on langhooks.h. * gcc/java/java-tree.h (builtin_function): Remove. * gcc/tree.c (local_define_builtin): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/objc/objc-act.c (synth_module_prologue): Replace calls to builtin_function with add_builtin_function. (build_next_objc_exception_stuff): Replace calls to builtin_function with add_builtin_function. (build_objc_exception_stuff): Replace calls to builtin_function with add_builtin_function. * gcc/objcp/objcp-decl.h (objcp_builtin_function): Remove. * gcc/cp/decl.c (builtin_function_1): Move common code to add_builtin_function. (builtin_function): Rename to cxx_builtin_function. Change the signature. * gcc/cp/call.c: Include langhooks.h. (build_java_interface_fn_ref): Replace calls to builtin_function with add_builtin_function. * gcc/cp/Make-lang.in (cp/call.o): Depend on langhooks.h. * gcc/cp/cp-objcp-common.h (LANG_HOOKS_BUILTIN_FUNCTION): Define as cxx_builtin_function. * gcc/cp/cp-tree.h (builtin_function): Rename to cxx_builtin_function. Change the signature. * gcc/c-objc-common.h (LANG_HOOKS_BUILTIN_FUNCTION): Define as c_builtin_function. * gcc/c-tree.h (builtin_function): Rename to c_builtin_function. Change the signature. * gcc/ada/utils.c (builtin_function): Rename to gnat_builtin_function. Move common code to add_builtin_function. * gcc/ada/misc.c (LANG_HOOKS_BUILTIN_FUNCTION): Define as gnat_builtin_function. * gcc/ada/gigi.h (builtin_function): Rename to gnat_builtin_function. Change the signature. * gcc/c-decl.c (builtin_function): Rename to c_builtin_function. Move common code to add_builtin_function. * gcc/fortran/Make-lang.in (f951$(exeext)): Depend on and link with attribs.o. * gcc/fortran/trans.h (builtin_function): Rename to gfc_builtin_function. Change the signature. * gcc/fortran/f95-lang.c (LANG_HOOKS_BUILTIN_FUNCTION): Define as gfc_builtin_function. (builtin_function): Rename to gfc_builtin_function. Move common code to builtin_function. (gfc_define_builtin): Replace calls to builtin_function with gfc_define_builtin. * gcc/langhooks.c (add_builtin_function): New function. (lhd_builtin_function): New function. * gcc/langhooks.h (struct lang_hooks): Change the signature of builtin_function. (add_builtin_function): New function. * gcc/treelang/treetree.c (builtin_function): Remove. * gcc/tree-ssa-loop-prefetch.c (tree_ssa_prefetch_arrays): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/c-common.c (decl_builtin_1): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/alpha/alpha.c (alpha_init_builtins): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/frv/frv.c (def_builtin): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/s390/s390.c (s390_init_builtins): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/sparc/sparc.c (def_builtin): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/i386/i386.c (def_builtin): Replace calls to lang_hooks.builtin_function with add_builtin_function. (def_builtin): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/sh/sh.c (sh_media_init_builtins): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/c4x/c4x.c (c4x_init_builtins): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/stormy16/stormy16.c (xstormy16_init_builtins): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/iq2000/iq2000.c (def_builtin): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/ia64/ia64.c (def_builtin): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/rs6000/rs6000.c (def_builtin): Replace calls to lang_hooks.builtin_function with add_builtin_function. (altivec_init_builtins): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/arm/arm.c (def_mbuiltin): Replace calls to lang_hooks.builtin_function with add_builtin_function. (arm_init_tls_builtins): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/mips/mips.c (mips_init_builtins): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/config/bfin/bfin.c (def_builtin): Replace calls to lang_hooks.builtin_function with add_builtin_function. * gcc/langhooks-def.h (lhd_builtin_function): New function. (LANG_HOOKS_BUILTIN_FUNCTION): Define as lhd_builtin_function. From-SVN: r117981
88 lines
3.2 KiB
C
88 lines
3.2 KiB
C
/* Process the ObjC-specific declarations and variables for
|
|
the Objective-C++ compiler.
|
|
Copyright (C) 2005 Free Software Foundation, Inc.
|
|
Contributed by Ziemowit Laski <zlaski@apple.com>
|
|
|
|
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 2, 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 COPYING. If not, write to the Free
|
|
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA. */
|
|
|
|
#ifndef GCC_OBJCP_DECL_H
|
|
#define GCC_OBJCP_DECL_H
|
|
|
|
extern tree objcp_start_struct (enum tree_code, tree);
|
|
extern tree objcp_finish_struct (tree, tree, tree);
|
|
extern void objcp_finish_function (void);
|
|
extern tree objcp_build_function_call (tree, tree);
|
|
extern tree objcp_xref_tag (enum tree_code, tree);
|
|
extern int objcp_comptypes (tree, tree);
|
|
extern tree objcp_begin_compound_stmt (int);
|
|
extern tree objcp_end_compound_stmt (tree, int);
|
|
|
|
/* Now "cover up" the corresponding C++ functions if required (NB: the
|
|
OBJCP_ORIGINAL_FUNCTION macro, shown below, can still be used to
|
|
invoke the original C++ functions if needed). */
|
|
#ifdef OBJCP_REMAP_FUNCTIONS
|
|
|
|
#define start_struct(code, name) \
|
|
objcp_start_struct (code, name)
|
|
#define finish_struct(t, fieldlist, attributes) \
|
|
objcp_finish_struct (t, fieldlist, attributes)
|
|
#define finish_function() \
|
|
objcp_finish_function ()
|
|
#define xref_tag(code, name) \
|
|
objcp_xref_tag (code, name)
|
|
#define comptypes(type1, type2) \
|
|
objcp_comptypes (type1, type2)
|
|
#define c_begin_compound_stmt(flags) \
|
|
objcp_begin_compound_stmt (flags)
|
|
#define c_end_compound_stmt(stmt, flags) \
|
|
objcp_end_compound_stmt (stmt, flags)
|
|
|
|
#undef OBJC_TYPE_NAME
|
|
#define OBJC_TYPE_NAME(type) \
|
|
(TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL \
|
|
? DECL_NAME (TYPE_NAME (type)) \
|
|
: TYPE_NAME (type))
|
|
#undef OBJC_SET_TYPE_NAME
|
|
#define OBJC_SET_TYPE_NAME(type, name) \
|
|
if(TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL) \
|
|
DECL_NAME (TYPE_NAME (type)) = name; \
|
|
else \
|
|
TYPE_NAME (type) = name;
|
|
|
|
#undef TYPE_OBJC_INFO
|
|
#define TYPE_OBJC_INFO(TYPE) LANG_TYPE_CLASS_CHECK (TYPE)->objc_info
|
|
#undef SIZEOF_OBJC_TYPE_LANG_SPECIFIC
|
|
#define SIZEOF_OBJC_TYPE_LANG_SPECIFIC sizeof (struct lang_type_class)
|
|
#undef ALLOC_OBJC_TYPE_LANG_SPECIFIC
|
|
#define ALLOC_OBJC_TYPE_LANG_SPECIFIC(NODE) \
|
|
do { \
|
|
TYPE_LANG_SPECIFIC (NODE) = GGC_CNEWVAR \
|
|
(struct lang_type, sizeof (struct lang_type_class)); \
|
|
TYPE_LANG_SPECIFIC (NODE)->u.c.h.is_lang_type_class = 1; \
|
|
} while (0)
|
|
|
|
#define OBJCP_ORIGINAL_FUNCTION(name, args) (name)args
|
|
|
|
/* C++ marks ellipsis-free function parameters differently from C. */
|
|
#undef OBJC_VOID_AT_END
|
|
#define OBJC_VOID_AT_END void_list_node
|
|
|
|
#endif /* OBJCP_REMAP_FUNCTIONS */
|
|
|
|
#endif /* ! GCC_OBJCP_DECL_H */
|