PR rtl-optimization/26254
[official-gcc.git] / gcc / config / c4x / c4x-c.c
blobd0de53ae020997f709bac244dedb0ec83ff3f36c
1 /* Subroutines for the C front end on the TMS320C[34]x
2 Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
5 Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz)
6 and Herman Ten Brugge (Haj.Ten.Brugge@net.HCC.nl).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING. If not, write to
22 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
23 Boston, MA 02110-1301, USA. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
29 #include "tree.h"
30 #include "toplev.h"
31 #include "cpplib.h"
32 #include "c-pragma.h"
33 #include "tm_p.h"
35 static int c4x_parse_pragma (const char *, tree *, tree *);
37 /* Handle machine specific pragmas for compatibility with existing
38 compilers for the C3x/C4x.
40 pragma attribute
41 ----------------------------------------------------------
42 CODE_SECTION(symbol,"section") section("section")
43 DATA_SECTION(symbol,"section") section("section")
44 FUNC_CANNOT_INLINE(function)
45 FUNC_EXT_CALLED(function)
46 FUNC_IS_PURE(function) const
47 FUNC_IS_SYSTEM(function)
48 FUNC_NEVER_RETURNS(function) noreturn
49 FUNC_NO_GLOBAL_ASG(function)
50 FUNC_NO_IND_ASG(function)
51 INTERRUPT(function) interrupt
55 /* Parse a C4x pragma, of the form ( function [, "section"] ) \n.
56 FUNC is loaded with the IDENTIFIER_NODE of the function, SECT with
57 the STRING_CST node of the string. If SECT is null, then this
58 pragma doesn't take a section string. Returns 0 for a good pragma,
59 -1 for a malformed pragma. */
60 #define BAD(gmsgid, arg) \
61 do { warning (OPT_Wpragmas, gmsgid, arg); return -1; } while (0)
63 static int
64 c4x_parse_pragma (name, func, sect)
65 const char *name;
66 tree *func;
67 tree *sect;
69 tree f, s, x;
71 if (pragma_lex (&x) != CPP_OPEN_PAREN)
72 BAD ("missing '(' after '#pragma %s' - ignored", name);
74 if (pragma_lex (&f) != CPP_NAME)
75 BAD ("missing function name in '#pragma %s' - ignored", name);
77 if (sect)
79 if (pragma_lex (&x) != CPP_COMMA)
80 BAD ("malformed '#pragma %s' - ignored", name);
81 if (pragma_lex (&s) != CPP_STRING)
82 BAD ("missing section name in '#pragma %s' - ignored", name);
83 *sect = s;
86 if (pragma_lex (&x) != CPP_CLOSE_PAREN)
87 BAD ("missing ')' for '#pragma %s' - ignored", name);
89 if (pragma_lex (&x) != CPP_EOF)
90 warning (OPT_Wpragmas, "junk at end of '#pragma %s'", name);
92 *func = f;
93 return 0;
96 void
97 c4x_pr_CODE_SECTION (pfile)
98 cpp_reader *pfile ATTRIBUTE_UNUSED;
100 tree func, sect;
102 if (c4x_parse_pragma ("CODE_SECTION", &func, &sect))
103 return;
104 code_tree = chainon (code_tree,
105 build_tree_list (func,
106 build_tree_list (NULL_TREE, sect)));
109 void
110 c4x_pr_DATA_SECTION (pfile)
111 cpp_reader *pfile ATTRIBUTE_UNUSED;
113 tree func, sect;
115 if (c4x_parse_pragma ("DATA_SECTION", &func, &sect))
116 return;
117 data_tree = chainon (data_tree,
118 build_tree_list (func,
119 build_tree_list (NULL_TREE, sect)));
122 void
123 c4x_pr_FUNC_IS_PURE (pfile)
124 cpp_reader *pfile ATTRIBUTE_UNUSED;
126 tree func;
128 if (c4x_parse_pragma ("FUNC_IS_PURE", &func, 0))
129 return;
130 pure_tree = chainon (pure_tree, build_tree_list (func, NULL_TREE));
133 void
134 c4x_pr_FUNC_NEVER_RETURNS (pfile)
135 cpp_reader *pfile ATTRIBUTE_UNUSED;
137 tree func;
139 if (c4x_parse_pragma ("FUNC_NEVER_RETURNS", &func, 0))
140 return;
141 noreturn_tree = chainon (noreturn_tree, build_tree_list (func, NULL_TREE));
144 void
145 c4x_pr_INTERRUPT (pfile)
146 cpp_reader *pfile ATTRIBUTE_UNUSED;
148 tree func;
150 if (c4x_parse_pragma ("INTERRUPT", &func, 0))
151 return;
152 interrupt_tree = chainon (interrupt_tree, build_tree_list (func, NULL_TREE));
155 /* Used for FUNC_CANNOT_INLINE, FUNC_EXT_CALLED, FUNC_IS_SYSTEM,
156 FUNC_NO_GLOBAL_ASG, and FUNC_NO_IND_ASG. */
157 void
158 c4x_pr_ignored (pfile)
159 cpp_reader *pfile ATTRIBUTE_UNUSED;