]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/darwin-c.c
Update copyright years.
[thirdparty/gcc.git] / gcc / config / darwin-c.c
CommitLineData
49f45d83 1/* Darwin support needed only by C/C++ frontends.
fbd26352 2 Copyright (C) 2001-2019 Free Software Foundation, Inc.
49f45d83 3 Contributed by Apple Computer Inc.
4
187b36cf 5This file is part of GCC.
49f45d83 6
187b36cf 7GCC is free software; you can redistribute it and/or modify
49f45d83 8it under the terms of the GNU General Public License as published by
038d1e19 9the Free Software Foundation; either version 3, or (at your option)
49f45d83 10any later version.
11
187b36cf 12GCC is distributed in the hope that it will be useful,
49f45d83 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
038d1e19 18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
49f45d83 20
21#include "config.h"
22#include "system.h"
805e22b2 23#include "coretypes.h"
ff6624bc 24#include "target.h"
c1eb80de 25#include "c-family/c-target.h"
26#include "c-family/c-target-def.h"
ad7b10a2 27#include "memmodel.h"
c1eb80de 28#include "tm_p.h"
29#include "cgraph.h"
39aecd3b 30#include "incpath.h"
7bedc3a0 31#include "c-family/c-pragma.h"
1f6616ee 32#include "c-family/c-format.h"
2288041e 33#include "cppdefault.h"
34#include "prefix.h"
55ce3e89 35#include "../../libcpp/internal.h"
49f45d83 36
37/* Pragmas. */
38
616e9486 39#define BAD(gmsgid) do { warning (OPT_Wpragmas, gmsgid); return; } while (0)
40#define BAD2(msgid, arg) do { warning (OPT_Wpragmas, msgid, arg); return; } while (0)
49f45d83 41
065e625b 42static bool using_frameworks = false;
43
d6c39c7a 44static const char *find_subframework_header (cpp_reader *pfile, const char *header,
45 cpp_dir **dirp);
49f45d83 46
47typedef struct align_stack
48{
49 int alignment;
50 struct align_stack * prev;
51} align_stack;
52
53static struct align_stack * field_align_stack = NULL;
54
b9fc964a 55/* Maintain a small stack of alignments. This is similar to pragma
56 pack's stack, but simpler. */
57
49f45d83 58static void
b40da9a7 59push_field_alignment (int bit_alignment)
49f45d83 60{
4c36ffe6 61 align_stack *entry = XNEW (align_stack);
49f45d83 62
63 entry->alignment = maximum_field_alignment;
64 entry->prev = field_align_stack;
65 field_align_stack = entry;
66
67 maximum_field_alignment = bit_alignment;
68}
69
70static void
b40da9a7 71pop_field_alignment (void)
49f45d83 72{
73 if (field_align_stack)
74 {
75 align_stack *entry = field_align_stack;
76
77 maximum_field_alignment = entry->alignment;
78 field_align_stack = entry->prev;
79 free (entry);
80 }
81 else
82 error ("too many #pragma options align=reset");
83}
84
85/* Handlers for Darwin-specific pragmas. */
86
87void
b40da9a7 88darwin_pragma_ignore (cpp_reader *pfile ATTRIBUTE_UNUSED)
49f45d83 89{
90 /* Do nothing. */
91}
92
93/* #pragma options align={mac68k|power|reset} */
94
95void
b40da9a7 96darwin_pragma_options (cpp_reader *pfile ATTRIBUTE_UNUSED)
49f45d83 97{
5352873f 98 const char *arg;
49f45d83 99 tree t, x;
100
b5d533bb 101 if (pragma_lex (&t) != CPP_NAME)
49f45d83 102 BAD ("malformed '#pragma options', ignoring");
103 arg = IDENTIFIER_POINTER (t);
104 if (strcmp (arg, "align"))
105 BAD ("malformed '#pragma options', ignoring");
b5d533bb 106 if (pragma_lex (&t) != CPP_EQ)
49f45d83 107 BAD ("malformed '#pragma options', ignoring");
b5d533bb 108 if (pragma_lex (&t) != CPP_NAME)
49f45d83 109 BAD ("malformed '#pragma options', ignoring");
110
b5d533bb 111 if (pragma_lex (&x) != CPP_EOF)
b8775b1a 112 warning (OPT_Wpragmas, "junk at end of '#pragma options'");
49f45d83 113
114 arg = IDENTIFIER_POINTER (t);
115 if (!strcmp (arg, "mac68k"))
116 push_field_alignment (16);
117 else if (!strcmp (arg, "power"))
118 push_field_alignment (0);
119 else if (!strcmp (arg, "reset"))
120 pop_field_alignment ();
121 else
c1fe988d 122 BAD ("malformed '#pragma options align={mac68k|power|reset}', ignoring");
49f45d83 123}
124
125/* #pragma unused ([var {, var}*]) */
126
127void
b40da9a7 128darwin_pragma_unused (cpp_reader *pfile ATTRIBUTE_UNUSED)
49f45d83 129{
130 tree decl, x;
131 int tok;
132
b5d533bb 133 if (pragma_lex (&x) != CPP_OPEN_PAREN)
49f45d83 134 BAD ("missing '(' after '#pragma unused', ignoring");
135
136 while (1)
137 {
b5d533bb 138 tok = pragma_lex (&decl);
49f45d83 139 if (tok == CPP_NAME && decl)
140 {
d1c41717 141 tree local = lookup_name (decl);
49f45d83 142 if (local && (TREE_CODE (local) == PARM_DECL
143 || TREE_CODE (local) == VAR_DECL))
3fdda2e9 144 {
145 TREE_USED (local) = 1;
146 DECL_READ_P (local) = 1;
147 }
b5d533bb 148 tok = pragma_lex (&x);
49f45d83 149 if (tok != CPP_COMMA)
150 break;
151 }
152 }
153
154 if (tok != CPP_CLOSE_PAREN)
155 BAD ("missing ')' after '#pragma unused', ignoring");
156
b5d533bb 157 if (pragma_lex (&x) != CPP_EOF)
c1fe988d 158 BAD ("junk at end of '#pragma unused'");
49f45d83 159}
065e625b 160
f5c68723 161/* Parse the ms_struct pragma. */
162void
163darwin_pragma_ms_struct (cpp_reader *pfile ATTRIBUTE_UNUSED)
164{
165 const char *arg;
166 tree t;
167
168 if (pragma_lex (&t) != CPP_NAME)
169 BAD ("malformed '#pragma ms_struct', ignoring");
170 arg = IDENTIFIER_POINTER (t);
171
172 if (!strcmp (arg, "on"))
173 darwin_ms_struct = true;
174 else if (!strcmp (arg, "off") || !strcmp (arg, "reset"))
175 darwin_ms_struct = false;
176 else
c1fe988d 177 BAD ("malformed '#pragma ms_struct {on|off|reset}', ignoring");
f5c68723 178
179 if (pragma_lex (&t) != CPP_EOF)
c1fe988d 180 BAD ("junk at end of '#pragma ms_struct'");
f5c68723 181}
182
225ab426 183static struct frameworks_in_use {
065e625b 184 size_t len;
185 const char *name;
186 cpp_dir* dir;
187} *frameworks_in_use;
188static int num_frameworks = 0;
189static int max_frameworks = 0;
190
191
192/* Remember which frameworks have been seen, so that we can ensure
193 that all uses of that framework come from the same framework. DIR
194 is the place where the named framework NAME, which is of length
d6c39c7a 195 LEN, was found. We copy the directory name from NAME, as it will be
196 freed by others. */
065e625b 197
198static void
199add_framework (const char *name, size_t len, cpp_dir *dir)
200{
d6c39c7a 201 char *dir_name;
065e625b 202 int i;
203 for (i = 0; i < num_frameworks; ++i)
204 {
205 if (len == frameworks_in_use[i].len
206 && strncmp (name, frameworks_in_use[i].name, len) == 0)
207 {
208 return;
209 }
210 }
211 if (i >= max_frameworks)
212 {
213 max_frameworks = i*2;
d6c39c7a 214 max_frameworks += i == 0;
225ab426 215 frameworks_in_use = XRESIZEVEC (struct frameworks_in_use,
216 frameworks_in_use, max_frameworks);
065e625b 217 }
4c36ffe6 218 dir_name = XNEWVEC (char, len + 1);
d6c39c7a 219 memcpy (dir_name, name, len);
220 dir_name[len] = '\0';
221 frameworks_in_use[num_frameworks].name = dir_name;
065e625b 222 frameworks_in_use[num_frameworks].len = len;
223 frameworks_in_use[num_frameworks].dir = dir;
224 ++num_frameworks;
225}
226
227/* Recall if we have seen the named framework NAME, before, and where
228 we saw it. NAME is LEN bytes long. The return value is the place
229 where it was seen before. */
230
231static struct cpp_dir*
232find_framework (const char *name, size_t len)
233{
234 int i;
235 for (i = 0; i < num_frameworks; ++i)
236 {
237 if (len == frameworks_in_use[i].len
238 && strncmp (name, frameworks_in_use[i].name, len) == 0)
239 {
240 return frameworks_in_use[i].dir;
241 }
242 }
243 return 0;
244}
245
246/* There are two directories in a framework that contain header files,
247 Headers and PrivateHeaders. We search Headers first as it is more
248 common to upgrade a header from PrivateHeaders to Headers and when
249 that is done, the old one might hang around and be out of data,
250 causing grief. */
251
252struct framework_header {const char * dirName; int dirNameLen; };
253static struct framework_header framework_header_dirs[] = {
254 { "Headers", 7 },
255 { "PrivateHeaders", 14 },
256 { NULL, 0 }
257};
258
259/* Returns a pointer to a malloced string that contains the real pathname
260 to the file, given the base name and the name. */
261
262static char *
263framework_construct_pathname (const char *fname, cpp_dir *dir)
264{
a115dd2c 265 const char *buf;
065e625b 266 size_t fname_len, frname_len;
267 cpp_dir *fast_dir;
268 char *frname;
269 struct stat st;
270 int i;
271
272 /* Framework names must have a / in them. */
273 buf = strchr (fname, '/');
274 if (buf)
275 fname_len = buf - fname;
276 else
277 return 0;
278
279 fast_dir = find_framework (fname, fname_len);
280
281 /* Framework includes must all come from one framework. */
282 if (fast_dir && dir != fast_dir)
283 return 0;
284
4c36ffe6 285 frname = XNEWVEC (char, strlen (fname) + dir->len + 2
065e625b 286 + strlen(".framework/") + strlen("PrivateHeaders"));
6316a88b 287 memcpy (&frname[0], dir->name, dir->len);
065e625b 288 frname_len = dir->len;
289 if (frname_len && frname[frname_len-1] != '/')
290 frname[frname_len++] = '/';
6316a88b 291 memcpy (&frname[frname_len], fname, fname_len);
065e625b 292 frname_len += fname_len;
6316a88b 293 memcpy (&frname[frname_len], ".framework/", strlen (".framework/"));
065e625b 294 frname_len += strlen (".framework/");
295
9ee94b75 296 if (fast_dir == 0)
297 {
298 frname[frname_len-1] = 0;
299 if (stat (frname, &st) == 0)
300 {
301 /* As soon as we find the first instance of the framework,
302 we stop and never use any later instance of that
303 framework. */
304 add_framework (fname, fname_len, dir);
305 }
306 else
307 {
308 /* If we can't find the parent directory, no point looking
309 further. */
310 free (frname);
311 return 0;
312 }
313 frname[frname_len-1] = '/';
314 }
315
065e625b 316 /* Append framework_header_dirs and header file name */
317 for (i = 0; framework_header_dirs[i].dirName; i++)
318 {
6316a88b 319 memcpy (&frname[frname_len],
065e625b 320 framework_header_dirs[i].dirName,
321 framework_header_dirs[i].dirNameLen);
322 strcpy (&frname[frname_len + framework_header_dirs[i].dirNameLen],
323 &fname[fname_len]);
324
325 if (stat (frname, &st) == 0)
9ee94b75 326 return frname;
065e625b 327 }
328
329 free (frname);
330 return 0;
331}
332
333/* Search for FNAME in sub-frameworks. pname is the context that we
334 wish to search in. Return the path the file was found at,
335 otherwise return 0. */
336
337static const char*
338find_subframework_file (const char *fname, const char *pname)
339{
340 char *sfrname;
341 const char *dot_framework = ".framework/";
a115dd2c 342 const char *bufptr;
f5c68723 343 int sfrname_len, i, fname_len;
065e625b 344 struct cpp_dir *fast_dir;
345 static struct cpp_dir subframe_dir;
346 struct stat st;
347
348 bufptr = strchr (fname, '/');
349
350 /* Subframework files must have / in the name. */
351 if (bufptr == 0)
352 return 0;
f5c68723 353
065e625b 354 fname_len = bufptr - fname;
355 fast_dir = find_framework (fname, fname_len);
356
357 /* Sub framework header filename includes parent framework name and
358 header name in the "CarbonCore/OSUtils.h" form. If it does not
359 include slash it is not a sub framework include. */
360 bufptr = strstr (pname, dot_framework);
361
362 /* If the parent header is not of any framework, then this header
33f88b1c 363 cannot be part of any subframework. */
065e625b 364 if (!bufptr)
365 return 0;
366
367 /* Now translate. For example, +- bufptr
f5c68723 368 fname = CarbonCore/OSUtils.h |
065e625b 369 pname = /System/Library/Frameworks/Foundation.framework/Headers/Foundation.h
370 into
371 sfrname = /System/Library/Frameworks/Foundation.framework/Frameworks/CarbonCore.framework/Headers/OSUtils.h */
372
4c36ffe6 373 sfrname = XNEWVEC (char, strlen (pname) + strlen (fname) + 2 +
065e625b 374 strlen ("Frameworks/") + strlen (".framework/")
375 + strlen ("PrivateHeaders"));
f5c68723 376
065e625b 377 bufptr += strlen (dot_framework);
378
f5c68723 379 sfrname_len = bufptr - pname;
065e625b 380
6316a88b 381 memcpy (&sfrname[0], pname, sfrname_len);
065e625b 382
6316a88b 383 memcpy (&sfrname[sfrname_len], "Frameworks/", strlen ("Frameworks/"));
065e625b 384 sfrname_len += strlen("Frameworks/");
385
6316a88b 386 memcpy (&sfrname[sfrname_len], fname, fname_len);
065e625b 387 sfrname_len += fname_len;
388
6316a88b 389 memcpy (&sfrname[sfrname_len], ".framework/", strlen (".framework/"));
065e625b 390 sfrname_len += strlen (".framework/");
391
392 /* Append framework_header_dirs and header file name */
393 for (i = 0; framework_header_dirs[i].dirName; i++)
394 {
6316a88b 395 memcpy (&sfrname[sfrname_len],
396 framework_header_dirs[i].dirName,
397 framework_header_dirs[i].dirNameLen);
065e625b 398 strcpy (&sfrname[sfrname_len + framework_header_dirs[i].dirNameLen],
399 &fname[fname_len]);
f5c68723 400
065e625b 401 if (stat (sfrname, &st) == 0)
402 {
403 if (fast_dir != &subframe_dir)
404 {
405 if (fast_dir)
c3ceba8e 406 warning (0, "subframework include %s conflicts with framework include",
065e625b 407 fname);
408 else
409 add_framework (fname, fname_len, &subframe_dir);
410 }
411
412 return sfrname;
413 }
414 }
415 free (sfrname);
416
417 return 0;
418}
419
420/* Add PATH to the system includes. PATH must be malloc-ed and
421 NUL-terminated. System framework paths are C++ aware. */
422
423static void
424add_system_framework_path (char *path)
425{
426 int cxx_aware = 1;
427 cpp_dir *p;
428
4c36ffe6 429 p = XNEW (cpp_dir);
065e625b 430 p->next = NULL;
431 p->name = path;
432 p->sysp = 1 + !cxx_aware;
433 p->construct = framework_construct_pathname;
434 using_frameworks = 1;
435
299a080a 436 add_cpp_dir_path (p, INC_SYSTEM);
065e625b 437}
438
439/* Add PATH to the bracket includes. PATH must be malloc-ed and
440 NUL-terminated. */
441
442void
443add_framework_path (char *path)
444{
445 cpp_dir *p;
446
4c36ffe6 447 p = XNEW (cpp_dir);
065e625b 448 p->next = NULL;
449 p->name = path;
450 p->sysp = 0;
451 p->construct = framework_construct_pathname;
452 using_frameworks = 1;
453
299a080a 454 add_cpp_dir_path (p, INC_BRACKET);
065e625b 455}
456
f5c68723 457static const char *framework_defaults [] =
065e625b 458 {
459 "/System/Library/Frameworks",
460 "/Library/Frameworks",
065e625b 461 };
462
2288041e 463/* Register the GNU objective-C runtime include path if STDINC. */
464
465void
466darwin_register_objc_includes (const char *sysroot, const char *iprefix,
467 int stdinc)
468{
469 const char *fname;
470 size_t len;
471 /* We do not do anything if we do not want the standard includes. */
472 if (!stdinc)
473 return;
f5c68723 474
2288041e 475 fname = GCC_INCLUDE_DIR "-gnu-runtime";
f5c68723 476
2288041e 477 /* Register the GNU OBJC runtime include path if we are compiling OBJC
478 with GNU-runtime. */
479
480 if (c_dialect_objc () && !flag_next_runtime)
481 {
482 char *str;
483 /* See if our directory starts with the standard prefix.
a361b456 484 "Translate" them, i.e. replace /usr/local/lib/gcc... with
2288041e 485 IPREFIX and search them first. */
486 if (iprefix && (len = cpp_GCC_INCLUDE_DIR_len) != 0 && !sysroot
487 && !strncmp (fname, cpp_GCC_INCLUDE_DIR, len))
488 {
489 str = concat (iprefix, fname + len, NULL);
490 /* FIXME: wrap the headers for C++awareness. */
299a080a 491 add_path (str, INC_SYSTEM, /*c++aware=*/false, false);
2288041e 492 }
f5c68723 493
2288041e 494 /* Should this directory start with the sysroot? */
495 if (sysroot)
496 str = concat (sysroot, fname, NULL);
497 else
498 str = update_path (fname, "");
f5c68723 499
299a080a 500 add_path (str, INC_SYSTEM, /*c++aware=*/false, false);
2288041e 501 }
502}
503
065e625b 504
505/* Register all the system framework paths if STDINC is true and setup
506 the missing_header callback for subframework searching if any
507 frameworks had been registered. */
508
509void
70593ce1 510darwin_register_frameworks (const char *sysroot,
2288041e 511 const char *iprefix ATTRIBUTE_UNUSED, int stdinc)
065e625b 512{
513 if (stdinc)
514 {
515 size_t i;
516
517 /* Setup default search path for frameworks. */
518 for (i=0; i<sizeof (framework_defaults)/sizeof(const char *); ++i)
519 {
70593ce1 520 char *str;
521 if (sysroot)
522 str = concat (sysroot, xstrdup (framework_defaults [i]), NULL);
523 else
524 str = xstrdup (framework_defaults[i]);
065e625b 525 /* System Framework headers are cxx aware. */
70593ce1 526 add_system_framework_path (str);
065e625b 527 }
528 }
529
530 if (using_frameworks)
531 cpp_get_callbacks (parse_in)->missing_header = find_subframework_header;
532}
533
534/* Search for HEADER in context dependent way. The return value is
535 the malloced name of a header to try and open, if any, or NULL
536 otherwise. This is called after normal header lookup processing
537 fails to find a header. We search each file in the include stack,
538 using FUNC, starting from the most deeply nested include and
539 finishing with the main input file. We stop searching when FUNC
183f1993 540 returns nonzero. */
065e625b 541
542static const char*
d6c39c7a 543find_subframework_header (cpp_reader *pfile, const char *header, cpp_dir **dirp)
065e625b 544{
545 const char *fname = header;
546 struct cpp_buffer *b;
547 const char *n;
548
549 for (b = cpp_get_buffer (pfile);
550 b && cpp_get_file (b) && cpp_get_path (cpp_get_file (b));
551 b = cpp_get_prev (b))
552 {
553 n = find_subframework_file (fname, cpp_get_path (cpp_get_file (b)));
554 if (n)
d6c39c7a 555 {
556 /* Logically, the place where we found the subframework is
557 the place where we found the Framework that contains the
558 subframework. This is useful for tracking wether or not
559 we are in a system header. */
560 *dirp = cpp_get_dir (cpp_get_file (b));
561 return n;
562 }
065e625b 563 }
564
565 return 0;
566}
9b1f316f 567
598bdc16 568/* Given an OS X version VERSION_STR, return it as a statically-allocated array
569 of three integers. If VERSION_STR is invalid, return NULL.
570
571 VERSION_STR must consist of one, two, or three tokens, each separated by
572 a single period. Each token must contain only the characters '0' through
573 '9' and is converted to an equivalent non-negative decimal integer. Omitted
574 tokens become zeros. For example:
575
576 "10" becomes {10,0,0}
577 "10.10" becomes {10,10,0}
578 "10.10.1" becomes {10,10,1}
579 "10.000010.1" becomes {10,10,1}
580 "10.010.001" becomes {10,10,1}
581 "000010.10.00001" becomes {10,10,1}
582 ".9.1" is invalid
583 "10..9" is invalid
584 "10.10." is invalid */
585
586enum version_components { MAJOR, MINOR, TINY };
587
588static const unsigned long *
589parse_version (const char *version_str)
590{
591 size_t version_len;
592 char *end;
593 static unsigned long version_array[3];
594
595 version_len = strlen (version_str);
596 if (version_len < 1)
597 return NULL;
598
599 /* Version string must consist of digits and periods only. */
600 if (strspn (version_str, "0123456789.") != version_len)
601 return NULL;
602
603 if (!ISDIGIT (version_str[0]) || !ISDIGIT (version_str[version_len - 1]))
604 return NULL;
605
606 version_array[MAJOR] = strtoul (version_str, &end, 10);
607 version_str = end + ((*end == '.') ? 1 : 0);
608
609 /* Version string must not contain adjacent periods. */
610 if (*version_str == '.')
611 return NULL;
612
613 version_array[MINOR] = strtoul (version_str, &end, 10);
614 version_str = end + ((*end == '.') ? 1 : 0);
615
616 version_array[TINY] = strtoul (version_str, &end, 10);
617
618 /* Version string must contain no more than three tokens. */
619 if (*end != '\0')
620 return NULL;
621
622 return version_array;
623}
624
625/* Given VERSION -- a three-component OS X version represented as an array of
626 non-negative integers -- return a statically-allocated string suitable for
627 the legacy __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ macro. If VERSION
628 is invalid and cannot be coerced into a valid form, return NULL.
629
630 The legacy format is a four-character string -- two chars for the major
631 number and one each for the minor and tiny numbers. Minor and tiny numbers
632 from 10 through 99 are permitted but are clamped to 9 (for example, {10,9,10}
633 produces "1099"). If VERSION contains numbers greater than 99, it is
634 rejected. */
635
9b1f316f 636static const char *
598bdc16 637version_as_legacy_macro (const unsigned long *version)
9b1f316f 638{
598bdc16 639 unsigned long major, minor, tiny;
640 static char result[5];
641
642 major = version[MAJOR];
643 minor = version[MINOR];
644 tiny = version[TINY];
645
646 if (major > 99 || minor > 99 || tiny > 99)
647 return NULL;
648
649 minor = ((minor > 9) ? 9 : minor);
650 tiny = ((tiny > 9) ? 9 : tiny);
651
652 if (sprintf (result, "%lu%lu%lu", major, minor, tiny) != 4)
653 return NULL;
654
655 return result;
656}
f5c68723 657
598bdc16 658/* Given VERSION -- a three-component OS X version represented as an array of
659 non-negative integers -- return a statically-allocated string suitable for
660 the modern __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ macro. If VERSION
661 is invalid, return NULL.
662
663 The modern format is a six-character string -- two chars for each component,
664 with zero-padding if necessary (for example, {10,10,1} produces "101001"). If
665 VERSION contains numbers greater than 99, it is rejected. */
666
667static const char *
668version_as_modern_macro (const unsigned long *version)
669{
670 unsigned long major, minor, tiny;
671 static char result[7];
672
673 major = version[MAJOR];
674 minor = version[MINOR];
675 tiny = version[TINY];
676
677 if (major > 99 || minor > 99 || tiny > 99)
678 return NULL;
679
680 if (sprintf (result, "%02lu%02lu%02lu", major, minor, tiny) != 6)
681 return NULL;
682
683 return result;
684}
685
686/* Return the value of darwin_macosx_version_min, suitably formatted for the
687 __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ macro. Values representing
688 OS X 10.9 and earlier are encoded using the legacy four-character format,
689 while 10.10 and later use a modern six-character format. (For example,
690 "10.9" produces "1090", and "10.10.1" produces "101001".) If
691 darwin_macosx_version_min is invalid and cannot be coerced into a valid
692 form, print a warning and return "1000". */
693
694static const char *
695macosx_version_as_macro (void)
696{
697 const unsigned long *version_array;
698 const char *version_macro;
699
700 version_array = parse_version (darwin_macosx_version_min);
701 if (!version_array)
9b1f316f 702 goto fail;
598bdc16 703
704 if (version_array[MAJOR] != 10)
9b1f316f 705 goto fail;
88df51ff 706
598bdc16 707 if (version_array[MINOR] < 10)
708 version_macro = version_as_legacy_macro (version_array);
709 else
710 version_macro = version_as_modern_macro (version_array);
711
712 if (!version_macro)
a9540fb6 713 goto fail;
f5c68723 714
598bdc16 715 return version_macro;
f5c68723 716
9b1f316f 717 fail:
bf776685 718 error ("unknown value %qs of -mmacosx-version-min",
598bdc16 719 darwin_macosx_version_min);
9b1f316f 720 return "1000";
721}
722
723/* Define additional CPP flags for Darwin. */
724
725#define builtin_define(TXT) cpp_define (pfile, TXT)
726
727void
728darwin_cpp_builtins (cpp_reader *pfile)
729{
730 builtin_define ("__MACH__");
731 builtin_define ("__APPLE__");
732
733 /* __APPLE_CC__ is defined as some old Apple include files expect it
734 to be defined and won't work if it isn't. */
735 builtin_define_with_value ("__APPLE_CC__", "1", false);
736
d4238e8b 737 if (darwin_constant_cfstrings)
738 builtin_define ("__CONSTANT_CFSTRINGS__");
739
7f1f8831 740 builtin_define_with_value ("__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__",
598bdc16 741 macosx_version_as_macro(), false);
bdf062ba 742
743 /* Since we do not (at 4.6) support ObjC gc for the NeXT runtime, the
744 following will cause a syntax error if one tries to compile gc attributed
745 items. However, without this, NeXT system headers cannot be parsed
746 properly (on systems >= darwin 9). */
747 if (flag_objc_gc)
748 {
749 builtin_define ("__strong=__attribute__((objc_gc(strong)))");
750 builtin_define ("__weak=__attribute__((objc_gc(weak)))");
751 builtin_define ("__OBJC_GC__");
752 }
753 else
754 {
755 builtin_define ("__strong=");
756 builtin_define ("__weak=");
757 }
267785bc 758
55ce3e89 759 if (CPP_OPTION (pfile, objc) && flag_objc_abi == 2)
267785bc 760 builtin_define ("__OBJC2__");
9b1f316f 761}
b9fc964a 762
763/* Handle C family front-end options. */
764
765static bool
766handle_c_option (size_t code,
767 const char *arg,
768 int value ATTRIBUTE_UNUSED)
769{
770 switch (code)
771 {
772 default:
773 /* Unrecognized options that we said we'd handle turn into
774 errors if not listed here. */
775 return false;
776
777 case OPT_iframework:
778 add_system_framework_path (xstrdup (arg));
779 break;
2775d4b5 780
781 case OPT_fapple_kext:
782 ;
b9fc964a 783 }
784
785 /* We recognized the option. */
786 return true;
787}
788
d4238e8b 789/* Allow ObjC* access to CFStrings. */
c94b1d0e 790static tree
d4238e8b 791darwin_objc_construct_string (tree str)
792{
793 if (!darwin_constant_cfstrings)
794 {
795 /* Even though we are not using CFStrings, place our literal
796 into the cfstring_htab hash table, so that the
797 darwin_constant_cfstring_p() function will see it. */
798 darwin_enter_string_into_cfstring_table (str);
799 /* Fall back to NSConstantString. */
800 return NULL_TREE;
801 }
802
803 return darwin_build_constant_cfstring (str);
804}
1f6616ee 805
806/* The string ref type is created as CFStringRef by <CFBase.h> therefore, we
807 must match for it explicitly, since it's outside the gcc code. */
808
c94b1d0e 809static bool
1f6616ee 810darwin_cfstring_ref_p (const_tree strp)
811{
812 tree tn;
813 if (!strp || TREE_CODE (strp) != POINTER_TYPE)
814 return false;
815
816 tn = TYPE_NAME (strp);
817 if (tn)
818 tn = DECL_NAME (tn);
819 return (tn
820 && IDENTIFIER_POINTER (tn)
821 && !strncmp (IDENTIFIER_POINTER (tn), "CFStringRef", 8));
822}
823
824/* At present the behavior of this is undefined and it does nothing. */
c94b1d0e 825static void
1f6616ee 826darwin_check_cfstring_format_arg (tree ARG_UNUSED (format_arg),
827 tree ARG_UNUSED (args_list))
828{
829}
830
831/* The extra format types we recognize. */
84dffee2 832EXPORTED_CONST format_kind_info darwin_additional_format_types[] = {
1f6616ee 833 { "CFString", NULL, NULL, NULL, NULL,
834 NULL, NULL,
835 FMT_FLAG_ARG_CONVERT|FMT_FLAG_PARSE_ARG_CONVERT_EXTERNAL, 0, 0, 0, 0, 0, 0,
836 NULL, NULL
837 }
838};
c94b1d0e 839
ff6624bc 840
841/* Support routines to dump the class references for NeXT ABI v1, aka
842 32-bits ObjC-2.0, as top-level asms.
843 The following two functions should only be called from
844 objc/objc-next-runtime-abi-01.c. */
845
846static void
847darwin_objc_declare_unresolved_class_reference (const char *name)
848{
849 const char *lazy_reference = ".lazy_reference\t";
850 const char *hard_reference = ".reference\t";
851 const char *reference = MACHOPIC_INDIRECT ? lazy_reference : hard_reference;
852 size_t len = strlen (reference) + strlen(name) + 2;
853 char *buf = (char *) alloca (len);
854
855 gcc_checking_assert (!strncmp (name, ".objc_class_name_", 17));
856
857 snprintf (buf, len, "%s%s", reference, name);
35ee1c66 858 symtab->finalize_toplevel_asm (build_string (strlen (buf), buf));
ff6624bc 859}
860
861static void
862darwin_objc_declare_class_definition (const char *name)
863{
864 const char *xname = targetm.strip_name_encoding (name);
865 size_t len = strlen (xname) + 7 + 5;
866 char *buf = (char *) alloca (len);
867
868 gcc_checking_assert (!strncmp (name, ".objc_class_name_", 17)
869 || !strncmp (name, "*.objc_category_name_", 21));
870
871 /* Mimic default_globalize_label. */
872 snprintf (buf, len, ".globl\t%s", xname);
35ee1c66 873 symtab->finalize_toplevel_asm (build_string (strlen (buf), buf));
ff6624bc 874
875 snprintf (buf, len, "%s = 0", xname);
35ee1c66 876 symtab->finalize_toplevel_asm (build_string (strlen (buf), buf));
ff6624bc 877}
878
879#undef TARGET_HANDLE_C_OPTION
c94b1d0e 880#define TARGET_HANDLE_C_OPTION handle_c_option
881
ff6624bc 882#undef TARGET_OBJC_CONSTRUCT_STRING_OBJECT
c94b1d0e 883#define TARGET_OBJC_CONSTRUCT_STRING_OBJECT darwin_objc_construct_string
884
ff6624bc 885#undef TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE
886#define TARGET_OBJC_DECLARE_UNRESOLVED_CLASS_REFERENCE \
887 darwin_objc_declare_unresolved_class_reference
888
889#undef TARGET_OBJC_DECLARE_CLASS_DEFINITION
890#define TARGET_OBJC_DECLARE_CLASS_DEFINITION \
891 darwin_objc_declare_class_definition
892
893#undef TARGET_STRING_OBJECT_REF_TYPE_P
c94b1d0e 894#define TARGET_STRING_OBJECT_REF_TYPE_P darwin_cfstring_ref_p
895
896#undef TARGET_CHECK_STRING_OBJECT_FORMAT_ARG
897#define TARGET_CHECK_STRING_OBJECT_FORMAT_ARG darwin_check_cfstring_format_arg
898
899struct gcc_targetcm targetcm = TARGETCM_INITIALIZER;