1 /* String length optimization
2 Copyright (C) 2011-2018 Free Software Foundation, Inc.
3 Contributed by Jakub Jelinek <jakub@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
28 #include "alloc-pool.h"
29 #include "tree-pass.h"
32 #include "gimple-pretty-print.h"
33 #include "gimple-ssa-warn-restrict.h"
34 #include "fold-const.h"
35 #include "stor-layout.h"
36 #include "gimple-fold.h"
39 #include "gimple-iterator.h"
40 #include "gimplify-me.h"
45 #include "tree-ssa-alias.h"
46 #include "tree-ssa-propagate.h"
49 #include "tree-hash-traits.h"
52 #include "diagnostic-core.h"
53 #include "diagnostic.h"
58 /* A vector indexed by SSA_NAME_VERSION. 0 means unknown, positive value
59 is an index into strinfo vector, negative value stands for
60 string length of a string literal (~strlen). */
61 static vec
<int> ssa_ver_to_stridx
;
63 /* Number of currently active string indexes plus one. */
64 static int max_stridx
;
66 /* String information record. */
69 /* Number of leading characters that are known to be nonzero. This is
70 also the length of the string if FULL_STRING_P.
72 The values in a list of related string pointers must be consistent;
73 that is, if strinfo B comes X bytes after strinfo A, it must be
74 the case that A->nonzero_chars == X + B->nonzero_chars. */
76 /* Any of the corresponding pointers for querying alias oracle. */
78 /* This is used for two things:
80 - To record the statement that should be used for delayed length
81 computations. We maintain the invariant that all related strinfos
82 have delayed lengths or none do.
84 - To record the malloc or calloc call that produced this result. */
86 /* Pointer to '\0' if known, if NULL, it can be computed as
89 /* Reference count. Any changes to strinfo entry possibly shared
90 with dominating basic blocks need unshare_strinfo first, except
91 for dont_invalidate which affects only the immediately next
94 /* Copy of index. get_strinfo (si->idx) should return si; */
96 /* These 3 fields are for chaining related string pointers together.
98 bl = strlen (b); dl = strlen (d); strcpy (a, b); c = a + bl;
99 strcpy (c, d); e = c + dl;
100 strinfo(a) -> strinfo(c) -> strinfo(e)
101 All have ->first field equal to strinfo(a)->idx and are doubly
102 chained through prev/next fields. The later strinfos are required
103 to point into the same string with zero or more bytes after
104 the previous pointer and all bytes in between the two pointers
105 must be non-zero. Functions like strcpy or memcpy are supposed
106 to adjust all previous strinfo lengths, but not following strinfo
107 lengths (those are uncertain, usually invalidated during
108 maybe_invalidate, except when the alias oracle knows better).
109 Functions like strcat on the other side adjust the whole
110 related strinfo chain.
111 They are updated lazily, so to use the chain the same first fields
112 and si->prev->next == si->idx needs to be verified. */
116 /* A flag whether the string is known to be written in the current
119 /* A flag for the next maybe_invalidate that this strinfo shouldn't
120 be invalidated. Always cleared by maybe_invalidate. */
121 bool dont_invalidate
;
122 /* True if the string is known to be nul-terminated after NONZERO_CHARS
123 characters. False is useful when detecting strings that are built
124 up via successive memcpys. */
128 /* Pool for allocating strinfo_struct entries. */
129 static object_allocator
<strinfo
> strinfo_pool ("strinfo pool");
131 /* Vector mapping positive string indexes to strinfo, for the
132 current basic block. The first pointer in the vector is special,
133 it is either NULL, meaning the vector isn't shared, or it is
134 a basic block pointer to the owner basic_block if shared.
135 If some other bb wants to modify the vector, the vector needs
136 to be unshared first, and only the owner bb is supposed to free it. */
137 static vec
<strinfo
*, va_heap
, vl_embed
> *stridx_to_strinfo
;
139 /* One OFFSET->IDX mapping. */
142 struct stridxlist
*next
;
143 HOST_WIDE_INT offset
;
147 /* Hash table entry, mapping a DECL to a chain of OFFSET->IDX mappings. */
148 struct decl_stridxlist_map
150 struct tree_map_base base
;
151 struct stridxlist list
;
154 /* Hash table for mapping decls to a chained list of offset -> idx
156 static hash_map
<tree_decl_hash
, stridxlist
> *decl_to_stridxlist_htab
;
158 /* Hash table mapping strlen calls to stridx instances describing
159 the calls' arguments. Non-null only when warn_stringop_truncation
161 typedef std::pair
<int, location_t
> stridx_strlenloc
;
162 static hash_map
<tree
, stridx_strlenloc
> *strlen_to_stridx
;
164 /* Obstack for struct stridxlist and struct decl_stridxlist_map. */
165 static struct obstack stridx_obstack
;
167 /* Last memcpy statement if it could be adjusted if the trailing
168 '\0' written is immediately overwritten, or
169 *x = '\0' store that could be removed if it is immediately overwritten. */
170 struct laststmt_struct
177 static int get_stridx_plus_constant (strinfo
*, unsigned HOST_WIDE_INT
, tree
);
178 static void handle_builtin_stxncpy (built_in_function
, gimple_stmt_iterator
*);
182 - 1 if SI is known to start with more than OFF nonzero characters.
184 - 0 if SI is known to start with OFF nonzero characters,
185 but is not known to start with more.
187 - -1 if SI might not start with OFF nonzero characters. */
190 compare_nonzero_chars (strinfo
*si
, unsigned HOST_WIDE_INT off
)
192 if (si
->nonzero_chars
193 && TREE_CODE (si
->nonzero_chars
) == INTEGER_CST
)
194 return compare_tree_int (si
->nonzero_chars
, off
);
199 /* Return true if SI is known to be a zero-length string. */
202 zero_length_string_p (strinfo
*si
)
204 return si
->full_string_p
&& integer_zerop (si
->nonzero_chars
);
207 /* Return strinfo vector entry IDX. */
209 static inline strinfo
*
210 get_strinfo (int idx
)
212 if (vec_safe_length (stridx_to_strinfo
) <= (unsigned int) idx
)
214 return (*stridx_to_strinfo
)[idx
];
217 /* Get the next strinfo in the chain after SI, or null if none. */
219 static inline strinfo
*
220 get_next_strinfo (strinfo
*si
)
224 strinfo
*nextsi
= get_strinfo (si
->next
);
225 if (nextsi
== NULL
|| nextsi
->first
!= si
->first
|| nextsi
->prev
!= si
->idx
)
230 /* Helper function for get_stridx. Return the strinfo index of the address
231 of EXP, which is available in PTR if nonnull. If OFFSET_OUT, it is
232 OK to return the index for some X <= &EXP and store &EXP - X in
236 get_addr_stridx (tree exp
, tree ptr
, unsigned HOST_WIDE_INT
*offset_out
)
239 struct stridxlist
*list
, *last
= NULL
;
242 if (!decl_to_stridxlist_htab
)
246 base
= get_addr_base_and_unit_offset (exp
, &poff
);
247 if (base
== NULL
|| !DECL_P (base
) || !poff
.is_constant (&off
))
250 list
= decl_to_stridxlist_htab
->get (base
);
256 if (list
->offset
== off
)
262 if (list
->offset
> off
)
269 if ((offset_out
|| ptr
) && last
&& last
->idx
> 0)
271 unsigned HOST_WIDE_INT rel_off
272 = (unsigned HOST_WIDE_INT
) off
- last
->offset
;
273 strinfo
*si
= get_strinfo (last
->idx
);
274 if (si
&& compare_nonzero_chars (si
, rel_off
) >= 0)
278 *offset_out
= rel_off
;
282 return get_stridx_plus_constant (si
, rel_off
, ptr
);
288 /* Return string index for EXP. */
291 get_stridx (tree exp
)
295 if (TREE_CODE (exp
) == SSA_NAME
)
297 if (ssa_ver_to_stridx
[SSA_NAME_VERSION (exp
)])
298 return ssa_ver_to_stridx
[SSA_NAME_VERSION (exp
)];
301 HOST_WIDE_INT off
= 0;
302 for (i
= 0; i
< 5; i
++)
304 gimple
*def_stmt
= SSA_NAME_DEF_STMT (e
);
305 if (!is_gimple_assign (def_stmt
)
306 || gimple_assign_rhs_code (def_stmt
) != POINTER_PLUS_EXPR
)
308 tree rhs1
= gimple_assign_rhs1 (def_stmt
);
309 tree rhs2
= gimple_assign_rhs2 (def_stmt
);
310 if (TREE_CODE (rhs1
) != SSA_NAME
311 || !tree_fits_shwi_p (rhs2
))
313 HOST_WIDE_INT this_off
= tree_to_shwi (rhs2
);
316 off
= (unsigned HOST_WIDE_INT
) off
+ this_off
;
319 if (ssa_ver_to_stridx
[SSA_NAME_VERSION (rhs1
)])
322 = get_strinfo (ssa_ver_to_stridx
[SSA_NAME_VERSION (rhs1
)]);
323 if (si
&& compare_nonzero_chars (si
, off
) >= 0)
324 return get_stridx_plus_constant (si
, off
, exp
);
331 if (TREE_CODE (exp
) == ADDR_EXPR
)
333 int idx
= get_addr_stridx (TREE_OPERAND (exp
, 0), exp
, NULL
);
338 s
= string_constant (exp
, &o
);
340 && (o
== NULL_TREE
|| tree_fits_shwi_p (o
))
341 && TREE_STRING_LENGTH (s
) > 0)
343 HOST_WIDE_INT offset
= o
? tree_to_shwi (o
) : 0;
344 const char *p
= TREE_STRING_POINTER (s
);
345 int max
= TREE_STRING_LENGTH (s
) - 1;
347 if (p
[max
] == '\0' && offset
>= 0 && offset
<= max
)
348 return ~(int) strlen (p
+ offset
);
353 /* Return true if strinfo vector is shared with the immediate dominator. */
356 strinfo_shared (void)
358 return vec_safe_length (stridx_to_strinfo
)
359 && (*stridx_to_strinfo
)[0] != NULL
;
362 /* Unshare strinfo vector that is shared with the immediate dominator. */
365 unshare_strinfo_vec (void)
370 gcc_assert (strinfo_shared ());
371 stridx_to_strinfo
= vec_safe_copy (stridx_to_strinfo
);
372 for (i
= 1; vec_safe_iterate (stridx_to_strinfo
, i
, &si
); ++i
)
375 (*stridx_to_strinfo
)[0] = NULL
;
378 /* Attempt to create a string index for exp, ADDR_EXPR's operand.
379 Return a pointer to the location where the string index can
380 be stored (if 0) or is stored, or NULL if this can't be tracked. */
383 addr_stridxptr (tree exp
)
388 tree base
= get_addr_base_and_unit_offset (exp
, &poff
);
389 if (base
== NULL_TREE
|| !DECL_P (base
) || !poff
.is_constant (&off
))
392 if (!decl_to_stridxlist_htab
)
394 decl_to_stridxlist_htab
395 = new hash_map
<tree_decl_hash
, stridxlist
> (64);
396 gcc_obstack_init (&stridx_obstack
);
400 stridxlist
*list
= &decl_to_stridxlist_htab
->get_or_insert (base
, &existed
);
404 stridxlist
*before
= NULL
;
405 for (i
= 0; i
< 32; i
++)
407 if (list
->offset
== off
)
409 if (list
->offset
> off
&& before
== NULL
)
411 if (list
->next
== NULL
)
420 before
= XOBNEW (&stridx_obstack
, struct stridxlist
);
427 list
->next
= XOBNEW (&stridx_obstack
, struct stridxlist
);
437 /* Create a new string index, or return 0 if reached limit. */
440 new_stridx (tree exp
)
443 if (max_stridx
>= PARAM_VALUE (PARAM_MAX_TRACKED_STRLENS
))
445 if (TREE_CODE (exp
) == SSA_NAME
)
447 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (exp
))
450 ssa_ver_to_stridx
[SSA_NAME_VERSION (exp
)] = idx
;
453 if (TREE_CODE (exp
) == ADDR_EXPR
)
455 int *pidx
= addr_stridxptr (TREE_OPERAND (exp
, 0));
458 gcc_assert (*pidx
== 0);
459 *pidx
= max_stridx
++;
466 /* Like new_stridx, but for ADDR_EXPR's operand instead. */
469 new_addr_stridx (tree exp
)
472 if (max_stridx
>= PARAM_VALUE (PARAM_MAX_TRACKED_STRLENS
))
474 pidx
= addr_stridxptr (exp
);
477 gcc_assert (*pidx
== 0);
478 *pidx
= max_stridx
++;
484 /* Create a new strinfo. */
487 new_strinfo (tree ptr
, int idx
, tree nonzero_chars
, bool full_string_p
)
489 strinfo
*si
= strinfo_pool
.allocate ();
490 si
->nonzero_chars
= nonzero_chars
;
493 si
->endptr
= NULL_TREE
;
499 si
->writable
= false;
500 si
->dont_invalidate
= false;
501 si
->full_string_p
= full_string_p
;
505 /* Decrease strinfo refcount and free it if not referenced anymore. */
508 free_strinfo (strinfo
*si
)
510 if (si
&& --si
->refcount
== 0)
511 strinfo_pool
.remove (si
);
514 /* Set strinfo in the vector entry IDX to SI. */
517 set_strinfo (int idx
, strinfo
*si
)
519 if (vec_safe_length (stridx_to_strinfo
) && (*stridx_to_strinfo
)[0])
520 unshare_strinfo_vec ();
521 if (vec_safe_length (stridx_to_strinfo
) <= (unsigned int) idx
)
522 vec_safe_grow_cleared (stridx_to_strinfo
, idx
+ 1);
523 (*stridx_to_strinfo
)[idx
] = si
;
526 /* Return the first strinfo in the related strinfo chain
527 if all strinfos in between belong to the chain, otherwise NULL. */
530 verify_related_strinfos (strinfo
*origsi
)
532 strinfo
*si
= origsi
, *psi
;
534 if (origsi
->first
== 0)
536 for (; si
->prev
; si
= psi
)
538 if (si
->first
!= origsi
->first
)
540 psi
= get_strinfo (si
->prev
);
543 if (psi
->next
!= si
->idx
)
546 if (si
->idx
!= si
->first
)
551 /* Set SI's endptr to ENDPTR and compute its length based on SI->ptr.
552 Use LOC for folding. */
555 set_endptr_and_length (location_t loc
, strinfo
*si
, tree endptr
)
559 tree start_as_size
= fold_convert_loc (loc
, size_type_node
, si
->ptr
);
560 tree end_as_size
= fold_convert_loc (loc
, size_type_node
, endptr
);
561 si
->nonzero_chars
= fold_build2_loc (loc
, MINUS_EXPR
, size_type_node
,
562 end_as_size
, start_as_size
);
563 si
->full_string_p
= true;
566 /* Return string length, or NULL if it can't be computed. */
569 get_string_length (strinfo
*si
)
571 if (si
->nonzero_chars
)
572 return si
->full_string_p
? si
->nonzero_chars
: NULL
;
576 gimple
*stmt
= si
->stmt
, *lenstmt
;
577 bool with_bounds
= gimple_call_with_bounds_p (stmt
);
578 tree callee
, lhs
, fn
, tem
;
580 gimple_stmt_iterator gsi
;
582 gcc_assert (is_gimple_call (stmt
));
583 callee
= gimple_call_fndecl (stmt
);
584 gcc_assert (callee
&& DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
);
585 lhs
= gimple_call_lhs (stmt
);
586 /* unshare_strinfo is intentionally not called here. The (delayed)
587 transformation of strcpy or strcat into stpcpy is done at the place
588 of the former strcpy/strcat call and so can affect all the strinfos
589 with the same stmt. If they were unshared before and transformation
590 has been already done, the handling of BUILT_IN_STPCPY{,_CHK} should
591 just compute the right length. */
592 switch (DECL_FUNCTION_CODE (callee
))
594 case BUILT_IN_STRCAT
:
595 case BUILT_IN_STRCAT_CHK
:
596 case BUILT_IN_STRCAT_CHKP
:
597 case BUILT_IN_STRCAT_CHK_CHKP
:
598 gsi
= gsi_for_stmt (stmt
);
599 fn
= builtin_decl_implicit (BUILT_IN_STRLEN
);
600 gcc_assert (lhs
== NULL_TREE
);
601 tem
= unshare_expr (gimple_call_arg (stmt
, 0));
604 lenstmt
= gimple_build_call (chkp_maybe_create_clone (fn
)->decl
,
605 2, tem
, gimple_call_arg (stmt
, 1));
606 gimple_call_set_with_bounds (lenstmt
, true);
609 lenstmt
= gimple_build_call (fn
, 1, tem
);
610 lhs
= make_ssa_name (TREE_TYPE (TREE_TYPE (fn
)), lenstmt
);
611 gimple_call_set_lhs (lenstmt
, lhs
);
612 gimple_set_vuse (lenstmt
, gimple_vuse (stmt
));
613 gsi_insert_before (&gsi
, lenstmt
, GSI_SAME_STMT
);
614 tem
= gimple_call_arg (stmt
, 0);
615 if (!ptrofftype_p (TREE_TYPE (lhs
)))
617 lhs
= convert_to_ptrofftype (lhs
);
618 lhs
= force_gimple_operand_gsi (&gsi
, lhs
, true, NULL_TREE
,
619 true, GSI_SAME_STMT
);
621 lenstmt
= gimple_build_assign
622 (make_ssa_name (TREE_TYPE (gimple_call_arg (stmt
, 0))),
623 POINTER_PLUS_EXPR
,tem
, lhs
);
624 gsi_insert_before (&gsi
, lenstmt
, GSI_SAME_STMT
);
625 gimple_call_set_arg (stmt
, 0, gimple_assign_lhs (lenstmt
));
628 case BUILT_IN_STRCPY
:
629 case BUILT_IN_STRCPY_CHK
:
630 case BUILT_IN_STRCPY_CHKP
:
631 case BUILT_IN_STRCPY_CHK_CHKP
:
632 gcc_assert (builtin_decl_implicit_p (BUILT_IN_STPCPY
));
633 if (gimple_call_num_args (stmt
) == (with_bounds
? 4 : 2))
634 fn
= builtin_decl_implicit (BUILT_IN_STPCPY
);
636 fn
= builtin_decl_explicit (BUILT_IN_STPCPY_CHK
);
638 fn
= chkp_maybe_create_clone (fn
)->decl
;
639 gcc_assert (lhs
== NULL_TREE
);
640 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
642 fprintf (dump_file
, "Optimizing: ");
643 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
645 gimple_call_set_fndecl (stmt
, fn
);
646 lhs
= make_ssa_name (TREE_TYPE (TREE_TYPE (fn
)), stmt
);
647 gimple_call_set_lhs (stmt
, lhs
);
649 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
651 fprintf (dump_file
, "into: ");
652 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
655 case BUILT_IN_STPCPY
:
656 case BUILT_IN_STPCPY_CHK
:
657 case BUILT_IN_STPCPY_CHKP
:
658 case BUILT_IN_STPCPY_CHK_CHKP
:
659 gcc_assert (lhs
!= NULL_TREE
);
660 loc
= gimple_location (stmt
);
661 set_endptr_and_length (loc
, si
, lhs
);
662 for (strinfo
*chainsi
= verify_related_strinfos (si
);
664 chainsi
= get_next_strinfo (chainsi
))
665 if (chainsi
->nonzero_chars
== NULL
)
666 set_endptr_and_length (loc
, chainsi
, lhs
);
668 case BUILT_IN_MALLOC
:
670 /* BUILT_IN_CALLOC always has si->nonzero_chars set. */
677 return si
->nonzero_chars
;
680 /* Invalidate string length information for strings whose length
681 might change due to stores in stmt. */
684 maybe_invalidate (gimple
*stmt
)
688 bool nonempty
= false;
690 for (i
= 1; vec_safe_iterate (stridx_to_strinfo
, i
, &si
); ++i
)
693 if (!si
->dont_invalidate
)
696 /* Do not use si->nonzero_chars. */
697 ao_ref_init_from_ptr_and_size (&r
, si
->ptr
, NULL_TREE
);
698 if (stmt_may_clobber_ref_p_1 (stmt
, &r
))
700 set_strinfo (i
, NULL
);
705 si
->dont_invalidate
= false;
711 /* Unshare strinfo record SI, if it has refcount > 1 or
712 if stridx_to_strinfo vector is shared with some other
716 unshare_strinfo (strinfo
*si
)
720 if (si
->refcount
== 1 && !strinfo_shared ())
723 nsi
= new_strinfo (si
->ptr
, si
->idx
, si
->nonzero_chars
, si
->full_string_p
);
724 nsi
->stmt
= si
->stmt
;
725 nsi
->endptr
= si
->endptr
;
726 nsi
->first
= si
->first
;
727 nsi
->prev
= si
->prev
;
728 nsi
->next
= si
->next
;
729 nsi
->writable
= si
->writable
;
730 set_strinfo (si
->idx
, nsi
);
735 /* Attempt to create a new strinfo for BASESI + OFF, or find existing
736 strinfo if there is any. Return it's idx, or 0 if no strinfo has
740 get_stridx_plus_constant (strinfo
*basesi
, unsigned HOST_WIDE_INT off
,
743 if (TREE_CODE (ptr
) == SSA_NAME
&& SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ptr
))
746 if (compare_nonzero_chars (basesi
, off
) < 0
747 || !tree_fits_uhwi_p (basesi
->nonzero_chars
))
750 unsigned HOST_WIDE_INT nonzero_chars
751 = tree_to_uhwi (basesi
->nonzero_chars
) - off
;
752 strinfo
*si
= basesi
, *chainsi
;
753 if (si
->first
|| si
->prev
|| si
->next
)
754 si
= verify_related_strinfos (basesi
);
756 || si
->nonzero_chars
== NULL_TREE
757 || TREE_CODE (si
->nonzero_chars
) != INTEGER_CST
)
760 if (TREE_CODE (ptr
) == SSA_NAME
761 && ssa_ver_to_stridx
.length () <= SSA_NAME_VERSION (ptr
))
762 ssa_ver_to_stridx
.safe_grow_cleared (num_ssa_names
);
764 gcc_checking_assert (compare_tree_int (si
->nonzero_chars
, off
) != -1);
765 for (chainsi
= si
; chainsi
->next
; chainsi
= si
)
767 si
= get_next_strinfo (chainsi
);
769 || si
->nonzero_chars
== NULL_TREE
770 || TREE_CODE (si
->nonzero_chars
) != INTEGER_CST
)
772 int r
= compare_tree_int (si
->nonzero_chars
, nonzero_chars
);
777 if (TREE_CODE (ptr
) == SSA_NAME
)
778 ssa_ver_to_stridx
[SSA_NAME_VERSION (ptr
)] = si
->idx
;
781 int *pidx
= addr_stridxptr (TREE_OPERAND (ptr
, 0));
782 if (pidx
!= NULL
&& *pidx
== 0)
791 int idx
= new_stridx (ptr
);
794 si
= new_strinfo (ptr
, idx
, build_int_cst (size_type_node
, nonzero_chars
),
795 basesi
->full_string_p
);
796 set_strinfo (idx
, si
);
799 strinfo
*nextsi
= unshare_strinfo (get_strinfo (chainsi
->next
));
800 si
->next
= nextsi
->idx
;
803 chainsi
= unshare_strinfo (chainsi
);
804 if (chainsi
->first
== 0)
805 chainsi
->first
= chainsi
->idx
;
807 if (chainsi
->endptr
== NULL_TREE
&& zero_length_string_p (si
))
808 chainsi
->endptr
= ptr
;
809 si
->endptr
= chainsi
->endptr
;
810 si
->prev
= chainsi
->idx
;
811 si
->first
= chainsi
->first
;
812 si
->writable
= chainsi
->writable
;
816 /* Note that PTR, a pointer SSA_NAME initialized in the current stmt, points
817 to a zero-length string and if possible chain it to a related strinfo
818 chain whose part is or might be CHAINSI. */
821 zero_length_string (tree ptr
, strinfo
*chainsi
)
825 if (ssa_ver_to_stridx
.length () <= SSA_NAME_VERSION (ptr
))
826 ssa_ver_to_stridx
.safe_grow_cleared (num_ssa_names
);
827 gcc_checking_assert (TREE_CODE (ptr
) == SSA_NAME
828 && ssa_ver_to_stridx
[SSA_NAME_VERSION (ptr
)] == 0);
830 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ptr
))
834 si
= verify_related_strinfos (chainsi
);
839 /* We shouldn't mix delayed and non-delayed lengths. */
840 gcc_assert (si
->full_string_p
);
841 if (si
->endptr
== NULL_TREE
)
843 si
= unshare_strinfo (si
);
847 si
= get_next_strinfo (si
);
850 if (zero_length_string_p (chainsi
))
854 chainsi
= unshare_strinfo (chainsi
);
857 ssa_ver_to_stridx
[SSA_NAME_VERSION (ptr
)] = chainsi
->idx
;
863 /* We shouldn't mix delayed and non-delayed lengths. */
864 gcc_assert (chainsi
->full_string_p
);
865 if (chainsi
->first
|| chainsi
->prev
|| chainsi
->next
)
867 chainsi
= unshare_strinfo (chainsi
);
874 idx
= new_stridx (ptr
);
877 si
= new_strinfo (ptr
, idx
, build_int_cst (size_type_node
, 0), true);
878 set_strinfo (idx
, si
);
882 chainsi
= unshare_strinfo (chainsi
);
883 if (chainsi
->first
== 0)
884 chainsi
->first
= chainsi
->idx
;
886 if (chainsi
->endptr
== NULL_TREE
)
887 chainsi
->endptr
= ptr
;
888 si
->prev
= chainsi
->idx
;
889 si
->first
= chainsi
->first
;
890 si
->writable
= chainsi
->writable
;
895 /* For strinfo ORIGSI whose length has been just updated, adjust other
896 related strinfos so that they match the new ORIGSI. This involves:
898 - adding ADJ to the nonzero_chars fields
899 - copying full_string_p from the new ORIGSI. */
902 adjust_related_strinfos (location_t loc
, strinfo
*origsi
, tree adj
)
904 strinfo
*si
= verify_related_strinfos (origsi
);
917 si
= unshare_strinfo (si
);
918 /* We shouldn't see delayed lengths here; the caller must have
919 calculated the old length in order to calculate the
921 gcc_assert (si
->nonzero_chars
);
922 tem
= fold_convert_loc (loc
, TREE_TYPE (si
->nonzero_chars
), adj
);
923 si
->nonzero_chars
= fold_build2_loc (loc
, PLUS_EXPR
,
924 TREE_TYPE (si
->nonzero_chars
),
925 si
->nonzero_chars
, tem
);
926 si
->full_string_p
= origsi
->full_string_p
;
928 si
->endptr
= NULL_TREE
;
929 si
->dont_invalidate
= true;
931 nsi
= get_next_strinfo (si
);
938 /* Find if there are other SSA_NAME pointers equal to PTR
939 for which we don't track their string lengths yet. If so, use
943 find_equal_ptrs (tree ptr
, int idx
)
945 if (TREE_CODE (ptr
) != SSA_NAME
)
949 gimple
*stmt
= SSA_NAME_DEF_STMT (ptr
);
950 if (!is_gimple_assign (stmt
))
952 ptr
= gimple_assign_rhs1 (stmt
);
953 switch (gimple_assign_rhs_code (stmt
))
958 if (!POINTER_TYPE_P (TREE_TYPE (ptr
)))
960 if (TREE_CODE (ptr
) == SSA_NAME
)
962 if (TREE_CODE (ptr
) != ADDR_EXPR
)
967 int *pidx
= addr_stridxptr (TREE_OPERAND (ptr
, 0));
968 if (pidx
!= NULL
&& *pidx
== 0)
976 /* We might find an endptr created in this pass. Grow the
977 vector in that case. */
978 if (ssa_ver_to_stridx
.length () <= SSA_NAME_VERSION (ptr
))
979 ssa_ver_to_stridx
.safe_grow_cleared (num_ssa_names
);
981 if (ssa_ver_to_stridx
[SSA_NAME_VERSION (ptr
)] != 0)
983 ssa_ver_to_stridx
[SSA_NAME_VERSION (ptr
)] = idx
;
987 /* Return true if STMT is a call to a builtin function with the right
988 arguments and attributes that should be considered for optimization
992 valid_builtin_call (gimple
*stmt
)
994 if (!gimple_call_builtin_p (stmt
, BUILT_IN_NORMAL
))
997 tree callee
= gimple_call_fndecl (stmt
);
998 switch (DECL_FUNCTION_CODE (callee
))
1000 case BUILT_IN_MEMCMP
:
1001 case BUILT_IN_MEMCMP_EQ
:
1002 case BUILT_IN_STRCHR
:
1003 case BUILT_IN_STRCHR_CHKP
:
1004 case BUILT_IN_STRLEN
:
1005 case BUILT_IN_STRLEN_CHKP
:
1006 /* The above functions should be pure. Punt if they aren't. */
1007 if (gimple_vdef (stmt
) || gimple_vuse (stmt
) == NULL_TREE
)
1011 case BUILT_IN_CALLOC
:
1012 case BUILT_IN_MALLOC
:
1013 case BUILT_IN_MEMCPY
:
1014 case BUILT_IN_MEMCPY_CHK
:
1015 case BUILT_IN_MEMCPY_CHKP
:
1016 case BUILT_IN_MEMCPY_CHK_CHKP
:
1017 case BUILT_IN_MEMPCPY
:
1018 case BUILT_IN_MEMPCPY_CHK
:
1019 case BUILT_IN_MEMPCPY_CHKP
:
1020 case BUILT_IN_MEMPCPY_CHK_CHKP
:
1021 case BUILT_IN_MEMSET
:
1022 case BUILT_IN_STPCPY
:
1023 case BUILT_IN_STPCPY_CHK
:
1024 case BUILT_IN_STPCPY_CHKP
:
1025 case BUILT_IN_STPCPY_CHK_CHKP
:
1026 case BUILT_IN_STRCAT
:
1027 case BUILT_IN_STRCAT_CHK
:
1028 case BUILT_IN_STRCAT_CHKP
:
1029 case BUILT_IN_STRCAT_CHK_CHKP
:
1030 case BUILT_IN_STRCPY
:
1031 case BUILT_IN_STRCPY_CHK
:
1032 case BUILT_IN_STRCPY_CHKP
:
1033 case BUILT_IN_STRCPY_CHK_CHKP
:
1034 /* The above functions should be neither const nor pure. Punt if they
1036 if (gimple_vdef (stmt
) == NULL_TREE
|| gimple_vuse (stmt
) == NULL_TREE
)
1047 /* If the last .MEM setter statement before STMT is
1048 memcpy (x, y, strlen (y) + 1), the only .MEM use of it is STMT
1049 and STMT is known to overwrite x[strlen (x)], adjust the last memcpy to
1050 just memcpy (x, y, strlen (y)). SI must be the zero length
1054 adjust_last_stmt (strinfo
*si
, gimple
*stmt
, bool is_strcat
)
1056 tree vuse
, callee
, len
;
1057 struct laststmt_struct last
= laststmt
;
1058 strinfo
*lastsi
, *firstsi
;
1059 unsigned len_arg_no
= 2;
1061 laststmt
.stmt
= NULL
;
1062 laststmt
.len
= NULL_TREE
;
1063 laststmt
.stridx
= 0;
1065 if (last
.stmt
== NULL
)
1068 vuse
= gimple_vuse (stmt
);
1069 if (vuse
== NULL_TREE
1070 || SSA_NAME_DEF_STMT (vuse
) != last
.stmt
1071 || !has_single_use (vuse
))
1074 gcc_assert (last
.stridx
> 0);
1075 lastsi
= get_strinfo (last
.stridx
);
1081 if (lastsi
->first
== 0 || lastsi
->first
!= si
->first
)
1084 firstsi
= verify_related_strinfos (si
);
1085 if (firstsi
== NULL
)
1087 while (firstsi
!= lastsi
)
1089 firstsi
= get_next_strinfo (firstsi
);
1090 if (firstsi
== NULL
)
1095 if (!is_strcat
&& !zero_length_string_p (si
))
1098 if (is_gimple_assign (last
.stmt
))
1100 gimple_stmt_iterator gsi
;
1102 if (!integer_zerop (gimple_assign_rhs1 (last
.stmt
)))
1104 if (stmt_could_throw_p (last
.stmt
))
1106 gsi
= gsi_for_stmt (last
.stmt
);
1107 unlink_stmt_vdef (last
.stmt
);
1108 release_defs (last
.stmt
);
1109 gsi_remove (&gsi
, true);
1113 if (!valid_builtin_call (last
.stmt
))
1116 callee
= gimple_call_fndecl (last
.stmt
);
1117 switch (DECL_FUNCTION_CODE (callee
))
1119 case BUILT_IN_MEMCPY
:
1120 case BUILT_IN_MEMCPY_CHK
:
1122 case BUILT_IN_MEMCPY_CHKP
:
1123 case BUILT_IN_MEMCPY_CHK_CHKP
:
1130 len
= gimple_call_arg (last
.stmt
, len_arg_no
);
1131 if (tree_fits_uhwi_p (len
))
1133 if (!tree_fits_uhwi_p (last
.len
)
1134 || integer_zerop (len
)
1135 || tree_to_uhwi (len
) != tree_to_uhwi (last
.len
) + 1)
1137 /* Don't adjust the length if it is divisible by 4, it is more efficient
1138 to store the extra '\0' in that case. */
1139 if ((tree_to_uhwi (len
) & 3) == 0)
1142 else if (TREE_CODE (len
) == SSA_NAME
)
1144 gimple
*def_stmt
= SSA_NAME_DEF_STMT (len
);
1145 if (!is_gimple_assign (def_stmt
)
1146 || gimple_assign_rhs_code (def_stmt
) != PLUS_EXPR
1147 || gimple_assign_rhs1 (def_stmt
) != last
.len
1148 || !integer_onep (gimple_assign_rhs2 (def_stmt
)))
1154 gimple_call_set_arg (last
.stmt
, len_arg_no
, last
.len
);
1155 update_stmt (last
.stmt
);
1158 /* For an LHS that is an SSA_NAME and for strlen() argument SRC, set
1159 LHS range info to [0, N] if SRC refers to a character array A[N]
1160 with unknown length bounded by N. */
1163 maybe_set_strlen_range (tree lhs
, tree src
)
1165 if (TREE_CODE (lhs
) != SSA_NAME
)
1168 if (TREE_CODE (src
) == SSA_NAME
)
1170 gimple
*def
= SSA_NAME_DEF_STMT (src
);
1171 if (is_gimple_assign (def
)
1172 && gimple_assign_rhs_code (def
) == ADDR_EXPR
)
1173 src
= gimple_assign_rhs1 (def
);
1176 if (TREE_CODE (src
) != ADDR_EXPR
)
1179 /* The last array member of a struct can be bigger than its size
1180 suggests if it's treated as a poor-man's flexible array member. */
1181 src
= TREE_OPERAND (src
, 0);
1182 if (TREE_CODE (TREE_TYPE (src
)) != ARRAY_TYPE
1183 || array_at_struct_end_p (src
))
1186 tree type
= TREE_TYPE (src
);
1187 if (tree dom
= TYPE_DOMAIN (type
))
1188 if (tree maxval
= TYPE_MAX_VALUE (dom
))
1190 wide_int max
= wi::to_wide (maxval
);
1191 wide_int min
= wi::zero (max
.get_precision ());
1192 set_range_info (lhs
, VR_RANGE
, min
, max
);
1196 /* Handle a strlen call. If strlen of the argument is known, replace
1197 the strlen call with the known value, otherwise remember that strlen
1198 of the argument is stored in the lhs SSA_NAME. */
1201 handle_builtin_strlen (gimple_stmt_iterator
*gsi
)
1205 gimple
*stmt
= gsi_stmt (*gsi
);
1206 tree lhs
= gimple_call_lhs (stmt
);
1208 if (lhs
== NULL_TREE
)
1211 src
= gimple_call_arg (stmt
, 0);
1212 idx
= get_stridx (src
);
1219 rhs
= build_int_cst (TREE_TYPE (lhs
), ~idx
);
1223 si
= get_strinfo (idx
);
1225 rhs
= get_string_length (si
);
1227 if (rhs
!= NULL_TREE
)
1229 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
1231 fprintf (dump_file
, "Optimizing: ");
1232 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
1234 rhs
= unshare_expr (rhs
);
1235 if (!useless_type_conversion_p (TREE_TYPE (lhs
), TREE_TYPE (rhs
)))
1236 rhs
= fold_convert_loc (gimple_location (stmt
),
1237 TREE_TYPE (lhs
), rhs
);
1238 if (!update_call_from_tree (gsi
, rhs
))
1239 gimplify_and_update_call_from_tree (gsi
, rhs
);
1240 stmt
= gsi_stmt (*gsi
);
1242 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
1244 fprintf (dump_file
, "into: ");
1245 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
1248 && TREE_CODE (si
->nonzero_chars
) != SSA_NAME
1249 && TREE_CODE (si
->nonzero_chars
) != INTEGER_CST
1250 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
1252 si
= unshare_strinfo (si
);
1253 si
->nonzero_chars
= lhs
;
1254 gcc_assert (si
->full_string_p
);
1257 if (strlen_to_stridx
)
1259 location_t loc
= gimple_location (stmt
);
1260 strlen_to_stridx
->put (lhs
, stridx_strlenloc (idx
, loc
));
1265 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
1268 idx
= new_stridx (src
);
1271 strinfo
*si
= get_strinfo (idx
);
1274 if (!si
->full_string_p
&& !si
->stmt
)
1276 /* Until now we only had a lower bound on the string length.
1277 Install LHS as the actual length. */
1278 si
= unshare_strinfo (si
);
1279 tree old
= si
->nonzero_chars
;
1280 si
->nonzero_chars
= lhs
;
1281 si
->full_string_p
= true;
1282 if (TREE_CODE (old
) == INTEGER_CST
)
1284 location_t loc
= gimple_location (stmt
);
1285 old
= fold_convert_loc (loc
, TREE_TYPE (lhs
), old
);
1286 tree adj
= fold_build2_loc (loc
, MINUS_EXPR
,
1287 TREE_TYPE (lhs
), lhs
, old
);
1288 adjust_related_strinfos (loc
, si
, adj
);
1302 strinfo
*si
= new_strinfo (src
, idx
, lhs
, true);
1303 set_strinfo (idx
, si
);
1304 find_equal_ptrs (src
, idx
);
1306 /* For SRC that is an array of N elements, set LHS's range
1308 maybe_set_strlen_range (lhs
, src
);
1310 if (strlen_to_stridx
)
1312 location_t loc
= gimple_location (stmt
);
1313 strlen_to_stridx
->put (lhs
, stridx_strlenloc (idx
, loc
));
1318 /* Handle a strchr call. If strlen of the first argument is known, replace
1319 the strchr (x, 0) call with the endptr or x + strlen, otherwise remember
1320 that lhs of the call is endptr and strlen of the argument is endptr - x. */
1323 handle_builtin_strchr (gimple_stmt_iterator
*gsi
)
1327 gimple
*stmt
= gsi_stmt (*gsi
);
1328 tree lhs
= gimple_call_lhs (stmt
);
1329 bool with_bounds
= gimple_call_with_bounds_p (stmt
);
1331 if (lhs
== NULL_TREE
)
1334 if (!integer_zerop (gimple_call_arg (stmt
, with_bounds
? 2 : 1)))
1337 src
= gimple_call_arg (stmt
, 0);
1338 idx
= get_stridx (src
);
1345 rhs
= build_int_cst (size_type_node
, ~idx
);
1349 si
= get_strinfo (idx
);
1351 rhs
= get_string_length (si
);
1353 if (rhs
!= NULL_TREE
)
1355 location_t loc
= gimple_location (stmt
);
1357 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
1359 fprintf (dump_file
, "Optimizing: ");
1360 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
1362 if (si
!= NULL
&& si
->endptr
!= NULL_TREE
)
1364 rhs
= unshare_expr (si
->endptr
);
1365 if (!useless_type_conversion_p (TREE_TYPE (lhs
),
1367 rhs
= fold_convert_loc (loc
, TREE_TYPE (lhs
), rhs
);
1371 rhs
= fold_convert_loc (loc
, sizetype
, unshare_expr (rhs
));
1372 rhs
= fold_build2_loc (loc
, POINTER_PLUS_EXPR
,
1373 TREE_TYPE (src
), src
, rhs
);
1374 if (!useless_type_conversion_p (TREE_TYPE (lhs
),
1376 rhs
= fold_convert_loc (loc
, TREE_TYPE (lhs
), rhs
);
1378 if (!update_call_from_tree (gsi
, rhs
))
1379 gimplify_and_update_call_from_tree (gsi
, rhs
);
1380 stmt
= gsi_stmt (*gsi
);
1382 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
1384 fprintf (dump_file
, "into: ");
1385 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
1388 && si
->endptr
== NULL_TREE
1389 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
1391 si
= unshare_strinfo (si
);
1394 zero_length_string (lhs
, si
);
1398 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
1400 if (TREE_CODE (src
) != SSA_NAME
|| !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (src
))
1403 idx
= new_stridx (src
);
1404 else if (get_strinfo (idx
) != NULL
)
1406 zero_length_string (lhs
, NULL
);
1411 location_t loc
= gimple_location (stmt
);
1412 tree lhsu
= fold_convert_loc (loc
, size_type_node
, lhs
);
1413 tree srcu
= fold_convert_loc (loc
, size_type_node
, src
);
1414 tree length
= fold_build2_loc (loc
, MINUS_EXPR
,
1415 size_type_node
, lhsu
, srcu
);
1416 strinfo
*si
= new_strinfo (src
, idx
, length
, true);
1418 set_strinfo (idx
, si
);
1419 find_equal_ptrs (src
, idx
);
1420 zero_length_string (lhs
, si
);
1424 zero_length_string (lhs
, NULL
);
1427 /* Handle a strcpy-like ({st{r,p}cpy,__st{r,p}cpy_chk}) call.
1428 If strlen of the second argument is known, strlen of the first argument
1429 is the same after this call. Furthermore, attempt to convert it to
1433 handle_builtin_strcpy (enum built_in_function bcode
, gimple_stmt_iterator
*gsi
)
1436 tree src
, dst
, srclen
, len
, lhs
, type
, fn
, oldlen
;
1438 gimple
*stmt
= gsi_stmt (*gsi
);
1439 strinfo
*si
, *dsi
, *olddsi
, *zsi
;
1441 bool with_bounds
= gimple_call_with_bounds_p (stmt
);
1443 src
= gimple_call_arg (stmt
, with_bounds
? 2 : 1);
1444 dst
= gimple_call_arg (stmt
, 0);
1445 lhs
= gimple_call_lhs (stmt
);
1446 idx
= get_stridx (src
);
1449 si
= get_strinfo (idx
);
1451 didx
= get_stridx (dst
);
1455 olddsi
= get_strinfo (didx
);
1460 adjust_last_stmt (olddsi
, stmt
, false);
1464 srclen
= get_string_length (si
);
1466 srclen
= build_int_cst (size_type_node
, ~idx
);
1468 loc
= gimple_location (stmt
);
1469 if (srclen
== NULL_TREE
)
1472 case BUILT_IN_STRCPY
:
1473 case BUILT_IN_STRCPY_CHK
:
1474 case BUILT_IN_STRCPY_CHKP
:
1475 case BUILT_IN_STRCPY_CHK_CHKP
:
1476 if (lhs
!= NULL_TREE
|| !builtin_decl_implicit_p (BUILT_IN_STPCPY
))
1479 case BUILT_IN_STPCPY
:
1480 case BUILT_IN_STPCPY_CHK
:
1481 case BUILT_IN_STPCPY_CHKP
:
1482 case BUILT_IN_STPCPY_CHK_CHKP
:
1483 if (lhs
== NULL_TREE
)
1487 tree lhsuint
= fold_convert_loc (loc
, size_type_node
, lhs
);
1488 srclen
= fold_convert_loc (loc
, size_type_node
, dst
);
1489 srclen
= fold_build2_loc (loc
, MINUS_EXPR
, size_type_node
,
1499 didx
= new_stridx (dst
);
1505 oldlen
= olddsi
->nonzero_chars
;
1506 dsi
= unshare_strinfo (olddsi
);
1507 dsi
->nonzero_chars
= srclen
;
1508 dsi
->full_string_p
= (srclen
!= NULL_TREE
);
1509 /* Break the chain, so adjust_related_strinfo on later pointers in
1510 the chain won't adjust this one anymore. */
1513 dsi
->endptr
= NULL_TREE
;
1517 dsi
= new_strinfo (dst
, didx
, srclen
, srclen
!= NULL_TREE
);
1518 set_strinfo (didx
, dsi
);
1519 find_equal_ptrs (dst
, didx
);
1521 dsi
->writable
= true;
1522 dsi
->dont_invalidate
= true;
1524 if (dsi
->nonzero_chars
== NULL_TREE
)
1528 /* If string length of src is unknown, use delayed length
1529 computation. If string lenth of dst will be needed, it
1530 can be computed by transforming this strcpy call into
1531 stpcpy and subtracting dst from the return value. */
1533 /* Look for earlier strings whose length could be determined if
1534 this strcpy is turned into an stpcpy. */
1536 if (dsi
->prev
!= 0 && (chainsi
= verify_related_strinfos (dsi
)) != NULL
)
1538 for (; chainsi
&& chainsi
!= dsi
; chainsi
= get_strinfo (chainsi
->next
))
1540 /* When setting a stmt for delayed length computation
1541 prevent all strinfos through dsi from being
1543 chainsi
= unshare_strinfo (chainsi
);
1544 chainsi
->stmt
= stmt
;
1545 chainsi
->nonzero_chars
= NULL_TREE
;
1546 chainsi
->full_string_p
= false;
1547 chainsi
->endptr
= NULL_TREE
;
1548 chainsi
->dont_invalidate
= true;
1553 /* Try to detect overlap before returning. This catches cases
1554 like strcpy (d, d + n) where n is non-constant whose range
1555 is such that (n <= strlen (d) holds).
1557 OLDDSI->NONZERO_chars may have been reset by this point with
1558 oldlen holding it original value. */
1559 if (olddsi
&& oldlen
)
1561 /* Add 1 for the terminating NUL. */
1562 tree type
= TREE_TYPE (oldlen
);
1563 oldlen
= fold_build2 (PLUS_EXPR
, type
, oldlen
,
1564 build_int_cst (type
, 1));
1565 check_bounds_or_overlap (as_a
<gcall
*>(stmt
), olddsi
->ptr
, src
,
1574 tree adj
= NULL_TREE
;
1575 if (oldlen
== NULL_TREE
)
1577 else if (integer_zerop (oldlen
))
1579 else if (TREE_CODE (oldlen
) == INTEGER_CST
1580 || TREE_CODE (srclen
) == INTEGER_CST
)
1581 adj
= fold_build2_loc (loc
, MINUS_EXPR
,
1582 TREE_TYPE (srclen
), srclen
,
1583 fold_convert_loc (loc
, TREE_TYPE (srclen
),
1585 if (adj
!= NULL_TREE
)
1586 adjust_related_strinfos (loc
, dsi
, adj
);
1590 /* strcpy src may not overlap dst, so src doesn't need to be
1591 invalidated either. */
1593 si
->dont_invalidate
= true;
1599 case BUILT_IN_STRCPY
:
1600 case BUILT_IN_STRCPY_CHKP
:
1601 fn
= builtin_decl_implicit (BUILT_IN_MEMCPY
);
1603 ssa_ver_to_stridx
[SSA_NAME_VERSION (lhs
)] = didx
;
1605 case BUILT_IN_STRCPY_CHK
:
1606 case BUILT_IN_STRCPY_CHK_CHKP
:
1607 fn
= builtin_decl_explicit (BUILT_IN_MEMCPY_CHK
);
1609 ssa_ver_to_stridx
[SSA_NAME_VERSION (lhs
)] = didx
;
1611 case BUILT_IN_STPCPY
:
1612 case BUILT_IN_STPCPY_CHKP
:
1613 /* This would need adjustment of the lhs (subtract one),
1614 or detection that the trailing '\0' doesn't need to be
1615 written, if it will be immediately overwritten.
1616 fn = builtin_decl_explicit (BUILT_IN_MEMPCPY); */
1620 zsi
= zero_length_string (lhs
, dsi
);
1623 case BUILT_IN_STPCPY_CHK
:
1624 case BUILT_IN_STPCPY_CHK_CHKP
:
1625 /* This would need adjustment of the lhs (subtract one),
1626 or detection that the trailing '\0' doesn't need to be
1627 written, if it will be immediately overwritten.
1628 fn = builtin_decl_explicit (BUILT_IN_MEMPCPY_CHK); */
1632 zsi
= zero_length_string (lhs
, dsi
);
1639 zsi
->dont_invalidate
= true;
1643 tree args
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
1644 type
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (args
)));
1647 type
= size_type_node
;
1649 len
= fold_convert_loc (loc
, type
, unshare_expr (srclen
));
1650 len
= fold_build2_loc (loc
, PLUS_EXPR
, type
, len
, build_int_cst (type
, 1));
1652 /* Set the no-warning bit on the transformed statement? */
1653 bool set_no_warning
= false;
1655 if (const strinfo
*chksi
= olddsi
? olddsi
: dsi
)
1657 && !check_bounds_or_overlap (as_a
<gcall
*>(stmt
), chksi
->ptr
, si
->ptr
,
1660 gimple_set_no_warning (stmt
, true);
1661 set_no_warning
= true;
1664 if (fn
== NULL_TREE
)
1667 len
= force_gimple_operand_gsi (gsi
, len
, true, NULL_TREE
, true,
1669 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
1671 fprintf (dump_file
, "Optimizing: ");
1672 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
1676 fn
= chkp_maybe_create_clone (fn
)->decl
;
1677 if (gimple_call_num_args (stmt
) == 4)
1678 success
= update_gimple_call (gsi
, fn
, 5, dst
,
1679 gimple_call_arg (stmt
, 1),
1681 gimple_call_arg (stmt
, 3),
1684 success
= update_gimple_call (gsi
, fn
, 6, dst
,
1685 gimple_call_arg (stmt
, 1),
1687 gimple_call_arg (stmt
, 3),
1689 gimple_call_arg (stmt
, 4));
1692 if (gimple_call_num_args (stmt
) == 2)
1693 success
= update_gimple_call (gsi
, fn
, 3, dst
, src
, len
);
1695 success
= update_gimple_call (gsi
, fn
, 4, dst
, src
, len
,
1696 gimple_call_arg (stmt
, 2));
1699 stmt
= gsi_stmt (*gsi
);
1700 gimple_call_set_with_bounds (stmt
, with_bounds
);
1702 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
1704 fprintf (dump_file
, "into: ");
1705 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
1707 /* Allow adjust_last_stmt to decrease this memcpy's size. */
1708 laststmt
.stmt
= stmt
;
1709 laststmt
.len
= srclen
;
1710 laststmt
.stridx
= dsi
->idx
;
1712 else if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
1713 fprintf (dump_file
, "not possible.\n");
1716 gimple_set_no_warning (stmt
, true);
1719 /* Check the size argument to the built-in forms of stpncpy and strncpy
1720 for out-of-bounds offsets or overlapping access, and to see if the
1721 size argument is derived from a call to strlen() on the source argument,
1722 and if so, issue an appropriate warning. */
1725 handle_builtin_strncat (built_in_function bcode
, gimple_stmt_iterator
*gsi
)
1727 /* Same as stxncpy(). */
1728 handle_builtin_stxncpy (bcode
, gsi
);
1731 /* Return true if LEN depends on a call to strlen(SRC) in an interesting
1732 way. LEN can either be an integer expression, or a pointer (to char).
1733 When it is the latter (such as in recursive calls to self) is is
1734 assumed to be the argument in some call to strlen() whose relationship
1735 to SRC is being ascertained. */
1738 is_strlen_related_p (tree src
, tree len
)
1740 if (TREE_CODE (TREE_TYPE (len
)) == POINTER_TYPE
1741 && operand_equal_p (src
, len
, 0))
1744 if (TREE_CODE (len
) != SSA_NAME
)
1747 gimple
*def_stmt
= SSA_NAME_DEF_STMT (len
);
1751 if (is_gimple_call (def_stmt
))
1753 tree func
= gimple_call_fndecl (def_stmt
);
1754 if (!valid_builtin_call (def_stmt
)
1755 || DECL_FUNCTION_CODE (func
) != BUILT_IN_STRLEN
)
1758 tree arg
= gimple_call_arg (def_stmt
, 0);
1759 return is_strlen_related_p (src
, arg
);
1762 if (!is_gimple_assign (def_stmt
))
1765 tree_code code
= gimple_assign_rhs_code (def_stmt
);
1766 tree rhs1
= gimple_assign_rhs1 (def_stmt
);
1767 tree rhstype
= TREE_TYPE (rhs1
);
1769 if ((TREE_CODE (rhstype
) == POINTER_TYPE
&& code
== POINTER_PLUS_EXPR
)
1770 || (INTEGRAL_TYPE_P (rhstype
)
1771 && (code
== BIT_AND_EXPR
1772 || code
== NOP_EXPR
)))
1774 /* Pointer plus (an integer) and integer cast or truncation are
1775 considered among the (potentially) related expressions to strlen.
1777 return is_strlen_related_p (src
, rhs1
);
1783 /* A helper of handle_builtin_stxncpy. Check to see if the specified
1784 bound is a) equal to the size of the destination DST and if so, b)
1785 if it's immediately followed by DST[CNT - 1] = '\0'. If a) holds
1786 and b) does not, warn. Otherwise, do nothing. Return true if
1787 diagnostic has been issued.
1789 The purpose is to diagnose calls to strncpy and stpncpy that do
1790 not nul-terminate the copy while allowing for the idiom where
1791 such a call is immediately followed by setting the last element
1794 strncpy (a, s, sizeof a);
1795 a[sizeof a - 1] = '\0';
1799 maybe_diag_stxncpy_trunc (gimple_stmt_iterator gsi
, tree src
, tree cnt
)
1801 gimple
*stmt
= gsi_stmt (gsi
);
1803 wide_int cntrange
[2];
1805 if (TREE_CODE (cnt
) == INTEGER_CST
)
1806 cntrange
[0] = cntrange
[1] = wi::to_wide (cnt
);
1807 else if (TREE_CODE (cnt
) == SSA_NAME
)
1809 enum value_range_type rng
= get_range_info (cnt
, cntrange
, cntrange
+ 1);
1810 if (rng
== VR_RANGE
)
1812 else if (rng
== VR_ANTI_RANGE
)
1814 wide_int maxobjsize
= wi::to_wide (TYPE_MAX_VALUE (ptrdiff_type_node
));
1816 if (wi::ltu_p (cntrange
[1], maxobjsize
))
1818 cntrange
[0] = cntrange
[1] + 1;
1819 cntrange
[1] = maxobjsize
;
1823 cntrange
[1] = cntrange
[0] - 1;
1824 cntrange
[0] = wi::zero (TYPE_PRECISION (TREE_TYPE (cnt
)));
1833 /* Negative value is the constant string length. If it's less than
1834 the lower bound there is no truncation. */
1835 int sidx
= get_stridx (src
);
1836 if (sidx
< 0 && wi::gtu_p (cntrange
[0], ~sidx
))
1839 tree dst
= gimple_call_arg (stmt
, 0);
1841 if (TREE_CODE (dstdecl
) == ADDR_EXPR
)
1842 dstdecl
= TREE_OPERAND (dstdecl
, 0);
1844 /* If the destination refers to a an array/pointer declared nonstring
1846 tree ref
= NULL_TREE
;
1847 if (get_attr_nonstring_decl (dstdecl
, &ref
))
1850 /* Look for dst[i] = '\0'; after the stxncpy() call and if found
1851 avoid the truncation warning. */
1853 gimple
*next_stmt
= gsi_stmt (gsi
);
1855 if (!gsi_end_p (gsi
) && is_gimple_assign (next_stmt
))
1857 tree lhs
= gimple_assign_lhs (next_stmt
);
1858 tree_code code
= TREE_CODE (lhs
);
1859 if (code
== ARRAY_REF
|| code
== MEM_REF
)
1860 lhs
= TREE_OPERAND (lhs
, 0);
1862 tree func
= gimple_call_fndecl (stmt
);
1863 if (DECL_FUNCTION_CODE (func
) == BUILT_IN_STPNCPY
)
1865 tree ret
= gimple_call_lhs (stmt
);
1866 if (ret
&& operand_equal_p (ret
, lhs
, 0))
1870 /* Determine the base address and offset of the reference,
1871 ignoring the innermost array index. */
1872 if (TREE_CODE (ref
) == ARRAY_REF
)
1873 ref
= TREE_OPERAND (ref
, 0);
1876 tree dstbase
= get_addr_base_and_unit_offset (ref
, &dstoff
);
1879 tree lhsbase
= get_addr_base_and_unit_offset (lhs
, &lhsoff
);
1881 && known_eq (dstoff
, lhsoff
)
1882 && operand_equal_p (dstbase
, lhsbase
, 0))
1886 int prec
= TYPE_PRECISION (TREE_TYPE (cnt
));
1887 wide_int lenrange
[2];
1888 if (strinfo
*sisrc
= sidx
> 0 ? get_strinfo (sidx
) : NULL
)
1890 lenrange
[0] = (sisrc
->nonzero_chars
1891 && TREE_CODE (sisrc
->nonzero_chars
) == INTEGER_CST
1892 ? wi::to_wide (sisrc
->nonzero_chars
)
1894 lenrange
[1] = lenrange
[0];
1897 lenrange
[0] = lenrange
[1] = wi::shwi (~sidx
, prec
);
1901 get_range_strlen (src
, range
);
1904 lenrange
[0] = wi::to_wide (range
[0], prec
);
1905 lenrange
[1] = wi::to_wide (range
[1], prec
);
1909 lenrange
[0] = wi::shwi (0, prec
);
1910 lenrange
[1] = wi::shwi (-1, prec
);
1914 location_t callloc
= gimple_location (stmt
);
1915 tree func
= gimple_call_fndecl (stmt
);
1917 if (lenrange
[0] != 0 || !wi::neg_p (lenrange
[1]))
1919 /* If the longest source string is shorter than the lower bound
1920 of the specified count the copy is definitely nul-terminated. */
1921 if (wi::ltu_p (lenrange
[1], cntrange
[0]))
1924 if (wi::neg_p (lenrange
[1]))
1926 /* The length of one of the strings is unknown but at least
1927 one has non-zero length and that length is stored in
1928 LENRANGE[1]. Swap the bounds to force a "may be truncated"
1930 lenrange
[1] = lenrange
[0];
1931 lenrange
[0] = wi::shwi (0, prec
);
1934 if (wi::geu_p (lenrange
[0], cntrange
[1]))
1936 /* The shortest string is longer than the upper bound of
1937 the count so the truncation is certain. */
1938 if (cntrange
[0] == cntrange
[1])
1939 return warning_at (callloc
, OPT_Wstringop_truncation
,
1941 ? G_("%qD output truncated copying %E byte "
1942 "from a string of length %wu")
1943 : G_("%qD output truncated copying %E bytes "
1944 "from a string of length %wu"),
1945 func
, cnt
, lenrange
[0].to_uhwi ());
1947 return warning_at (callloc
, OPT_Wstringop_truncation
,
1948 "%qD output truncated copying between %wu "
1949 "and %wu bytes from a string of length %wu",
1950 func
, cntrange
[0].to_uhwi (),
1951 cntrange
[1].to_uhwi (), lenrange
[0].to_uhwi ());
1953 else if (wi::geu_p (lenrange
[1], cntrange
[1]))
1955 /* The longest string is longer than the upper bound of
1956 the count so the truncation is possible. */
1957 if (cntrange
[0] == cntrange
[1])
1958 return warning_at (callloc
, OPT_Wstringop_truncation
,
1960 ? G_("%qD output may be truncated copying %E "
1961 "byte from a string of length %wu")
1962 : G_("%qD output may be truncated copying %E "
1963 "bytes from a string of length %wu"),
1964 func
, cnt
, lenrange
[1].to_uhwi ());
1966 return warning_at (callloc
, OPT_Wstringop_truncation
,
1967 "%qD output may be truncated copying between %wu "
1968 "and %wu bytes from a string of length %wu",
1969 func
, cntrange
[0].to_uhwi (),
1970 cntrange
[1].to_uhwi (), lenrange
[1].to_uhwi ());
1973 if (cntrange
[0] != cntrange
[1]
1974 && wi::leu_p (cntrange
[0], lenrange
[0])
1975 && wi::leu_p (cntrange
[1], lenrange
[0] + 1))
1977 /* If the source (including the terminating nul) is longer than
1978 the lower bound of the specified count but shorter than the
1979 upper bound the copy may (but need not) be truncated. */
1980 return warning_at (callloc
, OPT_Wstringop_truncation
,
1981 "%qD output may be truncated copying between %wu "
1982 "and %wu bytes from a string of length %wu",
1983 func
, cntrange
[0].to_uhwi (),
1984 cntrange
[1].to_uhwi (), lenrange
[0].to_uhwi ());
1988 if (tree dstsize
= compute_objsize (dst
, 1))
1990 /* The source length is uknown. Try to determine the destination
1991 size and see if it matches the specified bound. If not, bail.
1992 Otherwise go on to see if it should be diagnosed for possible
1997 if (wi::to_wide (dstsize
) != cntrange
[1])
2000 if (cntrange
[0] == cntrange
[1])
2001 return warning_at (callloc
, OPT_Wstringop_truncation
,
2002 "%qD specified bound %E equals destination size",
2009 /* Check the arguments to the built-in forms of stpncpy and strncpy for
2010 out-of-bounds offsets or overlapping access, and to see if the size
2011 is derived from calling strlen() on the source argument, and if so,
2012 issue the appropriate warning. */
2015 handle_builtin_stxncpy (built_in_function
, gimple_stmt_iterator
*gsi
)
2017 if (!strlen_to_stridx
)
2020 gimple
*stmt
= gsi_stmt (*gsi
);
2022 bool with_bounds
= gimple_call_with_bounds_p (stmt
);
2024 tree dst
= gimple_call_arg (stmt
, with_bounds
? 1 : 0);
2025 tree src
= gimple_call_arg (stmt
, with_bounds
? 2 : 1);
2026 tree len
= gimple_call_arg (stmt
, with_bounds
? 3 : 2);
2027 tree dstsize
= NULL_TREE
, srcsize
= NULL_TREE
;
2029 int didx
= get_stridx (dst
);
2030 if (strinfo
*sidst
= didx
> 0 ? get_strinfo (didx
) : NULL
)
2032 /* Compute the size of the destination string including the NUL. */
2033 if (sidst
->nonzero_chars
)
2035 tree type
= TREE_TYPE (sidst
->nonzero_chars
);
2036 dstsize
= fold_build2 (PLUS_EXPR
, type
, sidst
->nonzero_chars
,
2037 build_int_cst (type
, 1));
2042 int sidx
= get_stridx (src
);
2043 strinfo
*sisrc
= sidx
> 0 ? get_strinfo (sidx
) : NULL
;
2046 /* strncat() and strncpy() can modify the source string by writing
2047 over the terminating nul so SISRC->DONT_INVALIDATE must be left
2050 /* Compute the size of the source string including the NUL. */
2051 if (sisrc
->nonzero_chars
)
2053 tree type
= TREE_TYPE (sisrc
->nonzero_chars
);
2054 srcsize
= fold_build2 (PLUS_EXPR
, type
, sisrc
->nonzero_chars
,
2055 build_int_cst (type
, 1));
2061 srcsize
= NULL_TREE
;
2063 if (!check_bounds_or_overlap (as_a
<gcall
*>(stmt
), dst
, src
,
2066 gimple_set_no_warning (stmt
, true);
2070 /* If the length argument was computed from strlen(S) for some string
2071 S retrieve the strinfo index for the string (PSS->FIRST) alonng with
2072 the location of the strlen() call (PSS->SECOND). */
2073 stridx_strlenloc
*pss
= strlen_to_stridx
->get (len
);
2074 if (!pss
|| pss
->first
<= 0)
2076 if (maybe_diag_stxncpy_trunc (*gsi
, src
, len
))
2077 gimple_set_no_warning (stmt
, true);
2082 /* Retrieve the strinfo data for the string S that LEN was computed
2083 from as some function F of strlen (S) (i.e., LEN need not be equal
2085 strinfo
*silen
= get_strinfo (pss
->first
);
2087 location_t callloc
= gimple_location (stmt
);
2089 tree func
= gimple_call_fndecl (stmt
);
2091 bool warned
= false;
2093 /* When -Wstringop-truncation is set, try to determine truncation
2094 before diagnosing possible overflow. Truncation is implied by
2095 the LEN argument being equal to strlen(SRC), regardless of
2096 whether its value is known. Otherwise, issue the more generic
2097 -Wstringop-overflow which triggers for LEN arguments that in
2098 any meaningful way depend on strlen(SRC). */
2100 && is_strlen_related_p (src
, len
)
2101 && warning_at (callloc
, OPT_Wstringop_truncation
,
2102 "%qD output truncated before terminating nul "
2103 "copying as many bytes from a string as its length",
2106 else if (silen
&& is_strlen_related_p (src
, silen
->ptr
))
2107 warned
= warning_at (callloc
, OPT_Wstringop_overflow_
,
2108 "%qD specified bound depends on the length "
2109 "of the source argument", func
);
2112 location_t strlenloc
= pss
->second
;
2113 if (strlenloc
!= UNKNOWN_LOCATION
&& strlenloc
!= callloc
)
2114 inform (strlenloc
, "length computed here");
2118 /* Handle a memcpy-like ({mem{,p}cpy,__mem{,p}cpy_chk}) call.
2119 If strlen of the second argument is known and length of the third argument
2120 is that plus one, strlen of the first argument is the same after this
2124 handle_builtin_memcpy (enum built_in_function bcode
, gimple_stmt_iterator
*gsi
)
2127 tree src
, dst
, len
, lhs
, oldlen
, newlen
;
2128 gimple
*stmt
= gsi_stmt (*gsi
);
2129 strinfo
*si
, *dsi
, *olddsi
;
2130 bool with_bounds
= gimple_call_with_bounds_p (stmt
);
2132 len
= gimple_call_arg (stmt
, with_bounds
? 4 : 2);
2133 src
= gimple_call_arg (stmt
, with_bounds
? 2 : 1);
2134 dst
= gimple_call_arg (stmt
, 0);
2135 idx
= get_stridx (src
);
2139 didx
= get_stridx (dst
);
2142 olddsi
= get_strinfo (didx
);
2147 && tree_fits_uhwi_p (len
)
2148 && !integer_zerop (len
))
2149 adjust_last_stmt (olddsi
, stmt
, false);
2156 /* Handle memcpy (x, y, l) where l's relationship with strlen (y)
2158 si
= get_strinfo (idx
);
2159 if (si
== NULL
|| si
->nonzero_chars
== NULL_TREE
)
2161 if (TREE_CODE (len
) == INTEGER_CST
2162 && TREE_CODE (si
->nonzero_chars
) == INTEGER_CST
)
2164 if (tree_int_cst_le (len
, si
->nonzero_chars
))
2166 /* Copying LEN nonzero characters, where LEN is constant. */
2168 full_string_p
= false;
2172 /* Copying the whole of the analyzed part of SI. */
2173 newlen
= si
->nonzero_chars
;
2174 full_string_p
= si
->full_string_p
;
2179 if (!si
->full_string_p
)
2181 if (TREE_CODE (len
) != SSA_NAME
)
2183 def_stmt
= SSA_NAME_DEF_STMT (len
);
2184 if (!is_gimple_assign (def_stmt
)
2185 || gimple_assign_rhs_code (def_stmt
) != PLUS_EXPR
2186 || gimple_assign_rhs1 (def_stmt
) != si
->nonzero_chars
2187 || !integer_onep (gimple_assign_rhs2 (def_stmt
)))
2189 /* Copying variable-length string SI (and no more). */
2190 newlen
= si
->nonzero_chars
;
2191 full_string_p
= true;
2197 /* Handle memcpy (x, "abcd", 5) or
2198 memcpy (x, "abc\0uvw", 7). */
2199 if (!tree_fits_uhwi_p (len
))
2202 unsigned HOST_WIDE_INT clen
= tree_to_uhwi (len
);
2203 unsigned HOST_WIDE_INT nonzero_chars
= ~idx
;
2204 newlen
= build_int_cst (size_type_node
, MIN (nonzero_chars
, clen
));
2205 full_string_p
= clen
> nonzero_chars
;
2208 if (olddsi
!= NULL
&& TREE_CODE (len
) == SSA_NAME
)
2209 adjust_last_stmt (olddsi
, stmt
, false);
2213 didx
= new_stridx (dst
);
2220 dsi
= unshare_strinfo (olddsi
);
2221 oldlen
= olddsi
->nonzero_chars
;
2222 dsi
->nonzero_chars
= newlen
;
2223 dsi
->full_string_p
= full_string_p
;
2224 /* Break the chain, so adjust_related_strinfo on later pointers in
2225 the chain won't adjust this one anymore. */
2228 dsi
->endptr
= NULL_TREE
;
2232 dsi
= new_strinfo (dst
, didx
, newlen
, full_string_p
);
2233 set_strinfo (didx
, dsi
);
2234 find_equal_ptrs (dst
, didx
);
2236 dsi
->writable
= true;
2237 dsi
->dont_invalidate
= true;
2240 tree adj
= NULL_TREE
;
2241 location_t loc
= gimple_location (stmt
);
2242 if (oldlen
== NULL_TREE
)
2244 else if (integer_zerop (oldlen
))
2246 else if (TREE_CODE (oldlen
) == INTEGER_CST
2247 || TREE_CODE (newlen
) == INTEGER_CST
)
2248 adj
= fold_build2_loc (loc
, MINUS_EXPR
, TREE_TYPE (newlen
), newlen
,
2249 fold_convert_loc (loc
, TREE_TYPE (newlen
),
2251 if (adj
!= NULL_TREE
)
2252 adjust_related_strinfos (loc
, dsi
, adj
);
2256 /* memcpy src may not overlap dst, so src doesn't need to be
2257 invalidated either. */
2259 si
->dont_invalidate
= true;
2263 lhs
= gimple_call_lhs (stmt
);
2266 case BUILT_IN_MEMCPY
:
2267 case BUILT_IN_MEMCPY_CHK
:
2268 case BUILT_IN_MEMCPY_CHKP
:
2269 case BUILT_IN_MEMCPY_CHK_CHKP
:
2270 /* Allow adjust_last_stmt to decrease this memcpy's size. */
2271 laststmt
.stmt
= stmt
;
2272 laststmt
.len
= dsi
->nonzero_chars
;
2273 laststmt
.stridx
= dsi
->idx
;
2275 ssa_ver_to_stridx
[SSA_NAME_VERSION (lhs
)] = didx
;
2277 case BUILT_IN_MEMPCPY
:
2278 case BUILT_IN_MEMPCPY_CHK
:
2279 case BUILT_IN_MEMPCPY_CHKP
:
2280 case BUILT_IN_MEMPCPY_CHK_CHKP
:
2288 /* Handle a strcat-like ({strcat,__strcat_chk}) call.
2289 If strlen of the second argument is known, strlen of the first argument
2290 is increased by the length of the second argument. Furthermore, attempt
2291 to convert it to memcpy/strcpy if the length of the first argument
2295 handle_builtin_strcat (enum built_in_function bcode
, gimple_stmt_iterator
*gsi
)
2298 tree srclen
, args
, type
, fn
, objsz
, endptr
;
2300 gimple
*stmt
= gsi_stmt (*gsi
);
2302 location_t loc
= gimple_location (stmt
);
2303 bool with_bounds
= gimple_call_with_bounds_p (stmt
);
2305 tree src
= gimple_call_arg (stmt
, with_bounds
? 2 : 1);
2306 tree dst
= gimple_call_arg (stmt
, 0);
2308 /* Bail if the source is the same as destination. It will be diagnosed
2310 if (operand_equal_p (src
, dst
, 0))
2313 tree lhs
= gimple_call_lhs (stmt
);
2315 didx
= get_stridx (dst
);
2321 dsi
= get_strinfo (didx
);
2325 idx
= get_stridx (src
);
2327 srclen
= build_int_cst (size_type_node
, ~idx
);
2330 si
= get_strinfo (idx
);
2332 srclen
= get_string_length (si
);
2335 /* Set the no-warning bit on the transformed statement? */
2336 bool set_no_warning
= false;
2338 if (dsi
== NULL
|| get_string_length (dsi
) == NULL_TREE
)
2341 /* The concatenation always involves copying at least one byte
2342 (the terminating nul), even if the source string is empty.
2343 If the source is unknown assume it's one character long and
2344 used that as both sizes. */
2348 tree type
= TREE_TYPE (slen
);
2349 slen
= fold_build2 (PLUS_EXPR
, type
, slen
, build_int_cst (type
, 1));
2352 tree sptr
= si
&& si
->ptr
? si
->ptr
: src
;
2354 if (!check_bounds_or_overlap (as_a
<gcall
*>(stmt
), dst
, sptr
,
2357 gimple_set_no_warning (stmt
, true);
2358 set_no_warning
= true;
2362 /* strcat (p, q) can be transformed into
2363 tmp = p + strlen (p); endptr = stpcpy (tmp, q);
2364 with length endptr - p if we need to compute the length
2365 later on. Don't do this transformation if we don't need
2367 if (builtin_decl_implicit_p (BUILT_IN_STPCPY
) && lhs
== NULL_TREE
)
2371 didx
= new_stridx (dst
);
2377 dsi
= new_strinfo (dst
, didx
, NULL_TREE
, false);
2378 set_strinfo (didx
, dsi
);
2379 find_equal_ptrs (dst
, didx
);
2383 dsi
= unshare_strinfo (dsi
);
2384 dsi
->nonzero_chars
= NULL_TREE
;
2385 dsi
->full_string_p
= false;
2387 dsi
->endptr
= NULL_TREE
;
2389 dsi
->writable
= true;
2391 dsi
->dont_invalidate
= true;
2396 tree dstlen
= dsi
->nonzero_chars
;
2397 endptr
= dsi
->endptr
;
2399 dsi
= unshare_strinfo (dsi
);
2400 dsi
->endptr
= NULL_TREE
;
2402 dsi
->writable
= true;
2404 if (srclen
!= NULL_TREE
)
2406 dsi
->nonzero_chars
= fold_build2_loc (loc
, PLUS_EXPR
,
2407 TREE_TYPE (dsi
->nonzero_chars
),
2408 dsi
->nonzero_chars
, srclen
);
2409 gcc_assert (dsi
->full_string_p
);
2410 adjust_related_strinfos (loc
, dsi
, srclen
);
2411 dsi
->dont_invalidate
= true;
2415 dsi
->nonzero_chars
= NULL
;
2416 dsi
->full_string_p
= false;
2417 if (lhs
== NULL_TREE
&& builtin_decl_implicit_p (BUILT_IN_STPCPY
))
2418 dsi
->dont_invalidate
= true;
2422 /* strcat src may not overlap dst, so src doesn't need to be
2423 invalidated either. */
2424 si
->dont_invalidate
= true;
2426 /* For now. Could remove the lhs from the call and add
2427 lhs = dst; afterwards. */
2435 case BUILT_IN_STRCAT
:
2436 case BUILT_IN_STRCAT_CHKP
:
2437 if (srclen
!= NULL_TREE
)
2438 fn
= builtin_decl_implicit (BUILT_IN_MEMCPY
);
2440 fn
= builtin_decl_implicit (BUILT_IN_STRCPY
);
2442 case BUILT_IN_STRCAT_CHK
:
2443 case BUILT_IN_STRCAT_CHK_CHKP
:
2444 if (srclen
!= NULL_TREE
)
2445 fn
= builtin_decl_explicit (BUILT_IN_MEMCPY_CHK
);
2447 fn
= builtin_decl_explicit (BUILT_IN_STRCPY_CHK
);
2448 objsz
= gimple_call_arg (stmt
, with_bounds
? 4 : 2);
2454 if (fn
== NULL_TREE
)
2459 tree type
= TREE_TYPE (dstlen
);
2461 /* Compute the size of the source sequence, including the nul. */
2462 tree srcsize
= srclen
? srclen
: size_zero_node
;
2463 srcsize
= fold_build2 (PLUS_EXPR
, type
, srcsize
, build_int_cst (type
, 1));
2465 tree sptr
= si
&& si
->ptr
? si
->ptr
: src
;
2467 if (!check_bounds_or_overlap (as_a
<gcall
*>(stmt
), dst
, sptr
,
2470 gimple_set_no_warning (stmt
, true);
2471 set_no_warning
= true;
2475 tree len
= NULL_TREE
;
2476 if (srclen
!= NULL_TREE
)
2478 args
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
2479 type
= TREE_VALUE (TREE_CHAIN (TREE_CHAIN (args
)));
2481 len
= fold_convert_loc (loc
, type
, unshare_expr (srclen
));
2482 len
= fold_build2_loc (loc
, PLUS_EXPR
, type
, len
,
2483 build_int_cst (type
, 1));
2484 len
= force_gimple_operand_gsi (gsi
, len
, true, NULL_TREE
, true,
2488 dst
= fold_convert_loc (loc
, TREE_TYPE (dst
), unshare_expr (endptr
));
2490 dst
= fold_build2_loc (loc
, POINTER_PLUS_EXPR
,
2491 TREE_TYPE (dst
), unshare_expr (dst
),
2492 fold_convert_loc (loc
, sizetype
,
2493 unshare_expr (dstlen
)));
2494 dst
= force_gimple_operand_gsi (gsi
, dst
, true, NULL_TREE
, true,
2496 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
2498 fprintf (dump_file
, "Optimizing: ");
2499 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
2503 fn
= chkp_maybe_create_clone (fn
)->decl
;
2504 if (srclen
!= NULL_TREE
)
2505 success
= update_gimple_call (gsi
, fn
, 5 + (objsz
!= NULL_TREE
),
2507 gimple_call_arg (stmt
, 1),
2509 gimple_call_arg (stmt
, 3),
2512 success
= update_gimple_call (gsi
, fn
, 4 + (objsz
!= NULL_TREE
),
2514 gimple_call_arg (stmt
, 1),
2516 gimple_call_arg (stmt
, 3),
2520 if (srclen
!= NULL_TREE
)
2521 success
= update_gimple_call (gsi
, fn
, 3 + (objsz
!= NULL_TREE
),
2522 dst
, src
, len
, objsz
);
2524 success
= update_gimple_call (gsi
, fn
, 2 + (objsz
!= NULL_TREE
),
2528 stmt
= gsi_stmt (*gsi
);
2529 gimple_call_set_with_bounds (stmt
, with_bounds
);
2531 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
2533 fprintf (dump_file
, "into: ");
2534 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
2536 /* If srclen == NULL, note that current string length can be
2537 computed by transforming this strcpy into stpcpy. */
2538 if (srclen
== NULL_TREE
&& dsi
->dont_invalidate
)
2540 adjust_last_stmt (dsi
, stmt
, true);
2541 if (srclen
!= NULL_TREE
)
2543 laststmt
.stmt
= stmt
;
2544 laststmt
.len
= srclen
;
2545 laststmt
.stridx
= dsi
->idx
;
2548 else if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
2549 fprintf (dump_file
, "not possible.\n");
2552 gimple_set_no_warning (stmt
, true);
2555 /* Handle a call to malloc or calloc. */
2558 handle_builtin_malloc (enum built_in_function bcode
, gimple_stmt_iterator
*gsi
)
2560 gimple
*stmt
= gsi_stmt (*gsi
);
2561 tree lhs
= gimple_call_lhs (stmt
);
2562 if (lhs
== NULL_TREE
)
2565 gcc_assert (get_stridx (lhs
) == 0);
2566 int idx
= new_stridx (lhs
);
2567 tree length
= NULL_TREE
;
2568 if (bcode
== BUILT_IN_CALLOC
)
2569 length
= build_int_cst (size_type_node
, 0);
2570 strinfo
*si
= new_strinfo (lhs
, idx
, length
, length
!= NULL_TREE
);
2571 if (bcode
== BUILT_IN_CALLOC
)
2573 set_strinfo (idx
, si
);
2574 si
->writable
= true;
2576 si
->dont_invalidate
= true;
2579 /* Handle a call to memset.
2580 After a call to calloc, memset(,0,) is unnecessary.
2581 memset(malloc(n),0,n) is calloc(n,1). */
2584 handle_builtin_memset (gimple_stmt_iterator
*gsi
)
2586 gimple
*stmt2
= gsi_stmt (*gsi
);
2587 if (!integer_zerop (gimple_call_arg (stmt2
, 1)))
2589 tree ptr
= gimple_call_arg (stmt2
, 0);
2590 int idx1
= get_stridx (ptr
);
2593 strinfo
*si1
= get_strinfo (idx1
);
2596 gimple
*stmt1
= si1
->stmt
;
2597 if (!stmt1
|| !is_gimple_call (stmt1
))
2599 tree callee1
= gimple_call_fndecl (stmt1
);
2600 if (!valid_builtin_call (stmt1
))
2602 enum built_in_function code1
= DECL_FUNCTION_CODE (callee1
);
2603 tree size
= gimple_call_arg (stmt2
, 2);
2604 if (code1
== BUILT_IN_CALLOC
)
2605 /* Not touching stmt1 */ ;
2606 else if (code1
== BUILT_IN_MALLOC
2607 && operand_equal_p (gimple_call_arg (stmt1
, 0), size
, 0))
2609 gimple_stmt_iterator gsi1
= gsi_for_stmt (stmt1
);
2610 update_gimple_call (&gsi1
, builtin_decl_implicit (BUILT_IN_CALLOC
), 2,
2611 size
, build_one_cst (size_type_node
));
2612 si1
->nonzero_chars
= build_int_cst (size_type_node
, 0);
2613 si1
->full_string_p
= true;
2614 si1
->stmt
= gsi_stmt (gsi1
);
2618 tree lhs
= gimple_call_lhs (stmt2
);
2619 unlink_stmt_vdef (stmt2
);
2622 gimple
*assign
= gimple_build_assign (lhs
, ptr
);
2623 gsi_replace (gsi
, assign
, false);
2627 gsi_remove (gsi
, true);
2628 release_defs (stmt2
);
2634 /* Handle a call to memcmp. We try to handle small comparisons by
2635 converting them to load and compare, and replacing the call to memcmp
2636 with a __builtin_memcmp_eq call where possible. */
2639 handle_builtin_memcmp (gimple_stmt_iterator
*gsi
)
2641 gcall
*stmt2
= as_a
<gcall
*> (gsi_stmt (*gsi
));
2642 tree res
= gimple_call_lhs (stmt2
);
2643 tree arg1
= gimple_call_arg (stmt2
, 0);
2644 tree arg2
= gimple_call_arg (stmt2
, 1);
2645 tree len
= gimple_call_arg (stmt2
, 2);
2646 unsigned HOST_WIDE_INT leni
;
2647 use_operand_p use_p
;
2648 imm_use_iterator iter
;
2653 FOR_EACH_IMM_USE_FAST (use_p
, iter
, res
)
2655 gimple
*ustmt
= USE_STMT (use_p
);
2657 if (is_gimple_debug (ustmt
))
2659 if (gimple_code (ustmt
) == GIMPLE_ASSIGN
)
2661 gassign
*asgn
= as_a
<gassign
*> (ustmt
);
2662 tree_code code
= gimple_assign_rhs_code (asgn
);
2663 if ((code
!= EQ_EXPR
&& code
!= NE_EXPR
)
2664 || !integer_zerop (gimple_assign_rhs2 (asgn
)))
2667 else if (gimple_code (ustmt
) == GIMPLE_COND
)
2669 tree_code code
= gimple_cond_code (ustmt
);
2670 if ((code
!= EQ_EXPR
&& code
!= NE_EXPR
)
2671 || !integer_zerop (gimple_cond_rhs (ustmt
)))
2678 if (tree_fits_uhwi_p (len
)
2679 && (leni
= tree_to_uhwi (len
)) <= GET_MODE_SIZE (word_mode
)
2680 && pow2p_hwi (leni
))
2682 leni
*= CHAR_TYPE_SIZE
;
2683 unsigned align1
= get_pointer_alignment (arg1
);
2684 unsigned align2
= get_pointer_alignment (arg2
);
2685 unsigned align
= MIN (align1
, align2
);
2686 scalar_int_mode mode
;
2687 if (int_mode_for_size (leni
, 1).exists (&mode
)
2688 && (align
>= leni
|| !targetm
.slow_unaligned_access (mode
, align
)))
2690 location_t loc
= gimple_location (stmt2
);
2692 type
= build_nonstandard_integer_type (leni
, 1);
2693 gcc_assert (known_eq (GET_MODE_BITSIZE (TYPE_MODE (type
)), leni
));
2694 tree ptrtype
= build_pointer_type_for_mode (char_type_node
,
2696 off
= build_int_cst (ptrtype
, 0);
2697 arg1
= build2_loc (loc
, MEM_REF
, type
, arg1
, off
);
2698 arg2
= build2_loc (loc
, MEM_REF
, type
, arg2
, off
);
2699 tree tem1
= fold_const_aggregate_ref (arg1
);
2702 tree tem2
= fold_const_aggregate_ref (arg2
);
2705 res
= fold_convert_loc (loc
, TREE_TYPE (res
),
2706 fold_build2_loc (loc
, NE_EXPR
,
2709 gimplify_and_update_call_from_tree (gsi
, res
);
2714 gimple_call_set_fndecl (stmt2
, builtin_decl_explicit (BUILT_IN_MEMCMP_EQ
));
2718 /* Handle a POINTER_PLUS_EXPR statement.
2719 For p = "abcd" + 2; compute associated length, or if
2720 p = q + off is pointing to a '\0' character of a string, call
2721 zero_length_string on it. */
2724 handle_pointer_plus (gimple_stmt_iterator
*gsi
)
2726 gimple
*stmt
= gsi_stmt (*gsi
);
2727 tree lhs
= gimple_assign_lhs (stmt
), off
;
2728 int idx
= get_stridx (gimple_assign_rhs1 (stmt
));
2736 tree off
= gimple_assign_rhs2 (stmt
);
2737 if (tree_fits_uhwi_p (off
)
2738 && tree_to_uhwi (off
) <= (unsigned HOST_WIDE_INT
) ~idx
)
2739 ssa_ver_to_stridx
[SSA_NAME_VERSION (lhs
)]
2740 = ~(~idx
- (int) tree_to_uhwi (off
));
2744 si
= get_strinfo (idx
);
2745 if (si
== NULL
|| si
->nonzero_chars
== NULL_TREE
)
2748 off
= gimple_assign_rhs2 (stmt
);
2750 if (si
->full_string_p
&& operand_equal_p (si
->nonzero_chars
, off
, 0))
2751 zsi
= zero_length_string (lhs
, si
);
2752 else if (TREE_CODE (off
) == SSA_NAME
)
2754 gimple
*def_stmt
= SSA_NAME_DEF_STMT (off
);
2755 if (gimple_assign_single_p (def_stmt
)
2756 && si
->full_string_p
2757 && operand_equal_p (si
->nonzero_chars
,
2758 gimple_assign_rhs1 (def_stmt
), 0))
2759 zsi
= zero_length_string (lhs
, si
);
2762 && si
->endptr
!= NULL_TREE
2763 && si
->endptr
!= lhs
2764 && TREE_CODE (si
->endptr
) == SSA_NAME
)
2766 enum tree_code rhs_code
2767 = useless_type_conversion_p (TREE_TYPE (lhs
), TREE_TYPE (si
->endptr
))
2768 ? SSA_NAME
: NOP_EXPR
;
2769 gimple_assign_set_rhs_with_ops (gsi
, rhs_code
, si
->endptr
);
2770 gcc_assert (gsi_stmt (*gsi
) == stmt
);
2775 /* Check if RHS is string_cst possibly wrapped by mem_ref. */
2777 get_string_cst (tree rhs
)
2779 if (TREE_CODE (rhs
) == MEM_REF
2780 && integer_zerop (TREE_OPERAND (rhs
, 1)))
2782 rhs
= TREE_OPERAND (rhs
, 0);
2783 if (TREE_CODE (rhs
) == ADDR_EXPR
)
2784 rhs
= TREE_OPERAND (rhs
, 0);
2787 return (TREE_CODE (rhs
) == STRING_CST
) ? rhs
: NULL_TREE
;
2790 /* Handle a single character store. */
2793 handle_char_store (gimple_stmt_iterator
*gsi
)
2797 gimple
*stmt
= gsi_stmt (*gsi
);
2798 tree ssaname
= NULL_TREE
, lhs
= gimple_assign_lhs (stmt
);
2799 tree rhs
= gimple_assign_rhs1 (stmt
);
2800 unsigned HOST_WIDE_INT offset
= 0;
2802 if (TREE_CODE (lhs
) == MEM_REF
2803 && TREE_CODE (TREE_OPERAND (lhs
, 0)) == SSA_NAME
)
2805 tree mem_offset
= TREE_OPERAND (lhs
, 1);
2806 if (tree_fits_uhwi_p (mem_offset
))
2808 /* Get the strinfo for the base, and use it if it starts with at
2809 least OFFSET nonzero characters. This is trivially true if
2811 offset
= tree_to_uhwi (mem_offset
);
2812 idx
= get_stridx (TREE_OPERAND (lhs
, 0));
2814 si
= get_strinfo (idx
);
2816 ssaname
= TREE_OPERAND (lhs
, 0);
2817 else if (si
== NULL
|| compare_nonzero_chars (si
, offset
) < 0)
2823 idx
= get_addr_stridx (lhs
, NULL_TREE
, &offset
);
2825 si
= get_strinfo (idx
);
2828 bool storing_zero_p
= initializer_zerop (rhs
);
2829 bool storing_nonzero_p
= (!storing_zero_p
2830 && TREE_CODE (rhs
) == INTEGER_CST
2831 && integer_nonzerop (rhs
));
2835 int cmp
= compare_nonzero_chars (si
, offset
);
2836 gcc_assert (offset
== 0 || cmp
>= 0);
2837 if (storing_zero_p
&& cmp
== 0 && si
->full_string_p
)
2839 /* When overwriting a '\0' with a '\0', the store can be removed
2840 if we know it has been stored in the current function. */
2841 if (!stmt_could_throw_p (stmt
) && si
->writable
)
2843 unlink_stmt_vdef (stmt
);
2844 release_defs (stmt
);
2845 gsi_remove (gsi
, true);
2850 si
->writable
= true;
2855 /* If si->nonzero_chars > OFFSET, we aren't overwriting '\0',
2856 and if we aren't storing '\0', we know that the length of the
2857 string and any other zero terminated string in memory remains
2858 the same. In that case we move to the next gimple statement and
2859 return to signal the caller that it shouldn't invalidate anything.
2861 This is benefical for cases like:
2866 strcpy (p, "foobar");
2867 size_t len = strlen (p); // This can be optimized into 6
2868 size_t len2 = strlen (q); // This has to be computed
2870 size_t len3 = strlen (p); // This can be optimized into 6
2871 size_t len4 = strlen (q); // This can be optimized into len2
2872 bar (len, len2, len3, len4);
2875 else if (storing_nonzero_p
&& cmp
> 0)
2880 else if (storing_zero_p
|| storing_nonzero_p
|| (offset
!= 0 && cmp
> 0))
2882 /* When storing_nonzero_p, we know that the string now starts
2883 with OFFSET + 1 nonzero characters, but don't know whether
2884 there's a following nul terminator.
2886 When storing_zero_p, we know that the string is now OFFSET
2889 Otherwise, we're storing an unknown value at offset OFFSET,
2890 so need to clip the nonzero_chars to OFFSET. */
2891 location_t loc
= gimple_location (stmt
);
2892 tree oldlen
= si
->nonzero_chars
;
2893 if (cmp
== 0 && si
->full_string_p
)
2894 /* We're overwriting the nul terminator with a nonzero or
2895 unknown character. If the previous stmt was a memcpy,
2896 its length may be decreased. */
2897 adjust_last_stmt (si
, stmt
, false);
2898 si
= unshare_strinfo (si
);
2899 if (storing_nonzero_p
)
2900 si
->nonzero_chars
= build_int_cst (size_type_node
, offset
+ 1);
2902 si
->nonzero_chars
= build_int_cst (size_type_node
, offset
);
2903 si
->full_string_p
= storing_zero_p
;
2906 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ssaname
))
2907 si
->endptr
= ssaname
;
2912 si
->writable
= true;
2913 si
->dont_invalidate
= true;
2916 tree adj
= fold_build2_loc (loc
, MINUS_EXPR
, size_type_node
,
2917 si
->nonzero_chars
, oldlen
);
2918 adjust_related_strinfos (loc
, si
, adj
);
2924 else if (idx
== 0 && (storing_zero_p
|| storing_nonzero_p
))
2927 idx
= new_stridx (ssaname
);
2929 idx
= new_addr_stridx (lhs
);
2932 tree ptr
= (ssaname
? ssaname
: build_fold_addr_expr (lhs
));
2933 tree len
= storing_nonzero_p
? size_one_node
: size_zero_node
;
2934 si
= new_strinfo (ptr
, idx
, len
, storing_zero_p
);
2935 set_strinfo (idx
, si
);
2938 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ssaname
))
2939 si
->endptr
= ssaname
;
2940 si
->dont_invalidate
= true;
2941 si
->writable
= true;
2945 && (rhs
= get_string_cst (gimple_assign_rhs1 (stmt
)))
2946 && ssaname
== NULL_TREE
2947 && TREE_CODE (TREE_TYPE (lhs
)) == ARRAY_TYPE
)
2949 size_t l
= strlen (TREE_STRING_POINTER (rhs
));
2950 HOST_WIDE_INT a
= int_size_in_bytes (TREE_TYPE (lhs
));
2951 if (a
> 0 && (unsigned HOST_WIDE_INT
) a
> l
)
2953 int idx
= new_addr_stridx (lhs
);
2956 si
= new_strinfo (build_fold_addr_expr (lhs
), idx
,
2957 build_int_cst (size_type_node
, l
), true);
2958 set_strinfo (idx
, si
);
2959 si
->dont_invalidate
= true;
2964 if (si
!= NULL
&& offset
== 0 && storing_zero_p
)
2966 /* Allow adjust_last_stmt to remove it if the stored '\0'
2967 is immediately overwritten. */
2968 laststmt
.stmt
= stmt
;
2969 laststmt
.len
= build_int_cst (size_type_node
, 1);
2970 laststmt
.stridx
= si
->idx
;
2975 /* Try to fold strstr (s, t) eq/ne s to strncmp (s, t, strlen (t)) eq/ne 0. */
2978 fold_strstr_to_strncmp (tree rhs1
, tree rhs2
, gimple
*stmt
)
2980 if (TREE_CODE (rhs1
) != SSA_NAME
2981 || TREE_CODE (rhs2
) != SSA_NAME
)
2984 gimple
*call_stmt
= NULL
;
2985 for (int pass
= 0; pass
< 2; pass
++)
2987 gimple
*g
= SSA_NAME_DEF_STMT (rhs1
);
2988 if (gimple_call_builtin_p (g
, BUILT_IN_STRSTR
)
2989 && has_single_use (rhs1
)
2990 && gimple_call_arg (g
, 0) == rhs2
)
2995 std::swap (rhs1
, rhs2
);
3000 tree arg0
= gimple_call_arg (call_stmt
, 0);
3004 tree arg1
= gimple_call_arg (call_stmt
, 1);
3005 tree arg1_len
= NULL_TREE
;
3006 int idx
= get_stridx (arg1
);
3011 arg1_len
= build_int_cst (size_type_node
, ~idx
);
3014 strinfo
*si
= get_strinfo (idx
);
3016 arg1_len
= get_string_length (si
);
3020 if (arg1_len
!= NULL_TREE
)
3022 gimple_stmt_iterator gsi
= gsi_for_stmt (call_stmt
);
3023 tree strncmp_decl
= builtin_decl_explicit (BUILT_IN_STRNCMP
);
3025 if (!is_gimple_val (arg1_len
))
3027 tree arg1_len_tmp
= make_ssa_name (TREE_TYPE (arg1_len
));
3028 gassign
*arg1_stmt
= gimple_build_assign (arg1_len_tmp
,
3030 gsi_insert_before (&gsi
, arg1_stmt
, GSI_SAME_STMT
);
3031 arg1_len
= arg1_len_tmp
;
3034 gcall
*strncmp_call
= gimple_build_call (strncmp_decl
, 3,
3035 arg0
, arg1
, arg1_len
);
3036 tree strncmp_lhs
= make_ssa_name (integer_type_node
);
3037 gimple_set_vuse (strncmp_call
, gimple_vuse (call_stmt
));
3038 gimple_call_set_lhs (strncmp_call
, strncmp_lhs
);
3039 gsi_remove (&gsi
, true);
3040 gsi_insert_before (&gsi
, strncmp_call
, GSI_SAME_STMT
);
3041 tree zero
= build_zero_cst (TREE_TYPE (strncmp_lhs
));
3043 if (is_gimple_assign (stmt
))
3045 if (gimple_assign_rhs_code (stmt
) == COND_EXPR
)
3047 tree cond
= gimple_assign_rhs1 (stmt
);
3048 TREE_OPERAND (cond
, 0) = strncmp_lhs
;
3049 TREE_OPERAND (cond
, 1) = zero
;
3053 gimple_assign_set_rhs1 (stmt
, strncmp_lhs
);
3054 gimple_assign_set_rhs2 (stmt
, zero
);
3059 gcond
*cond
= as_a
<gcond
*> (stmt
);
3060 gimple_cond_set_lhs (cond
, strncmp_lhs
);
3061 gimple_cond_set_rhs (cond
, zero
);
3069 /* Attempt to check for validity of the performed access a single statement
3070 at *GSI using string length knowledge, and to optimize it.
3071 If the given basic block needs clean-up of EH, CLEANUP_EH is set to
3075 strlen_check_and_optimize_stmt (gimple_stmt_iterator
*gsi
, bool *cleanup_eh
)
3077 gimple
*stmt
= gsi_stmt (*gsi
);
3079 if (is_gimple_call (stmt
))
3081 tree callee
= gimple_call_fndecl (stmt
);
3082 if (valid_builtin_call (stmt
))
3083 switch (DECL_FUNCTION_CODE (callee
))
3085 case BUILT_IN_STRLEN
:
3086 case BUILT_IN_STRLEN_CHKP
:
3087 handle_builtin_strlen (gsi
);
3089 case BUILT_IN_STRCHR
:
3090 case BUILT_IN_STRCHR_CHKP
:
3091 handle_builtin_strchr (gsi
);
3093 case BUILT_IN_STRCPY
:
3094 case BUILT_IN_STRCPY_CHK
:
3095 case BUILT_IN_STPCPY
:
3096 case BUILT_IN_STPCPY_CHK
:
3097 case BUILT_IN_STRCPY_CHKP
:
3098 case BUILT_IN_STRCPY_CHK_CHKP
:
3099 case BUILT_IN_STPCPY_CHKP
:
3100 case BUILT_IN_STPCPY_CHK_CHKP
:
3101 handle_builtin_strcpy (DECL_FUNCTION_CODE (callee
), gsi
);
3104 case BUILT_IN_STRNCAT
:
3105 case BUILT_IN_STRNCAT_CHK
:
3106 handle_builtin_strncat (DECL_FUNCTION_CODE (callee
), gsi
);
3109 case BUILT_IN_STPNCPY
:
3110 case BUILT_IN_STPNCPY_CHK
:
3111 case BUILT_IN_STRNCPY
:
3112 case BUILT_IN_STRNCPY_CHK
:
3113 handle_builtin_stxncpy (DECL_FUNCTION_CODE (callee
), gsi
);
3116 case BUILT_IN_MEMCPY
:
3117 case BUILT_IN_MEMCPY_CHK
:
3118 case BUILT_IN_MEMPCPY
:
3119 case BUILT_IN_MEMPCPY_CHK
:
3120 case BUILT_IN_MEMCPY_CHKP
:
3121 case BUILT_IN_MEMCPY_CHK_CHKP
:
3122 case BUILT_IN_MEMPCPY_CHKP
:
3123 case BUILT_IN_MEMPCPY_CHK_CHKP
:
3124 handle_builtin_memcpy (DECL_FUNCTION_CODE (callee
), gsi
);
3126 case BUILT_IN_STRCAT
:
3127 case BUILT_IN_STRCAT_CHK
:
3128 case BUILT_IN_STRCAT_CHKP
:
3129 case BUILT_IN_STRCAT_CHK_CHKP
:
3130 handle_builtin_strcat (DECL_FUNCTION_CODE (callee
), gsi
);
3132 case BUILT_IN_MALLOC
:
3133 case BUILT_IN_CALLOC
:
3134 handle_builtin_malloc (DECL_FUNCTION_CODE (callee
), gsi
);
3136 case BUILT_IN_MEMSET
:
3137 if (!handle_builtin_memset (gsi
))
3140 case BUILT_IN_MEMCMP
:
3141 if (!handle_builtin_memcmp (gsi
))
3148 else if (is_gimple_assign (stmt
) && !gimple_clobber_p (stmt
))
3150 tree lhs
= gimple_assign_lhs (stmt
);
3152 if (TREE_CODE (lhs
) == SSA_NAME
&& POINTER_TYPE_P (TREE_TYPE (lhs
)))
3154 if (gimple_assign_single_p (stmt
)
3155 || (gimple_assign_cast_p (stmt
)
3156 && POINTER_TYPE_P (TREE_TYPE (gimple_assign_rhs1 (stmt
)))))
3158 int idx
= get_stridx (gimple_assign_rhs1 (stmt
));
3159 ssa_ver_to_stridx
[SSA_NAME_VERSION (lhs
)] = idx
;
3161 else if (gimple_assign_rhs_code (stmt
) == POINTER_PLUS_EXPR
)
3162 handle_pointer_plus (gsi
);
3164 else if (TREE_CODE (lhs
) == SSA_NAME
&& INTEGRAL_TYPE_P (TREE_TYPE (lhs
)))
3166 enum tree_code code
= gimple_assign_rhs_code (stmt
);
3167 if (code
== COND_EXPR
)
3169 tree cond
= gimple_assign_rhs1 (stmt
);
3170 enum tree_code cond_code
= TREE_CODE (cond
);
3172 if (cond_code
== EQ_EXPR
|| cond_code
== NE_EXPR
)
3173 fold_strstr_to_strncmp (TREE_OPERAND (cond
, 0),
3174 TREE_OPERAND (cond
, 1), stmt
);
3176 else if (code
== EQ_EXPR
|| code
== NE_EXPR
)
3177 fold_strstr_to_strncmp (gimple_assign_rhs1 (stmt
),
3178 gimple_assign_rhs2 (stmt
), stmt
);
3179 else if (gimple_assign_load_p (stmt
)
3180 && TREE_CODE (TREE_TYPE (lhs
)) == INTEGER_TYPE
3181 && TYPE_MODE (TREE_TYPE (lhs
)) == TYPE_MODE (char_type_node
)
3182 && (TYPE_PRECISION (TREE_TYPE (lhs
))
3183 == TYPE_PRECISION (char_type_node
))
3184 && !gimple_has_volatile_ops (stmt
))
3186 tree off
= integer_zero_node
;
3187 unsigned HOST_WIDE_INT coff
= 0;
3189 tree rhs1
= gimple_assign_rhs1 (stmt
);
3190 if (code
== MEM_REF
)
3192 idx
= get_stridx (TREE_OPERAND (rhs1
, 0));
3195 strinfo
*si
= get_strinfo (idx
);
3197 && si
->nonzero_chars
3198 && TREE_CODE (si
->nonzero_chars
) == INTEGER_CST
3199 && (wi::to_widest (si
->nonzero_chars
)
3200 >= wi::to_widest (off
)))
3201 off
= TREE_OPERAND (rhs1
, 1);
3203 /* This case is not useful. See if get_addr_stridx
3204 returns something usable. */
3209 idx
= get_addr_stridx (rhs1
, NULL_TREE
, &coff
);
3212 strinfo
*si
= get_strinfo (idx
);
3214 && si
->nonzero_chars
3215 && TREE_CODE (si
->nonzero_chars
) == INTEGER_CST
)
3217 widest_int w1
= wi::to_widest (si
->nonzero_chars
);
3218 widest_int w2
= wi::to_widest (off
) + coff
;
3220 && si
->full_string_p
)
3222 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
3224 fprintf (dump_file
, "Optimizing: ");
3225 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
3228 /* Reading the final '\0' character. */
3229 tree zero
= build_int_cst (TREE_TYPE (lhs
), 0);
3230 gimple_set_vuse (stmt
, NULL_TREE
);
3231 gimple_assign_set_rhs_from_tree (gsi
, zero
);
3233 |= maybe_clean_or_replace_eh_stmt (stmt
,
3235 stmt
= gsi_stmt (*gsi
);
3238 if (dump_file
&& (dump_flags
& TDF_DETAILS
) != 0)
3240 fprintf (dump_file
, "into: ");
3241 print_gimple_stmt (dump_file
, stmt
, 0, TDF_SLIM
);
3246 /* Reading a character before the final '\0'
3247 character. Just set the value range to ~[0, 0]
3248 if we don't have anything better. */
3250 tree type
= TREE_TYPE (lhs
);
3251 enum value_range_type vr
3252 = get_range_info (lhs
, &min
, &max
);
3253 if (vr
== VR_VARYING
3255 && min
== wi::min_value (TYPE_PRECISION (type
),
3257 && max
== wi::max_value (TYPE_PRECISION (type
),
3259 set_range_info (lhs
, VR_ANTI_RANGE
,
3260 wi::zero (TYPE_PRECISION (type
)),
3261 wi::zero (TYPE_PRECISION (type
)));
3267 if (strlen_to_stridx
)
3269 tree rhs1
= gimple_assign_rhs1 (stmt
);
3270 if (stridx_strlenloc
*ps
= strlen_to_stridx
->get (rhs1
))
3271 strlen_to_stridx
->put (lhs
, stridx_strlenloc (*ps
));
3274 else if (TREE_CODE (lhs
) != SSA_NAME
&& !TREE_SIDE_EFFECTS (lhs
))
3276 tree type
= TREE_TYPE (lhs
);
3277 if (TREE_CODE (type
) == ARRAY_TYPE
)
3278 type
= TREE_TYPE (type
);
3279 if (TREE_CODE (type
) == INTEGER_TYPE
3280 && TYPE_MODE (type
) == TYPE_MODE (char_type_node
)
3281 && TYPE_PRECISION (type
) == TYPE_PRECISION (char_type_node
))
3283 if (! handle_char_store (gsi
))
3288 else if (gcond
*cond
= dyn_cast
<gcond
*> (stmt
))
3290 enum tree_code code
= gimple_cond_code (cond
);
3291 if (code
== EQ_EXPR
|| code
== NE_EXPR
)
3292 fold_strstr_to_strncmp (gimple_cond_lhs (stmt
),
3293 gimple_cond_rhs (stmt
), stmt
);
3296 if (gimple_vdef (stmt
))
3297 maybe_invalidate (stmt
);
3301 /* Recursively call maybe_invalidate on stmts that might be executed
3302 in between dombb and current bb and that contain a vdef. Stop when
3303 *count stmts are inspected, or if the whole strinfo vector has
3304 been invalidated. */
3307 do_invalidate (basic_block dombb
, gimple
*phi
, bitmap visited
, int *count
)
3309 unsigned int i
, n
= gimple_phi_num_args (phi
);
3311 for (i
= 0; i
< n
; i
++)
3313 tree vuse
= gimple_phi_arg_def (phi
, i
);
3314 gimple
*stmt
= SSA_NAME_DEF_STMT (vuse
);
3315 basic_block bb
= gimple_bb (stmt
);
3318 || !bitmap_set_bit (visited
, bb
->index
)
3319 || !dominated_by_p (CDI_DOMINATORS
, bb
, dombb
))
3323 if (gimple_code (stmt
) == GIMPLE_PHI
)
3325 do_invalidate (dombb
, stmt
, visited
, count
);
3332 if (!maybe_invalidate (stmt
))
3337 vuse
= gimple_vuse (stmt
);
3338 stmt
= SSA_NAME_DEF_STMT (vuse
);
3339 if (gimple_bb (stmt
) != bb
)
3341 bb
= gimple_bb (stmt
);
3344 || !bitmap_set_bit (visited
, bb
->index
)
3345 || !dominated_by_p (CDI_DOMINATORS
, bb
, dombb
))
3352 class strlen_dom_walker
: public dom_walker
3355 strlen_dom_walker (cdi_direction direction
)
3356 : dom_walker (direction
), m_cleanup_cfg (false)
3359 virtual edge
before_dom_children (basic_block
);
3360 virtual void after_dom_children (basic_block
);
3362 /* Flag that will trigger TODO_cleanup_cfg to be returned in strlen
3363 execute function. */
3367 /* Callback for walk_dominator_tree. Attempt to optimize various
3368 string ops by remembering string lengths pointed by pointer SSA_NAMEs. */
3371 strlen_dom_walker::before_dom_children (basic_block bb
)
3373 basic_block dombb
= get_immediate_dominator (CDI_DOMINATORS
, bb
);
3376 stridx_to_strinfo
= NULL
;
3379 stridx_to_strinfo
= ((vec
<strinfo
*, va_heap
, vl_embed
> *) dombb
->aux
);
3380 if (stridx_to_strinfo
)
3382 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
3385 gphi
*phi
= gsi
.phi ();
3386 if (virtual_operand_p (gimple_phi_result (phi
)))
3388 bitmap visited
= BITMAP_ALLOC (NULL
);
3389 int count_vdef
= 100;
3390 do_invalidate (dombb
, phi
, visited
, &count_vdef
);
3391 BITMAP_FREE (visited
);
3392 if (count_vdef
== 0)
3394 /* If there were too many vdefs in between immediate
3395 dominator and current bb, invalidate everything.
3396 If stridx_to_strinfo has been unshared, we need
3397 to free it, otherwise just set it to NULL. */
3398 if (!strinfo_shared ())
3404 vec_safe_iterate (stridx_to_strinfo
, i
, &si
);
3408 (*stridx_to_strinfo
)[i
] = NULL
;
3412 stridx_to_strinfo
= NULL
;
3420 /* If all PHI arguments have the same string index, the PHI result
3422 for (gphi_iterator gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
3425 gphi
*phi
= gsi
.phi ();
3426 tree result
= gimple_phi_result (phi
);
3427 if (!virtual_operand_p (result
) && POINTER_TYPE_P (TREE_TYPE (result
)))
3429 int idx
= get_stridx (gimple_phi_arg_def (phi
, 0));
3432 unsigned int i
, n
= gimple_phi_num_args (phi
);
3433 for (i
= 1; i
< n
; i
++)
3434 if (idx
!= get_stridx (gimple_phi_arg_def (phi
, i
)))
3437 ssa_ver_to_stridx
[SSA_NAME_VERSION (result
)] = idx
;
3442 bool cleanup_eh
= false;
3444 /* Attempt to optimize individual statements. */
3445 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); )
3446 if (strlen_check_and_optimize_stmt (&gsi
, &cleanup_eh
))
3449 if (cleanup_eh
&& gimple_purge_dead_eh_edges (bb
))
3450 m_cleanup_cfg
= true;
3452 bb
->aux
= stridx_to_strinfo
;
3453 if (vec_safe_length (stridx_to_strinfo
) && !strinfo_shared ())
3454 (*stridx_to_strinfo
)[0] = (strinfo
*) bb
;
3458 /* Callback for walk_dominator_tree. Free strinfo vector if it is
3459 owned by the current bb, clear bb->aux. */
3462 strlen_dom_walker::after_dom_children (basic_block bb
)
3466 stridx_to_strinfo
= ((vec
<strinfo
*, va_heap
, vl_embed
> *) bb
->aux
);
3467 if (vec_safe_length (stridx_to_strinfo
)
3468 && (*stridx_to_strinfo
)[0] == (strinfo
*) bb
)
3473 for (i
= 1; vec_safe_iterate (stridx_to_strinfo
, i
, &si
); ++i
)
3475 vec_free (stridx_to_strinfo
);
3481 /* Main entry point. */
3485 const pass_data pass_data_strlen
=
3487 GIMPLE_PASS
, /* type */
3488 "strlen", /* name */
3489 OPTGROUP_NONE
, /* optinfo_flags */
3490 TV_TREE_STRLEN
, /* tv_id */
3491 ( PROP_cfg
| PROP_ssa
), /* properties_required */
3492 0, /* properties_provided */
3493 0, /* properties_destroyed */
3494 0, /* todo_flags_start */
3495 0, /* todo_flags_finish */
3498 class pass_strlen
: public gimple_opt_pass
3501 pass_strlen (gcc::context
*ctxt
)
3502 : gimple_opt_pass (pass_data_strlen
, ctxt
)
3505 /* opt_pass methods: */
3506 virtual bool gate (function
*) { return flag_optimize_strlen
!= 0; }
3507 virtual unsigned int execute (function
*);
3509 }; // class pass_strlen
3512 pass_strlen::execute (function
*fun
)
3514 gcc_assert (!strlen_to_stridx
);
3515 if (warn_stringop_overflow
|| warn_stringop_truncation
)
3516 strlen_to_stridx
= new hash_map
<tree
, stridx_strlenloc
> ();
3518 ssa_ver_to_stridx
.safe_grow_cleared (num_ssa_names
);
3521 calculate_dominance_info (CDI_DOMINATORS
);
3523 /* String length optimization is implemented as a walk of the dominator
3524 tree and a forward walk of statements within each block. */
3525 strlen_dom_walker
walker (CDI_DOMINATORS
);
3526 walker
.walk (fun
->cfg
->x_entry_block_ptr
);
3528 ssa_ver_to_stridx
.release ();
3529 strinfo_pool
.release ();
3530 if (decl_to_stridxlist_htab
)
3532 obstack_free (&stridx_obstack
, NULL
);
3533 delete decl_to_stridxlist_htab
;
3534 decl_to_stridxlist_htab
= NULL
;
3536 laststmt
.stmt
= NULL
;
3537 laststmt
.len
= NULL_TREE
;
3538 laststmt
.stridx
= 0;
3540 if (strlen_to_stridx
)
3542 strlen_to_stridx
->empty ();
3543 delete strlen_to_stridx
;
3544 strlen_to_stridx
= NULL
;
3547 return walker
.m_cleanup_cfg
? TODO_cleanup_cfg
: 0;
3553 make_pass_strlen (gcc::context
*ctxt
)
3555 return new pass_strlen (ctxt
);