]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/darwin-d.cc
rs6000: Load high and low part of 64bit constant independently
[thirdparty/gcc.git] / gcc / config / darwin-d.cc
CommitLineData
4dce3b05 1/* Darwin support needed only by D front-end.
aeee4812 2 Copyright (C) 2020-2023 Free Software Foundation, Inc.
4dce3b05
IB
3
4GCC is free software; you can redistribute it and/or modify it under
5the terms of the GNU General Public License as published by the Free
6Software Foundation; either version 3, or (at your option) any later
7version.
8
9GCC is distributed in the hope that it will be useful, but WITHOUT ANY
10WARRANTY; without even the implied warranty of MERCHANTABILITY or
11FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12for more details.
13
14You should have received a copy of the GNU General Public License
15along with GCC; see the file COPYING3. If not see
16<http://www.gnu.org/licenses/>. */
17
18#include "config.h"
19#include "system.h"
20#include "coretypes.h"
a7852bd3 21#include "tm.h"
4dce3b05
IB
22#include "tm_d.h"
23#include "d/d-target.h"
24#include "d/d-target-def.h"
25
26/* Implement TARGET_D_OS_VERSIONS for Darwin targets. */
27
28static void
29darwin_d_os_builtins (void)
30{
31 d_add_builtin_version ("Posix");
32 d_add_builtin_version ("OSX");
33 d_add_builtin_version ("darwin");
34}
35
d81bc495
IB
36/* Handle a call to `__traits(getTargetInfo, "objectFormat")'. */
37
38static tree
39darwin_d_handle_target_object_format (void)
40{
41 const char *objfmt = "macho";
42
43 return build_string_literal (strlen (objfmt) + 1, objfmt);
44}
45
46/* Implement TARGET_D_REGISTER_OS_TARGET_INFO for Darwin targets. */
47
48static void
49darwin_d_register_target_info (void)
50{
51 const struct d_target_info_spec handlers[] = {
52 { "objectFormat", darwin_d_handle_target_object_format },
53 { NULL, NULL },
54 };
55
56 d_add_target_info_handlers (handlers);
57}
58
4dce3b05
IB
59#undef TARGET_D_OS_VERSIONS
60#define TARGET_D_OS_VERSIONS darwin_d_os_builtins
61
d81bc495
IB
62#undef TARGET_D_REGISTER_OS_TARGET_INFO
63#define TARGET_D_REGISTER_OS_TARGET_INFO darwin_d_register_target_info
64
4dce3b05
IB
65/* Define TARGET_D_MINFO_SECTION for Darwin targets. */
66
67#undef TARGET_D_MINFO_SECTION
68#define TARGET_D_MINFO_SECTION "__DATA,__minfodata"
69
eaa59f08
IB
70#undef TARGET_D_MINFO_SECTION_START
71#define TARGET_D_MINFO_SECTION_START "*section$start$__DATA$__minfodata"
4dce3b05 72
eaa59f08
IB
73#undef TARGET_D_MINFO_SECTION_END
74#define TARGET_D_MINFO_SECTION_END "*section$end$__DATA$__minfodata"
4dce3b05
IB
75
76struct gcc_targetdm targetdm = TARGETDM_INITIALIZER;