1 /* Handle #pragma, system V.4 style. Supports #pragma weak and #pragma pack.
2 Copyright (C) 1992 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
26 #ifdef HANDLE_SYSV_PRAGMA
28 /* Support #pragma weak by default if WEAK_ASM_OP and ASM_OUTPUT_DEF
30 #if !defined (HANDLE_PRAGMA_WEAK) && defined (WEAK_ASM_OP) && defined (ASM_OUTPUT_DEF)
31 #define HANDLE_PRAGMA_WEAK 1
34 /* See varasm.c for an identical definition. */
50 /* When structure field packing is in effect, this variable is the
51 number of bits to use as the maximum alignment. When packing is not
52 in effect, this is zero. */
54 extern int maximum_field_alignment
;
56 /* File used for outputting assembler code. */
57 extern FILE *asm_out_file
;
59 /* Handle one token of a pragma directive. TOKEN is the
60 current token, and STRING is its printable form. */
63 handle_pragma_token (string
, token
)
67 static enum pragma_state state
= ps_start
, type
;
76 if (state
== ps_right
)
77 maximum_field_alignment
= align
* 8;
79 warning ("malformed `#pragma pack'");
81 else if (type
== ps_weak
)
83 #ifdef HANDLE_PRAGMA_WEAK
84 if (HANDLE_PRAGMA_WEAK
)
85 handle_pragma_weak (state
, asm_out_file
, name
, value
);
87 #endif /* HANDLE_PRAMA_WEAK */
90 type
= state
= ps_start
;
97 if (token
&& TREE_CODE (token
) == IDENTIFIER_NODE
)
99 if (strcmp (IDENTIFIER_POINTER (token
), "pack") == 0)
100 type
= state
= ps_pack
;
101 else if (strcmp (IDENTIFIER_POINTER (token
), "weak") == 0)
102 type
= state
= ps_weak
;
104 type
= state
= ps_done
;
107 type
= state
= ps_done
;
111 if (token
&& TREE_CODE (token
) == IDENTIFIER_NODE
)
113 name
= IDENTIFIER_POINTER (token
);
121 state
= (strcmp (string
, "=") ? ps_bad
: ps_equals
);
125 if (token
&& TREE_CODE (token
) == IDENTIFIER_NODE
)
127 value
= IDENTIFIER_POINTER (token
);
139 if (strcmp (string
, "(") == 0)
146 if (token
&& TREE_CODE (token
) == INTEGER_CST
147 && TREE_INT_CST_HIGH (token
) == 0)
148 switch (TREE_INT_CST_LOW (token
))
153 align
= TREE_INT_CST_LOW (token
);
160 else if (! token
&& strcmp (string
, ")") == 0)
170 if (strcmp (string
, ")") == 0)
188 #endif /* HANDLE_SYSV_PRAGMA */