1 /* RTL reader for GNU C Compiler.
2 Copyright (C) 1987, 1988, 1991, 1994, 1997, 1998, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
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 the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 #include "coretypes.h"
30 static htab_t md_constants
;
32 static void fatal_with_file_and_line
PARAMS ((FILE *, const char *, ...))
33 ATTRIBUTE_PRINTF_2 ATTRIBUTE_NORETURN
;
34 static void fatal_expected_char
PARAMS ((FILE *, int, int)) ATTRIBUTE_NORETURN
;
35 static void read_name
PARAMS ((char *, FILE *));
36 static char *read_string
PARAMS ((struct obstack
*, FILE *, int));
37 static char *read_quoted_string
PARAMS ((struct obstack
*, FILE *));
38 static char *read_braced_string
PARAMS ((struct obstack
*, FILE *));
39 static void read_escape
PARAMS ((struct obstack
*, FILE *));
40 static hashval_t def_hash
PARAMS ((const void *));
41 static int def_name_eq_p
PARAMS ((const void *, const void *));
42 static void read_constants
PARAMS ((FILE *infile
, char *tmp_char
));
43 static void validate_const_int
PARAMS ((FILE *, const char *));
45 /* Subroutines of read_rtx. */
47 /* The current line number for the file. */
48 int read_rtx_lineno
= 1;
50 /* The filename for aborting with file and line. */
51 const char *read_rtx_filename
= "<unknown>";
54 fatal_with_file_and_line
VPARAMS ((FILE *infile
, const char *msg
, ...))
61 VA_FIXEDARG (ap
, FILE *, infile
);
62 VA_FIXEDARG (ap
, const char *, msg
);
64 fprintf (stderr
, "%s:%d: ", read_rtx_filename
, read_rtx_lineno
);
65 vfprintf (stderr
, msg
, ap
);
68 /* Gather some following context. */
69 for (i
= 0; i
< sizeof (context
)-1; ++i
)
74 if (c
== '\r' || c
== '\n')
80 fprintf (stderr
, "%s:%d: following context is `%s'\n",
81 read_rtx_filename
, read_rtx_lineno
, context
);
87 /* Dump code after printing a message. Used when read_rtx finds
91 fatal_expected_char (infile
, expected_c
, actual_c
)
93 int expected_c
, actual_c
;
95 fatal_with_file_and_line (infile
, "expected character `%c', found `%c'",
96 expected_c
, actual_c
);
99 /* Read chars from INFILE until a non-whitespace char
100 and return that. Comments, both Lisp style and C style,
101 are treated as whitespace.
102 Tools such as genflags use this function. */
105 read_skip_spaces (infile
)
119 case ' ': case '\t': case '\f': case '\r':
125 while (c
!= '\n' && c
!= EOF
);
134 fatal_expected_char (infile
, '*', c
);
137 while ((c
= getc (infile
)) && c
!= EOF
)
141 else if (prevc
== '*' && c
== '/')
154 /* Read an rtx code name into the buffer STR[].
155 It is terminated by any of the punctuation chars of rtx printed syntax. */
158 read_name (str
, infile
)
165 c
= read_skip_spaces (infile
);
170 if (c
== ' ' || c
== '\n' || c
== '\t' || c
== '\f' || c
== '\r')
172 if (c
== ':' || c
== ')' || c
== ']' || c
== '"' || c
== '/'
173 || c
== '(' || c
== '[')
182 fatal_with_file_and_line (infile
, "missing name or number");
190 /* Do constant expansion. */
191 struct md_constant
*def
;
196 struct md_constant tmp_def
;
199 def
= htab_find (md_constants
, &tmp_def
);
208 /* Subroutine of the string readers. Handles backslash escapes.
209 Caller has read the backslash, but not placed it into the obstack. */
211 read_escape (ob
, infile
)
215 int c
= getc (infile
);
219 /* Backslash-newline is replaced by nothing, as in C. */
224 /* \" \' \\ are replaced by the second character. */
230 /* Standard C string escapes:
233 all are passed through to the output string unmolested.
234 In normal use these wind up in a string constant processed
235 by the C compiler, which will translate them appropriately.
236 We do not bother checking that \[0-7] are followed by up to
237 two octal digits, or that \x is followed by N hex digits.
238 \? \u \U are left out because they are not in traditional C. */
239 case 'a': case 'b': case 'f': case 'n': case 'r': case 't': case 'v':
240 case '0': case '1': case '2': case '3': case '4': case '5': case '6':
242 obstack_1grow (ob
, '\\');
245 /* \; makes stuff for a C string constant containing
248 obstack_grow (ob
, "\\n\\t", 4);
251 /* pass anything else through, but issue a warning. */
253 fprintf (stderr
, "%s:%d: warning: unrecognized escape \\%c\n",
254 read_rtx_filename
, read_rtx_lineno
, c
);
255 obstack_1grow (ob
, '\\');
259 obstack_1grow (ob
, c
);
263 /* Read a double-quoted string onto the obstack. Caller has scanned
264 the leading quote. */
266 read_quoted_string (ob
, infile
)
274 c
= getc (infile
); /* Read the string */
279 read_escape (ob
, infile
);
285 obstack_1grow (ob
, c
);
288 obstack_1grow (ob
, 0);
289 return obstack_finish (ob
);
292 /* Read a braced string (a la Tcl) onto the obstack. Caller has
293 scanned the leading brace. Note that unlike quoted strings,
294 the outermost braces _are_ included in the string constant. */
296 read_braced_string (ob
, infile
)
301 int brace_depth
= 1; /* caller-processed */
303 obstack_1grow (ob
, '{');
306 c
= getc (infile
); /* Read the string */
315 read_escape (ob
, infile
);
319 obstack_1grow (ob
, c
);
322 obstack_1grow (ob
, 0);
323 return obstack_finish (ob
);
326 /* Read some kind of string constant. This is the high-level routine
327 used by read_rtx. It handles surrounding parentheses, leading star,
328 and dispatch to the appropriate string constant reader. */
331 read_string (ob
, infile
, star_if_braced
)
340 c
= read_skip_spaces (infile
);
344 c
= read_skip_spaces (infile
);
348 stringbuf
= read_quoted_string (ob
, infile
);
352 obstack_1grow (ob
, '*');
353 stringbuf
= read_braced_string (ob
, infile
);
356 fatal_with_file_and_line (infile
, "expected `\"' or `{', found `%c'", c
);
360 c
= read_skip_spaces (infile
);
362 fatal_expected_char (infile
, ')', c
);
368 /* Provide a version of a function to read a long long if the system does
370 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !defined(HAVE_ATOLL) && !defined(HAVE_ATOQ)
371 HOST_WIDE_INT atoll
PARAMS ((const char *));
378 HOST_WIDE_INT tmp_wide
;
390 HOST_WIDE_INT new_wide
= tmp_wide
*10 + (*p
- '0');
391 if (new_wide
< tmp_wide
)
393 /* Return INT_MAX equiv on overflow. */
394 tmp_wide
= (~(unsigned HOST_WIDE_INT
) 0) >> 1;
402 tmp_wide
= -tmp_wide
;
407 /* Given a constant definition, return a hash code for its name. */
413 const char *string
= ((const struct md_constant
*) def
)->name
;
415 for (result
= i
= 0;*string
++ != '\0'; i
++)
416 result
+= ((unsigned char) *string
<< (i
% CHAR_BIT
));
420 /* Given two constant definitions, return true if they have the same name. */
422 def_name_eq_p (def1
, def2
)
423 const void *def1
, *def2
;
425 return ! strcmp (((const struct md_constant
*) def1
)->name
,
426 ((const struct md_constant
*) def2
)->name
);
429 /* INFILE is a FILE pointer to read text from. TMP_CHAR is a buffer suitable
430 to read a name or number into. Process a define_constants directive,
431 starting with the optional space after the "define_constants". */
433 read_constants (infile
, tmp_char
)
440 c
= read_skip_spaces (infile
);
442 fatal_expected_char (infile
, '[', c
);
445 defs
= htab_create (32, def_hash
, def_name_eq_p
, (htab_del
) 0);
446 /* Disable constant expansion during definition processing. */
448 while ( (c
= read_skip_spaces (infile
)) != ']')
450 struct md_constant
*def
;
454 fatal_expected_char (infile
, '(', c
);
455 def
= xmalloc (sizeof (struct md_constant
));
456 def
->name
= tmp_char
;
457 read_name (tmp_char
, infile
);
458 entry_ptr
= htab_find_slot (defs
, def
, TRUE
);
460 def
->name
= xstrdup (tmp_char
);
461 c
= read_skip_spaces (infile
);
463 read_name (tmp_char
, infile
);
466 def
->value
= xstrdup (tmp_char
);
472 if (strcmp (def
->value
, tmp_char
))
473 fatal_with_file_and_line (infile
,
474 "redefinition of %s, was %s, now %s",
475 def
->name
, def
->value
, tmp_char
);
477 c
= read_skip_spaces (infile
);
479 fatal_expected_char (infile
, ')', c
);
482 c
= read_skip_spaces (infile
);
484 fatal_expected_char (infile
, ')', c
);
487 /* For every constant definition, call CALLBACK with two arguments:
488 a pointer a pointer to the constant definition and INFO.
489 Stops when CALLBACK returns zero. */
491 traverse_md_constants (callback
, info
)
496 htab_traverse (md_constants
, callback
, info
);
500 validate_const_int (infile
, string
)
508 while (*cp
&& ISSPACE (*cp
))
510 if (*cp
== '-' || *cp
== '+')
518 fatal_with_file_and_line (infile
, "invalid decimal constant \"%s\"\n", string
);
521 /* Read an rtx in printed representation from INFILE
522 and return an actual rtx in core constructed accordingly.
523 read_rtx is not used in the compiler proper, but rather in
524 the utilities gen*.c that construct C code from machine descriptions. */
532 const char *format_ptr
;
533 /* tmp_char is a buffer used for reading decimal integers
534 and names of rtx types and machine modes.
535 Therefore, 256 must be enough. */
540 HOST_WIDE_INT tmp_wide
;
542 /* Obstack used for allocating RTL objects. */
543 static struct obstack rtl_obstack
;
544 static int initialized
;
546 /* Linked list structure for making RTXs: */
549 struct rtx_list
*next
;
550 rtx value
; /* Value of this node. */
554 obstack_init (&rtl_obstack
);
559 c
= read_skip_spaces (infile
); /* Should be open paren. */
561 fatal_expected_char (infile
, '(', c
);
563 read_name (tmp_char
, infile
);
567 if (! strcmp (tmp_char
, "define_constants"))
569 read_constants (infile
, tmp_char
);
572 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
573 if (! strcmp (tmp_char
, GET_RTX_NAME (i
)))
575 tmp_code
= (RTX_CODE
) i
; /* get value for name */
579 if (tmp_code
== UNKNOWN
)
580 fatal_with_file_and_line (infile
, "unknown rtx code `%s'", tmp_char
);
582 /* (NIL) stands for an expression that isn't there. */
585 /* Discard the closeparen. */
586 while ((c
= getc (infile
)) && c
!= ')')
592 /* If we end up with an insn expression then we free this space below. */
593 return_rtx
= rtx_alloc (tmp_code
);
594 format_ptr
= GET_RTX_FORMAT (GET_CODE (return_rtx
));
596 /* If what follows is `: mode ', read it and
597 store the mode in the rtx. */
599 i
= read_skip_spaces (infile
);
602 read_name (tmp_char
, infile
);
603 for (j
= 0; j
< NUM_MACHINE_MODES
; j
++)
604 if (! strcmp (GET_MODE_NAME (j
), tmp_char
))
607 if (j
== MAX_MACHINE_MODE
)
608 fatal_with_file_and_line (infile
, "unknown mode `%s'", tmp_char
);
610 PUT_MODE (return_rtx
, (enum machine_mode
) j
);
615 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (return_rtx
)); i
++)
616 switch (*format_ptr
++)
618 /* 0 means a field for internal use only.
619 Don't expect it to be present in the input. */
625 XEXP (return_rtx
, i
) = read_rtx (infile
);
629 /* 'V' is an optional vector: if a closeparen follows,
630 just store NULL for this element. */
631 c
= read_skip_spaces (infile
);
635 XVEC (return_rtx
, i
) = 0;
638 /* Now process the vector. */
642 /* Obstack to store scratch vector in. */
643 struct obstack vector_stack
;
644 int list_counter
= 0;
645 rtvec return_vec
= NULL_RTVEC
;
647 c
= read_skip_spaces (infile
);
649 fatal_expected_char (infile
, '[', c
);
651 /* add expressions to a list, while keeping a count */
652 obstack_init (&vector_stack
);
653 while ((c
= read_skip_spaces (infile
)) && c
!= ']')
657 obstack_ptr_grow (&vector_stack
, (PTR
) read_rtx (infile
));
659 if (list_counter
> 0)
661 return_vec
= rtvec_alloc (list_counter
);
662 memcpy (&return_vec
->elem
[0], obstack_finish (&vector_stack
),
663 list_counter
* sizeof (rtx
));
665 XVEC (return_rtx
, i
) = return_vec
;
666 obstack_free (&vector_stack
, NULL
);
667 /* close bracket gotten */
672 /* 'S' is an optional string: if a closeparen follows,
673 just store NULL for this element. */
674 c
= read_skip_spaces (infile
);
678 XSTR (return_rtx
, i
) = 0;
687 /* The output template slot of a DEFINE_INSN,
688 DEFINE_INSN_AND_SPLIT, or DEFINE_PEEPHOLE automatically
689 gets a star inserted as its first character, if it is
690 written with a brace block instead of a string constant. */
691 int star_if_braced
= (format_ptr
[-1] == 'T');
693 stringbuf
= read_string (&rtl_obstack
, infile
, star_if_braced
);
695 /* For insn patterns, we want to provide a default name
696 based on the file and line, like "*foo.md:12", if the
697 given name is blank. These are only for define_insn and
698 define_insn_and_split, to aid debugging. */
699 if (*stringbuf
== '\0'
701 && (GET_CODE (return_rtx
) == DEFINE_INSN
702 || GET_CODE (return_rtx
) == DEFINE_INSN_AND_SPLIT
))
705 const char *fn
= (read_rtx_filename
? read_rtx_filename
: "rtx");
707 for (slash
= fn
; *slash
; slash
++)
708 if (*slash
== '/' || *slash
== '\\' || *slash
== ':')
710 obstack_1grow (&rtl_obstack
, '*');
711 obstack_grow (&rtl_obstack
, fn
, strlen (fn
));
712 sprintf (line_name
, ":%d", read_rtx_lineno
);
713 obstack_grow (&rtl_obstack
, line_name
, strlen (line_name
)+1);
714 stringbuf
= (char *) obstack_finish (&rtl_obstack
);
718 XTMPL (return_rtx
, i
) = stringbuf
;
720 XSTR (return_rtx
, i
) = stringbuf
;
725 read_name (tmp_char
, infile
);
726 validate_const_int (infile
, tmp_char
);
727 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
728 tmp_wide
= atoi (tmp_char
);
730 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
731 tmp_wide
= atol (tmp_char
);
733 /* Prefer atoll over atoq, since the former is in the ISO C99 standard.
734 But prefer not to use our hand-rolled function above either. */
735 #if defined(HAVE_ATOLL) || !defined(HAVE_ATOQ)
736 tmp_wide
= atoll (tmp_char
);
738 tmp_wide
= atoq (tmp_char
);
742 XWINT (return_rtx
, i
) = tmp_wide
;
747 read_name (tmp_char
, infile
);
748 validate_const_int (infile
, tmp_char
);
749 tmp_int
= atoi (tmp_char
);
750 XINT (return_rtx
, i
) = tmp_int
;
755 "switch format wrong in rtl.read_rtx(). format was: %c.\n",
757 fprintf (stderr
, "\tfile position: %ld\n", ftell (infile
));
761 c
= read_skip_spaces (infile
);
763 fatal_expected_char (infile
, ')', c
);