objc-lang.c 1.95 KB
Newer Older
1
/* Language-dependent hooks for Objective-C.
2
   Copyright (C) 2001-2014 Free Software Foundation, Inc.
3 4
   Contributed by Ziemowit Laski  <zlaski@apple.com>

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 3, or (at your option)
10 11
any later version.

12
GCC is distributed in the hope that it will be useful,
13 14 15 16 17
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
18 19 20
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */

21 22 23

#include "config.h"
#include "system.h"
24 25
#include "coretypes.h"
#include "tm.h"
26
#include "tree.h"
27
#include "c/c-tree.h"
28
#include "c-family/c-common.h"
29
#include "c-family/c-objc.h"
30
#include "ggc.h"
31 32 33
#include "objc-act.h"
#include "langhooks.h"
#include "langhooks-def.h"
34 35
#include "c/c-objc-common.h"
#include "c/c-lang.h"
36

37
enum c_language_kind c_language = clk_objc;
38

39 40 41
/* Lang hooks common to C and ObjC are declared in c-objc-common.h;
   consequently, there should be very few hooks below.  */

42
#undef LANG_HOOKS_NAME
43
#define LANG_HOOKS_NAME "GNU Objective-C"
44 45
#undef LANG_HOOKS_INIT
#define LANG_HOOKS_INIT objc_init
Neil Booth committed
46 47
#undef LANG_HOOKS_DECL_PRINTABLE_NAME
#define LANG_HOOKS_DECL_PRINTABLE_NAME objc_printable_name
Mike Stump committed
48
#undef LANG_HOOKS_GIMPLIFY_EXPR
49
#define LANG_HOOKS_GIMPLIFY_EXPR objc_gimplify_expr
50
#undef LANG_HOOKS_INIT_TS
51
#define LANG_HOOKS_INIT_TS objc_common_init_ts
52 53
#undef LANG_HOOKS_TREE_SIZE
#define LANG_HOOKS_TREE_SIZE objc_common_tree_size
54

55
/* Each front end provides its own lang hook initializer.  */
Diego Novillo committed
56
struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
57

58 59 60 61
/* Lang hook routines common to C and ObjC appear in c-objc-common.c;
   there should be very few (if any) routines below.  */

#include "gtype-objc.h"