1526a0606b
* Makefile.in (C_AND_OBJC_OBJS): Remove ggc-callbacks.o. (c-parse.o, c-decl.o, c-lang.o, c-lex.o, c-common.o, $(out_object_file)): Depend on ggc.h. * c-common.c: Include "ggc.h". (combine_strings): If doing GC, use ggc_alloc_string. * c-decl.c: Include "ggc.h". (ggc_p): Define with value 0. (mark_binding_level): New function. (init_decl_processing): Add GC roots. (mark_c_function_context): New function. (lang_mark_false_label_stack): New function. (lang_mark_tree): New function. (lang_cleanup_tree): New function. * c-lang.c: Include "ggc.h". (lang_init): Call c_parse_init. * c-lex.c: Include "ggc.h". (check_linenum): If doing GC, don't copy filenames to permanent obstack. * c-parse.in: Include "ggc.h". (c_parse_init): New function. * c-tree.h (c_parse_init, mark_c_function_context): Declare. * objc/Make-lang.in (objc-parse.o): Depend on ggc.h. * except.c (mark_eh_state): Mark more state. * function.c (mark_function_state): Likewise. * ggc-simple.c (ggc_alloc_rtvec): Bring in sync with non-gc version. (ggc_alloc_string) [GGC_DUMP]: Fix typo. * toplev.c (mark_file_stack): New function. (compile_file): If doing GC, use ggc_alloc_string on input filename. (main): Add root for input_file_stack. * i386.c: Include "ggc.h". (ix86_mark_machine_status): New function. (override_options): Set mark_machine_status. From-SVN: r29143
222 lines
4.6 KiB
C
222 lines
4.6 KiB
C
/* Language-specific hook definitions for C front end.
|
|
Copyright (C) 1991, 1995, 1997, 1998 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU CC.
|
|
|
|
GNU CC 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.
|
|
|
|
GNU CC 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 GNU CC; see the file COPYING. If not, write to
|
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
#include "config.h"
|
|
#include "system.h"
|
|
#include "tree.h"
|
|
#include "function.h"
|
|
#include "input.h"
|
|
#include "c-tree.h"
|
|
#include "c-lex.h"
|
|
#include "toplev.h"
|
|
#include "output.h"
|
|
#include "ggc.h"
|
|
|
|
#if USE_CPPLIB
|
|
#include "cpplib.h"
|
|
extern char *yy_cur;
|
|
extern cpp_reader parse_in;
|
|
extern cpp_options parse_options;
|
|
#endif
|
|
|
|
/* Each of the functions defined here
|
|
is an alternative to a function in objc-actions.c. */
|
|
|
|
int
|
|
lang_decode_option (argc, argv)
|
|
int argc;
|
|
char **argv;
|
|
{
|
|
return c_decode_option (argc, argv);
|
|
}
|
|
|
|
void
|
|
lang_init_options ()
|
|
{
|
|
#if USE_CPPLIB
|
|
cpp_reader_init (&parse_in);
|
|
parse_in.opts = &parse_options;
|
|
cpp_options_init (&parse_options);
|
|
#endif
|
|
}
|
|
|
|
void
|
|
lang_init ()
|
|
{
|
|
/* the beginning of the file is a new line; check for # */
|
|
/* With luck, we discover the real source file's name from that
|
|
and put it in input_filename. */
|
|
#if !USE_CPPLIB
|
|
ungetc (check_newline (), finput);
|
|
#else
|
|
check_newline ();
|
|
yy_cur--;
|
|
#endif
|
|
|
|
save_lang_status = &push_c_function_context;
|
|
restore_lang_status = &pop_c_function_context;
|
|
mark_lang_status = &mark_c_function_context;
|
|
|
|
c_parse_init ();
|
|
}
|
|
|
|
void
|
|
lang_finish ()
|
|
{
|
|
}
|
|
|
|
const char *
|
|
lang_identify ()
|
|
{
|
|
return "c";
|
|
}
|
|
|
|
void
|
|
print_lang_statistics ()
|
|
{
|
|
}
|
|
|
|
/* used by print-tree.c */
|
|
|
|
void
|
|
lang_print_xnode (file, node, indent)
|
|
FILE *file ATTRIBUTE_UNUSED;
|
|
tree node ATTRIBUTE_UNUSED;
|
|
int indent ATTRIBUTE_UNUSED;
|
|
{
|
|
}
|
|
|
|
/* Used by c-lex.c, but only for objc. */
|
|
|
|
tree
|
|
lookup_interface (arg)
|
|
tree arg ATTRIBUTE_UNUSED;
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
tree
|
|
is_class_name (arg)
|
|
tree arg ATTRIBUTE_UNUSED;
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
maybe_objc_check_decl (decl)
|
|
tree decl ATTRIBUTE_UNUSED;
|
|
{
|
|
}
|
|
|
|
int
|
|
maybe_objc_comptypes (lhs, rhs, reflexive)
|
|
tree lhs ATTRIBUTE_UNUSED;
|
|
tree rhs ATTRIBUTE_UNUSED;
|
|
int reflexive ATTRIBUTE_UNUSED;
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
tree
|
|
maybe_objc_method_name (decl)
|
|
tree decl ATTRIBUTE_UNUSED;
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
tree
|
|
maybe_building_objc_message_expr ()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
recognize_objc_keyword ()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
tree
|
|
build_objc_string (len, str)
|
|
int len ATTRIBUTE_UNUSED;
|
|
const char *str ATTRIBUTE_UNUSED;
|
|
{
|
|
abort ();
|
|
return NULL_TREE;
|
|
}
|
|
|
|
/* Called at end of parsing, but before end-of-file processing. */
|
|
|
|
void
|
|
finish_file ()
|
|
{
|
|
#ifndef ASM_OUTPUT_CONSTRUCTOR
|
|
extern tree static_ctors;
|
|
#endif
|
|
#ifndef ASM_OUTPUT_DESTRUCTOR
|
|
extern tree static_dtors;
|
|
#endif
|
|
extern tree build_function_call PROTO((tree, tree));
|
|
#if !defined(ASM_OUTPUT_CONSTRUCTOR) || !defined(ASM_OUTPUT_DESTRUCTOR)
|
|
tree void_list_node_1 = build_tree_list (NULL_TREE, void_type_node);
|
|
#endif
|
|
#ifndef ASM_OUTPUT_CONSTRUCTOR
|
|
if (static_ctors)
|
|
{
|
|
tree fnname = get_file_function_name ('I');
|
|
start_function (void_list_node_1,
|
|
build_parse_node (CALL_EXPR, fnname, void_list_node_1,
|
|
NULL_TREE),
|
|
NULL_TREE, NULL_TREE, 0);
|
|
fnname = DECL_ASSEMBLER_NAME (current_function_decl);
|
|
store_parm_decls ();
|
|
|
|
for (; static_ctors; static_ctors = TREE_CHAIN (static_ctors))
|
|
expand_expr_stmt (build_function_call (TREE_VALUE (static_ctors),
|
|
NULL_TREE));
|
|
|
|
finish_function (0);
|
|
|
|
assemble_constructor (IDENTIFIER_POINTER (fnname));
|
|
}
|
|
#endif
|
|
#ifndef ASM_OUTPUT_DESTRUCTOR
|
|
if (static_dtors)
|
|
{
|
|
tree fnname = get_file_function_name ('D');
|
|
start_function (void_list_node_1,
|
|
build_parse_node (CALL_EXPR, fnname, void_list_node_1,
|
|
NULL_TREE),
|
|
NULL_TREE, NULL_TREE, 0);
|
|
fnname = DECL_ASSEMBLER_NAME (current_function_decl);
|
|
store_parm_decls ();
|
|
|
|
for (; static_dtors; static_dtors = TREE_CHAIN (static_dtors))
|
|
expand_expr_stmt (build_function_call (TREE_VALUE (static_dtors),
|
|
NULL_TREE));
|
|
|
|
finish_function (0);
|
|
|
|
assemble_destructor (IDENTIFIER_POINTER (fnname));
|
|
}
|
|
#endif
|
|
}
|