config.gcc: Support --with-fpmath=avx for x86.
[gcc.git] / gcc / config / m32c / m32c-pragma.c
1 /* M32C Pragma support
2 Copyright (C) 2004, 2007 Free Software Foundation, Inc.
3 Contributed by Red Hat, Inc.
4
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 any later version.
11
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.
16
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/>. */
20
21 #include <stdio.h>
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "diagnostic-core.h"
28 #include "toplev.h"
29 #include "c-family/c-pragma.h"
30 #include "cpplib.h"
31 #include "hard-reg-set.h"
32 #include "output.h"
33 #include "m32c-protos.h"
34 #include "function.h"
35 #define MAX_RECOG_OPERANDS 10
36 #include "reload.h"
37 #include "target.h"
38
39 /* Implements the "GCC memregs" pragma. This pragma takes only an
40 integer, and is semantically identical to the -memregs= command
41 line option. The only catch is, the programmer should only use
42 this pragma at the beginning of the file (preferably, in some
43 project-wide header) to avoid ABI changes related to changing the
44 list of available "registers". */
45 static void
46 m32c_pragma_memregs (cpp_reader * reader ATTRIBUTE_UNUSED)
47 {
48 /* on off */
49 tree val;
50 enum cpp_ttype type;
51 HOST_WIDE_INT i;
52 static char new_number[3];
53
54 type = pragma_lex (&val);
55 if (type == CPP_NUMBER)
56 {
57 if (host_integerp (val, 1))
58 {
59 i = tree_low_cst (val, 1);
60
61 type = pragma_lex (&val);
62 if (type != CPP_EOF)
63 warning (0, "junk at end of #pragma GCC memregs [0..16]");
64
65 if (0 <= i && i <= 16)
66 {
67 if (!ok_to_change_target_memregs)
68 {
69 warning (0,
70 "#pragma GCC memregs must precede any function decls");
71 return;
72 }
73 new_number[0] = (i / 10) + '0';
74 new_number[1] = (i % 10) + '0';
75 new_number[2] = 0;
76 target_memregs = new_number;
77 m32c_conditional_register_usage ();
78 }
79 else
80 {
81 warning (0, "#pragma GCC memregs takes a number [0..16]");
82 }
83
84 return;
85 }
86 }
87
88 error ("#pragma GCC memregs takes a number [0..16]");
89 }
90
91 /* Implements the "pragma ADDRESS" pragma. This pragma takes a
92 variable name and an address, and arranges for that variable to be
93 "at" that address. The variable is also made volatile. */
94 static void
95 m32c_pragma_address (cpp_reader * reader ATTRIBUTE_UNUSED)
96 {
97 /* on off */
98 tree var, addr;
99 enum cpp_ttype type;
100 const char *var_str;
101
102 type = pragma_lex (&var);
103 if (type == CPP_NAME)
104 {
105 var_str = IDENTIFIER_POINTER (var);
106
107 type = pragma_lex (&addr);
108 if (type == CPP_NUMBER)
109 {
110 if (var != error_mark_node)
111 {
112 unsigned uaddr = tree_low_cst (addr, 1);
113 m32c_note_pragma_address (IDENTIFIER_POINTER (var), uaddr);
114 }
115
116 type = pragma_lex (&var);
117 if (type != CPP_EOF)
118 {
119 error ("junk at end of #pragma ADDRESS");
120 }
121 return;
122 }
123 }
124 error ("malformed #pragma ADDRESS variable address");
125 }
126
127 /* Implements REGISTER_TARGET_PRAGMAS. */
128 void
129 m32c_register_pragmas (void)
130 {
131 c_register_pragma ("GCC", "memregs", m32c_pragma_memregs);
132 c_register_pragma (NULL, "ADDRESS", m32c_pragma_address);
133 c_register_pragma (NULL, "address", m32c_pragma_address);
134
135 /* R8C and M16C have 16-bit pointers in a 20-bit address zpace.
136 M32C has 24-bit pointers in a 24-bit address space, so does not
137 need far pointers, but we accept the qualifier anyway, as a
138 no-op. */
139 if (TARGET_A16)
140 c_register_addr_space ("__far", ADDR_SPACE_FAR);
141 else
142 c_register_addr_space ("__far", ADDR_SPACE_GENERIC);
143 }