1 /* Declarations for rtx-reader support for gen* routines.
2 Copyright (C) 2000-2017 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_GENSUPPORT_H
21 #define GCC_GENSUPPORT_H
26 extern struct obstack
*rtl_obstack
;
28 /* Information about an .md define_* rtx. */
33 /* The location of the first line of the rtx. */
36 /* The unique number attached to the rtx. Currently all define_insns,
37 define_expands, define_splits, define_peepholes and define_peephole2s
38 share the same insn_code index space. */
42 #define OPTAB_CL(name, pat, c, b, l) name,
43 #define OPTAB_CX(name, pat)
44 #define OPTAB_CD(name, pat) name,
45 #define OPTAB_NL(name, pat, c, b, s, l) name,
46 #define OPTAB_NC(name, pat, c) name,
47 #define OPTAB_NX(name, pat)
48 #define OPTAB_VL(name, pat, c, b, s, l) name,
49 #define OPTAB_VC(name, pat, c) name,
50 #define OPTAB_VX(name, pat)
51 #define OPTAB_DC(name, pat, c) name,
52 #define OPTAB_D(name, pat) name,
54 /* Enumerates all optabs. */
55 typedef enum optab_tag
{
73 /* Describes one entry in optabs.def. */
76 /* The name of the optab (e.g. "add_optab"). */
79 /* The pattern that matching define_expands and define_insns have.
80 See the comment at the head of optabs.def for details. */
83 /* The initializers (in the form of C code) for the libcall_basename,
84 libcall_suffix and libcall_gen fields of (convert_)optab_libcall_d. */
89 /* The optab's enum value. */
92 /* The value returned by optab_to_code (OP). */
95 /* CODE if code_to_optab (CODE) should return OP, otherwise UNKNOWN. */
98 /* 1: conversion optabs with libcall data,
99 2: conversion optabs without libcall data,
100 3: non-conversion optabs with libcall data ("normal" and "overflow"
101 optabs in the optabs.def comment)
102 4: non-conversion optabs without libcall data ("direct" optabs). */
106 extern optab_def optabs
[];
107 extern unsigned int num_optabs
;
109 /* Information about an instruction name that matches an optab pattern. */
112 /* The name of the instruction. */
115 /* The matching optab. */
118 /* The optab modes. M2 is only significant for conversion optabs;
119 it is zero otherwise. */
122 /* An index that provides a lexicographical sort of (OP, M2, M1).
123 Used by genopinit.c. */
124 unsigned int sort_num
;
127 extern rtx
add_implicit_parallel (rtvec
);
128 extern rtx_reader
*init_rtx_reader_args_cb (int, const char **,
129 bool (*)(const char *));
130 extern rtx_reader
*init_rtx_reader_args (int, const char **);
131 extern bool read_md_rtx (md_rtx_info
*);
132 extern unsigned int get_num_insn_codes ();
134 /* Set this to 0 to disable automatic elision of insn patterns which
135 can never be used in this configuration. See genconditions.c.
136 Must be set before calling init_md_reader. */
137 extern int insn_elision
;
139 /* Return the C test that says whether a definition rtx can be used,
140 or "" if it can be used unconditionally. */
141 extern const char *get_c_test (rtx
);
143 /* If the C test passed as the argument can be evaluated at compile
144 time, return its truth value; else return -1. The test must have
145 appeared somewhere in the machine description when genconditions
147 extern int maybe_eval_c_test (const char *);
149 /* Add an entry to the table of conditions. Used by genconditions and
151 extern void add_c_test (const char *, int);
153 /* This structure is used internally by gensupport.c and genconditions.c. */
161 extern hashval_t
hash_c_test (const void *);
162 extern int cmp_c_test (const void *, const void *);
163 extern void traverse_c_tests (htab_trav
, void *);
166 /* Predicate handling: helper functions and data structures. */
170 struct pred_data
*next
; /* for iterating over the set of all preds */
171 const char *name
; /* predicate name */
172 bool special
; /* special handling of modes? */
174 /* data used primarily by genpreds.c */
175 const char *c_block
; /* C test block */
176 rtx exp
; /* RTL test expression */
178 /* data used primarily by genrecog.c */
179 enum rtx_code singleton
; /* if pred takes only one code, that code */
180 int num_codes
; /* number of codes accepted */
181 bool allows_non_lvalue
; /* if pred allows non-lvalue expressions */
182 bool allows_non_const
; /* if pred allows non-const expressions */
183 bool codes
[NUM_RTX_CODE
]; /* set of codes accepted */
186 extern struct pred_data
*first_predicate
;
187 extern struct pred_data
*lookup_predicate (const char *);
188 extern void add_predicate_code (struct pred_data
*, enum rtx_code
);
189 extern void add_predicate (struct pred_data
*);
191 #define FOR_ALL_PREDICATES(p) for (p = first_predicate; p; p = p->next)
195 /* The largest match_operand, match_operator or match_parallel
199 /* The largest match_dup, match_op_dup or match_par_dup number found. */
202 /* The smallest and largest match_scratch number found. */
203 int min_scratch_opno
;
204 int max_scratch_opno
;
206 /* The number of times match_dup, match_op_dup or match_par_dup appears
210 /* The number of rtx arguments to the generator function. */
211 int num_generator_args
;
213 /* The number of rtx operands in an insn. */
214 int num_insn_operands
;
216 /* The number of operand variables that are needed. */
217 int num_operand_vars
;
220 extern void get_pattern_stats (struct pattern_stats
*ranges
, rtvec vec
);
221 extern void compute_test_codes (rtx
, file_location
, char *);
222 extern file_location
get_file_location (rtx
);
223 extern const char *get_emit_function (rtx
);
224 extern bool needs_barrier_p (rtx
);
225 extern bool find_optab (optab_pattern
*, const char *);
227 #endif /* GCC_GENSUPPORT_H */