1 /* Allocate and read RTL for GNU C Compiler.
2 Copyright (C) 1987, 1988, 1991, 1994, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC 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 GNU CC 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 GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
33 #define obstack_chunk_alloc xmalloc
34 #define obstack_chunk_free free
37 /* Calculate the format for CONST_DOUBLE. This depends on the relative
38 widths of HOST_WIDE_INT and REAL_VALUE_TYPE.
40 We need to go out to e0wwwww, since REAL_ARITHMETIC assumes 16-bits
41 per element in REAL_VALUE_TYPE.
43 This is duplicated in gengenrtl.c.
45 A number of places assume that there are always at least two 'w'
46 slots in a CONST_DOUBLE, so we provide them even if one would suffice. */
48 #ifdef REAL_ARITHMETIC
49 # if MAX_LONG_DOUBLE_TYPE_SIZE == 96
51 (11*8 + HOST_BITS_PER_WIDE_INT)/HOST_BITS_PER_WIDE_INT
53 # if MAX_LONG_DOUBLE_TYPE_SIZE == 128
55 (19*8 + HOST_BITS_PER_WIDE_INT)/HOST_BITS_PER_WIDE_INT
57 # if HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
59 (7*8 + HOST_BITS_PER_WIDE_INT)/HOST_BITS_PER_WIDE_INT
63 #endif /* REAL_ARITHMETIC */
66 # if HOST_BITS_PER_WIDE_INT*2 >= MAX_LONG_DOUBLE_TYPE_SIZE
69 # if HOST_BITS_PER_WIDE_INT*3 >= MAX_LONG_DOUBLE_TYPE_SIZE
72 # if HOST_BITS_PER_WIDE_INT*4 >= MAX_LONG_DOUBLE_TYPE_SIZE
77 #endif /* REAL_WIDTH */
80 # define CONST_DOUBLE_FORMAT "e0ww"
83 # define CONST_DOUBLE_FORMAT "e0ww"
86 # define CONST_DOUBLE_FORMAT "e0www"
89 # define CONST_DOUBLE_FORMAT "e0wwww"
92 # define CONST_DOUBLE_FORMAT "e0wwwww"
94 # define CONST_DOUBLE_FORMAT /* nothing - will cause syntax error */
101 /* Indexed by rtx code, gives number of operands for an rtx with that code.
102 Does NOT include rtx header data (code and links). */
104 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) sizeof FORMAT - 1 ,
106 const int rtx_length
[NUM_RTX_CODE
+ 1] = {
112 /* Indexed by rtx code, gives the name of that kind of rtx, as a C string. */
114 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) NAME ,
116 const char * const rtx_name
[] = {
117 #include "rtl.def" /* rtl expressions are documented here */
122 /* Indexed by machine mode, gives the name of that machine mode.
123 This name does not include the letters "mode". */
125 #define DEF_MACHMODE(SYM, NAME, CLASS, BITSIZE, SIZE, UNIT, WIDER) NAME,
127 const char * const mode_name
[(int) MAX_MACHINE_MODE
+ 1] = {
128 #include "machmode.def"
129 /* Add an extra field to avoid a core dump if someone tries to convert
130 MAX_MACHINE_MODE to a string. */
136 /* Indexed by machine mode, gives the class mode for GET_MODE_CLASS. */
138 #define DEF_MACHMODE(SYM, NAME, CLASS, BITSIZE, SIZE, UNIT, WIDER) CLASS,
140 const enum mode_class mode_class
[(int) MAX_MACHINE_MODE
] = {
141 #include "machmode.def"
146 /* Indexed by machine mode, gives the length of the mode, in bits.
147 GET_MODE_BITSIZE uses this. */
149 #define DEF_MACHMODE(SYM, NAME, CLASS, BITSIZE, SIZE, UNIT, WIDER) BITSIZE,
151 const unsigned int mode_bitsize
[(int) MAX_MACHINE_MODE
] = {
152 #include "machmode.def"
157 /* Indexed by machine mode, gives the length of the mode, in bytes.
158 GET_MODE_SIZE uses this. */
160 #define DEF_MACHMODE(SYM, NAME, CLASS, BITSIZE, SIZE, UNIT, WIDER) SIZE,
162 const unsigned int mode_size
[(int) MAX_MACHINE_MODE
] = {
163 #include "machmode.def"
168 /* Indexed by machine mode, gives the length of the mode's subunit.
169 GET_MODE_UNIT_SIZE uses this. */
171 #define DEF_MACHMODE(SYM, NAME, CLASS, BITSIZE, SIZE, UNIT, WIDER) UNIT,
173 const unsigned int mode_unit_size
[(int) MAX_MACHINE_MODE
] = {
174 #include "machmode.def" /* machine modes are documented here */
179 /* Indexed by machine mode, gives next wider natural mode
180 (QI -> HI -> SI -> DI, etc.) Widening multiply instructions
183 #define DEF_MACHMODE(SYM, NAME, CLASS, BITSIZE, SIZE, UNIT, WIDER) \
184 (unsigned char) WIDER,
186 const unsigned char mode_wider_mode
[(int) MAX_MACHINE_MODE
] = {
187 #include "machmode.def" /* machine modes are documented here */
192 #define DEF_MACHMODE(SYM, NAME, CLASS, BITSIZE, SIZE, UNIT, WIDER) \
193 ((BITSIZE) >= HOST_BITS_PER_WIDE_INT) ? ~(unsigned HOST_WIDE_INT)0 : ((unsigned HOST_WIDE_INT) 1 << (BITSIZE)) - 1,
195 /* Indexed by machine mode, gives mask of significant bits in mode. */
197 const unsigned HOST_WIDE_INT mode_mask_array
[(int) MAX_MACHINE_MODE
] = {
198 #include "machmode.def"
201 /* Indexed by mode class, gives the narrowest mode for each class.
202 The Q modes are always of width 1 (2 for complex) - it is impossible
203 for any mode to be narrower.
205 Note that we use QImode instead of BImode for MODE_INT, since
206 otherwise the middle end will try to use it for bitfields in
207 structures and the like, which we do not want. Only the target
208 md file should generate BImode widgets. */
210 const enum machine_mode class_narrowest_mode
[(int) MAX_MODE_CLASS
] = {
211 /* MODE_RANDOM */ VOIDmode
,
212 /* MODE_INT */ QImode
,
213 /* MODE_FLOAT */ QFmode
,
214 /* MODE_PARTIAL_INT */ PQImode
,
215 /* MODE_CC */ CCmode
,
216 /* MODE_COMPLEX_INT */ CQImode
,
217 /* MODE_COMPLEX_FLOAT */ QCmode
,
218 /* MODE_VECTOR_INT */ V2QImode
,
219 /* MODE_VECTOR_FLOAT */ V2SFmode
223 /* Indexed by rtx code, gives a sequence of operand-types for
224 rtx's of that code. The sequence is a C string in which
225 each character describes one operand. */
227 const char * const rtx_format
[] = {
229 can cause a warning message
230 "0" field is unused (or used in a phase-dependent manner)
234 "n" like "i", but prints entries from `note_insn_name'
235 "w" an integer of width HOST_BITS_PER_WIDE_INT
237 "s" a pointer to a string
239 "S" like "s", but optional:
240 the containing rtx may end before this operand
241 "e" a pointer to an rtl expression
242 prints the expression
243 "E" a pointer to a vector that points to a number of rtl expressions
244 prints a list of the rtl expressions
245 "V" like "E", but optional:
246 the containing rtx may end before this operand
247 "u" a pointer to another insn
248 prints the uid of the insn.
249 "b" is a pointer to a bitmap header.
250 "t" is a tree pointer. */
252 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) FORMAT ,
253 #include "rtl.def" /* rtl expressions are defined here */
257 /* Indexed by rtx code, gives a character representing the "class" of
258 that rtx code. See rtl.def for documentation on the defined classes. */
260 const char rtx_class
[] = {
261 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) CLASS,
262 #include "rtl.def" /* rtl expressions are defined here */
266 /* Names for kinds of NOTEs and REG_NOTEs. */
268 const char * const note_insn_name
[NOTE_INSN_MAX
- NOTE_INSN_BIAS
] =
270 "", "NOTE_INSN_DELETED",
271 "NOTE_INSN_BLOCK_BEG", "NOTE_INSN_BLOCK_END",
272 "NOTE_INSN_LOOP_BEG", "NOTE_INSN_LOOP_END",
273 "NOTE_INSN_LOOP_CONT", "NOTE_INSN_LOOP_VTOP",
274 "NOTE_INSN_FUNCTION_END", "NOTE_INSN_SETJMP",
275 "NOTE_INSN_PROLOGUE_END", "NOTE_INSN_EPILOGUE_BEG",
276 "NOTE_INSN_DELETED_LABEL", "NOTE_INSN_FUNCTION_BEG",
277 "NOTE_INSN_EH_REGION_BEG", "NOTE_INSN_EH_REGION_END",
278 "NOTE_INSN_REPEATED_LINE_NUMBER", "NOTE_INSN_RANGE_BEG",
279 "NOTE_INSN_RANGE_END", "NOTE_INSN_LIVE",
280 "NOTE_INSN_BASIC_BLOCK", "NOTE_INSN_EXPECTED_VALUE"
283 const char * const reg_note_name
[] =
285 "", "REG_DEAD", "REG_INC", "REG_EQUIV", "REG_EQUAL",
286 "REG_WAS_0", "REG_RETVAL", "REG_LIBCALL", "REG_NONNEG",
287 "REG_NO_CONFLICT", "REG_UNUSED", "REG_CC_SETTER", "REG_CC_USER",
288 "REG_LABEL", "REG_DEP_ANTI", "REG_DEP_OUTPUT", "REG_BR_PROB",
289 "REG_EXEC_COUNT", "REG_NOALIAS", "REG_SAVE_AREA", "REG_BR_PRED",
290 "REG_FRAME_RELATED_EXPR", "REG_EH_CONTEXT", "REG_EH_REGION",
291 "REG_EH_RETHROW", "REG_SAVE_NOTE", "REG_MAYBE_DEAD", "REG_NORETURN",
295 static htab_t md_constants
;
297 static void fatal_with_file_and_line
PARAMS ((FILE *, const char *, ...))
298 ATTRIBUTE_PRINTF_2 ATTRIBUTE_NORETURN
;
299 static void fatal_expected_char
PARAMS ((FILE *, int, int)) ATTRIBUTE_NORETURN
;
300 static void read_name
PARAMS ((char *, FILE *));
301 static char *read_string
PARAMS ((struct obstack
*, FILE *));
302 static unsigned def_hash
PARAMS ((const void *));
303 static int def_name_eq_p
PARAMS ((const void *, const void *));
304 static void read_constants
PARAMS ((FILE *infile
, char *tmp_char
));
307 /* Allocate an rtx vector of N elements.
308 Store the length, and initialize all elements to zero. */
316 rt
= ggc_alloc_rtvec (n
);
317 /* clear out the vector */
318 memset (&rt
->elem
[0], 0, n
* sizeof (rtx
));
320 PUT_NUM_ELEM (rt
, n
);
324 /* Allocate an rtx of code CODE. The CODE is stored in the rtx;
325 all the rest is initialized to zero. */
332 int n
= GET_RTX_LENGTH (code
);
334 rt
= ggc_alloc_rtx (n
);
336 /* We want to clear everything up to the FLD array. Normally, this
337 is one int, but we don't want to assume that and it isn't very
338 portable anyway; this is. */
340 memset (rt
, 0, sizeof (struct rtx_def
) - sizeof (rtunion
));
346 /* Create a new copy of an rtx.
347 Recursively copies the operands of the rtx,
348 except for those few rtx codes that are sharable. */
356 register RTX_CODE code
;
357 register const char *format_ptr
;
359 code
= GET_CODE (orig
);
372 /* SCRATCH must be shared because they represent distinct values. */
377 /* CONST can be shared if it contains a SYMBOL_REF. If it contains
378 a LABEL_REF, it isn't sharable. */
379 if (GET_CODE (XEXP (orig
, 0)) == PLUS
380 && GET_CODE (XEXP (XEXP (orig
, 0), 0)) == SYMBOL_REF
381 && GET_CODE (XEXP (XEXP (orig
, 0), 1)) == CONST_INT
)
385 /* A MEM with a constant address is not sharable. The problem is that
386 the constant address may need to be reloaded. If the mem is shared,
387 then reloading one copy of this mem will cause all copies to appear
388 to have been reloaded. */
394 copy
= rtx_alloc (code
);
396 /* Copy the various flags, and other information. We assume that
397 all fields need copying, and then clear the fields that should
398 not be copied. That is the sensible default behavior, and forces
399 us to explicitly document why we are *not* copying a flag. */
400 memcpy (copy
, orig
, sizeof (struct rtx_def
) - sizeof (rtunion
));
402 /* We do not copy the USED flag, which is used as a mark bit during
403 walks over the RTL. */
406 /* We do not copy FRAME_RELATED for INSNs. */
407 if (GET_RTX_CLASS (code
) == 'i')
408 copy
->frame_related
= 0;
409 copy
->jump
= orig
->jump
;
410 copy
->call
= orig
->call
;
412 format_ptr
= GET_RTX_FORMAT (GET_CODE (copy
));
414 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (copy
)); i
++)
416 copy
->fld
[i
] = orig
->fld
[i
];
417 switch (*format_ptr
++)
420 if (XEXP (orig
, i
) != NULL
)
421 XEXP (copy
, i
) = copy_rtx (XEXP (orig
, i
));
426 if (XVEC (orig
, i
) != NULL
)
428 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (orig
, i
));
429 for (j
= 0; j
< XVECLEN (copy
, i
); j
++)
430 XVECEXP (copy
, i
, j
) = copy_rtx (XVECEXP (orig
, i
, j
));
441 /* These are left unchanged. */
451 /* Similar to `copy_rtx' except that if MAY_SHARE is present, it is
452 placed in the result directly, rather than being copied. */
455 copy_most_rtx (orig
, may_share
)
457 register rtx may_share
;
461 register RTX_CODE code
;
462 register const char *format_ptr
;
464 if (orig
== may_share
)
467 code
= GET_CODE (orig
);
484 copy
= rtx_alloc (code
);
485 PUT_MODE (copy
, GET_MODE (orig
));
486 copy
->in_struct
= orig
->in_struct
;
487 copy
->volatil
= orig
->volatil
;
488 copy
->unchanging
= orig
->unchanging
;
489 copy
->integrated
= orig
->integrated
;
490 copy
->frame_related
= orig
->frame_related
;
492 format_ptr
= GET_RTX_FORMAT (GET_CODE (copy
));
494 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (copy
)); i
++)
496 switch (*format_ptr
++)
499 XEXP (copy
, i
) = XEXP (orig
, i
);
500 if (XEXP (orig
, i
) != NULL
&& XEXP (orig
, i
) != may_share
)
501 XEXP (copy
, i
) = copy_most_rtx (XEXP (orig
, i
), may_share
);
505 XEXP (copy
, i
) = XEXP (orig
, i
);
510 XVEC (copy
, i
) = XVEC (orig
, i
);
511 if (XVEC (orig
, i
) != NULL
)
513 XVEC (copy
, i
) = rtvec_alloc (XVECLEN (orig
, i
));
514 for (j
= 0; j
< XVECLEN (copy
, i
); j
++)
516 = copy_most_rtx (XVECEXP (orig
, i
, j
), may_share
);
521 XWINT (copy
, i
) = XWINT (orig
, i
);
526 XINT (copy
, i
) = XINT (orig
, i
);
530 XTREE (copy
, i
) = XTREE (orig
, i
);
535 XSTR (copy
, i
) = XSTR (orig
, i
);
539 /* Copy this through the wide int field; that's safest. */
540 X0WINT (copy
, i
) = X0WINT (orig
, i
);
550 /* Create a new copy of an rtx. Only copy just one level. */
552 shallow_copy_rtx (orig
)
556 register RTX_CODE code
= GET_CODE (orig
);
557 register rtx copy
= rtx_alloc (code
);
559 PUT_MODE (copy
, GET_MODE (orig
));
560 copy
->in_struct
= orig
->in_struct
;
561 copy
->volatil
= orig
->volatil
;
562 copy
->unchanging
= orig
->unchanging
;
563 copy
->integrated
= orig
->integrated
;
564 copy
->frame_related
= orig
->frame_related
;
566 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
567 copy
->fld
[i
] = orig
->fld
[i
];
572 /* This is 1 until after the rtl generation pass. */
573 int rtx_equal_function_value_matters
;
575 /* Nonzero when we are generating CONCATs. */
576 int generating_concat_p
;
578 /* Return 1 if X and Y are identical-looking rtx's.
579 This is the Lisp function EQUAL for rtx arguments. */
587 register enum rtx_code code
;
588 register const char *fmt
;
592 if (x
== 0 || y
== 0)
596 /* Rtx's of different codes cannot be equal. */
597 if (code
!= GET_CODE (y
))
600 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
601 (REG:SI x) and (REG:HI x) are NOT equivalent. */
603 if (GET_MODE (x
) != GET_MODE (y
))
606 /* Some RTL can be compared nonrecursively. */
610 /* Until rtl generation is complete, don't consider a reference to the
611 return register of the current function the same as the return from a
612 called function. This eases the job of function integration. Once the
613 distinction is no longer needed, they can be considered equivalent. */
614 return (REGNO (x
) == REGNO (y
)
615 && (! rtx_equal_function_value_matters
616 || REG_FUNCTION_VALUE_P (x
) == REG_FUNCTION_VALUE_P (y
)));
619 return XEXP (x
, 0) == XEXP (y
, 0);
622 return XSTR (x
, 0) == XSTR (y
, 0);
633 /* Compare the elements. If any pair of corresponding elements
634 fail to match, return 0 for the whole things. */
636 fmt
= GET_RTX_FORMAT (code
);
637 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
642 if (XWINT (x
, i
) != XWINT (y
, i
))
648 if (XINT (x
, i
) != XINT (y
, i
))
654 /* Two vectors must have the same length. */
655 if (XVECLEN (x
, i
) != XVECLEN (y
, i
))
658 /* And the corresponding elements must match. */
659 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
660 if (rtx_equal_p (XVECEXP (x
, i
, j
), XVECEXP (y
, i
, j
)) == 0)
665 if (rtx_equal_p (XEXP (x
, i
), XEXP (y
, i
)) == 0)
671 if (strcmp (XSTR (x
, i
), XSTR (y
, i
)))
676 /* These are just backpointers, so they don't matter. */
683 /* It is believed that rtx's at this level will never
684 contain anything but integers and other rtx's,
685 except for within LABEL_REFs and SYMBOL_REFs. */
693 /* Subroutines of read_rtx. */
695 /* The current line number for the file. */
696 int read_rtx_lineno
= 1;
698 /* The filename for aborting with file and line. */
699 const char *read_rtx_filename
= "<unknown>";
702 fatal_with_file_and_line
VPARAMS ((FILE *infile
, const char *msg
, ...))
704 #ifndef ANSI_PROTOTYPES
715 #ifndef ANSI_PROTOTYPES
716 infile
= va_arg (ap
, FILE *);
717 msg
= va_arg (ap
, const char *);
720 fprintf (stderr
, "%s:%d: ", read_rtx_filename
, read_rtx_lineno
);
721 vfprintf (stderr
, msg
, ap
);
724 /* Gather some following context. */
725 for (i
= 0; i
< sizeof(context
)-1; ++i
)
730 if (c
== '\r' || c
== '\n')
736 fprintf (stderr
, "%s:%d: following context is `%s'\n",
737 read_rtx_filename
, read_rtx_lineno
, context
);
743 /* Dump code after printing a message. Used when read_rtx finds
747 fatal_expected_char (infile
, expected_c
, actual_c
)
749 int expected_c
, actual_c
;
751 fatal_with_file_and_line (infile
, "expected character `%c', found `%c'",
752 expected_c
, actual_c
);
755 /* Read chars from INFILE until a non-whitespace char
756 and return that. Comments, both Lisp style and C style,
757 are treated as whitespace.
758 Tools such as genflags use this function. */
761 read_skip_spaces (infile
)
774 case ' ': case '\t': case '\f': case '\r':
780 while (c
!= '\n' && c
!= EOF
);
789 fatal_expected_char (infile
, '*', c
);
792 while ((c
= getc (infile
)) && c
!= EOF
)
796 else if (prevc
== '*' && c
== '/')
809 /* Read an rtx code name into the buffer STR[].
810 It is terminated by any of the punctuation chars of rtx printed syntax. */
813 read_name (str
, infile
)
820 c
= read_skip_spaces(infile
);
825 if (c
== ' ' || c
== '\n' || c
== '\t' || c
== '\f')
827 if (c
== ':' || c
== ')' || c
== ']' || c
== '"' || c
== '/'
828 || c
== '(' || c
== '[')
837 fatal_with_file_and_line (infile
, "missing name or number");
845 /* Do constant expansion. */
846 struct md_constant
*def
;
851 struct md_constant tmp_def
;
854 def
= htab_find (md_constants
, &tmp_def
);
863 /* Read a double-quoted string onto the obstack. */
866 read_string (ob
, infile
)
874 c
= read_skip_spaces (infile
);
878 c
= read_skip_spaces (infile
);
881 fatal_expected_char (infile
, '"', c
);
885 c
= getc (infile
); /* Read the string */
890 c
= getc (infile
); /* Read the string */
891 /* \; makes stuff for a C string constant containing
895 obstack_grow (ob
, "\\n\\t", 4);
904 obstack_1grow (ob
, c
);
907 obstack_1grow (ob
, 0);
908 stringbuf
= (char *) obstack_finish (ob
);
912 c
= read_skip_spaces (infile
);
914 fatal_expected_char (infile
, ')', c
);
920 /* Provide a version of a function to read a long long if the system does
922 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !defined(HAVE_ATOLL) && !defined(HAVE_ATOQ)
928 HOST_WIDE_INT tmp_wide
;
940 HOST_WIDE_INT new_wide
= tmp_wide
*10 + (*p
- '0');
941 if (new_wide
< tmp_wide
)
943 /* Return INT_MAX equiv on overflow. */
944 tmp_wide
= (~(unsigned HOST_WIDE_INT
)0) >> 1;
952 tmp_wide
= -tmp_wide
;
957 /* Given a constant definition, return a hash code for its name. */
963 const char *string
= ((const struct md_constant
*)def
)->name
;
965 for (result
= i
= 0;*string
++ != '\0'; i
++)
966 result
+= ((unsigned char) *string
<< (i
% CHAR_BIT
));
970 /* Given two constant definitions, return true if they have the same name. */
972 def_name_eq_p (def1
, def2
)
973 const void *def1
, *def2
;
975 return ! strcmp (((const struct md_constant
*)def1
)->name
,
976 ((const struct md_constant
*)def2
)->name
);
979 /* INFILE is a FILE pointer to read text from. TMP_CHAR is a buffer suitable
980 to read a name or number into. Process a define_constants directive,
981 starting with the optional space after the "define_constants". */
983 read_constants (infile
, tmp_char
)
990 c
= read_skip_spaces (infile
);
992 fatal_expected_char (infile
, '[', c
);
995 defs
= htab_create (32, def_hash
, def_name_eq_p
, (htab_del
) 0);
996 /* Disable constant expansion during definition processing. */
998 while ( (c
= read_skip_spaces (infile
)) != ']')
1000 struct md_constant
*def
;
1004 fatal_expected_char (infile
, '(', c
);
1005 def
= xmalloc (sizeof (struct md_constant
));
1006 def
->name
= tmp_char
;
1007 read_name (tmp_char
, infile
);
1008 entry_ptr
= htab_find_slot (defs
, def
, TRUE
);
1010 def
->name
= xstrdup (tmp_char
);
1011 c
= read_skip_spaces (infile
);
1013 read_name (tmp_char
, infile
);
1016 def
->value
= xstrdup (tmp_char
);
1022 if (strcmp (def
->value
, tmp_char
))
1023 fatal_with_file_and_line (infile
,
1024 "redefinition of %s, was %s, now %s",
1025 def
->name
, def
->value
, tmp_char
);
1027 c
= read_skip_spaces (infile
);
1029 fatal_expected_char (infile
, ')', c
);
1031 md_constants
= defs
;
1032 c
= read_skip_spaces (infile
);
1034 fatal_expected_char (infile
, ')', c
);
1037 /* For every constant definition, call CALLBACK with two arguments:
1038 a pointer a pointer to the constant definition and INFO.
1039 Stops when CALLBACK returns zero. */
1041 traverse_md_constants (callback
, info
)
1046 htab_traverse (md_constants
, callback
, info
);
1049 /* Read an rtx in printed representation from INFILE
1050 and return an actual rtx in core constructed accordingly.
1051 read_rtx is not used in the compiler proper, but rather in
1052 the utilities gen*.c that construct C code from machine descriptions. */
1060 register const char *format_ptr
;
1061 /* tmp_char is a buffer used for reading decimal integers
1062 and names of rtx types and machine modes.
1063 Therefore, 256 must be enough. */
1068 HOST_WIDE_INT tmp_wide
;
1070 /* Obstack used for allocating RTL objects. */
1071 static struct obstack rtl_obstack
;
1072 static int initialized
;
1074 /* Linked list structure for making RTXs: */
1077 struct rtx_list
*next
;
1078 rtx value
; /* Value of this node. */
1082 _obstack_begin (&rtl_obstack
,0, 0,
1083 (void *(*) PARAMS ((long))) xmalloc
,
1084 (void (*) PARAMS ((void *))) free
);
1089 c
= read_skip_spaces (infile
); /* Should be open paren. */
1091 fatal_expected_char (infile
, '(', c
);
1093 read_name (tmp_char
, infile
);
1097 if (! strcmp (tmp_char
, "define_constants"))
1099 read_constants (infile
, tmp_char
);
1102 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
1103 if (! strcmp (tmp_char
, GET_RTX_NAME (i
)))
1105 tmp_code
= (RTX_CODE
) i
; /* get value for name */
1109 if (tmp_code
== UNKNOWN
)
1110 fatal_with_file_and_line (infile
, "unknown rtx code `%s'", tmp_char
);
1112 /* (NIL) stands for an expression that isn't there. */
1113 if (tmp_code
== NIL
)
1115 /* Discard the closeparen. */
1116 while ((c
= getc (infile
)) && c
!= ')')
1122 /* If we end up with an insn expression then we free this space below. */
1123 return_rtx
= rtx_alloc (tmp_code
);
1124 format_ptr
= GET_RTX_FORMAT (GET_CODE (return_rtx
));
1126 /* If what follows is `: mode ', read it and
1127 store the mode in the rtx. */
1129 i
= read_skip_spaces (infile
);
1132 read_name (tmp_char
, infile
);
1133 for (j
= 0; j
< NUM_MACHINE_MODES
; j
++)
1134 if (! strcmp (GET_MODE_NAME (j
), tmp_char
))
1137 if (j
== MAX_MACHINE_MODE
)
1138 fatal_with_file_and_line (infile
, "unknown mode `%s'", tmp_char
);
1140 PUT_MODE (return_rtx
, (enum machine_mode
) j
);
1145 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (return_rtx
)); i
++)
1146 switch (*format_ptr
++)
1148 /* 0 means a field for internal use only.
1149 Don't expect it to be present in the input. */
1155 XEXP (return_rtx
, i
) = read_rtx (infile
);
1159 /* 'V' is an optional vector: if a closeparen follows,
1160 just store NULL for this element. */
1161 c
= read_skip_spaces (infile
);
1165 XVEC (return_rtx
, i
) = 0;
1168 /* Now process the vector. */
1172 /* Obstack to store scratch vector in. */
1173 struct obstack vector_stack
;
1174 int list_counter
= 0;
1175 rtvec return_vec
= NULL_RTVEC
;
1177 c
= read_skip_spaces (infile
);
1179 fatal_expected_char (infile
, '[', c
);
1181 /* add expressions to a list, while keeping a count */
1182 obstack_init (&vector_stack
);
1183 while ((c
= read_skip_spaces (infile
)) && c
!= ']')
1187 obstack_ptr_grow (&vector_stack
, (PTR
) read_rtx (infile
));
1189 if (list_counter
> 0)
1191 return_vec
= rtvec_alloc (list_counter
);
1192 memcpy (&return_vec
->elem
[0], obstack_finish (&vector_stack
),
1193 list_counter
* sizeof (rtx
));
1195 XVEC (return_rtx
, i
) = return_vec
;
1196 obstack_free (&vector_stack
, NULL
);
1197 /* close bracket gotten */
1202 /* 'S' is an optional string: if a closeparen follows,
1203 just store NULL for this element. */
1204 c
= read_skip_spaces (infile
);
1208 XSTR (return_rtx
, i
) = 0;
1216 stringbuf
= read_string (&rtl_obstack
, infile
);
1218 /* For insn patterns, we want to provide a default name
1219 based on the file and line, like "*foo.md:12", if the
1220 given name is blank. These are only for define_insn and
1221 define_insn_and_split, to aid debugging. */
1222 if (*stringbuf
== '\0'
1224 && (GET_CODE (return_rtx
) == DEFINE_INSN
1225 || GET_CODE (return_rtx
) == DEFINE_INSN_AND_SPLIT
))
1228 const char *fn
= (read_rtx_filename
? read_rtx_filename
: "rtx");
1230 for (slash
= fn
; *slash
; slash
++)
1231 if (*slash
== '/' || *slash
== '\\' || *slash
== ':')
1233 obstack_1grow (&rtl_obstack
, '*');
1234 obstack_grow (&rtl_obstack
, fn
, strlen (fn
));
1235 sprintf (line_name
, ":%d", read_rtx_lineno
);
1236 obstack_grow (&rtl_obstack
, line_name
, strlen (line_name
)+1);
1237 stringbuf
= (char *) obstack_finish (&rtl_obstack
);
1240 XSTR (return_rtx
, i
) = stringbuf
;
1245 read_name (tmp_char
, infile
);
1246 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
1247 tmp_wide
= atoi (tmp_char
);
1249 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
1250 tmp_wide
= atol (tmp_char
);
1252 /* Prefer atoll over atoq, since the former is in the ISO C99 standard.
1253 But prefer not to use our hand-rolled function above either. */
1254 #if defined(HAVE_ATOLL) || !defined(HAVE_ATOQ)
1255 tmp_wide
= atoll (tmp_char
);
1257 tmp_wide
= atoq (tmp_char
);
1261 XWINT (return_rtx
, i
) = tmp_wide
;
1266 read_name (tmp_char
, infile
);
1267 tmp_int
= atoi (tmp_char
);
1268 XINT (return_rtx
, i
) = tmp_int
;
1273 "switch format wrong in rtl.read_rtx(). format was: %c.\n",
1275 fprintf (stderr
, "\tfile position: %ld\n", ftell (infile
));
1279 c
= read_skip_spaces (infile
);
1281 fatal_expected_char (infile
, ')', c
);
1286 #if defined ENABLE_RTL_CHECKING && (GCC_VERSION >= 2007)
1288 rtl_check_failed_bounds (r
, n
, file
, line
, func
)
1296 ("RTL check: access of elt %d of `%s' with last elt %d in %s, at %s:%d",
1297 n
, GET_RTX_NAME (GET_CODE (r
)), GET_RTX_LENGTH (GET_CODE (r
)) - 1,
1298 func
, trim_filename (file
), line
);
1302 rtl_check_failed_type1 (r
, n
, c1
, file
, line
, func
)
1311 ("RTL check: expected elt %d type '%c', have '%c' (rtx %s) in %s, at %s:%d",
1312 n
, c1
, GET_RTX_FORMAT (GET_CODE (r
))[n
], GET_RTX_NAME (GET_CODE (r
)),
1313 func
, trim_filename (file
), line
);
1317 rtl_check_failed_type2 (r
, n
, c1
, c2
, file
, line
, func
)
1327 ("RTL check: expected elt %d type '%c' or '%c', have '%c' (rtx %s) in %s, at %s:%d",
1328 n
, c1
, c2
, GET_RTX_FORMAT (GET_CODE (r
))[n
], GET_RTX_NAME (GET_CODE (r
)),
1329 func
, trim_filename (file
), line
);
1333 rtl_check_failed_code1 (r
, code
, file
, line
, func
)
1340 internal_error ("RTL check: expected code `%s', have `%s' in %s, at %s:%d",
1341 GET_RTX_NAME (code
), GET_RTX_NAME (GET_CODE (r
)), func
,
1342 trim_filename (file
), line
);
1346 rtl_check_failed_code2 (r
, code1
, code2
, file
, line
, func
)
1348 enum rtx_code code1
, code2
;
1354 ("RTL check: expected code `%s' or `%s', have `%s' in %s, at %s:%d",
1355 GET_RTX_NAME (code1
), GET_RTX_NAME (code2
), GET_RTX_NAME (GET_CODE (r
)),
1356 func
, trim_filename (file
), line
);
1359 /* XXX Maybe print the vector? */
1361 rtvec_check_failed_bounds (r
, n
, file
, line
, func
)
1369 ("RTL check: access of elt %d of vector with last elt %d in %s, at %s:%d",
1370 n
, GET_NUM_ELEM (r
) - 1, func
, trim_filename (file
), line
);
1372 #endif /* ENABLE_RTL_CHECKING */