2 Copyright (C) 2004 Free Software Foundation, Inc.
3 Contributed by Red Hat, Inc.
5 This file is part of GCC.
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 2, or (at your option)
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.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
25 #include "coretypes.h"
32 #include "hard-reg-set.h"
34 #include "m32c-protos.h"
36 #define MAX_RECOG_OPERANDS 10
40 /* Implements the "GCC memregs" pragma. This pragma takes only an
41 integer, and is semantically identical to the -memregs= command
42 line option. The only catch is, the programmer should only use
43 this pragma at the beginning of the file (preferably, in some
44 project-wide header) to avoid ABI changes related to changing the
45 list of available "registers". */
47 m32c_pragma_memregs (cpp_reader
* reader ATTRIBUTE_UNUSED
)
53 static char new_number
[3];
55 type
= pragma_lex (&val
);
56 if (type
== CPP_NUMBER
)
58 if (host_integerp (val
, 1))
60 i
= tree_low_cst (val
, 1);
62 type
= pragma_lex (&val
);
64 warning (0, "junk at end of #pragma GCC memregs [0..16]");
66 if (0 <= i
&& i
<= 16)
68 if (!ok_to_change_target_memregs
)
71 "#pragma GCC memregs must precede any function decls");
74 new_number
[0] = (i
/ 10) + '0';
75 new_number
[1] = (i
% 10) + '0';
77 target_memregs
= new_number
;
78 m32c_conditional_register_usage ();
82 warning (0, "#pragma GCC memregs takes a number [0..16]");
89 error ("#pragma GCC memregs takes a number [0..16]");
92 /* Implements REGISTER_TARGET_PRAGMAS. */
94 m32c_register_pragmas (void)
96 c_register_pragma ("GCC", "memregs", m32c_pragma_memregs
);