]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/objcp/objcp-lang.c
Update copyright years.
[thirdparty/gcc.git] / gcc / objcp / objcp-lang.c
CommitLineData
b2e61dde 1/* Language-dependent hooks for Objective-C++.
7adcbafe 2 Copyright (C) 2005-2022 Free Software Foundation, Inc.
b2e61dde
MS
3 Contributed by Ziemowit Laski <zlaski@apple.com>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
af84f9c5 9the Free Software Foundation; either version 3, or (at your option)
b2e61dde
MS
10any later version.
11
12GCC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
af84f9c5
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
b2e61dde
MS
21#include "config.h"
22#include "system.h"
23#include "coretypes.h"
b2e61dde 24#include "cp-tree.h"
61d3ce20 25#include "c-family/c-objc.h"
b2e61dde
MS
26#include "objc-act.h"
27#include "langhooks.h"
28#include "langhooks-def.h"
b2e61dde
MS
29#include "cp-objcp-common.h"
30
31enum c_language_kind c_language = clk_objcxx;
3ed8593d 32static void objcxx_init_ts (void);
b2e61dde
MS
33
34/* Lang hooks common to C++ and ObjC++ are declared in cp/cp-objcp-common.h;
35 consequently, there should be very few hooks below. */
36
37#undef LANG_HOOKS_NAME
38#define LANG_HOOKS_NAME "GNU Objective-C++"
39#undef LANG_HOOKS_INIT
40#define LANG_HOOKS_INIT objc_init
98273e5a
ZL
41#undef LANG_HOOKS_GIMPLIFY_EXPR
42#define LANG_HOOKS_GIMPLIFY_EXPR objc_gimplify_expr
3ed8593d
AP
43#undef LANG_HOOKS_INIT_TS
44#define LANG_HOOKS_INIT_TS objcxx_init_ts
45
b2e61dde 46/* Each front end provides its own lang hook initializer. */
4537ec0c 47struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
b2e61dde 48
b2e61dde
MS
49/* Lang hook routines common to C++ and ObjC++ appear in cp/cp-objcp-common.c;
50 there should be very few (if any) routines below. */
51
52tree
53objcp_tsubst_copy_and_build (tree t, tree args, tsubst_flags_t complain,
54 tree in_decl, bool function_p ATTRIBUTE_UNUSED)
55{
015c2c66
MM
56#define RECURSE(NODE) \
57 tsubst_copy_and_build (NODE, args, complain, in_decl, \
58 /*function_p=*/false, \
59 /*integral_constant_expression_p=*/false)
b2e61dde
MS
60
61 /* The following two can only occur in Objective-C++. */
62
63 switch ((int) TREE_CODE (t))
64 {
65 case MESSAGE_SEND_EXPR:
66 return objc_finish_message_expr
67 (RECURSE (TREE_OPERAND (t, 0)),
68 TREE_OPERAND (t, 1), /* No need to expand the selector. */
b4f588c4 69 RECURSE (TREE_OPERAND (t, 2)), NULL);
b2e61dde
MS
70
71 case CLASS_REFERENCE_EXPR:
72 return objc_get_class_reference
73 (RECURSE (TREE_OPERAND (t, 0)));
74
75 default:
76 break;
77 }
78
79 /* Fall back to C++ processing. */
80 return NULL_TREE;
81
82#undef RECURSE
83}
84
3ed8593d
AP
85static void
86objcxx_init_ts (void)
87{
81f653d6
NF
88 objc_common_init_ts ();
89 cp_common_init_ts ();
3ed8593d
AP
90}
91
b2e61dde 92#include "gtype-objcp.h"