the same indirect address eventually. */
int cse_not_expected;
+/* Cache of the "extended" flag in the target's _BitInt description
+ for use during expand. */
+int bitint_extended = -1;
+
static bool block_move_libcall_safe_for_call_parm (void);
static bool emit_block_move_via_pattern (rtx, rtx, rtx, unsigned, unsigned,
HOST_WIDE_INT, unsigned HOST_WIDE_INT,
when reading from SSA_NAMEs of vars. */
#define EXTEND_BITINT(expr) \
((TREE_CODE (type) == BITINT_TYPE \
+ && !bitint_extended \
&& reduce_bit_field \
&& mode != BLKmode \
&& modifier != EXPAND_MEMORY \
type = TREE_TYPE (exp);
mode = TYPE_MODE (type);
unsignedp = TYPE_UNSIGNED (type);
+ if (TREE_CODE (type) == BITINT_TYPE && bitint_extended == -1)
+ {
+ struct bitint_info info;
+ bool ok = targetm.c.bitint_type_info (TYPE_PRECISION (type), &info);
+ gcc_assert (ok);
+ bitint_extended = info.extended;
+ }
treeop0 = treeop1 = treeop2 = NULL_TREE;
if (!VL_EXP_CLASS_P (exp))
extern void expand_reversed_crc_table_based (rtx, rtx, rtx, rtx, machine_mode,
void (*) (rtx *));
+/* Cache of the "extended" flag in the target's _BitInt description
+ for use during expand. */
+extern int bitint_extended;
+
#endif /* GCC_EXPR_H */
/* Indicate we have no need of a frame pointer yet. */
frame_pointer_needed = 0;
+
+ /* Reset the cache of the "extended" flag in the target's
+ _BitInt info struct. */
+ bitint_extended = -1;
}
void