opaque-vector.c: Skip long double test on hppa.
[official-gcc.git] / gcc / tree-ssa-address.c
blob49b69b82da3b9ffa0df02cc1bc66df31499efbf8
1 /* Memory address lowering and addressing mode selection.
2 Copyright (C) 2004-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any
9 later version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
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 /* Utility functions for manipulation with TARGET_MEM_REFs -- tree expressions
21 that directly map to addressing modes of the target. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "tm_p.h"
29 #include "basic-block.h"
30 #include "tree-pretty-print.h"
31 #include "tree-ssa.h"
32 #include "dumpfile.h"
33 #include "flags.h"
34 #include "tree-inline.h"
35 #include "tree-affine.h"
37 /* FIXME: We compute address costs using RTL. */
38 #include "insn-config.h"
39 #include "rtl.h"
40 #include "recog.h"
41 #include "expr.h"
42 #include "ggc.h"
43 #include "target.h"
44 #include "expmed.h"
45 #include "tree-ssa-address.h"
47 /* TODO -- handling of symbols (according to Richard Hendersons
48 comments, http://gcc.gnu.org/ml/gcc-patches/2005-04/msg00949.html):
50 There are at least 5 different kinds of symbols that we can run up against:
52 (1) binds_local_p, small data area.
53 (2) binds_local_p, eg local statics
54 (3) !binds_local_p, eg global variables
55 (4) thread local, local_exec
56 (5) thread local, !local_exec
58 Now, (1) won't appear often in an array context, but it certainly can.
59 All you have to do is set -GN high enough, or explicitly mark any
60 random object __attribute__((section (".sdata"))).
62 All of these affect whether or not a symbol is in fact a valid address.
63 The only one tested here is (3). And that result may very well
64 be incorrect for (4) or (5).
66 An incorrect result here does not cause incorrect results out the
67 back end, because the expander in expr.c validizes the address. However
68 it would be nice to improve the handling here in order to produce more
69 precise results. */
71 /* A "template" for memory address, used to determine whether the address is
72 valid for mode. */
74 typedef struct GTY (()) mem_addr_template {
75 rtx ref; /* The template. */
76 rtx * GTY ((skip)) step_p; /* The point in template where the step should be
77 filled in. */
78 rtx * GTY ((skip)) off_p; /* The point in template where the offset should
79 be filled in. */
80 } mem_addr_template;
83 /* The templates. Each of the low five bits of the index corresponds to one
84 component of TARGET_MEM_REF being present, while the high bits identify
85 the address space. See TEMPL_IDX. */
87 static GTY(()) vec<mem_addr_template, va_gc> *mem_addr_template_list;
89 #define TEMPL_IDX(AS, SYMBOL, BASE, INDEX, STEP, OFFSET) \
90 (((int) (AS) << 5) \
91 | ((SYMBOL != 0) << 4) \
92 | ((BASE != 0) << 3) \
93 | ((INDEX != 0) << 2) \
94 | ((STEP != 0) << 1) \
95 | (OFFSET != 0))
97 /* Stores address for memory reference with parameters SYMBOL, BASE, INDEX,
98 STEP and OFFSET to *ADDR using address mode ADDRESS_MODE. Stores pointers
99 to where step is placed to *STEP_P and offset to *OFFSET_P. */
101 static void
102 gen_addr_rtx (enum machine_mode address_mode,
103 rtx symbol, rtx base, rtx index, rtx step, rtx offset,
104 rtx *addr, rtx **step_p, rtx **offset_p)
106 rtx act_elem;
108 *addr = NULL_RTX;
109 if (step_p)
110 *step_p = NULL;
111 if (offset_p)
112 *offset_p = NULL;
114 if (index)
116 act_elem = index;
117 if (step)
119 act_elem = gen_rtx_MULT (address_mode, act_elem, step);
121 if (step_p)
122 *step_p = &XEXP (act_elem, 1);
125 *addr = act_elem;
128 if (base && base != const0_rtx)
130 if (*addr)
131 *addr = simplify_gen_binary (PLUS, address_mode, base, *addr);
132 else
133 *addr = base;
136 if (symbol)
138 act_elem = symbol;
139 if (offset)
141 act_elem = gen_rtx_PLUS (address_mode, act_elem, offset);
143 if (offset_p)
144 *offset_p = &XEXP (act_elem, 1);
146 if (GET_CODE (symbol) == SYMBOL_REF
147 || GET_CODE (symbol) == LABEL_REF
148 || GET_CODE (symbol) == CONST)
149 act_elem = gen_rtx_CONST (address_mode, act_elem);
152 if (*addr)
153 *addr = gen_rtx_PLUS (address_mode, *addr, act_elem);
154 else
155 *addr = act_elem;
157 else if (offset)
159 if (*addr)
161 *addr = gen_rtx_PLUS (address_mode, *addr, offset);
162 if (offset_p)
163 *offset_p = &XEXP (*addr, 1);
165 else
167 *addr = offset;
168 if (offset_p)
169 *offset_p = addr;
173 if (!*addr)
174 *addr = const0_rtx;
177 /* Description of a memory address. */
179 struct mem_address
181 tree symbol, base, index, step, offset;
184 /* Returns address for TARGET_MEM_REF with parameters given by ADDR
185 in address space AS.
186 If REALLY_EXPAND is false, just make fake registers instead
187 of really expanding the operands, and perform the expansion in-place
188 by using one of the "templates". */
191 addr_for_mem_ref (struct mem_address *addr, addr_space_t as,
192 bool really_expand)
194 enum machine_mode address_mode = targetm.addr_space.address_mode (as);
195 enum machine_mode pointer_mode = targetm.addr_space.pointer_mode (as);
196 rtx address, sym, bse, idx, st, off;
197 struct mem_addr_template *templ;
199 if (addr->step && !integer_onep (addr->step))
200 st = immed_double_int_const (tree_to_double_int (addr->step), pointer_mode);
201 else
202 st = NULL_RTX;
204 if (addr->offset && !integer_zerop (addr->offset))
205 off = immed_double_int_const
206 (tree_to_double_int (addr->offset)
207 .sext (TYPE_PRECISION (TREE_TYPE (addr->offset))),
208 pointer_mode);
209 else
210 off = NULL_RTX;
212 if (!really_expand)
214 unsigned int templ_index
215 = TEMPL_IDX (as, addr->symbol, addr->base, addr->index, st, off);
217 if (templ_index >= vec_safe_length (mem_addr_template_list))
218 vec_safe_grow_cleared (mem_addr_template_list, templ_index + 1);
220 /* Reuse the templates for addresses, so that we do not waste memory. */
221 templ = &(*mem_addr_template_list)[templ_index];
222 if (!templ->ref)
224 sym = (addr->symbol ?
225 gen_rtx_SYMBOL_REF (pointer_mode, ggc_strdup ("test_symbol"))
226 : NULL_RTX);
227 bse = (addr->base ?
228 gen_raw_REG (pointer_mode, LAST_VIRTUAL_REGISTER + 1)
229 : NULL_RTX);
230 idx = (addr->index ?
231 gen_raw_REG (pointer_mode, LAST_VIRTUAL_REGISTER + 2)
232 : NULL_RTX);
234 gen_addr_rtx (pointer_mode, sym, bse, idx,
235 st? const0_rtx : NULL_RTX,
236 off? const0_rtx : NULL_RTX,
237 &templ->ref,
238 &templ->step_p,
239 &templ->off_p);
242 if (st)
243 *templ->step_p = st;
244 if (off)
245 *templ->off_p = off;
247 return templ->ref;
250 /* Otherwise really expand the expressions. */
251 sym = (addr->symbol
252 ? expand_expr (addr->symbol, NULL_RTX, pointer_mode, EXPAND_NORMAL)
253 : NULL_RTX);
254 bse = (addr->base
255 ? expand_expr (addr->base, NULL_RTX, pointer_mode, EXPAND_NORMAL)
256 : NULL_RTX);
257 idx = (addr->index
258 ? expand_expr (addr->index, NULL_RTX, pointer_mode, EXPAND_NORMAL)
259 : NULL_RTX);
261 gen_addr_rtx (pointer_mode, sym, bse, idx, st, off, &address, NULL, NULL);
262 if (pointer_mode != address_mode)
263 address = convert_memory_address (address_mode, address);
264 return address;
267 /* implement addr_for_mem_ref() directly from a tree, which avoids exporting
268 the mem_address structure. */
271 addr_for_mem_ref (tree exp, addr_space_t as, bool really_expand)
273 struct mem_address addr;
274 get_address_description (exp, &addr);
275 return addr_for_mem_ref (&addr, as, really_expand);
278 /* Returns address of MEM_REF in TYPE. */
280 tree
281 tree_mem_ref_addr (tree type, tree mem_ref)
283 tree addr;
284 tree act_elem;
285 tree step = TMR_STEP (mem_ref), offset = TMR_OFFSET (mem_ref);
286 tree addr_base = NULL_TREE, addr_off = NULL_TREE;
288 addr_base = fold_convert (type, TMR_BASE (mem_ref));
290 act_elem = TMR_INDEX (mem_ref);
291 if (act_elem)
293 if (step)
294 act_elem = fold_build2 (MULT_EXPR, TREE_TYPE (act_elem),
295 act_elem, step);
296 addr_off = act_elem;
299 act_elem = TMR_INDEX2 (mem_ref);
300 if (act_elem)
302 if (addr_off)
303 addr_off = fold_build2 (PLUS_EXPR, TREE_TYPE (addr_off),
304 addr_off, act_elem);
305 else
306 addr_off = act_elem;
309 if (offset && !integer_zerop (offset))
311 if (addr_off)
312 addr_off = fold_build2 (PLUS_EXPR, TREE_TYPE (addr_off), addr_off,
313 fold_convert (TREE_TYPE (addr_off), offset));
314 else
315 addr_off = offset;
318 if (addr_off)
319 addr = fold_build_pointer_plus (addr_base, addr_off);
320 else
321 addr = addr_base;
323 return addr;
326 /* Returns true if a memory reference in MODE and with parameters given by
327 ADDR is valid on the current target. */
329 static bool
330 valid_mem_ref_p (enum machine_mode mode, addr_space_t as,
331 struct mem_address *addr)
333 rtx address;
335 address = addr_for_mem_ref (addr, as, false);
336 if (!address)
337 return false;
339 return memory_address_addr_space_p (mode, address, as);
342 /* Checks whether a TARGET_MEM_REF with type TYPE and parameters given by ADDR
343 is valid on the current target and if so, creates and returns the
344 TARGET_MEM_REF. If VERIFY is false omit the verification step. */
346 static tree
347 create_mem_ref_raw (tree type, tree alias_ptr_type, struct mem_address *addr,
348 bool verify)
350 tree base, index2;
352 if (verify
353 && !valid_mem_ref_p (TYPE_MODE (type), TYPE_ADDR_SPACE (type), addr))
354 return NULL_TREE;
356 if (addr->step && integer_onep (addr->step))
357 addr->step = NULL_TREE;
359 if (addr->offset)
360 addr->offset = fold_convert (alias_ptr_type, addr->offset);
361 else
362 addr->offset = build_int_cst (alias_ptr_type, 0);
364 if (addr->symbol)
366 base = addr->symbol;
367 index2 = addr->base;
369 else if (addr->base
370 && POINTER_TYPE_P (TREE_TYPE (addr->base)))
372 base = addr->base;
373 index2 = NULL_TREE;
375 else
377 base = build_int_cst (ptr_type_node, 0);
378 index2 = addr->base;
381 /* If possible use a plain MEM_REF instead of a TARGET_MEM_REF.
382 ??? As IVOPTs does not follow restrictions to where the base
383 pointer may point to create a MEM_REF only if we know that
384 base is valid. */
385 if ((TREE_CODE (base) == ADDR_EXPR || TREE_CODE (base) == INTEGER_CST)
386 && (!index2 || integer_zerop (index2))
387 && (!addr->index || integer_zerop (addr->index)))
388 return fold_build2 (MEM_REF, type, base, addr->offset);
390 return build5 (TARGET_MEM_REF, type,
391 base, addr->offset, addr->index, addr->step, index2);
394 /* Returns true if OBJ is an object whose address is a link time constant. */
396 static bool
397 fixed_address_object_p (tree obj)
399 return (TREE_CODE (obj) == VAR_DECL
400 && (TREE_STATIC (obj)
401 || DECL_EXTERNAL (obj))
402 && ! DECL_DLLIMPORT_P (obj));
405 /* If ADDR contains an address of object that is a link time constant,
406 move it to PARTS->symbol. */
408 static void
409 move_fixed_address_to_symbol (struct mem_address *parts, aff_tree *addr)
411 unsigned i;
412 tree val = NULL_TREE;
414 for (i = 0; i < addr->n; i++)
416 if (!addr->elts[i].coef.is_one ())
417 continue;
419 val = addr->elts[i].val;
420 if (TREE_CODE (val) == ADDR_EXPR
421 && fixed_address_object_p (TREE_OPERAND (val, 0)))
422 break;
425 if (i == addr->n)
426 return;
428 parts->symbol = val;
429 aff_combination_remove_elt (addr, i);
432 /* If ADDR contains an instance of BASE_HINT, move it to PARTS->base. */
434 static void
435 move_hint_to_base (tree type, struct mem_address *parts, tree base_hint,
436 aff_tree *addr)
438 unsigned i;
439 tree val = NULL_TREE;
440 int qual;
442 for (i = 0; i < addr->n; i++)
444 if (!addr->elts[i].coef.is_one ())
445 continue;
447 val = addr->elts[i].val;
448 if (operand_equal_p (val, base_hint, 0))
449 break;
452 if (i == addr->n)
453 return;
455 /* Cast value to appropriate pointer type. We cannot use a pointer
456 to TYPE directly, as the back-end will assume registers of pointer
457 type are aligned, and just the base itself may not actually be.
458 We use void pointer to the type's address space instead. */
459 qual = ENCODE_QUAL_ADDR_SPACE (TYPE_ADDR_SPACE (type));
460 type = build_qualified_type (void_type_node, qual);
461 parts->base = fold_convert (build_pointer_type (type), val);
462 aff_combination_remove_elt (addr, i);
465 /* If ADDR contains an address of a dereferenced pointer, move it to
466 PARTS->base. */
468 static void
469 move_pointer_to_base (struct mem_address *parts, aff_tree *addr)
471 unsigned i;
472 tree val = NULL_TREE;
474 for (i = 0; i < addr->n; i++)
476 if (!addr->elts[i].coef.is_one ())
477 continue;
479 val = addr->elts[i].val;
480 if (POINTER_TYPE_P (TREE_TYPE (val)))
481 break;
484 if (i == addr->n)
485 return;
487 parts->base = val;
488 aff_combination_remove_elt (addr, i);
491 /* Moves the loop variant part V in linear address ADDR to be the index
492 of PARTS. */
494 static void
495 move_variant_to_index (struct mem_address *parts, aff_tree *addr, tree v)
497 unsigned i;
498 tree val = NULL_TREE;
500 gcc_assert (!parts->index);
501 for (i = 0; i < addr->n; i++)
503 val = addr->elts[i].val;
504 if (operand_equal_p (val, v, 0))
505 break;
508 if (i == addr->n)
509 return;
511 parts->index = fold_convert (sizetype, val);
512 parts->step = double_int_to_tree (sizetype, addr->elts[i].coef);
513 aff_combination_remove_elt (addr, i);
516 /* Adds ELT to PARTS. */
518 static void
519 add_to_parts (struct mem_address *parts, tree elt)
521 tree type;
523 if (!parts->index)
525 parts->index = fold_convert (sizetype, elt);
526 return;
529 if (!parts->base)
531 parts->base = elt;
532 return;
535 /* Add ELT to base. */
536 type = TREE_TYPE (parts->base);
537 if (POINTER_TYPE_P (type))
538 parts->base = fold_build_pointer_plus (parts->base, elt);
539 else
540 parts->base = fold_build2 (PLUS_EXPR, type,
541 parts->base, elt);
544 /* Finds the most expensive multiplication in ADDR that can be
545 expressed in an addressing mode and move the corresponding
546 element(s) to PARTS. */
548 static void
549 most_expensive_mult_to_index (tree type, struct mem_address *parts,
550 aff_tree *addr, bool speed)
552 addr_space_t as = TYPE_ADDR_SPACE (type);
553 enum machine_mode address_mode = targetm.addr_space.address_mode (as);
554 HOST_WIDE_INT coef;
555 double_int best_mult, amult, amult_neg;
556 unsigned best_mult_cost = 0, acost;
557 tree mult_elt = NULL_TREE, elt;
558 unsigned i, j;
559 enum tree_code op_code;
561 best_mult = double_int_zero;
562 for (i = 0; i < addr->n; i++)
564 if (!addr->elts[i].coef.fits_shwi ())
565 continue;
567 coef = addr->elts[i].coef.to_shwi ();
568 if (coef == 1
569 || !multiplier_allowed_in_address_p (coef, TYPE_MODE (type), as))
570 continue;
572 acost = mult_by_coeff_cost (coef, address_mode, speed);
574 if (acost > best_mult_cost)
576 best_mult_cost = acost;
577 best_mult = addr->elts[i].coef;
581 if (!best_mult_cost)
582 return;
584 /* Collect elements multiplied by best_mult. */
585 for (i = j = 0; i < addr->n; i++)
587 amult = addr->elts[i].coef;
588 amult_neg = double_int_ext_for_comb (-amult, addr);
590 if (amult == best_mult)
591 op_code = PLUS_EXPR;
592 else if (amult_neg == best_mult)
593 op_code = MINUS_EXPR;
594 else
596 addr->elts[j] = addr->elts[i];
597 j++;
598 continue;
601 elt = fold_convert (sizetype, addr->elts[i].val);
602 if (mult_elt)
603 mult_elt = fold_build2 (op_code, sizetype, mult_elt, elt);
604 else if (op_code == PLUS_EXPR)
605 mult_elt = elt;
606 else
607 mult_elt = fold_build1 (NEGATE_EXPR, sizetype, elt);
609 addr->n = j;
611 parts->index = mult_elt;
612 parts->step = double_int_to_tree (sizetype, best_mult);
615 /* Splits address ADDR for a memory access of type TYPE into PARTS.
616 If BASE_HINT is non-NULL, it specifies an SSA name to be used
617 preferentially as base of the reference, and IV_CAND is the selected
618 iv candidate used in ADDR.
620 TODO -- be more clever about the distribution of the elements of ADDR
621 to PARTS. Some architectures do not support anything but single
622 register in address, possibly with a small integer offset; while
623 create_mem_ref will simplify the address to an acceptable shape
624 later, it would be more efficient to know that asking for complicated
625 addressing modes is useless. */
627 static void
628 addr_to_parts (tree type, aff_tree *addr, tree iv_cand,
629 tree base_hint, struct mem_address *parts,
630 bool speed)
632 tree part;
633 unsigned i;
635 parts->symbol = NULL_TREE;
636 parts->base = NULL_TREE;
637 parts->index = NULL_TREE;
638 parts->step = NULL_TREE;
640 if (!addr->offset.is_zero ())
641 parts->offset = double_int_to_tree (sizetype, addr->offset);
642 else
643 parts->offset = NULL_TREE;
645 /* Try to find a symbol. */
646 move_fixed_address_to_symbol (parts, addr);
648 /* No need to do address parts reassociation if the number of parts
649 is <= 2 -- in that case, no loop invariant code motion can be
650 exposed. */
652 if (!base_hint && (addr->n > 2))
653 move_variant_to_index (parts, addr, iv_cand);
655 /* First move the most expensive feasible multiplication
656 to index. */
657 if (!parts->index)
658 most_expensive_mult_to_index (type, parts, addr, speed);
660 /* Try to find a base of the reference. Since at the moment
661 there is no reliable way how to distinguish between pointer and its
662 offset, this is just a guess. */
663 if (!parts->symbol && base_hint)
664 move_hint_to_base (type, parts, base_hint, addr);
665 if (!parts->symbol && !parts->base)
666 move_pointer_to_base (parts, addr);
668 /* Then try to process the remaining elements. */
669 for (i = 0; i < addr->n; i++)
671 part = fold_convert (sizetype, addr->elts[i].val);
672 if (!addr->elts[i].coef.is_one ())
673 part = fold_build2 (MULT_EXPR, sizetype, part,
674 double_int_to_tree (sizetype, addr->elts[i].coef));
675 add_to_parts (parts, part);
677 if (addr->rest)
678 add_to_parts (parts, fold_convert (sizetype, addr->rest));
681 /* Force the PARTS to register. */
683 static void
684 gimplify_mem_ref_parts (gimple_stmt_iterator *gsi, struct mem_address *parts)
686 if (parts->base)
687 parts->base = force_gimple_operand_gsi_1 (gsi, parts->base,
688 is_gimple_mem_ref_addr, NULL_TREE,
689 true, GSI_SAME_STMT);
690 if (parts->index)
691 parts->index = force_gimple_operand_gsi (gsi, parts->index,
692 true, NULL_TREE,
693 true, GSI_SAME_STMT);
696 /* Creates and returns a TARGET_MEM_REF for address ADDR. If necessary
697 computations are emitted in front of GSI. TYPE is the mode
698 of created memory reference. IV_CAND is the selected iv candidate in ADDR,
699 and BASE_HINT is non NULL if IV_CAND comes from a base address
700 object. */
702 tree
703 create_mem_ref (gimple_stmt_iterator *gsi, tree type, aff_tree *addr,
704 tree alias_ptr_type, tree iv_cand, tree base_hint, bool speed)
706 tree mem_ref, tmp;
707 struct mem_address parts;
709 addr_to_parts (type, addr, iv_cand, base_hint, &parts, speed);
710 gimplify_mem_ref_parts (gsi, &parts);
711 mem_ref = create_mem_ref_raw (type, alias_ptr_type, &parts, true);
712 if (mem_ref)
713 return mem_ref;
715 /* The expression is too complicated. Try making it simpler. */
717 if (parts.step && !integer_onep (parts.step))
719 /* Move the multiplication to index. */
720 gcc_assert (parts.index);
721 parts.index = force_gimple_operand_gsi (gsi,
722 fold_build2 (MULT_EXPR, sizetype,
723 parts.index, parts.step),
724 true, NULL_TREE, true, GSI_SAME_STMT);
725 parts.step = NULL_TREE;
727 mem_ref = create_mem_ref_raw (type, alias_ptr_type, &parts, true);
728 if (mem_ref)
729 return mem_ref;
732 if (parts.symbol)
734 tmp = parts.symbol;
735 gcc_assert (is_gimple_val (tmp));
737 /* Add the symbol to base, eventually forcing it to register. */
738 if (parts.base)
740 gcc_assert (useless_type_conversion_p
741 (sizetype, TREE_TYPE (parts.base)));
743 if (parts.index)
745 parts.base = force_gimple_operand_gsi_1 (gsi,
746 fold_build_pointer_plus (tmp, parts.base),
747 is_gimple_mem_ref_addr, NULL_TREE, true, GSI_SAME_STMT);
749 else
751 parts.index = parts.base;
752 parts.base = tmp;
755 else
756 parts.base = tmp;
757 parts.symbol = NULL_TREE;
759 mem_ref = create_mem_ref_raw (type, alias_ptr_type, &parts, true);
760 if (mem_ref)
761 return mem_ref;
764 if (parts.index)
766 /* Add index to base. */
767 if (parts.base)
769 parts.base = force_gimple_operand_gsi_1 (gsi,
770 fold_build_pointer_plus (parts.base, parts.index),
771 is_gimple_mem_ref_addr, NULL_TREE, true, GSI_SAME_STMT);
773 else
774 parts.base = parts.index;
775 parts.index = NULL_TREE;
777 mem_ref = create_mem_ref_raw (type, alias_ptr_type, &parts, true);
778 if (mem_ref)
779 return mem_ref;
782 if (parts.offset && !integer_zerop (parts.offset))
784 /* Try adding offset to base. */
785 if (parts.base)
787 parts.base = force_gimple_operand_gsi_1 (gsi,
788 fold_build_pointer_plus (parts.base, parts.offset),
789 is_gimple_mem_ref_addr, NULL_TREE, true, GSI_SAME_STMT);
791 else
792 parts.base = parts.offset;
794 parts.offset = NULL_TREE;
796 mem_ref = create_mem_ref_raw (type, alias_ptr_type, &parts, true);
797 if (mem_ref)
798 return mem_ref;
801 /* Verify that the address is in the simplest possible shape
802 (only a register). If we cannot create such a memory reference,
803 something is really wrong. */
804 gcc_assert (parts.symbol == NULL_TREE);
805 gcc_assert (parts.index == NULL_TREE);
806 gcc_assert (!parts.step || integer_onep (parts.step));
807 gcc_assert (!parts.offset || integer_zerop (parts.offset));
808 gcc_unreachable ();
811 /* Copies components of the address from OP to ADDR. */
813 void
814 get_address_description (tree op, struct mem_address *addr)
816 if (TREE_CODE (TMR_BASE (op)) == ADDR_EXPR)
818 addr->symbol = TMR_BASE (op);
819 addr->base = TMR_INDEX2 (op);
821 else
823 addr->symbol = NULL_TREE;
824 if (TMR_INDEX2 (op))
826 gcc_assert (integer_zerop (TMR_BASE (op)));
827 addr->base = TMR_INDEX2 (op);
829 else
830 addr->base = TMR_BASE (op);
832 addr->index = TMR_INDEX (op);
833 addr->step = TMR_STEP (op);
834 addr->offset = TMR_OFFSET (op);
837 /* Copies the reference information from OLD_REF to NEW_REF, where
838 NEW_REF should be either a MEM_REF or a TARGET_MEM_REF. */
840 void
841 copy_ref_info (tree new_ref, tree old_ref)
843 tree new_ptr_base = NULL_TREE;
845 gcc_assert (TREE_CODE (new_ref) == MEM_REF
846 || TREE_CODE (new_ref) == TARGET_MEM_REF);
848 TREE_SIDE_EFFECTS (new_ref) = TREE_SIDE_EFFECTS (old_ref);
849 TREE_THIS_VOLATILE (new_ref) = TREE_THIS_VOLATILE (old_ref);
851 new_ptr_base = TREE_OPERAND (new_ref, 0);
853 /* We can transfer points-to information from an old pointer
854 or decl base to the new one. */
855 if (new_ptr_base
856 && TREE_CODE (new_ptr_base) == SSA_NAME
857 && !SSA_NAME_PTR_INFO (new_ptr_base))
859 tree base = get_base_address (old_ref);
860 if (!base)
862 else if ((TREE_CODE (base) == MEM_REF
863 || TREE_CODE (base) == TARGET_MEM_REF)
864 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME
865 && SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0)))
867 struct ptr_info_def *new_pi;
868 unsigned int align, misalign;
870 duplicate_ssa_name_ptr_info
871 (new_ptr_base, SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0)));
872 new_pi = SSA_NAME_PTR_INFO (new_ptr_base);
873 /* We have to be careful about transferring alignment information. */
874 if (get_ptr_info_alignment (new_pi, &align, &misalign)
875 && TREE_CODE (old_ref) == MEM_REF
876 && !(TREE_CODE (new_ref) == TARGET_MEM_REF
877 && (TMR_INDEX2 (new_ref)
878 || (TMR_STEP (new_ref)
879 && (TREE_INT_CST_LOW (TMR_STEP (new_ref))
880 < align)))))
882 unsigned int inc = (mem_ref_offset (old_ref)
883 - mem_ref_offset (new_ref)).low;
884 adjust_ptr_info_misalignment (new_pi, inc);
886 else
887 mark_ptr_info_alignment_unknown (new_pi);
889 else if (TREE_CODE (base) == VAR_DECL
890 || TREE_CODE (base) == PARM_DECL
891 || TREE_CODE (base) == RESULT_DECL)
893 struct ptr_info_def *pi = get_ptr_info (new_ptr_base);
894 pt_solution_set_var (&pi->pt, base);
899 /* Move constants in target_mem_ref REF to offset. Returns the new target
900 mem ref if anything changes, NULL_TREE otherwise. */
902 tree
903 maybe_fold_tmr (tree ref)
905 struct mem_address addr;
906 bool changed = false;
907 tree new_ref, off;
909 get_address_description (ref, &addr);
911 if (addr.base
912 && TREE_CODE (addr.base) == INTEGER_CST
913 && !integer_zerop (addr.base))
915 addr.offset = fold_binary_to_constant (PLUS_EXPR,
916 TREE_TYPE (addr.offset),
917 addr.offset, addr.base);
918 addr.base = NULL_TREE;
919 changed = true;
922 if (addr.symbol
923 && TREE_CODE (TREE_OPERAND (addr.symbol, 0)) == MEM_REF)
925 addr.offset = fold_binary_to_constant
926 (PLUS_EXPR, TREE_TYPE (addr.offset),
927 addr.offset,
928 TREE_OPERAND (TREE_OPERAND (addr.symbol, 0), 1));
929 addr.symbol = TREE_OPERAND (TREE_OPERAND (addr.symbol, 0), 0);
930 changed = true;
932 else if (addr.symbol
933 && handled_component_p (TREE_OPERAND (addr.symbol, 0)))
935 HOST_WIDE_INT offset;
936 addr.symbol = build_fold_addr_expr
937 (get_addr_base_and_unit_offset
938 (TREE_OPERAND (addr.symbol, 0), &offset));
939 addr.offset = int_const_binop (PLUS_EXPR,
940 addr.offset, size_int (offset));
941 changed = true;
944 if (addr.index && TREE_CODE (addr.index) == INTEGER_CST)
946 off = addr.index;
947 if (addr.step)
949 off = fold_binary_to_constant (MULT_EXPR, sizetype,
950 off, addr.step);
951 addr.step = NULL_TREE;
954 addr.offset = fold_binary_to_constant (PLUS_EXPR,
955 TREE_TYPE (addr.offset),
956 addr.offset, off);
957 addr.index = NULL_TREE;
958 changed = true;
961 if (!changed)
962 return NULL_TREE;
964 /* If we have propagated something into this TARGET_MEM_REF and thus
965 ended up folding it, always create a new TARGET_MEM_REF regardless
966 if it is valid in this for on the target - the propagation result
967 wouldn't be anyway. */
968 new_ref = create_mem_ref_raw (TREE_TYPE (ref),
969 TREE_TYPE (addr.offset), &addr, false);
970 TREE_SIDE_EFFECTS (new_ref) = TREE_SIDE_EFFECTS (ref);
971 TREE_THIS_VOLATILE (new_ref) = TREE_THIS_VOLATILE (ref);
972 return new_ref;
975 /* Dump PARTS to FILE. */
977 extern void dump_mem_address (FILE *, struct mem_address *);
978 void
979 dump_mem_address (FILE *file, struct mem_address *parts)
981 if (parts->symbol)
983 fprintf (file, "symbol: ");
984 print_generic_expr (file, TREE_OPERAND (parts->symbol, 0), TDF_SLIM);
985 fprintf (file, "\n");
987 if (parts->base)
989 fprintf (file, "base: ");
990 print_generic_expr (file, parts->base, TDF_SLIM);
991 fprintf (file, "\n");
993 if (parts->index)
995 fprintf (file, "index: ");
996 print_generic_expr (file, parts->index, TDF_SLIM);
997 fprintf (file, "\n");
999 if (parts->step)
1001 fprintf (file, "step: ");
1002 print_generic_expr (file, parts->step, TDF_SLIM);
1003 fprintf (file, "\n");
1005 if (parts->offset)
1007 fprintf (file, "offset: ");
1008 print_generic_expr (file, parts->offset, TDF_SLIM);
1009 fprintf (file, "\n");
1013 #include "gt-tree-ssa-address.h"