OSDN Git Service

gcc:
[pf3gnuchains/gcc-fork.git] / gcc / cp / cp-lang.c
1 /* Language-dependent hooks for C++.
2    Copyright 2001, 2002, 2004 Free Software Foundation, Inc.
3    Contributed by Alexandre Oliva  <aoliva@redhat.com>
4
5 This file is part of GCC.
6
7 GCC 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 2, or (at your option)
10 any later version.
11
12 GCC 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 GCC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.  */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "cp-tree.h"
28 #include "c-common.h"
29 #include "toplev.h"
30 #include "langhooks.h"
31 #include "langhooks-def.h"
32 #include "diagnostic.h"
33 #include "debug.h"
34 #include "cp-objcp-common.h"
35
36 enum c_language_kind c_language = clk_cxx;
37
38 /* Lang hooks common to C++ and ObjC++ are declared in cp/cp-objcp-common.h;
39    consequently, there should be very few hooks below.  */
40
41 #undef LANG_HOOKS_NAME
42 #define LANG_HOOKS_NAME "GNU C++"
43 #undef LANG_HOOKS_INIT
44 #define LANG_HOOKS_INIT cxx_init
45 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
46 #define LANG_HOOKS_DECL_PRINTABLE_NAME  cxx_printable_name
47 #undef LANG_HOOKS_FOLD_OBJ_TYPE_REF
48 #define LANG_HOOKS_FOLD_OBJ_TYPE_REF cp_fold_obj_type_ref
49
50 /* Each front end provides its own lang hook initializer.  */
51 const struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
52
53 /* Tree code classes.  */
54
55 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
56
57 const enum tree_code_class tree_code_type[] = {
58 #include "tree.def"
59   tcc_exceptional,
60 #include "c-common.def"
61   tcc_exceptional,
62 #include "cp-tree.def"
63 };
64 #undef DEFTREECODE
65
66 /* Table indexed by tree code giving number of expression
67    operands beyond the fixed part of the node structure.
68    Not used for types or decls.  */
69
70 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
71
72 const unsigned char tree_code_length[] = {
73 #include "tree.def"
74   0,
75 #include "c-common.def"
76   0,
77 #include "cp-tree.def"
78 };
79 #undef DEFTREECODE
80
81 /* Names of tree components.
82    Used for printing out the tree and error messages.  */
83 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
84
85 const char *const tree_code_name[] = {
86 #include "tree.def"
87   "@@dummy",
88 #include "c-common.def"
89   "@@dummy",
90 #include "cp-tree.def"
91 };
92 #undef DEFTREECODE
93
94 /* Lang hook routines common to C++ and ObjC++ appear in cp/cp-objcp-common.c;
95    there should be very few routines below.  */
96
97 /* The following function does something real, but only in Objective-C++.  */
98
99 tree
100 objcp_tsubst_copy_and_build (tree t ATTRIBUTE_UNUSED,
101                              tree args ATTRIBUTE_UNUSED,
102                              tsubst_flags_t complain ATTRIBUTE_UNUSED,
103                              tree in_decl ATTRIBUTE_UNUSED,
104                              bool function_p ATTRIBUTE_UNUSED)
105 {
106   return NULL_TREE;
107 }
108
109 void
110 finish_file (void)
111 {
112   cp_finish_file ();
113 }
114
115 #include "gtype-cp.h"