2015-09-25 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / objcp / objcp-lang.c
blobabcd559ae98fa03104dd3b141efb1b290be23259
1 /* Language-dependent hooks for Objective-C++.
2 Copyright (C) 2005-2015 Free Software Foundation, Inc.
3 Contributed by Ziemowit Laski <zlaski@apple.com>
5 This file is part of GCC.
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 3, or (at your option)
10 any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "vec.h"
26 #include "alias.h"
27 #include "tree.h"
28 #include "options.h"
29 #include "inchash.h"
30 #include "cp-tree.h"
31 #include "c-family/c-common.h"
32 #include "c-family/c-objc.h"
33 #include "objc-act.h"
34 #include "langhooks.h"
35 #include "langhooks-def.h"
36 #include "target.h"
37 #include "cp-objcp-common.h"
39 enum c_language_kind c_language = clk_objcxx;
40 static void objcxx_init_ts (void);
42 /* Lang hooks common to C++ and ObjC++ are declared in cp/cp-objcp-common.h;
43 consequently, there should be very few hooks below. */
45 #undef LANG_HOOKS_NAME
46 #define LANG_HOOKS_NAME "GNU Objective-C++"
47 #undef LANG_HOOKS_INIT
48 #define LANG_HOOKS_INIT objc_init
49 #undef LANG_HOOKS_GIMPLIFY_EXPR
50 #define LANG_HOOKS_GIMPLIFY_EXPR objc_gimplify_expr
51 #undef LANG_HOOKS_INIT_TS
52 #define LANG_HOOKS_INIT_TS objcxx_init_ts
54 /* Each front end provides its own lang hook initializer. */
55 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
57 /* Lang hook routines common to C++ and ObjC++ appear in cp/cp-objcp-common.c;
58 there should be very few (if any) routines below. */
60 tree
61 objcp_tsubst_copy_and_build (tree t, tree args, tsubst_flags_t complain,
62 tree in_decl, bool function_p ATTRIBUTE_UNUSED)
64 #define RECURSE(NODE) \
65 tsubst_copy_and_build (NODE, args, complain, in_decl, \
66 /*function_p=*/false, \
67 /*integral_constant_expression_p=*/false)
69 /* The following two can only occur in Objective-C++. */
71 switch ((int) TREE_CODE (t))
73 case MESSAGE_SEND_EXPR:
74 return objc_finish_message_expr
75 (RECURSE (TREE_OPERAND (t, 0)),
76 TREE_OPERAND (t, 1), /* No need to expand the selector. */
77 RECURSE (TREE_OPERAND (t, 2)), NULL);
79 case CLASS_REFERENCE_EXPR:
80 return objc_get_class_reference
81 (RECURSE (TREE_OPERAND (t, 0)));
83 default:
84 break;
87 /* Fall back to C++ processing. */
88 return NULL_TREE;
90 #undef RECURSE
93 static void
94 objcxx_init_ts (void)
96 objc_common_init_ts ();
97 cp_common_init_ts ();
99 init_shadowed_var_for_decl ();
102 #include "gtype-objcp.h"