diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-04 22:09:48 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-04 22:09:48 +0000 |
commit | 8a348c938ae5469a66e7ba92be57b570de8e2380 (patch) | |
tree | b8640fda4af09633acae350d1bc8ba846aa08da9 /gcc/expr.c | |
parent | 7c06706f6cceb208dd2516f2d68fbe85a499e545 (diff) | |
download | gcc-8a348c938ae5469a66e7ba92be57b570de8e2380.tar.gz |
* expr.c (store_field): Don't clobber TEMP in shift: it might be
a variable.
(get_inner_reference): Don't go through a VIEW_CONVERT_EXPR
whose purpose is to step up the alignment.
(expand_expr, case ADDR_EXPR): Force LO_SUM into memory, just like REG.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66465 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 7fd347be3b1..ba7db159d97 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5648,7 +5648,7 @@ store_field (target, bitsize, bitpos, mode, exp, value_mode, unsignedp, type, temp = expand_shift (RSHIFT_EXPR, GET_MODE (temp), temp, size_int (GET_MODE_BITSIZE (GET_MODE (temp)) - bitsize), - temp, 1); + NULL_RTX, 1); /* Unless MODE is VOIDmode or BLKmode, convert TEMP to MODE. */ @@ -5888,8 +5888,20 @@ get_inner_reference (exp, pbitsize, pbitpos, poffset, pmode, continue; } + + /* We can go inside most conversions: all NON_VALUE_EXPRs, all normal + conversions that don't change the mode, and all view conversions + except those that need to "step up" the alignment. */ else if (TREE_CODE (exp) != NON_LVALUE_EXPR - && TREE_CODE (exp) != VIEW_CONVERT_EXPR + && ! (TREE_CODE (exp) == VIEW_CONVERT_EXPR + && ! ((TYPE_ALIGN (TREE_TYPE (exp)) + > TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0)))) + && STRICT_ALIGNMENT + && (TYPE_ALIGN (TREE_TYPE (TREE_OPERAND (exp, 0))) + < BIGGEST_ALIGNMENT) + && (TYPE_ALIGN_OK (TREE_TYPE (exp)) + || TYPE_ALIGN_OK (TREE_TYPE + (TREE_OPERAND (exp, 0)))))) && ! ((TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR) && (TYPE_MODE (TREE_TYPE (exp)) @@ -9245,7 +9257,7 @@ expand_expr (exp, target, tmode, modifier) op0); else if (GET_CODE (op0) == REG || GET_CODE (op0) == SUBREG || GET_CODE (op0) == CONCAT || GET_CODE (op0) == ADDRESSOF - || GET_CODE (op0) == PARALLEL) + || GET_CODE (op0) == PARALLEL || GET_CODE (op0) == LO_SUM) { /* If the operand is a SAVE_EXPR, we can deal with this by forcing the SAVE_EXPR into memory. */ |