diff options
Diffstat (limited to 'gcc/recog.h')
-rw-r--r-- | gcc/recog.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/gcc/recog.h b/gcc/recog.h index 3dae18b..2017c85 100644 --- a/gcc/recog.h +++ b/gcc/recog.h @@ -46,18 +46,18 @@ struct operand_alternative const char *constraint; /* The register class valid for this alternative (possibly NO_REGS). */ - enum reg_class cl; + ENUM_BITFIELD (reg_class) cl : 16; /* "Badness" of this alternative, computed from number of '?' and '!' characters in the constraint string. */ - unsigned int reject; + unsigned int reject : 16; /* -1 if no matching constraint was found, or an operand number. */ - int matches; + int matches : 8; /* The same information, but reversed: -1 if this operand is not matched by any other, or the operand number of the operand that matches this one. */ - int matched; + int matched : 8; /* Nonzero if '&' was found in the constraint string. */ unsigned int earlyclobber:1; @@ -77,6 +77,8 @@ struct operand_alternative /* Nonzero if 'X' was found in the constraint string, or if the constraint string for this alternative was empty. */ unsigned int anything_ok:1; + + unsigned int unused : 8; }; /* Return the class for operand I of alternative ALT, taking matching @@ -142,7 +144,10 @@ extern void insn_extract (rtx); extern void extract_insn (rtx); extern void extract_constrain_insn_cached (rtx); extern void extract_insn_cached (rtx); -extern void preprocess_constraints (void); +extern void preprocess_constraints (int, int, const char **, + operand_alternative *); +extern const operand_alternative *preprocess_insn_constraints (int); +extern void preprocess_constraints (rtx); extern rtx peep2_next_insn (int); extern int peep2_regno_dead_p (int, int); extern int peep2_reg_dead_p (int, rtx); @@ -264,8 +269,7 @@ struct recog_data_d extern struct recog_data_d recog_data; -extern struct operand_alternative recog_op_alt[MAX_RECOG_OPERANDS - * MAX_RECOG_ALTERNATIVES]; +extern const operand_alternative *recog_op_alt; /* Return a pointer to an array in which index OP describes the constraints on operand OP of the current instruction alternative (which_alternative). @@ -396,6 +400,7 @@ extern int peep2_current_count; struct target_recog { bool x_initialized; alternative_mask x_enabled_alternatives[LAST_INSN_CODE]; + operand_alternative *x_op_alt[LAST_INSN_CODE]; }; extern struct target_recog default_target_recog; |