]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-ssa-strlen.c
PR c++/71546 - lambda init-capture with qualified-id.
[thirdparty/gcc.git] / gcc / tree-ssa-strlen.c
CommitLineData
8b57bfeb 1/* String length optimization
85ec4feb 2 Copyright (C) 2011-2018 Free Software Foundation, Inc.
8b57bfeb
JJ
3 Contributed by Jakub Jelinek <jakub@redhat.com>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 3, or (at your option)
10any later version.
11
12GCC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#include "config.h"
22#include "system.h"
23#include "coretypes.h"
c7131fb2 24#include "backend.h"
957060b5 25#include "rtl.h"
4d648807 26#include "tree.h"
c7131fb2 27#include "gimple.h"
957060b5
AM
28#include "alloc-pool.h"
29#include "tree-pass.h"
c7131fb2 30#include "ssa.h"
957060b5
AM
31#include "cgraph.h"
32#include "gimple-pretty-print.h"
cc8bea0a 33#include "gimple-ssa-warn-restrict.h"
40e23961 34#include "fold-const.h"
d8a2d370 35#include "stor-layout.h"
2fb9a547
AM
36#include "gimple-fold.h"
37#include "tree-eh.h"
45b0be94 38#include "gimplify.h"
5be5c238 39#include "gimple-iterator.h"
18f429e2 40#include "gimplify-me.h"
d8a2d370 41#include "expr.h"
fa9544ab 42#include "tree-cfg.h"
442b4905 43#include "tree-dfa.h"
8b57bfeb 44#include "domwalk.h"
025d57f0 45#include "tree-ssa-alias.h"
8b57bfeb 46#include "tree-ssa-propagate.h"
5d0d5d68 47#include "tree-ssa-strlen.h"
8b57bfeb 48#include "params.h"
f5fc4a04 49#include "ipa-chkp.h"
910ee068 50#include "tree-hash-traits.h"
36b85e43 51#include "builtins.h"
e0bd6c9f 52#include "target.h"
025d57f0
MS
53#include "diagnostic-core.h"
54#include "diagnostic.h"
55#include "intl.h"
56#include "attribs.h"
6a33d0ff 57#include "calls.h"
8b57bfeb
JJ
58
59/* A vector indexed by SSA_NAME_VERSION. 0 means unknown, positive value
60 is an index into strinfo vector, negative value stands for
61 string length of a string literal (~strlen). */
9771b263 62static vec<int> ssa_ver_to_stridx;
8b57bfeb
JJ
63
64/* Number of currently active string indexes plus one. */
65static int max_stridx;
66
67/* String information record. */
526ceb68 68struct strinfo
8b57bfeb 69{
e3f9a279
RS
70 /* Number of leading characters that are known to be nonzero. This is
71 also the length of the string if FULL_STRING_P.
72
73 The values in a list of related string pointers must be consistent;
74 that is, if strinfo B comes X bytes after strinfo A, it must be
75 the case that A->nonzero_chars == X + B->nonzero_chars. */
76 tree nonzero_chars;
8b57bfeb
JJ
77 /* Any of the corresponding pointers for querying alias oracle. */
78 tree ptr;
862088aa
RS
79 /* This is used for two things:
80
81 - To record the statement that should be used for delayed length
82 computations. We maintain the invariant that all related strinfos
83 have delayed lengths or none do.
84
85 - To record the malloc or calloc call that produced this result. */
355fe088 86 gimple *stmt;
8b57bfeb
JJ
87 /* Pointer to '\0' if known, if NULL, it can be computed as
88 ptr + length. */
89 tree endptr;
90 /* Reference count. Any changes to strinfo entry possibly shared
91 with dominating basic blocks need unshare_strinfo first, except
92 for dont_invalidate which affects only the immediately next
93 maybe_invalidate. */
94 int refcount;
95 /* Copy of index. get_strinfo (si->idx) should return si; */
96 int idx;
97 /* These 3 fields are for chaining related string pointers together.
98 E.g. for
99 bl = strlen (b); dl = strlen (d); strcpy (a, b); c = a + bl;
100 strcpy (c, d); e = c + dl;
101 strinfo(a) -> strinfo(c) -> strinfo(e)
102 All have ->first field equal to strinfo(a)->idx and are doubly
103 chained through prev/next fields. The later strinfos are required
104 to point into the same string with zero or more bytes after
105 the previous pointer and all bytes in between the two pointers
106 must be non-zero. Functions like strcpy or memcpy are supposed
107 to adjust all previous strinfo lengths, but not following strinfo
108 lengths (those are uncertain, usually invalidated during
109 maybe_invalidate, except when the alias oracle knows better).
110 Functions like strcat on the other side adjust the whole
111 related strinfo chain.
112 They are updated lazily, so to use the chain the same first fields
113 and si->prev->next == si->idx needs to be verified. */
114 int first;
115 int next;
116 int prev;
117 /* A flag whether the string is known to be written in the current
118 function. */
119 bool writable;
120 /* A flag for the next maybe_invalidate that this strinfo shouldn't
121 be invalidated. Always cleared by maybe_invalidate. */
122 bool dont_invalidate;
e3f9a279
RS
123 /* True if the string is known to be nul-terminated after NONZERO_CHARS
124 characters. False is useful when detecting strings that are built
125 up via successive memcpys. */
126 bool full_string_p;
526ceb68 127};
8b57bfeb
JJ
128
129/* Pool for allocating strinfo_struct entries. */
526ceb68 130static object_allocator<strinfo> strinfo_pool ("strinfo pool");
8b57bfeb
JJ
131
132/* Vector mapping positive string indexes to strinfo, for the
133 current basic block. The first pointer in the vector is special,
134 it is either NULL, meaning the vector isn't shared, or it is
135 a basic block pointer to the owner basic_block if shared.
136 If some other bb wants to modify the vector, the vector needs
137 to be unshared first, and only the owner bb is supposed to free it. */
526ceb68 138static vec<strinfo *, va_heap, vl_embed> *stridx_to_strinfo;
8b57bfeb
JJ
139
140/* One OFFSET->IDX mapping. */
141struct stridxlist
142{
143 struct stridxlist *next;
144 HOST_WIDE_INT offset;
145 int idx;
146};
147
148/* Hash table entry, mapping a DECL to a chain of OFFSET->IDX mappings. */
149struct decl_stridxlist_map
150{
151 struct tree_map_base base;
152 struct stridxlist list;
153};
154
155/* Hash table for mapping decls to a chained list of offset -> idx
156 mappings. */
fb5c464a 157static hash_map<tree_decl_hash, stridxlist> *decl_to_stridxlist_htab;
8b57bfeb 158
6a33d0ff
MS
159/* Hash table mapping strlen calls to stridx instances describing
160 the calls' arguments. Non-null only when warn_stringop_truncation
161 is non-zero. */
025d57f0 162typedef std::pair<int, location_t> stridx_strlenloc;
6a33d0ff 163static hash_map<tree, stridx_strlenloc> *strlen_to_stridx;
025d57f0 164
8b57bfeb
JJ
165/* Obstack for struct stridxlist and struct decl_stridxlist_map. */
166static struct obstack stridx_obstack;
167
168/* Last memcpy statement if it could be adjusted if the trailing
169 '\0' written is immediately overwritten, or
170 *x = '\0' store that could be removed if it is immediately overwritten. */
171struct laststmt_struct
172{
355fe088 173 gimple *stmt;
8b57bfeb
JJ
174 tree len;
175 int stridx;
176} laststmt;
177
e3f9a279 178static int get_stridx_plus_constant (strinfo *, unsigned HOST_WIDE_INT, tree);
cc8bea0a 179static void handle_builtin_stxncpy (built_in_function, gimple_stmt_iterator *);
e3f9a279
RS
180
181/* Return:
182
183 - 1 if SI is known to start with more than OFF nonzero characters.
184
185 - 0 if SI is known to start with OFF nonzero characters,
186 but is not known to start with more.
187
188 - -1 if SI might not start with OFF nonzero characters. */
189
190static inline int
191compare_nonzero_chars (strinfo *si, unsigned HOST_WIDE_INT off)
192{
193 if (si->nonzero_chars
194 && TREE_CODE (si->nonzero_chars) == INTEGER_CST)
195 return compare_tree_int (si->nonzero_chars, off);
196 else
197 return -1;
198}
199
200/* Return true if SI is known to be a zero-length string. */
201
202static inline bool
203zero_length_string_p (strinfo *si)
204{
205 return si->full_string_p && integer_zerop (si->nonzero_chars);
206}
204a913b
JJ
207
208/* Return strinfo vector entry IDX. */
209
526ceb68 210static inline strinfo *
204a913b
JJ
211get_strinfo (int idx)
212{
213 if (vec_safe_length (stridx_to_strinfo) <= (unsigned int) idx)
214 return NULL;
215 return (*stridx_to_strinfo)[idx];
216}
217
bde63fde
RS
218/* Get the next strinfo in the chain after SI, or null if none. */
219
220static inline strinfo *
221get_next_strinfo (strinfo *si)
222{
223 if (si->next == 0)
224 return NULL;
225 strinfo *nextsi = get_strinfo (si->next);
226 if (nextsi == NULL || nextsi->first != si->first || nextsi->prev != si->idx)
227 return NULL;
228 return nextsi;
229}
230
e3f9a279
RS
231/* Helper function for get_stridx. Return the strinfo index of the address
232 of EXP, which is available in PTR if nonnull. If OFFSET_OUT, it is
233 OK to return the index for some X <= &EXP and store &EXP - X in
234 *OFFSET_OUT. */
8b57bfeb
JJ
235
236static int
e3f9a279 237get_addr_stridx (tree exp, tree ptr, unsigned HOST_WIDE_INT *offset_out)
8b57bfeb
JJ
238{
239 HOST_WIDE_INT off;
5f3cd7c3 240 struct stridxlist *list, *last = NULL;
8b57bfeb
JJ
241 tree base;
242
c203e8a7 243 if (!decl_to_stridxlist_htab)
8b57bfeb
JJ
244 return 0;
245
a90c8804
RS
246 poly_int64 poff;
247 base = get_addr_base_and_unit_offset (exp, &poff);
248 if (base == NULL || !DECL_P (base) || !poff.is_constant (&off))
8b57bfeb
JJ
249 return 0;
250
1eb68d2d
TS
251 list = decl_to_stridxlist_htab->get (base);
252 if (list == NULL)
8b57bfeb
JJ
253 return 0;
254
8b57bfeb
JJ
255 do
256 {
257 if (list->offset == off)
e3f9a279
RS
258 {
259 if (offset_out)
260 *offset_out = 0;
261 return list->idx;
262 }
5f3cd7c3
JJ
263 if (list->offset > off)
264 return 0;
265 last = list;
8b57bfeb
JJ
266 list = list->next;
267 }
268 while (list);
5f3cd7c3 269
e3f9a279 270 if ((offset_out || ptr) && last && last->idx > 0)
5f3cd7c3 271 {
e3f9a279
RS
272 unsigned HOST_WIDE_INT rel_off
273 = (unsigned HOST_WIDE_INT) off - last->offset;
5f3cd7c3 274 strinfo *si = get_strinfo (last->idx);
e3f9a279
RS
275 if (si && compare_nonzero_chars (si, rel_off) >= 0)
276 {
277 if (offset_out)
278 {
279 *offset_out = rel_off;
280 return last->idx;
281 }
282 else
283 return get_stridx_plus_constant (si, rel_off, ptr);
284 }
5f3cd7c3 285 }
8b57bfeb
JJ
286 return 0;
287}
288
289/* Return string index for EXP. */
290
291static int
292get_stridx (tree exp)
293{
b3c3685a 294 tree s, o;
8b57bfeb
JJ
295
296 if (TREE_CODE (exp) == SSA_NAME)
204a913b
JJ
297 {
298 if (ssa_ver_to_stridx[SSA_NAME_VERSION (exp)])
299 return ssa_ver_to_stridx[SSA_NAME_VERSION (exp)];
300 int i;
301 tree e = exp;
302 HOST_WIDE_INT off = 0;
303 for (i = 0; i < 5; i++)
304 {
355fe088 305 gimple *def_stmt = SSA_NAME_DEF_STMT (e);
204a913b
JJ
306 if (!is_gimple_assign (def_stmt)
307 || gimple_assign_rhs_code (def_stmt) != POINTER_PLUS_EXPR)
308 return 0;
309 tree rhs1 = gimple_assign_rhs1 (def_stmt);
310 tree rhs2 = gimple_assign_rhs2 (def_stmt);
311 if (TREE_CODE (rhs1) != SSA_NAME
312 || !tree_fits_shwi_p (rhs2))
313 return 0;
314 HOST_WIDE_INT this_off = tree_to_shwi (rhs2);
315 if (this_off < 0)
316 return 0;
317 off = (unsigned HOST_WIDE_INT) off + this_off;
318 if (off < 0)
319 return 0;
320 if (ssa_ver_to_stridx[SSA_NAME_VERSION (rhs1)])
321 {
526ceb68 322 strinfo *si
204a913b 323 = get_strinfo (ssa_ver_to_stridx[SSA_NAME_VERSION (rhs1)]);
e3f9a279 324 if (si && compare_nonzero_chars (si, off) >= 0)
204a913b
JJ
325 return get_stridx_plus_constant (si, off, exp);
326 }
327 e = rhs1;
328 }
329 return 0;
330 }
8b57bfeb
JJ
331
332 if (TREE_CODE (exp) == ADDR_EXPR)
333 {
e3f9a279 334 int idx = get_addr_stridx (TREE_OPERAND (exp, 0), exp, NULL);
8b57bfeb
JJ
335 if (idx != 0)
336 return idx;
337 }
338
b3c3685a
JJ
339 s = string_constant (exp, &o);
340 if (s != NULL_TREE
9541ffee 341 && (o == NULL_TREE || tree_fits_shwi_p (o))
b3c3685a 342 && TREE_STRING_LENGTH (s) > 0)
8b57bfeb 343 {
9439e9a1 344 HOST_WIDE_INT offset = o ? tree_to_shwi (o) : 0;
b3c3685a
JJ
345 const char *p = TREE_STRING_POINTER (s);
346 int max = TREE_STRING_LENGTH (s) - 1;
347
348 if (p[max] == '\0' && offset >= 0 && offset <= max)
349 return ~(int) strlen (p + offset);
8b57bfeb
JJ
350 }
351 return 0;
352}
353
354/* Return true if strinfo vector is shared with the immediate dominator. */
355
356static inline bool
357strinfo_shared (void)
358{
9771b263
DN
359 return vec_safe_length (stridx_to_strinfo)
360 && (*stridx_to_strinfo)[0] != NULL;
8b57bfeb
JJ
361}
362
363/* Unshare strinfo vector that is shared with the immediate dominator. */
364
365static void
366unshare_strinfo_vec (void)
367{
526ceb68 368 strinfo *si;
8b57bfeb
JJ
369 unsigned int i = 0;
370
371 gcc_assert (strinfo_shared ());
9771b263
DN
372 stridx_to_strinfo = vec_safe_copy (stridx_to_strinfo);
373 for (i = 1; vec_safe_iterate (stridx_to_strinfo, i, &si); ++i)
8b57bfeb
JJ
374 if (si != NULL)
375 si->refcount++;
9771b263 376 (*stridx_to_strinfo)[0] = NULL;
8b57bfeb
JJ
377}
378
379/* Attempt to create a string index for exp, ADDR_EXPR's operand.
380 Return a pointer to the location where the string index can
381 be stored (if 0) or is stored, or NULL if this can't be tracked. */
382
383static int *
384addr_stridxptr (tree exp)
385{
8b57bfeb
JJ
386 HOST_WIDE_INT off;
387
a90c8804
RS
388 poly_int64 poff;
389 tree base = get_addr_base_and_unit_offset (exp, &poff);
390 if (base == NULL_TREE || !DECL_P (base) || !poff.is_constant (&off))
8b57bfeb
JJ
391 return NULL;
392
c203e8a7 393 if (!decl_to_stridxlist_htab)
8b57bfeb 394 {
1eb68d2d 395 decl_to_stridxlist_htab
fb5c464a 396 = new hash_map<tree_decl_hash, stridxlist> (64);
8b57bfeb
JJ
397 gcc_obstack_init (&stridx_obstack);
398 }
1eb68d2d
TS
399
400 bool existed;
401 stridxlist *list = &decl_to_stridxlist_htab->get_or_insert (base, &existed);
402 if (existed)
8b57bfeb
JJ
403 {
404 int i;
5f3cd7c3
JJ
405 stridxlist *before = NULL;
406 for (i = 0; i < 32; i++)
8b57bfeb
JJ
407 {
408 if (list->offset == off)
409 return &list->idx;
5f3cd7c3
JJ
410 if (list->offset > off && before == NULL)
411 before = list;
8b57bfeb
JJ
412 if (list->next == NULL)
413 break;
5f3cd7c3 414 list = list->next;
8b57bfeb 415 }
5f3cd7c3 416 if (i == 32)
8b57bfeb 417 return NULL;
5f3cd7c3
JJ
418 if (before)
419 {
420 list = before;
421 before = XOBNEW (&stridx_obstack, struct stridxlist);
422 *before = *list;
423 list->next = before;
424 list->offset = off;
425 list->idx = 0;
426 return &list->idx;
427 }
8b57bfeb
JJ
428 list->next = XOBNEW (&stridx_obstack, struct stridxlist);
429 list = list->next;
430 }
1eb68d2d 431
8b57bfeb
JJ
432 list->next = NULL;
433 list->offset = off;
434 list->idx = 0;
435 return &list->idx;
436}
437
438/* Create a new string index, or return 0 if reached limit. */
439
440static int
441new_stridx (tree exp)
442{
443 int idx;
444 if (max_stridx >= PARAM_VALUE (PARAM_MAX_TRACKED_STRLENS))
445 return 0;
446 if (TREE_CODE (exp) == SSA_NAME)
447 {
448 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (exp))
449 return 0;
450 idx = max_stridx++;
9771b263 451 ssa_ver_to_stridx[SSA_NAME_VERSION (exp)] = idx;
8b57bfeb
JJ
452 return idx;
453 }
454 if (TREE_CODE (exp) == ADDR_EXPR)
455 {
456 int *pidx = addr_stridxptr (TREE_OPERAND (exp, 0));
457 if (pidx != NULL)
458 {
459 gcc_assert (*pidx == 0);
460 *pidx = max_stridx++;
461 return *pidx;
462 }
463 }
464 return 0;
465}
466
467/* Like new_stridx, but for ADDR_EXPR's operand instead. */
468
469static int
470new_addr_stridx (tree exp)
471{
472 int *pidx;
473 if (max_stridx >= PARAM_VALUE (PARAM_MAX_TRACKED_STRLENS))
474 return 0;
475 pidx = addr_stridxptr (exp);
476 if (pidx != NULL)
477 {
478 gcc_assert (*pidx == 0);
479 *pidx = max_stridx++;
480 return *pidx;
481 }
482 return 0;
483}
484
485/* Create a new strinfo. */
486
526ceb68 487static strinfo *
e3f9a279 488new_strinfo (tree ptr, int idx, tree nonzero_chars, bool full_string_p)
8b57bfeb 489{
526ceb68 490 strinfo *si = strinfo_pool.allocate ();
e3f9a279 491 si->nonzero_chars = nonzero_chars;
8b57bfeb
JJ
492 si->ptr = ptr;
493 si->stmt = NULL;
494 si->endptr = NULL_TREE;
495 si->refcount = 1;
496 si->idx = idx;
497 si->first = 0;
498 si->prev = 0;
499 si->next = 0;
500 si->writable = false;
501 si->dont_invalidate = false;
e3f9a279 502 si->full_string_p = full_string_p;
8b57bfeb
JJ
503 return si;
504}
505
506/* Decrease strinfo refcount and free it if not referenced anymore. */
507
508static inline void
526ceb68 509free_strinfo (strinfo *si)
8b57bfeb
JJ
510{
511 if (si && --si->refcount == 0)
33e7d32e 512 strinfo_pool.remove (si);
8b57bfeb
JJ
513}
514
8b57bfeb
JJ
515/* Set strinfo in the vector entry IDX to SI. */
516
517static inline void
526ceb68 518set_strinfo (int idx, strinfo *si)
8b57bfeb 519{
9771b263 520 if (vec_safe_length (stridx_to_strinfo) && (*stridx_to_strinfo)[0])
8b57bfeb 521 unshare_strinfo_vec ();
9771b263
DN
522 if (vec_safe_length (stridx_to_strinfo) <= (unsigned int) idx)
523 vec_safe_grow_cleared (stridx_to_strinfo, idx + 1);
524 (*stridx_to_strinfo)[idx] = si;
8b57bfeb
JJ
525}
526
862088aa
RS
527/* Return the first strinfo in the related strinfo chain
528 if all strinfos in between belong to the chain, otherwise NULL. */
529
530static strinfo *
531verify_related_strinfos (strinfo *origsi)
532{
533 strinfo *si = origsi, *psi;
534
535 if (origsi->first == 0)
536 return NULL;
537 for (; si->prev; si = psi)
538 {
539 if (si->first != origsi->first)
540 return NULL;
541 psi = get_strinfo (si->prev);
542 if (psi == NULL)
543 return NULL;
544 if (psi->next != si->idx)
545 return NULL;
546 }
547 if (si->idx != si->first)
548 return NULL;
549 return si;
550}
551
552/* Set SI's endptr to ENDPTR and compute its length based on SI->ptr.
553 Use LOC for folding. */
554
555static void
556set_endptr_and_length (location_t loc, strinfo *si, tree endptr)
557{
558 si->endptr = endptr;
559 si->stmt = NULL;
560 tree start_as_size = fold_convert_loc (loc, size_type_node, si->ptr);
561 tree end_as_size = fold_convert_loc (loc, size_type_node, endptr);
e3f9a279
RS
562 si->nonzero_chars = fold_build2_loc (loc, MINUS_EXPR, size_type_node,
563 end_as_size, start_as_size);
564 si->full_string_p = true;
862088aa
RS
565}
566
8b57bfeb
JJ
567/* Return string length, or NULL if it can't be computed. */
568
569static tree
526ceb68 570get_string_length (strinfo *si)
8b57bfeb 571{
e3f9a279
RS
572 if (si->nonzero_chars)
573 return si->full_string_p ? si->nonzero_chars : NULL;
8b57bfeb
JJ
574
575 if (si->stmt)
576 {
355fe088 577 gimple *stmt = si->stmt, *lenstmt;
f5fc4a04 578 bool with_bounds = gimple_call_with_bounds_p (stmt);
83d5977e 579 tree callee, lhs, fn, tem;
8b57bfeb
JJ
580 location_t loc;
581 gimple_stmt_iterator gsi;
582
583 gcc_assert (is_gimple_call (stmt));
584 callee = gimple_call_fndecl (stmt);
585 gcc_assert (callee && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL);
586 lhs = gimple_call_lhs (stmt);
8b57bfeb
JJ
587 /* unshare_strinfo is intentionally not called here. The (delayed)
588 transformation of strcpy or strcat into stpcpy is done at the place
589 of the former strcpy/strcat call and so can affect all the strinfos
590 with the same stmt. If they were unshared before and transformation
591 has been already done, the handling of BUILT_IN_STPCPY{,_CHK} should
592 just compute the right length. */
593 switch (DECL_FUNCTION_CODE (callee))
594 {
595 case BUILT_IN_STRCAT:
596 case BUILT_IN_STRCAT_CHK:
f5fc4a04
IE
597 case BUILT_IN_STRCAT_CHKP:
598 case BUILT_IN_STRCAT_CHK_CHKP:
8b57bfeb 599 gsi = gsi_for_stmt (stmt);
e79983f4 600 fn = builtin_decl_implicit (BUILT_IN_STRLEN);
8b57bfeb 601 gcc_assert (lhs == NULL_TREE);
8b57bfeb 602 tem = unshare_expr (gimple_call_arg (stmt, 0));
f5fc4a04
IE
603 if (with_bounds)
604 {
605 lenstmt = gimple_build_call (chkp_maybe_create_clone (fn)->decl,
606 2, tem, gimple_call_arg (stmt, 1));
607 gimple_call_set_with_bounds (lenstmt, true);
608 }
609 else
610 lenstmt = gimple_build_call (fn, 1, tem);
83d5977e 611 lhs = make_ssa_name (TREE_TYPE (TREE_TYPE (fn)), lenstmt);
8b57bfeb
JJ
612 gimple_call_set_lhs (lenstmt, lhs);
613 gimple_set_vuse (lenstmt, gimple_vuse (stmt));
614 gsi_insert_before (&gsi, lenstmt, GSI_SAME_STMT);
8b57bfeb 615 tem = gimple_call_arg (stmt, 0);
33960e2e
TG
616 if (!ptrofftype_p (TREE_TYPE (lhs)))
617 {
618 lhs = convert_to_ptrofftype (lhs);
619 lhs = force_gimple_operand_gsi (&gsi, lhs, true, NULL_TREE,
620 true, GSI_SAME_STMT);
621 }
0d0e4a03
JJ
622 lenstmt = gimple_build_assign
623 (make_ssa_name (TREE_TYPE (gimple_call_arg (stmt, 0))),
624 POINTER_PLUS_EXPR,tem, lhs);
8b57bfeb
JJ
625 gsi_insert_before (&gsi, lenstmt, GSI_SAME_STMT);
626 gimple_call_set_arg (stmt, 0, gimple_assign_lhs (lenstmt));
627 lhs = NULL_TREE;
628 /* FALLTHRU */
629 case BUILT_IN_STRCPY:
630 case BUILT_IN_STRCPY_CHK:
f5fc4a04
IE
631 case BUILT_IN_STRCPY_CHKP:
632 case BUILT_IN_STRCPY_CHK_CHKP:
1e762c6a 633 gcc_assert (builtin_decl_implicit_p (BUILT_IN_STPCPY));
f5fc4a04 634 if (gimple_call_num_args (stmt) == (with_bounds ? 4 : 2))
e79983f4 635 fn = builtin_decl_implicit (BUILT_IN_STPCPY);
8b57bfeb 636 else
e79983f4 637 fn = builtin_decl_explicit (BUILT_IN_STPCPY_CHK);
f5fc4a04
IE
638 if (with_bounds)
639 fn = chkp_maybe_create_clone (fn)->decl;
8b57bfeb
JJ
640 gcc_assert (lhs == NULL_TREE);
641 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
642 {
643 fprintf (dump_file, "Optimizing: ");
644 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
645 }
646 gimple_call_set_fndecl (stmt, fn);
83d5977e 647 lhs = make_ssa_name (TREE_TYPE (TREE_TYPE (fn)), stmt);
8b57bfeb
JJ
648 gimple_call_set_lhs (stmt, lhs);
649 update_stmt (stmt);
650 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
651 {
652 fprintf (dump_file, "into: ");
653 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
654 }
655 /* FALLTHRU */
656 case BUILT_IN_STPCPY:
657 case BUILT_IN_STPCPY_CHK:
f5fc4a04
IE
658 case BUILT_IN_STPCPY_CHKP:
659 case BUILT_IN_STPCPY_CHK_CHKP:
8b57bfeb
JJ
660 gcc_assert (lhs != NULL_TREE);
661 loc = gimple_location (stmt);
862088aa
RS
662 set_endptr_and_length (loc, si, lhs);
663 for (strinfo *chainsi = verify_related_strinfos (si);
664 chainsi != NULL;
665 chainsi = get_next_strinfo (chainsi))
e3f9a279 666 if (chainsi->nonzero_chars == NULL)
862088aa 667 set_endptr_and_length (loc, chainsi, lhs);
8b57bfeb 668 break;
24314386
MG
669 case BUILT_IN_MALLOC:
670 break;
e3f9a279 671 /* BUILT_IN_CALLOC always has si->nonzero_chars set. */
8b57bfeb
JJ
672 default:
673 gcc_unreachable ();
674 break;
675 }
676 }
677
e3f9a279 678 return si->nonzero_chars;
8b57bfeb
JJ
679}
680
681/* Invalidate string length information for strings whose length
682 might change due to stores in stmt. */
683
684static bool
355fe088 685maybe_invalidate (gimple *stmt)
8b57bfeb 686{
526ceb68 687 strinfo *si;
8b57bfeb
JJ
688 unsigned int i;
689 bool nonempty = false;
690
9771b263 691 for (i = 1; vec_safe_iterate (stridx_to_strinfo, i, &si); ++i)
8b57bfeb
JJ
692 if (si != NULL)
693 {
694 if (!si->dont_invalidate)
695 {
696 ao_ref r;
e3f9a279 697 /* Do not use si->nonzero_chars. */
8b57bfeb
JJ
698 ao_ref_init_from_ptr_and_size (&r, si->ptr, NULL_TREE);
699 if (stmt_may_clobber_ref_p_1 (stmt, &r))
700 {
701 set_strinfo (i, NULL);
702 free_strinfo (si);
703 continue;
704 }
705 }
706 si->dont_invalidate = false;
707 nonempty = true;
708 }
709 return nonempty;
710}
711
204a913b 712/* Unshare strinfo record SI, if it has refcount > 1 or
8b57bfeb
JJ
713 if stridx_to_strinfo vector is shared with some other
714 bbs. */
715
526ceb68
TS
716static strinfo *
717unshare_strinfo (strinfo *si)
8b57bfeb 718{
526ceb68 719 strinfo *nsi;
8b57bfeb
JJ
720
721 if (si->refcount == 1 && !strinfo_shared ())
722 return si;
723
e3f9a279 724 nsi = new_strinfo (si->ptr, si->idx, si->nonzero_chars, si->full_string_p);
8b57bfeb
JJ
725 nsi->stmt = si->stmt;
726 nsi->endptr = si->endptr;
727 nsi->first = si->first;
728 nsi->prev = si->prev;
729 nsi->next = si->next;
730 nsi->writable = si->writable;
731 set_strinfo (si->idx, nsi);
732 free_strinfo (si);
733 return nsi;
734}
735
204a913b
JJ
736/* Attempt to create a new strinfo for BASESI + OFF, or find existing
737 strinfo if there is any. Return it's idx, or 0 if no strinfo has
738 been created. */
739
740static int
e3f9a279
RS
741get_stridx_plus_constant (strinfo *basesi, unsigned HOST_WIDE_INT off,
742 tree ptr)
204a913b 743{
5f3cd7c3 744 if (TREE_CODE (ptr) == SSA_NAME && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ptr))
204a913b
JJ
745 return 0;
746
e3f9a279
RS
747 if (compare_nonzero_chars (basesi, off) < 0
748 || !tree_fits_uhwi_p (basesi->nonzero_chars))
204a913b
JJ
749 return 0;
750
e3f9a279
RS
751 unsigned HOST_WIDE_INT nonzero_chars
752 = tree_to_uhwi (basesi->nonzero_chars) - off;
526ceb68 753 strinfo *si = basesi, *chainsi;
204a913b
JJ
754 if (si->first || si->prev || si->next)
755 si = verify_related_strinfos (basesi);
756 if (si == NULL
e3f9a279
RS
757 || si->nonzero_chars == NULL_TREE
758 || TREE_CODE (si->nonzero_chars) != INTEGER_CST)
204a913b
JJ
759 return 0;
760
5f3cd7c3
JJ
761 if (TREE_CODE (ptr) == SSA_NAME
762 && ssa_ver_to_stridx.length () <= SSA_NAME_VERSION (ptr))
204a913b
JJ
763 ssa_ver_to_stridx.safe_grow_cleared (num_ssa_names);
764
e3f9a279 765 gcc_checking_assert (compare_tree_int (si->nonzero_chars, off) != -1);
204a913b
JJ
766 for (chainsi = si; chainsi->next; chainsi = si)
767 {
bde63fde 768 si = get_next_strinfo (chainsi);
204a913b 769 if (si == NULL
e3f9a279
RS
770 || si->nonzero_chars == NULL_TREE
771 || TREE_CODE (si->nonzero_chars) != INTEGER_CST)
204a913b 772 break;
e3f9a279 773 int r = compare_tree_int (si->nonzero_chars, nonzero_chars);
204a913b
JJ
774 if (r != 1)
775 {
776 if (r == 0)
777 {
55a0f21a
JJ
778 if (TREE_CODE (ptr) == SSA_NAME)
779 ssa_ver_to_stridx[SSA_NAME_VERSION (ptr)] = si->idx;
780 else
781 {
782 int *pidx = addr_stridxptr (TREE_OPERAND (ptr, 0));
783 if (pidx != NULL && *pidx == 0)
784 *pidx = si->idx;
785 }
204a913b
JJ
786 return si->idx;
787 }
788 break;
789 }
790 }
791
792 int idx = new_stridx (ptr);
793 if (idx == 0)
794 return 0;
e3f9a279
RS
795 si = new_strinfo (ptr, idx, build_int_cst (size_type_node, nonzero_chars),
796 basesi->full_string_p);
204a913b
JJ
797 set_strinfo (idx, si);
798 if (chainsi->next)
799 {
526ceb68 800 strinfo *nextsi = unshare_strinfo (get_strinfo (chainsi->next));
204a913b
JJ
801 si->next = nextsi->idx;
802 nextsi->prev = idx;
803 }
804 chainsi = unshare_strinfo (chainsi);
805 if (chainsi->first == 0)
806 chainsi->first = chainsi->idx;
807 chainsi->next = idx;
e3f9a279 808 if (chainsi->endptr == NULL_TREE && zero_length_string_p (si))
204a913b
JJ
809 chainsi->endptr = ptr;
810 si->endptr = chainsi->endptr;
811 si->prev = chainsi->idx;
812 si->first = chainsi->first;
813 si->writable = chainsi->writable;
814 return si->idx;
815}
816
8b57bfeb
JJ
817/* Note that PTR, a pointer SSA_NAME initialized in the current stmt, points
818 to a zero-length string and if possible chain it to a related strinfo
819 chain whose part is or might be CHAINSI. */
820
526ceb68
TS
821static strinfo *
822zero_length_string (tree ptr, strinfo *chainsi)
8b57bfeb 823{
526ceb68 824 strinfo *si;
8b57bfeb 825 int idx;
204a913b
JJ
826 if (ssa_ver_to_stridx.length () <= SSA_NAME_VERSION (ptr))
827 ssa_ver_to_stridx.safe_grow_cleared (num_ssa_names);
8b57bfeb 828 gcc_checking_assert (TREE_CODE (ptr) == SSA_NAME
204a913b 829 && ssa_ver_to_stridx[SSA_NAME_VERSION (ptr)] == 0);
8b57bfeb
JJ
830
831 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ptr))
832 return NULL;
833 if (chainsi != NULL)
834 {
835 si = verify_related_strinfos (chainsi);
836 if (si)
837 {
bde63fde 838 do
8b57bfeb 839 {
862088aa 840 /* We shouldn't mix delayed and non-delayed lengths. */
e3f9a279 841 gcc_assert (si->full_string_p);
bde63fde 842 if (si->endptr == NULL_TREE)
8b57bfeb 843 {
bde63fde
RS
844 si = unshare_strinfo (si);
845 si->endptr = ptr;
8b57bfeb 846 }
bde63fde
RS
847 chainsi = si;
848 si = get_next_strinfo (si);
8b57bfeb 849 }
bde63fde 850 while (si != NULL);
e3f9a279 851 if (zero_length_string_p (chainsi))
8b57bfeb
JJ
852 {
853 if (chainsi->next)
854 {
855 chainsi = unshare_strinfo (chainsi);
856 chainsi->next = 0;
857 }
9771b263 858 ssa_ver_to_stridx[SSA_NAME_VERSION (ptr)] = chainsi->idx;
8b57bfeb
JJ
859 return chainsi;
860 }
861 }
862088aa 862 else
8b57bfeb 863 {
862088aa 864 /* We shouldn't mix delayed and non-delayed lengths. */
e3f9a279 865 gcc_assert (chainsi->full_string_p);
862088aa
RS
866 if (chainsi->first || chainsi->prev || chainsi->next)
867 {
868 chainsi = unshare_strinfo (chainsi);
869 chainsi->first = 0;
870 chainsi->prev = 0;
871 chainsi->next = 0;
872 }
8b57bfeb
JJ
873 }
874 }
875 idx = new_stridx (ptr);
876 if (idx == 0)
877 return NULL;
e3f9a279 878 si = new_strinfo (ptr, idx, build_int_cst (size_type_node, 0), true);
8b57bfeb
JJ
879 set_strinfo (idx, si);
880 si->endptr = ptr;
881 if (chainsi != NULL)
882 {
883 chainsi = unshare_strinfo (chainsi);
884 if (chainsi->first == 0)
885 chainsi->first = chainsi->idx;
886 chainsi->next = idx;
93a90db6
AK
887 if (chainsi->endptr == NULL_TREE)
888 chainsi->endptr = ptr;
8b57bfeb
JJ
889 si->prev = chainsi->idx;
890 si->first = chainsi->first;
891 si->writable = chainsi->writable;
892 }
893 return si;
894}
895
e3f9a279
RS
896/* For strinfo ORIGSI whose length has been just updated, adjust other
897 related strinfos so that they match the new ORIGSI. This involves:
898
899 - adding ADJ to the nonzero_chars fields
900 - copying full_string_p from the new ORIGSI. */
8b57bfeb
JJ
901
902static void
526ceb68 903adjust_related_strinfos (location_t loc, strinfo *origsi, tree adj)
8b57bfeb 904{
526ceb68 905 strinfo *si = verify_related_strinfos (origsi);
8b57bfeb
JJ
906
907 if (si == NULL)
908 return;
909
910 while (1)
911 {
526ceb68 912 strinfo *nsi;
8b57bfeb
JJ
913
914 if (si != origsi)
915 {
916 tree tem;
917
918 si = unshare_strinfo (si);
862088aa
RS
919 /* We shouldn't see delayed lengths here; the caller must have
920 calculated the old length in order to calculate the
921 adjustment. */
e3f9a279
RS
922 gcc_assert (si->nonzero_chars);
923 tem = fold_convert_loc (loc, TREE_TYPE (si->nonzero_chars), adj);
924 si->nonzero_chars = fold_build2_loc (loc, PLUS_EXPR,
925 TREE_TYPE (si->nonzero_chars),
926 si->nonzero_chars, tem);
927 si->full_string_p = origsi->full_string_p;
93a90db6 928
8b57bfeb
JJ
929 si->endptr = NULL_TREE;
930 si->dont_invalidate = true;
931 }
bde63fde
RS
932 nsi = get_next_strinfo (si);
933 if (nsi == NULL)
8b57bfeb
JJ
934 return;
935 si = nsi;
936 }
937}
938
939/* Find if there are other SSA_NAME pointers equal to PTR
940 for which we don't track their string lengths yet. If so, use
941 IDX for them. */
942
943static void
944find_equal_ptrs (tree ptr, int idx)
945{
946 if (TREE_CODE (ptr) != SSA_NAME)
947 return;
948 while (1)
949 {
355fe088 950 gimple *stmt = SSA_NAME_DEF_STMT (ptr);
8b57bfeb
JJ
951 if (!is_gimple_assign (stmt))
952 return;
953 ptr = gimple_assign_rhs1 (stmt);
954 switch (gimple_assign_rhs_code (stmt))
955 {
956 case SSA_NAME:
957 break;
97246d78
JJ
958 CASE_CONVERT:
959 if (!POINTER_TYPE_P (TREE_TYPE (ptr)))
960 return;
961 if (TREE_CODE (ptr) == SSA_NAME)
962 break;
963 if (TREE_CODE (ptr) != ADDR_EXPR)
964 return;
965 /* FALLTHRU */
8b57bfeb
JJ
966 case ADDR_EXPR:
967 {
968 int *pidx = addr_stridxptr (TREE_OPERAND (ptr, 0));
969 if (pidx != NULL && *pidx == 0)
970 *pidx = idx;
971 return;
972 }
8b57bfeb
JJ
973 default:
974 return;
975 }
976
977 /* We might find an endptr created in this pass. Grow the
978 vector in that case. */
9771b263
DN
979 if (ssa_ver_to_stridx.length () <= SSA_NAME_VERSION (ptr))
980 ssa_ver_to_stridx.safe_grow_cleared (num_ssa_names);
8b57bfeb 981
9771b263 982 if (ssa_ver_to_stridx[SSA_NAME_VERSION (ptr)] != 0)
8b57bfeb 983 return;
9771b263 984 ssa_ver_to_stridx[SSA_NAME_VERSION (ptr)] = idx;
8b57bfeb
JJ
985 }
986}
987
0ad84f34
JJ
988/* Return true if STMT is a call to a builtin function with the right
989 arguments and attributes that should be considered for optimization
990 by this pass. */
991
992static bool
993valid_builtin_call (gimple *stmt)
994{
995 if (!gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
996 return false;
997
998 tree callee = gimple_call_fndecl (stmt);
999 switch (DECL_FUNCTION_CODE (callee))
1000 {
1001 case BUILT_IN_MEMCMP:
1002 case BUILT_IN_MEMCMP_EQ:
1003 case BUILT_IN_STRCHR:
1004 case BUILT_IN_STRCHR_CHKP:
1005 case BUILT_IN_STRLEN:
1006 case BUILT_IN_STRLEN_CHKP:
1007 /* The above functions should be pure. Punt if they aren't. */
1008 if (gimple_vdef (stmt) || gimple_vuse (stmt) == NULL_TREE)
1009 return false;
1010 break;
1011
1012 case BUILT_IN_CALLOC:
1013 case BUILT_IN_MALLOC:
1014 case BUILT_IN_MEMCPY:
1015 case BUILT_IN_MEMCPY_CHK:
1016 case BUILT_IN_MEMCPY_CHKP:
1017 case BUILT_IN_MEMCPY_CHK_CHKP:
1018 case BUILT_IN_MEMPCPY:
1019 case BUILT_IN_MEMPCPY_CHK:
1020 case BUILT_IN_MEMPCPY_CHKP:
1021 case BUILT_IN_MEMPCPY_CHK_CHKP:
1022 case BUILT_IN_MEMSET:
1023 case BUILT_IN_STPCPY:
1024 case BUILT_IN_STPCPY_CHK:
1025 case BUILT_IN_STPCPY_CHKP:
1026 case BUILT_IN_STPCPY_CHK_CHKP:
1027 case BUILT_IN_STRCAT:
1028 case BUILT_IN_STRCAT_CHK:
1029 case BUILT_IN_STRCAT_CHKP:
1030 case BUILT_IN_STRCAT_CHK_CHKP:
1031 case BUILT_IN_STRCPY:
1032 case BUILT_IN_STRCPY_CHK:
1033 case BUILT_IN_STRCPY_CHKP:
1034 case BUILT_IN_STRCPY_CHK_CHKP:
1035 /* The above functions should be neither const nor pure. Punt if they
1036 aren't. */
1037 if (gimple_vdef (stmt) == NULL_TREE || gimple_vuse (stmt) == NULL_TREE)
1038 return false;
1039 break;
1040
1041 default:
1042 break;
1043 }
1044
1045 return true;
1046}
1047
8b57bfeb
JJ
1048/* If the last .MEM setter statement before STMT is
1049 memcpy (x, y, strlen (y) + 1), the only .MEM use of it is STMT
1050 and STMT is known to overwrite x[strlen (x)], adjust the last memcpy to
1051 just memcpy (x, y, strlen (y)). SI must be the zero length
1052 strinfo. */
1053
1054static void
526ceb68 1055adjust_last_stmt (strinfo *si, gimple *stmt, bool is_strcat)
8b57bfeb
JJ
1056{
1057 tree vuse, callee, len;
1058 struct laststmt_struct last = laststmt;
526ceb68 1059 strinfo *lastsi, *firstsi;
f5fc4a04 1060 unsigned len_arg_no = 2;
8b57bfeb
JJ
1061
1062 laststmt.stmt = NULL;
1063 laststmt.len = NULL_TREE;
1064 laststmt.stridx = 0;
1065
1066 if (last.stmt == NULL)
1067 return;
1068
1069 vuse = gimple_vuse (stmt);
1070 if (vuse == NULL_TREE
1071 || SSA_NAME_DEF_STMT (vuse) != last.stmt
1072 || !has_single_use (vuse))
1073 return;
1074
1075 gcc_assert (last.stridx > 0);
1076 lastsi = get_strinfo (last.stridx);
1077 if (lastsi == NULL)
1078 return;
1079
1080 if (lastsi != si)
1081 {
1082 if (lastsi->first == 0 || lastsi->first != si->first)
1083 return;
1084
1085 firstsi = verify_related_strinfos (si);
1086 if (firstsi == NULL)
1087 return;
1088 while (firstsi != lastsi)
1089 {
bde63fde
RS
1090 firstsi = get_next_strinfo (firstsi);
1091 if (firstsi == NULL)
8b57bfeb 1092 return;
8b57bfeb
JJ
1093 }
1094 }
1095
e3f9a279
RS
1096 if (!is_strcat && !zero_length_string_p (si))
1097 return;
8b57bfeb
JJ
1098
1099 if (is_gimple_assign (last.stmt))
1100 {
1101 gimple_stmt_iterator gsi;
1102
1103 if (!integer_zerop (gimple_assign_rhs1 (last.stmt)))
1104 return;
1105 if (stmt_could_throw_p (last.stmt))
1106 return;
1107 gsi = gsi_for_stmt (last.stmt);
1108 unlink_stmt_vdef (last.stmt);
1109 release_defs (last.stmt);
1110 gsi_remove (&gsi, true);
1111 return;
1112 }
1113
0ad84f34 1114 if (!valid_builtin_call (last.stmt))
8b57bfeb
JJ
1115 return;
1116
3626621a 1117 callee = gimple_call_fndecl (last.stmt);
8b57bfeb
JJ
1118 switch (DECL_FUNCTION_CODE (callee))
1119 {
1120 case BUILT_IN_MEMCPY:
1121 case BUILT_IN_MEMCPY_CHK:
1122 break;
f5fc4a04
IE
1123 case BUILT_IN_MEMCPY_CHKP:
1124 case BUILT_IN_MEMCPY_CHK_CHKP:
1125 len_arg_no = 4;
1126 break;
8b57bfeb
JJ
1127 default:
1128 return;
1129 }
1130
f5fc4a04 1131 len = gimple_call_arg (last.stmt, len_arg_no);
cc269bb6 1132 if (tree_fits_uhwi_p (len))
8b57bfeb 1133 {
cc269bb6 1134 if (!tree_fits_uhwi_p (last.len)
8b57bfeb 1135 || integer_zerop (len)
7d362f6c 1136 || tree_to_uhwi (len) != tree_to_uhwi (last.len) + 1)
8b57bfeb
JJ
1137 return;
1138 /* Don't adjust the length if it is divisible by 4, it is more efficient
1139 to store the extra '\0' in that case. */
7d362f6c 1140 if ((tree_to_uhwi (len) & 3) == 0)
8b57bfeb
JJ
1141 return;
1142 }
1143 else if (TREE_CODE (len) == SSA_NAME)
1144 {
355fe088 1145 gimple *def_stmt = SSA_NAME_DEF_STMT (len);
8b57bfeb
JJ
1146 if (!is_gimple_assign (def_stmt)
1147 || gimple_assign_rhs_code (def_stmt) != PLUS_EXPR
1148 || gimple_assign_rhs1 (def_stmt) != last.len
1149 || !integer_onep (gimple_assign_rhs2 (def_stmt)))
1150 return;
1151 }
1152 else
1153 return;
1154
f5fc4a04 1155 gimple_call_set_arg (last.stmt, len_arg_no, last.len);
8b57bfeb
JJ
1156 update_stmt (last.stmt);
1157}
1158
06199618
MS
1159/* For an LHS that is an SSA_NAME and for strlen() argument SRC, set
1160 LHS range info to [0, N] if SRC refers to a character array A[N]
1161 with unknown length bounded by N. */
1162
1163static void
1164maybe_set_strlen_range (tree lhs, tree src)
1165{
1166 if (TREE_CODE (lhs) != SSA_NAME)
1167 return;
1168
1169 if (TREE_CODE (src) == SSA_NAME)
1170 {
1171 gimple *def = SSA_NAME_DEF_STMT (src);
1172 if (is_gimple_assign (def)
1173 && gimple_assign_rhs_code (def) == ADDR_EXPR)
1174 src = gimple_assign_rhs1 (def);
1175 }
1176
1177 if (TREE_CODE (src) != ADDR_EXPR)
1178 return;
1179
1180 /* The last array member of a struct can be bigger than its size
1181 suggests if it's treated as a poor-man's flexible array member. */
1182 src = TREE_OPERAND (src, 0);
1183 if (TREE_CODE (TREE_TYPE (src)) != ARRAY_TYPE
1184 || array_at_struct_end_p (src))
1185 return;
1186
1187 tree type = TREE_TYPE (src);
1188 if (tree dom = TYPE_DOMAIN (type))
1189 if (tree maxval = TYPE_MAX_VALUE (dom))
1190 {
1191 wide_int max = wi::to_wide (maxval);
1192 wide_int min = wi::zero (max.get_precision ());
1193 set_range_info (lhs, VR_RANGE, min, max);
1194 }
1195}
1196
8b57bfeb
JJ
1197/* Handle a strlen call. If strlen of the argument is known, replace
1198 the strlen call with the known value, otherwise remember that strlen
1199 of the argument is stored in the lhs SSA_NAME. */
1200
1201static void
1202handle_builtin_strlen (gimple_stmt_iterator *gsi)
1203{
1204 int idx;
1205 tree src;
355fe088 1206 gimple *stmt = gsi_stmt (*gsi);
8b57bfeb
JJ
1207 tree lhs = gimple_call_lhs (stmt);
1208
1209 if (lhs == NULL_TREE)
1210 return;
1211
1212 src = gimple_call_arg (stmt, 0);
1213 idx = get_stridx (src);
1214 if (idx)
1215 {
526ceb68 1216 strinfo *si = NULL;
8b57bfeb
JJ
1217 tree rhs;
1218
1219 if (idx < 0)
1220 rhs = build_int_cst (TREE_TYPE (lhs), ~idx);
1221 else
1222 {
1223 rhs = NULL_TREE;
1224 si = get_strinfo (idx);
1225 if (si != NULL)
1226 rhs = get_string_length (si);
1227 }
1228 if (rhs != NULL_TREE)
1229 {
1230 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
1231 {
1232 fprintf (dump_file, "Optimizing: ");
1233 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1234 }
1235 rhs = unshare_expr (rhs);
1236 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
1237 rhs = fold_convert_loc (gimple_location (stmt),
1238 TREE_TYPE (lhs), rhs);
1239 if (!update_call_from_tree (gsi, rhs))
1240 gimplify_and_update_call_from_tree (gsi, rhs);
1241 stmt = gsi_stmt (*gsi);
1242 update_stmt (stmt);
1243 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
1244 {
1245 fprintf (dump_file, "into: ");
1246 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1247 }
1248 if (si != NULL
e3f9a279
RS
1249 && TREE_CODE (si->nonzero_chars) != SSA_NAME
1250 && TREE_CODE (si->nonzero_chars) != INTEGER_CST
8b57bfeb
JJ
1251 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
1252 {
1253 si = unshare_strinfo (si);
e3f9a279
RS
1254 si->nonzero_chars = lhs;
1255 gcc_assert (si->full_string_p);
8b57bfeb 1256 }
025d57f0 1257
6a33d0ff
MS
1258 if (strlen_to_stridx)
1259 {
1260 location_t loc = gimple_location (stmt);
1261 strlen_to_stridx->put (lhs, stridx_strlenloc (idx, loc));
1262 }
8b57bfeb
JJ
1263 return;
1264 }
1265 }
1266 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
1267 return;
1268 if (idx == 0)
1269 idx = new_stridx (src);
e3f9a279
RS
1270 else
1271 {
1272 strinfo *si = get_strinfo (idx);
1273 if (si != NULL)
1274 {
1275 if (!si->full_string_p && !si->stmt)
1276 {
1277 /* Until now we only had a lower bound on the string length.
1278 Install LHS as the actual length. */
1279 si = unshare_strinfo (si);
1aad7106 1280 tree old = si->nonzero_chars;
e3f9a279
RS
1281 si->nonzero_chars = lhs;
1282 si->full_string_p = true;
1aad7106
RS
1283 if (TREE_CODE (old) == INTEGER_CST)
1284 {
1285 location_t loc = gimple_location (stmt);
1286 old = fold_convert_loc (loc, TREE_TYPE (lhs), old);
1287 tree adj = fold_build2_loc (loc, MINUS_EXPR,
1288 TREE_TYPE (lhs), lhs, old);
1289 adjust_related_strinfos (loc, si, adj);
1290 }
1291 else
1292 {
1293 si->first = 0;
1294 si->prev = 0;
1295 si->next = 0;
1296 }
e3f9a279
RS
1297 }
1298 return;
1299 }
1300 }
8b57bfeb
JJ
1301 if (idx)
1302 {
e3f9a279 1303 strinfo *si = new_strinfo (src, idx, lhs, true);
8b57bfeb
JJ
1304 set_strinfo (idx, si);
1305 find_equal_ptrs (src, idx);
025d57f0 1306
06199618
MS
1307 /* For SRC that is an array of N elements, set LHS's range
1308 to [0, N]. */
1309 maybe_set_strlen_range (lhs, src);
1310
6a33d0ff
MS
1311 if (strlen_to_stridx)
1312 {
1313 location_t loc = gimple_location (stmt);
1314 strlen_to_stridx->put (lhs, stridx_strlenloc (idx, loc));
1315 }
8b57bfeb
JJ
1316 }
1317}
1318
1319/* Handle a strchr call. If strlen of the first argument is known, replace
1320 the strchr (x, 0) call with the endptr or x + strlen, otherwise remember
1321 that lhs of the call is endptr and strlen of the argument is endptr - x. */
1322
1323static void
1324handle_builtin_strchr (gimple_stmt_iterator *gsi)
1325{
1326 int idx;
1327 tree src;
355fe088 1328 gimple *stmt = gsi_stmt (*gsi);
8b57bfeb 1329 tree lhs = gimple_call_lhs (stmt);
f5fc4a04 1330 bool with_bounds = gimple_call_with_bounds_p (stmt);
8b57bfeb
JJ
1331
1332 if (lhs == NULL_TREE)
1333 return;
1334
f5fc4a04 1335 if (!integer_zerop (gimple_call_arg (stmt, with_bounds ? 2 : 1)))
8b57bfeb
JJ
1336 return;
1337
1338 src = gimple_call_arg (stmt, 0);
1339 idx = get_stridx (src);
1340 if (idx)
1341 {
526ceb68 1342 strinfo *si = NULL;
8b57bfeb
JJ
1343 tree rhs;
1344
1345 if (idx < 0)
1346 rhs = build_int_cst (size_type_node, ~idx);
1347 else
1348 {
1349 rhs = NULL_TREE;
1350 si = get_strinfo (idx);
1351 if (si != NULL)
1352 rhs = get_string_length (si);
1353 }
1354 if (rhs != NULL_TREE)
1355 {
1356 location_t loc = gimple_location (stmt);
1357
1358 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
1359 {
1360 fprintf (dump_file, "Optimizing: ");
1361 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1362 }
1363 if (si != NULL && si->endptr != NULL_TREE)
1364 {
1365 rhs = unshare_expr (si->endptr);
1366 if (!useless_type_conversion_p (TREE_TYPE (lhs),
1367 TREE_TYPE (rhs)))
1368 rhs = fold_convert_loc (loc, TREE_TYPE (lhs), rhs);
1369 }
1370 else
1371 {
1372 rhs = fold_convert_loc (loc, sizetype, unshare_expr (rhs));
1373 rhs = fold_build2_loc (loc, POINTER_PLUS_EXPR,
1374 TREE_TYPE (src), src, rhs);
1375 if (!useless_type_conversion_p (TREE_TYPE (lhs),
1376 TREE_TYPE (rhs)))
1377 rhs = fold_convert_loc (loc, TREE_TYPE (lhs), rhs);
1378 }
1379 if (!update_call_from_tree (gsi, rhs))
1380 gimplify_and_update_call_from_tree (gsi, rhs);
1381 stmt = gsi_stmt (*gsi);
1382 update_stmt (stmt);
1383 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
1384 {
1385 fprintf (dump_file, "into: ");
1386 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1387 }
1388 if (si != NULL
1389 && si->endptr == NULL_TREE
1390 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
1391 {
1392 si = unshare_strinfo (si);
1393 si->endptr = lhs;
1394 }
1395 zero_length_string (lhs, si);
1396 return;
1397 }
1398 }
1399 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
1400 return;
1401 if (TREE_CODE (src) != SSA_NAME || !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (src))
1402 {
1403 if (idx == 0)
1404 idx = new_stridx (src);
1405 else if (get_strinfo (idx) != NULL)
1406 {
1407 zero_length_string (lhs, NULL);
1408 return;
1409 }
1410 if (idx)
1411 {
1412 location_t loc = gimple_location (stmt);
1413 tree lhsu = fold_convert_loc (loc, size_type_node, lhs);
1414 tree srcu = fold_convert_loc (loc, size_type_node, src);
1415 tree length = fold_build2_loc (loc, MINUS_EXPR,
1416 size_type_node, lhsu, srcu);
e3f9a279 1417 strinfo *si = new_strinfo (src, idx, length, true);
8b57bfeb
JJ
1418 si->endptr = lhs;
1419 set_strinfo (idx, si);
1420 find_equal_ptrs (src, idx);
1421 zero_length_string (lhs, si);
1422 }
1423 }
1424 else
1425 zero_length_string (lhs, NULL);
1426}
1427
1428/* Handle a strcpy-like ({st{r,p}cpy,__st{r,p}cpy_chk}) call.
1429 If strlen of the second argument is known, strlen of the first argument
1430 is the same after this call. Furthermore, attempt to convert it to
1431 memcpy. */
1432
1433static void
1434handle_builtin_strcpy (enum built_in_function bcode, gimple_stmt_iterator *gsi)
1435{
1436 int idx, didx;
cc8bea0a 1437 tree src, dst, srclen, len, lhs, type, fn, oldlen;
8b57bfeb 1438 bool success;
355fe088 1439 gimple *stmt = gsi_stmt (*gsi);
526ceb68 1440 strinfo *si, *dsi, *olddsi, *zsi;
8b57bfeb 1441 location_t loc;
f5fc4a04 1442 bool with_bounds = gimple_call_with_bounds_p (stmt);
8b57bfeb 1443
f5fc4a04 1444 src = gimple_call_arg (stmt, with_bounds ? 2 : 1);
8b57bfeb
JJ
1445 dst = gimple_call_arg (stmt, 0);
1446 lhs = gimple_call_lhs (stmt);
1447 idx = get_stridx (src);
1448 si = NULL;
1449 if (idx > 0)
1450 si = get_strinfo (idx);
1451
1452 didx = get_stridx (dst);
1453 olddsi = NULL;
1454 oldlen = NULL_TREE;
1455 if (didx > 0)
1456 olddsi = get_strinfo (didx);
1457 else if (didx < 0)
1458 return;
1459
1460 if (olddsi != NULL)
1461 adjust_last_stmt (olddsi, stmt, false);
1462
1463 srclen = NULL_TREE;
1464 if (si != NULL)
1465 srclen = get_string_length (si);
1466 else if (idx < 0)
1467 srclen = build_int_cst (size_type_node, ~idx);
1468
1469 loc = gimple_location (stmt);
1470 if (srclen == NULL_TREE)
1471 switch (bcode)
1472 {
1473 case BUILT_IN_STRCPY:
1474 case BUILT_IN_STRCPY_CHK:
f5fc4a04
IE
1475 case BUILT_IN_STRCPY_CHKP:
1476 case BUILT_IN_STRCPY_CHK_CHKP:
e79983f4 1477 if (lhs != NULL_TREE || !builtin_decl_implicit_p (BUILT_IN_STPCPY))
8b57bfeb
JJ
1478 return;
1479 break;
1480 case BUILT_IN_STPCPY:
1481 case BUILT_IN_STPCPY_CHK:
f5fc4a04
IE
1482 case BUILT_IN_STPCPY_CHKP:
1483 case BUILT_IN_STPCPY_CHK_CHKP:
8b57bfeb
JJ
1484 if (lhs == NULL_TREE)
1485 return;
1486 else
1487 {
1488 tree lhsuint = fold_convert_loc (loc, size_type_node, lhs);
1489 srclen = fold_convert_loc (loc, size_type_node, dst);
1490 srclen = fold_build2_loc (loc, MINUS_EXPR, size_type_node,
1491 lhsuint, srclen);
1492 }
1493 break;
1494 default:
1495 gcc_unreachable ();
1496 }
1497
1498 if (didx == 0)
1499 {
1500 didx = new_stridx (dst);
1501 if (didx == 0)
1502 return;
1503 }
1504 if (olddsi != NULL)
1505 {
e3f9a279 1506 oldlen = olddsi->nonzero_chars;
8b57bfeb 1507 dsi = unshare_strinfo (olddsi);
e3f9a279
RS
1508 dsi->nonzero_chars = srclen;
1509 dsi->full_string_p = (srclen != NULL_TREE);
8b57bfeb
JJ
1510 /* Break the chain, so adjust_related_strinfo on later pointers in
1511 the chain won't adjust this one anymore. */
1512 dsi->next = 0;
1513 dsi->stmt = NULL;
1514 dsi->endptr = NULL_TREE;
1515 }
1516 else
1517 {
e3f9a279 1518 dsi = new_strinfo (dst, didx, srclen, srclen != NULL_TREE);
8b57bfeb
JJ
1519 set_strinfo (didx, dsi);
1520 find_equal_ptrs (dst, didx);
1521 }
1522 dsi->writable = true;
1523 dsi->dont_invalidate = true;
1524
e3f9a279 1525 if (dsi->nonzero_chars == NULL_TREE)
8b57bfeb 1526 {
526ceb68 1527 strinfo *chainsi;
93a90db6 1528
8b57bfeb
JJ
1529 /* If string length of src is unknown, use delayed length
1530 computation. If string lenth of dst will be needed, it
1531 can be computed by transforming this strcpy call into
1532 stpcpy and subtracting dst from the return value. */
93a90db6
AK
1533
1534 /* Look for earlier strings whose length could be determined if
1535 this strcpy is turned into an stpcpy. */
1536
1537 if (dsi->prev != 0 && (chainsi = verify_related_strinfos (dsi)) != NULL)
1538 {
1539 for (; chainsi && chainsi != dsi; chainsi = get_strinfo (chainsi->next))
1540 {
1541 /* When setting a stmt for delayed length computation
1542 prevent all strinfos through dsi from being
1543 invalidated. */
1544 chainsi = unshare_strinfo (chainsi);
1545 chainsi->stmt = stmt;
e3f9a279
RS
1546 chainsi->nonzero_chars = NULL_TREE;
1547 chainsi->full_string_p = false;
93a90db6
AK
1548 chainsi->endptr = NULL_TREE;
1549 chainsi->dont_invalidate = true;
1550 }
1551 }
8b57bfeb 1552 dsi->stmt = stmt;
cc8bea0a
MS
1553
1554 /* Try to detect overlap before returning. This catches cases
1555 like strcpy (d, d + n) where n is non-constant whose range
1556 is such that (n <= strlen (d) holds).
1557
1558 OLDDSI->NONZERO_chars may have been reset by this point with
1559 oldlen holding it original value. */
1560 if (olddsi && oldlen)
1561 {
1562 /* Add 1 for the terminating NUL. */
1563 tree type = TREE_TYPE (oldlen);
1564 oldlen = fold_build2 (PLUS_EXPR, type, oldlen,
1565 build_int_cst (type, 1));
1566 check_bounds_or_overlap (as_a <gcall *>(stmt), olddsi->ptr, src,
1567 oldlen, NULL_TREE);
1568 }
1569
8b57bfeb
JJ
1570 return;
1571 }
1572
1573 if (olddsi != NULL)
1574 {
1575 tree adj = NULL_TREE;
1576 if (oldlen == NULL_TREE)
1577 ;
1578 else if (integer_zerop (oldlen))
1579 adj = srclen;
1580 else if (TREE_CODE (oldlen) == INTEGER_CST
1581 || TREE_CODE (srclen) == INTEGER_CST)
1582 adj = fold_build2_loc (loc, MINUS_EXPR,
1583 TREE_TYPE (srclen), srclen,
1584 fold_convert_loc (loc, TREE_TYPE (srclen),
1585 oldlen));
1586 if (adj != NULL_TREE)
1587 adjust_related_strinfos (loc, dsi, adj);
1588 else
1589 dsi->prev = 0;
1590 }
1591 /* strcpy src may not overlap dst, so src doesn't need to be
1592 invalidated either. */
1593 if (si != NULL)
1594 si->dont_invalidate = true;
1595
1596 fn = NULL_TREE;
1597 zsi = NULL;
1598 switch (bcode)
1599 {
1600 case BUILT_IN_STRCPY:
f5fc4a04 1601 case BUILT_IN_STRCPY_CHKP:
e79983f4 1602 fn = builtin_decl_implicit (BUILT_IN_MEMCPY);
8b57bfeb 1603 if (lhs)
9771b263 1604 ssa_ver_to_stridx[SSA_NAME_VERSION (lhs)] = didx;
8b57bfeb
JJ
1605 break;
1606 case BUILT_IN_STRCPY_CHK:
f5fc4a04 1607 case BUILT_IN_STRCPY_CHK_CHKP:
e79983f4 1608 fn = builtin_decl_explicit (BUILT_IN_MEMCPY_CHK);
8b57bfeb 1609 if (lhs)
9771b263 1610 ssa_ver_to_stridx[SSA_NAME_VERSION (lhs)] = didx;
8b57bfeb
JJ
1611 break;
1612 case BUILT_IN_STPCPY:
f5fc4a04 1613 case BUILT_IN_STPCPY_CHKP:
8b57bfeb
JJ
1614 /* This would need adjustment of the lhs (subtract one),
1615 or detection that the trailing '\0' doesn't need to be
1616 written, if it will be immediately overwritten.
e79983f4 1617 fn = builtin_decl_explicit (BUILT_IN_MEMPCPY); */
8b57bfeb
JJ
1618 if (lhs)
1619 {
1620 dsi->endptr = lhs;
1621 zsi = zero_length_string (lhs, dsi);
1622 }
1623 break;
1624 case BUILT_IN_STPCPY_CHK:
f5fc4a04 1625 case BUILT_IN_STPCPY_CHK_CHKP:
8b57bfeb
JJ
1626 /* This would need adjustment of the lhs (subtract one),
1627 or detection that the trailing '\0' doesn't need to be
1628 written, if it will be immediately overwritten.
e79983f4 1629 fn = builtin_decl_explicit (BUILT_IN_MEMPCPY_CHK); */
8b57bfeb
JJ
1630 if (lhs)
1631 {
1632 dsi->endptr = lhs;
1633 zsi = zero_length_string (lhs, dsi);
1634 }
1635 break;
1636 default:
1637 gcc_unreachable ();
1638 }
1639 if (zsi != NULL)
1640 zsi->dont_invalidate = true;
1641
cc8bea0a
MS
1642 if (fn)
1643 {
1644 tree args = TYPE_ARG_TYPES (TREE_TYPE (fn));
1645 type = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (args)));
1646 }
1647 else
1648 type = size_type_node;
8b57bfeb
JJ
1649
1650 len = fold_convert_loc (loc, type, unshare_expr (srclen));
1651 len = fold_build2_loc (loc, PLUS_EXPR, type, len, build_int_cst (type, 1));
cc8bea0a
MS
1652
1653 /* Set the no-warning bit on the transformed statement? */
1654 bool set_no_warning = false;
1655
1656 if (const strinfo *chksi = olddsi ? olddsi : dsi)
1657 if (si
1658 && !check_bounds_or_overlap (as_a <gcall *>(stmt), chksi->ptr, si->ptr,
1659 NULL_TREE, len))
1660 {
1661 gimple_set_no_warning (stmt, true);
1662 set_no_warning = true;
1663 }
1664
1665 if (fn == NULL_TREE)
1666 return;
1667
8b57bfeb
JJ
1668 len = force_gimple_operand_gsi (gsi, len, true, NULL_TREE, true,
1669 GSI_SAME_STMT);
1670 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
1671 {
1672 fprintf (dump_file, "Optimizing: ");
1673 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1674 }
f5fc4a04
IE
1675 if (with_bounds)
1676 {
1677 fn = chkp_maybe_create_clone (fn)->decl;
1678 if (gimple_call_num_args (stmt) == 4)
1679 success = update_gimple_call (gsi, fn, 5, dst,
1680 gimple_call_arg (stmt, 1),
1681 src,
1682 gimple_call_arg (stmt, 3),
1683 len);
1684 else
1685 success = update_gimple_call (gsi, fn, 6, dst,
1686 gimple_call_arg (stmt, 1),
1687 src,
1688 gimple_call_arg (stmt, 3),
1689 len,
1690 gimple_call_arg (stmt, 4));
1691 }
8b57bfeb 1692 else
f5fc4a04
IE
1693 if (gimple_call_num_args (stmt) == 2)
1694 success = update_gimple_call (gsi, fn, 3, dst, src, len);
1695 else
1696 success = update_gimple_call (gsi, fn, 4, dst, src, len,
1697 gimple_call_arg (stmt, 2));
8b57bfeb
JJ
1698 if (success)
1699 {
1700 stmt = gsi_stmt (*gsi);
f5fc4a04 1701 gimple_call_set_with_bounds (stmt, with_bounds);
8b57bfeb
JJ
1702 update_stmt (stmt);
1703 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
1704 {
1705 fprintf (dump_file, "into: ");
1706 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1707 }
1708 /* Allow adjust_last_stmt to decrease this memcpy's size. */
1709 laststmt.stmt = stmt;
1710 laststmt.len = srclen;
1711 laststmt.stridx = dsi->idx;
1712 }
1713 else if (dump_file && (dump_flags & TDF_DETAILS) != 0)
1714 fprintf (dump_file, "not possible.\n");
cc8bea0a
MS
1715
1716 if (set_no_warning)
1717 gimple_set_no_warning (stmt, true);
1718}
1719
1720/* Check the size argument to the built-in forms of stpncpy and strncpy
1721 for out-of-bounds offsets or overlapping access, and to see if the
1722 size argument is derived from a call to strlen() on the source argument,
1723 and if so, issue an appropriate warning. */
1724
1725static void
1726handle_builtin_strncat (built_in_function bcode, gimple_stmt_iterator *gsi)
1727{
1728 /* Same as stxncpy(). */
1729 handle_builtin_stxncpy (bcode, gsi);
8b57bfeb
JJ
1730}
1731
025d57f0
MS
1732/* Return true if LEN depends on a call to strlen(SRC) in an interesting
1733 way. LEN can either be an integer expression, or a pointer (to char).
1734 When it is the latter (such as in recursive calls to self) is is
1735 assumed to be the argument in some call to strlen() whose relationship
1736 to SRC is being ascertained. */
1737
1738static bool
1739is_strlen_related_p (tree src, tree len)
1740{
1741 if (TREE_CODE (TREE_TYPE (len)) == POINTER_TYPE
1742 && operand_equal_p (src, len, 0))
1743 return true;
1744
1745 if (TREE_CODE (len) != SSA_NAME)
1746 return false;
1747
1748 gimple *def_stmt = SSA_NAME_DEF_STMT (len);
1749 if (!def_stmt)
1750 return false;
1751
1752 if (is_gimple_call (def_stmt))
1753 {
1754 tree func = gimple_call_fndecl (def_stmt);
1755 if (!valid_builtin_call (def_stmt)
1756 || DECL_FUNCTION_CODE (func) != BUILT_IN_STRLEN)
1757 return false;
1758
1759 tree arg = gimple_call_arg (def_stmt, 0);
1760 return is_strlen_related_p (src, arg);
1761 }
1762
1763 if (!is_gimple_assign (def_stmt))
1764 return false;
1765
1766 tree_code code = gimple_assign_rhs_code (def_stmt);
1767 tree rhs1 = gimple_assign_rhs1 (def_stmt);
1768 tree rhstype = TREE_TYPE (rhs1);
1769
1770 if ((TREE_CODE (rhstype) == POINTER_TYPE && code == POINTER_PLUS_EXPR)
1771 || (INTEGRAL_TYPE_P (rhstype)
1772 && (code == BIT_AND_EXPR
1773 || code == NOP_EXPR)))
1774 {
1775 /* Pointer plus (an integer) and integer cast or truncation are
1776 considered among the (potentially) related expressions to strlen.
1777 Others are not. */
1778 return is_strlen_related_p (src, rhs1);
1779 }
1780
1781 return false;
1782}
1783
5d0d5d68
MS
1784/* Called by handle_builtin_stxncpy and by gimple_fold_builtin_strncpy
1785 in gimple-fold.c.
1786 Check to see if the specified bound is a) equal to the size of
1787 the destination DST and if so, b) if it's immediately followed by
1788 DST[CNT - 1] = '\0'. If a) holds and b) does not, warn. Otherwise,
1789 do nothing. Return true if diagnostic has been issued.
025d57f0
MS
1790
1791 The purpose is to diagnose calls to strncpy and stpncpy that do
1792 not nul-terminate the copy while allowing for the idiom where
1793 such a call is immediately followed by setting the last element
1794 to nul, as in:
1795 char a[32];
1796 strncpy (a, s, sizeof a);
1797 a[sizeof a - 1] = '\0';
1798*/
1799
5d0d5d68 1800bool
025d57f0
MS
1801maybe_diag_stxncpy_trunc (gimple_stmt_iterator gsi, tree src, tree cnt)
1802{
025d57f0
MS
1803 gimple *stmt = gsi_stmt (gsi);
1804
1805 wide_int cntrange[2];
1806
1807 if (TREE_CODE (cnt) == INTEGER_CST)
1808 cntrange[0] = cntrange[1] = wi::to_wide (cnt);
1809 else if (TREE_CODE (cnt) == SSA_NAME)
1810 {
1811 enum value_range_type rng = get_range_info (cnt, cntrange, cntrange + 1);
1812 if (rng == VR_RANGE)
1813 ;
1814 else if (rng == VR_ANTI_RANGE)
1815 {
1816 wide_int maxobjsize = wi::to_wide (TYPE_MAX_VALUE (ptrdiff_type_node));
1817
1818 if (wi::ltu_p (cntrange[1], maxobjsize))
1819 {
1820 cntrange[0] = cntrange[1] + 1;
1821 cntrange[1] = maxobjsize;
1822 }
1823 else
1824 {
1825 cntrange[1] = cntrange[0] - 1;
1826 cntrange[0] = wi::zero (TYPE_PRECISION (TREE_TYPE (cnt)));
1827 }
1828 }
1829 else
1830 return false;
1831 }
1832 else
1833 return false;
1834
1835 /* Negative value is the constant string length. If it's less than
5d0d5d68
MS
1836 the lower bound there is no truncation. Avoid calling get_stridx()
1837 when ssa_ver_to_stridx is empty. That implies the caller isn't
1838 running under the control of this pass and ssa_ver_to_stridx hasn't
1839 been created yet. */
1840 int sidx = ssa_ver_to_stridx.length () ? get_stridx (src) : 0;
025d57f0
MS
1841 if (sidx < 0 && wi::gtu_p (cntrange[0], ~sidx))
1842 return false;
1843
1844 tree dst = gimple_call_arg (stmt, 0);
025d57f0
MS
1845 tree dstdecl = dst;
1846 if (TREE_CODE (dstdecl) == ADDR_EXPR)
1847 dstdecl = TREE_OPERAND (dstdecl, 0);
1848
6a33d0ff
MS
1849 /* If the destination refers to a an array/pointer declared nonstring
1850 return early. */
1851 tree ref = NULL_TREE;
1852 if (get_attr_nonstring_decl (dstdecl, &ref))
1853 return false;
025d57f0
MS
1854
1855 /* Look for dst[i] = '\0'; after the stxncpy() call and if found
1856 avoid the truncation warning. */
b25e5572 1857 gsi_next_nondebug (&gsi);
025d57f0
MS
1858 gimple *next_stmt = gsi_stmt (gsi);
1859
1860 if (!gsi_end_p (gsi) && is_gimple_assign (next_stmt))
1861 {
025d57f0 1862 tree lhs = gimple_assign_lhs (next_stmt);
6a33d0ff
MS
1863 tree_code code = TREE_CODE (lhs);
1864 if (code == ARRAY_REF || code == MEM_REF)
1865 lhs = TREE_OPERAND (lhs, 0);
1866
1867 tree func = gimple_call_fndecl (stmt);
1868 if (DECL_FUNCTION_CODE (func) == BUILT_IN_STPNCPY)
1869 {
1870 tree ret = gimple_call_lhs (stmt);
1871 if (ret && operand_equal_p (ret, lhs, 0))
1872 return false;
1873 }
1874
1875 /* Determine the base address and offset of the reference,
1876 ignoring the innermost array index. */
1877 if (TREE_CODE (ref) == ARRAY_REF)
1878 ref = TREE_OPERAND (ref, 0);
1879
a90c8804 1880 poly_int64 dstoff;
6a33d0ff
MS
1881 tree dstbase = get_addr_base_and_unit_offset (ref, &dstoff);
1882
a90c8804 1883 poly_int64 lhsoff;
6a33d0ff
MS
1884 tree lhsbase = get_addr_base_and_unit_offset (lhs, &lhsoff);
1885 if (lhsbase
44e60df3 1886 && dstbase
a90c8804 1887 && known_eq (dstoff, lhsoff)
6a33d0ff 1888 && operand_equal_p (dstbase, lhsbase, 0))
025d57f0
MS
1889 return false;
1890 }
1891
1892 int prec = TYPE_PRECISION (TREE_TYPE (cnt));
1893 wide_int lenrange[2];
1894 if (strinfo *sisrc = sidx > 0 ? get_strinfo (sidx) : NULL)
1895 {
1896 lenrange[0] = (sisrc->nonzero_chars
1897 && TREE_CODE (sisrc->nonzero_chars) == INTEGER_CST
1898 ? wi::to_wide (sisrc->nonzero_chars)
1899 : wi::zero (prec));
1900 lenrange[1] = lenrange[0];
1901 }
1902 else if (sidx < 0)
1903 lenrange[0] = lenrange[1] = wi::shwi (~sidx, prec);
1904 else
1905 {
1906 tree range[2];
1907 get_range_strlen (src, range);
c6ba596b
MP
1908 if (range[0] != NULL_TREE
1909 && TREE_CODE (range[0]) == INTEGER_CST
1910 && range[1] != NULL_TREE
1911 && TREE_CODE (range[1]) == INTEGER_CST)
025d57f0
MS
1912 {
1913 lenrange[0] = wi::to_wide (range[0], prec);
1914 lenrange[1] = wi::to_wide (range[1], prec);
1915 }
1916 else
1917 {
1918 lenrange[0] = wi::shwi (0, prec);
1919 lenrange[1] = wi::shwi (-1, prec);
1920 }
1921 }
1922
1923 location_t callloc = gimple_location (stmt);
1924 tree func = gimple_call_fndecl (stmt);
1925
1926 if (lenrange[0] != 0 || !wi::neg_p (lenrange[1]))
1927 {
1928 /* If the longest source string is shorter than the lower bound
1929 of the specified count the copy is definitely nul-terminated. */
1930 if (wi::ltu_p (lenrange[1], cntrange[0]))
1931 return false;
1932
1933 if (wi::neg_p (lenrange[1]))
1934 {
1935 /* The length of one of the strings is unknown but at least
1936 one has non-zero length and that length is stored in
1937 LENRANGE[1]. Swap the bounds to force a "may be truncated"
1938 warning below. */
1939 lenrange[1] = lenrange[0];
1940 lenrange[0] = wi::shwi (0, prec);
1941 }
1942
5d0d5d68
MS
1943 gcall *call = as_a <gcall *> (stmt);
1944
1945 if (lenrange[0] == cntrange[1] && cntrange[0] == cntrange[1])
1946 return warning_at (callloc, OPT_Wstringop_truncation,
1947 (integer_onep (cnt)
1948 ? G_("%G%qD output truncated before terminating "
1949 "nul copying %E byte from a string of the "
1950 "same length")
1951 : G_("%G%qD output truncated before terminating nul "
1952 "copying %E bytes from a string of the same "
1953 "length")),
1954 call, func, cnt);
1955 else if (wi::geu_p (lenrange[0], cntrange[1]))
025d57f0
MS
1956 {
1957 /* The shortest string is longer than the upper bound of
1958 the count so the truncation is certain. */
1959 if (cntrange[0] == cntrange[1])
1960 return warning_at (callloc, OPT_Wstringop_truncation,
1961 integer_onep (cnt)
5d0d5d68 1962 ? G_("%G%qD output truncated copying %E byte "
025d57f0 1963 "from a string of length %wu")
5d0d5d68 1964 : G_("%G%qD output truncated copying %E bytes "
025d57f0 1965 "from a string of length %wu"),
5d0d5d68 1966 call, func, cnt, lenrange[0].to_uhwi ());
025d57f0
MS
1967
1968 return warning_at (callloc, OPT_Wstringop_truncation,
5d0d5d68 1969 "%G%qD output truncated copying between %wu "
025d57f0 1970 "and %wu bytes from a string of length %wu",
5d0d5d68 1971 call, func, cntrange[0].to_uhwi (),
025d57f0
MS
1972 cntrange[1].to_uhwi (), lenrange[0].to_uhwi ());
1973 }
1974 else if (wi::geu_p (lenrange[1], cntrange[1]))
1975 {
1976 /* The longest string is longer than the upper bound of
1977 the count so the truncation is possible. */
1978 if (cntrange[0] == cntrange[1])
1979 return warning_at (callloc, OPT_Wstringop_truncation,
1980 integer_onep (cnt)
5d0d5d68 1981 ? G_("%G%qD output may be truncated copying %E "
025d57f0 1982 "byte from a string of length %wu")
5d0d5d68 1983 : G_("%G%qD output may be truncated copying %E "
025d57f0 1984 "bytes from a string of length %wu"),
5d0d5d68 1985 call, func, cnt, lenrange[1].to_uhwi ());
025d57f0
MS
1986
1987 return warning_at (callloc, OPT_Wstringop_truncation,
5d0d5d68 1988 "%G%qD output may be truncated copying between %wu "
025d57f0 1989 "and %wu bytes from a string of length %wu",
5d0d5d68 1990 call, func, cntrange[0].to_uhwi (),
025d57f0
MS
1991 cntrange[1].to_uhwi (), lenrange[1].to_uhwi ());
1992 }
1993
1994 if (cntrange[0] != cntrange[1]
1995 && wi::leu_p (cntrange[0], lenrange[0])
1996 && wi::leu_p (cntrange[1], lenrange[0] + 1))
1997 {
1998 /* If the source (including the terminating nul) is longer than
1999 the lower bound of the specified count but shorter than the
2000 upper bound the copy may (but need not) be truncated. */
2001 return warning_at (callloc, OPT_Wstringop_truncation,
5d0d5d68
MS
2002 "%G%qD output may be truncated copying between "
2003 "%wu and %wu bytes from a string of length %wu",
2004 call, func, cntrange[0].to_uhwi (),
025d57f0
MS
2005 cntrange[1].to_uhwi (), lenrange[0].to_uhwi ());
2006 }
2007 }
2008
2009 if (tree dstsize = compute_objsize (dst, 1))
2010 {
2011 /* The source length is uknown. Try to determine the destination
2012 size and see if it matches the specified bound. If not, bail.
2013 Otherwise go on to see if it should be diagnosed for possible
2014 truncation. */
2015 if (!dstsize)
2016 return false;
2017
2018 if (wi::to_wide (dstsize) != cntrange[1])
2019 return false;
2020
2021 if (cntrange[0] == cntrange[1])
2022 return warning_at (callloc, OPT_Wstringop_truncation,
5d0d5d68
MS
2023 "%G%qD specified bound %E equals destination size",
2024 as_a <gcall *> (stmt), func, cnt);
025d57f0
MS
2025 }
2026
2027 return false;
2028}
2029
cc8bea0a
MS
2030/* Check the arguments to the built-in forms of stpncpy and strncpy for
2031 out-of-bounds offsets or overlapping access, and to see if the size
2032 is derived from calling strlen() on the source argument, and if so,
2033 issue the appropriate warning. */
025d57f0
MS
2034
2035static void
2036handle_builtin_stxncpy (built_in_function, gimple_stmt_iterator *gsi)
2037{
6a33d0ff
MS
2038 if (!strlen_to_stridx)
2039 return;
2040
025d57f0
MS
2041 gimple *stmt = gsi_stmt (*gsi);
2042
2043 bool with_bounds = gimple_call_with_bounds_p (stmt);
2044
cc8bea0a 2045 tree dst = gimple_call_arg (stmt, with_bounds ? 1 : 0);
025d57f0
MS
2046 tree src = gimple_call_arg (stmt, with_bounds ? 2 : 1);
2047 tree len = gimple_call_arg (stmt, with_bounds ? 3 : 2);
cc8bea0a
MS
2048 tree dstsize = NULL_TREE, srcsize = NULL_TREE;
2049
2050 int didx = get_stridx (dst);
2051 if (strinfo *sidst = didx > 0 ? get_strinfo (didx) : NULL)
2052 {
2053 /* Compute the size of the destination string including the NUL. */
2054 if (sidst->nonzero_chars)
2055 {
2056 tree type = TREE_TYPE (sidst->nonzero_chars);
2057 dstsize = fold_build2 (PLUS_EXPR, type, sidst->nonzero_chars,
2058 build_int_cst (type, 1));
2059 }
2060 dst = sidst->ptr;
2061 }
2062
2063 int sidx = get_stridx (src);
2064 strinfo *sisrc = sidx > 0 ? get_strinfo (sidx) : NULL;
2065 if (sisrc)
2066 {
2067 /* strncat() and strncpy() can modify the source string by writing
2068 over the terminating nul so SISRC->DONT_INVALIDATE must be left
2069 clear. */
2070
2071 /* Compute the size of the source string including the NUL. */
2072 if (sisrc->nonzero_chars)
2073 {
2074 tree type = TREE_TYPE (sisrc->nonzero_chars);
2075 srcsize = fold_build2 (PLUS_EXPR, type, sisrc->nonzero_chars,
2076 build_int_cst (type, 1));
2077 }
2078
2079 src = sisrc->ptr;
2080 }
2081 else
2082 srcsize = NULL_TREE;
2083
2084 if (!check_bounds_or_overlap (as_a <gcall *>(stmt), dst, src,
2085 dstsize, srcsize))
2086 {
2087 gimple_set_no_warning (stmt, true);
2088 return;
2089 }
025d57f0
MS
2090
2091 /* If the length argument was computed from strlen(S) for some string
2092 S retrieve the strinfo index for the string (PSS->FIRST) alonng with
2093 the location of the strlen() call (PSS->SECOND). */
6a33d0ff 2094 stridx_strlenloc *pss = strlen_to_stridx->get (len);
025d57f0
MS
2095 if (!pss || pss->first <= 0)
2096 {
2097 if (maybe_diag_stxncpy_trunc (*gsi, src, len))
2098 gimple_set_no_warning (stmt, true);
2099
2100 return;
2101 }
2102
025d57f0
MS
2103 /* Retrieve the strinfo data for the string S that LEN was computed
2104 from as some function F of strlen (S) (i.e., LEN need not be equal
2105 to strlen(S)). */
2106 strinfo *silen = get_strinfo (pss->first);
2107
2108 location_t callloc = gimple_location (stmt);
2109
2110 tree func = gimple_call_fndecl (stmt);
2111
2112 bool warned = false;
2113
2114 /* When -Wstringop-truncation is set, try to determine truncation
2115 before diagnosing possible overflow. Truncation is implied by
2116 the LEN argument being equal to strlen(SRC), regardless of
2117 whether its value is known. Otherwise, issue the more generic
2118 -Wstringop-overflow which triggers for LEN arguments that in
2119 any meaningful way depend on strlen(SRC). */
6a33d0ff
MS
2120 if (sisrc == silen
2121 && is_strlen_related_p (src, len)
2122 && warning_at (callloc, OPT_Wstringop_truncation,
5d0d5d68 2123 "%G%qD output truncated before terminating nul "
6a33d0ff 2124 "copying as many bytes from a string as its length",
5d0d5d68 2125 as_a <gcall *>(stmt), func))
6a33d0ff 2126 warned = true;
025d57f0
MS
2127 else if (silen && is_strlen_related_p (src, silen->ptr))
2128 warned = warning_at (callloc, OPT_Wstringop_overflow_,
5d0d5d68
MS
2129 "%G%qD specified bound depends on the length "
2130 "of the source argument",
2131 as_a <gcall *>(stmt), func);
025d57f0
MS
2132 if (warned)
2133 {
2134 location_t strlenloc = pss->second;
2135 if (strlenloc != UNKNOWN_LOCATION && strlenloc != callloc)
2136 inform (strlenloc, "length computed here");
2137 }
2138}
2139
8b57bfeb
JJ
2140/* Handle a memcpy-like ({mem{,p}cpy,__mem{,p}cpy_chk}) call.
2141 If strlen of the second argument is known and length of the third argument
2142 is that plus one, strlen of the first argument is the same after this
2143 call. */
2144
2145static void
2146handle_builtin_memcpy (enum built_in_function bcode, gimple_stmt_iterator *gsi)
2147{
2148 int idx, didx;
2149 tree src, dst, len, lhs, oldlen, newlen;
355fe088 2150 gimple *stmt = gsi_stmt (*gsi);
526ceb68 2151 strinfo *si, *dsi, *olddsi;
f5fc4a04 2152 bool with_bounds = gimple_call_with_bounds_p (stmt);
8b57bfeb 2153
f5fc4a04
IE
2154 len = gimple_call_arg (stmt, with_bounds ? 4 : 2);
2155 src = gimple_call_arg (stmt, with_bounds ? 2 : 1);
8b57bfeb
JJ
2156 dst = gimple_call_arg (stmt, 0);
2157 idx = get_stridx (src);
2158 if (idx == 0)
2159 return;
2160
2161 didx = get_stridx (dst);
2162 olddsi = NULL;
2163 if (didx > 0)
2164 olddsi = get_strinfo (didx);
2165 else if (didx < 0)
2166 return;
2167
2168 if (olddsi != NULL
cc269bb6 2169 && tree_fits_uhwi_p (len)
8b57bfeb
JJ
2170 && !integer_zerop (len))
2171 adjust_last_stmt (olddsi, stmt, false);
2172
e3f9a279 2173 bool full_string_p;
8b57bfeb
JJ
2174 if (idx > 0)
2175 {
355fe088 2176 gimple *def_stmt;
8b57bfeb 2177
e3f9a279
RS
2178 /* Handle memcpy (x, y, l) where l's relationship with strlen (y)
2179 is known. */
8b57bfeb 2180 si = get_strinfo (idx);
e3f9a279 2181 if (si == NULL || si->nonzero_chars == NULL_TREE)
8b57bfeb 2182 return;
e3f9a279
RS
2183 if (TREE_CODE (len) == INTEGER_CST
2184 && TREE_CODE (si->nonzero_chars) == INTEGER_CST)
2185 {
2186 if (tree_int_cst_le (len, si->nonzero_chars))
2187 {
2188 /* Copying LEN nonzero characters, where LEN is constant. */
2189 newlen = len;
2190 full_string_p = false;
2191 }
2192 else
2193 {
2194 /* Copying the whole of the analyzed part of SI. */
2195 newlen = si->nonzero_chars;
2196 full_string_p = si->full_string_p;
2197 }
2198 }
2199 else
2200 {
2201 if (!si->full_string_p)
2202 return;
2203 if (TREE_CODE (len) != SSA_NAME)
2204 return;
2205 def_stmt = SSA_NAME_DEF_STMT (len);
2206 if (!is_gimple_assign (def_stmt)
2207 || gimple_assign_rhs_code (def_stmt) != PLUS_EXPR
2208 || gimple_assign_rhs1 (def_stmt) != si->nonzero_chars
2209 || !integer_onep (gimple_assign_rhs2 (def_stmt)))
2210 return;
2211 /* Copying variable-length string SI (and no more). */
2212 newlen = si->nonzero_chars;
2213 full_string_p = true;
2214 }
8b57bfeb
JJ
2215 }
2216 else
2217 {
2218 si = NULL;
2219 /* Handle memcpy (x, "abcd", 5) or
2220 memcpy (x, "abc\0uvw", 7). */
e3f9a279 2221 if (!tree_fits_uhwi_p (len))
8b57bfeb 2222 return;
e3f9a279
RS
2223
2224 unsigned HOST_WIDE_INT clen = tree_to_uhwi (len);
2225 unsigned HOST_WIDE_INT nonzero_chars = ~idx;
2226 newlen = build_int_cst (size_type_node, MIN (nonzero_chars, clen));
2227 full_string_p = clen > nonzero_chars;
8b57bfeb
JJ
2228 }
2229
2230 if (olddsi != NULL && TREE_CODE (len) == SSA_NAME)
2231 adjust_last_stmt (olddsi, stmt, false);
2232
2233 if (didx == 0)
2234 {
2235 didx = new_stridx (dst);
2236 if (didx == 0)
2237 return;
2238 }
8b57bfeb
JJ
2239 oldlen = NULL_TREE;
2240 if (olddsi != NULL)
2241 {
2242 dsi = unshare_strinfo (olddsi);
e3f9a279
RS
2243 oldlen = olddsi->nonzero_chars;
2244 dsi->nonzero_chars = newlen;
2245 dsi->full_string_p = full_string_p;
8b57bfeb
JJ
2246 /* Break the chain, so adjust_related_strinfo on later pointers in
2247 the chain won't adjust this one anymore. */
2248 dsi->next = 0;
2249 dsi->stmt = NULL;
2250 dsi->endptr = NULL_TREE;
2251 }
2252 else
2253 {
e3f9a279 2254 dsi = new_strinfo (dst, didx, newlen, full_string_p);
8b57bfeb
JJ
2255 set_strinfo (didx, dsi);
2256 find_equal_ptrs (dst, didx);
2257 }
2258 dsi->writable = true;
2259 dsi->dont_invalidate = true;
2260 if (olddsi != NULL)
2261 {
2262 tree adj = NULL_TREE;
2263 location_t loc = gimple_location (stmt);
2264 if (oldlen == NULL_TREE)
2265 ;
2266 else if (integer_zerop (oldlen))
e3f9a279 2267 adj = newlen;
8b57bfeb 2268 else if (TREE_CODE (oldlen) == INTEGER_CST
e3f9a279
RS
2269 || TREE_CODE (newlen) == INTEGER_CST)
2270 adj = fold_build2_loc (loc, MINUS_EXPR, TREE_TYPE (newlen), newlen,
2271 fold_convert_loc (loc, TREE_TYPE (newlen),
8b57bfeb
JJ
2272 oldlen));
2273 if (adj != NULL_TREE)
2274 adjust_related_strinfos (loc, dsi, adj);
2275 else
2276 dsi->prev = 0;
2277 }
2278 /* memcpy src may not overlap dst, so src doesn't need to be
2279 invalidated either. */
2280 if (si != NULL)
2281 si->dont_invalidate = true;
2282
e3f9a279 2283 if (full_string_p)
8b57bfeb 2284 {
e3f9a279
RS
2285 lhs = gimple_call_lhs (stmt);
2286 switch (bcode)
2287 {
2288 case BUILT_IN_MEMCPY:
2289 case BUILT_IN_MEMCPY_CHK:
2290 case BUILT_IN_MEMCPY_CHKP:
2291 case BUILT_IN_MEMCPY_CHK_CHKP:
2292 /* Allow adjust_last_stmt to decrease this memcpy's size. */
2293 laststmt.stmt = stmt;
2294 laststmt.len = dsi->nonzero_chars;
2295 laststmt.stridx = dsi->idx;
2296 if (lhs)
2297 ssa_ver_to_stridx[SSA_NAME_VERSION (lhs)] = didx;
2298 break;
2299 case BUILT_IN_MEMPCPY:
2300 case BUILT_IN_MEMPCPY_CHK:
2301 case BUILT_IN_MEMPCPY_CHKP:
2302 case BUILT_IN_MEMPCPY_CHK_CHKP:
2303 break;
2304 default:
2305 gcc_unreachable ();
2306 }
8b57bfeb
JJ
2307 }
2308}
2309
2310/* Handle a strcat-like ({strcat,__strcat_chk}) call.
2311 If strlen of the second argument is known, strlen of the first argument
2312 is increased by the length of the second argument. Furthermore, attempt
2313 to convert it to memcpy/strcpy if the length of the first argument
2314 is known. */
2315
2316static void
2317handle_builtin_strcat (enum built_in_function bcode, gimple_stmt_iterator *gsi)
2318{
2319 int idx, didx;
cc8bea0a 2320 tree srclen, args, type, fn, objsz, endptr;
8b57bfeb 2321 bool success;
355fe088 2322 gimple *stmt = gsi_stmt (*gsi);
526ceb68 2323 strinfo *si, *dsi;
cc8bea0a 2324 location_t loc = gimple_location (stmt);
f5fc4a04 2325 bool with_bounds = gimple_call_with_bounds_p (stmt);
8b57bfeb 2326
cc8bea0a
MS
2327 tree src = gimple_call_arg (stmt, with_bounds ? 2 : 1);
2328 tree dst = gimple_call_arg (stmt, 0);
2329
2330 /* Bail if the source is the same as destination. It will be diagnosed
2331 elsewhere. */
2332 if (operand_equal_p (src, dst, 0))
2333 return;
2334
2335 tree lhs = gimple_call_lhs (stmt);
8b57bfeb
JJ
2336
2337 didx = get_stridx (dst);
2338 if (didx < 0)
2339 return;
2340
2341 dsi = NULL;
2342 if (didx > 0)
2343 dsi = get_strinfo (didx);
cc8bea0a
MS
2344
2345 srclen = NULL_TREE;
2346 si = NULL;
2347 idx = get_stridx (src);
2348 if (idx < 0)
2349 srclen = build_int_cst (size_type_node, ~idx);
2350 else if (idx > 0)
2351 {
2352 si = get_strinfo (idx);
2353 if (si != NULL)
2354 srclen = get_string_length (si);
2355 }
2356
2357 /* Set the no-warning bit on the transformed statement? */
2358 bool set_no_warning = false;
2359
8b57bfeb
JJ
2360 if (dsi == NULL || get_string_length (dsi) == NULL_TREE)
2361 {
cc8bea0a
MS
2362 {
2363 /* The concatenation always involves copying at least one byte
2364 (the terminating nul), even if the source string is empty.
2365 If the source is unknown assume it's one character long and
2366 used that as both sizes. */
2367 tree slen = srclen;
2368 if (slen)
2369 {
2370 tree type = TREE_TYPE (slen);
2371 slen = fold_build2 (PLUS_EXPR, type, slen, build_int_cst (type, 1));
2372 }
2373
2374 tree sptr = si && si->ptr ? si->ptr : src;
2375
2376 if (!check_bounds_or_overlap (as_a <gcall *>(stmt), dst, sptr,
2377 NULL_TREE, slen))
2378 {
2379 gimple_set_no_warning (stmt, true);
2380 set_no_warning = true;
2381 }
2382 }
2383
8b57bfeb 2384 /* strcat (p, q) can be transformed into
cc8bea0a 2385 tmp = p + strlen (p); endptr = stpcpy (tmp, q);
8b57bfeb
JJ
2386 with length endptr - p if we need to compute the length
2387 later on. Don't do this transformation if we don't need
2388 it. */
e79983f4 2389 if (builtin_decl_implicit_p (BUILT_IN_STPCPY) && lhs == NULL_TREE)
8b57bfeb
JJ
2390 {
2391 if (didx == 0)
2392 {
2393 didx = new_stridx (dst);
2394 if (didx == 0)
2395 return;
2396 }
2397 if (dsi == NULL)
2398 {
e3f9a279 2399 dsi = new_strinfo (dst, didx, NULL_TREE, false);
8b57bfeb
JJ
2400 set_strinfo (didx, dsi);
2401 find_equal_ptrs (dst, didx);
2402 }
2403 else
2404 {
2405 dsi = unshare_strinfo (dsi);
e3f9a279
RS
2406 dsi->nonzero_chars = NULL_TREE;
2407 dsi->full_string_p = false;
8b57bfeb
JJ
2408 dsi->next = 0;
2409 dsi->endptr = NULL_TREE;
2410 }
2411 dsi->writable = true;
2412 dsi->stmt = stmt;
2413 dsi->dont_invalidate = true;
2414 }
2415 return;
2416 }
2417
cc8bea0a 2418 tree dstlen = dsi->nonzero_chars;
8b57bfeb
JJ
2419 endptr = dsi->endptr;
2420
2421 dsi = unshare_strinfo (dsi);
2422 dsi->endptr = NULL_TREE;
2423 dsi->stmt = NULL;
2424 dsi->writable = true;
2425
2426 if (srclen != NULL_TREE)
2427 {
e3f9a279
RS
2428 dsi->nonzero_chars = fold_build2_loc (loc, PLUS_EXPR,
2429 TREE_TYPE (dsi->nonzero_chars),
2430 dsi->nonzero_chars, srclen);
2431 gcc_assert (dsi->full_string_p);
8b57bfeb
JJ
2432 adjust_related_strinfos (loc, dsi, srclen);
2433 dsi->dont_invalidate = true;
2434 }
2435 else
2436 {
e3f9a279
RS
2437 dsi->nonzero_chars = NULL;
2438 dsi->full_string_p = false;
e79983f4 2439 if (lhs == NULL_TREE && builtin_decl_implicit_p (BUILT_IN_STPCPY))
8b57bfeb
JJ
2440 dsi->dont_invalidate = true;
2441 }
2442
2443 if (si != NULL)
2444 /* strcat src may not overlap dst, so src doesn't need to be
2445 invalidated either. */
2446 si->dont_invalidate = true;
2447
2448 /* For now. Could remove the lhs from the call and add
2449 lhs = dst; afterwards. */
2450 if (lhs)
2451 return;
2452
2453 fn = NULL_TREE;
2454 objsz = NULL_TREE;
2455 switch (bcode)
2456 {
2457 case BUILT_IN_STRCAT:
f5fc4a04 2458 case BUILT_IN_STRCAT_CHKP:
8b57bfeb 2459 if (srclen != NULL_TREE)
e79983f4 2460 fn = builtin_decl_implicit (BUILT_IN_MEMCPY);
8b57bfeb 2461 else
e79983f4 2462 fn = builtin_decl_implicit (BUILT_IN_STRCPY);
8b57bfeb
JJ
2463 break;
2464 case BUILT_IN_STRCAT_CHK:
f5fc4a04 2465 case BUILT_IN_STRCAT_CHK_CHKP:
8b57bfeb 2466 if (srclen != NULL_TREE)
e79983f4 2467 fn = builtin_decl_explicit (BUILT_IN_MEMCPY_CHK);
8b57bfeb 2468 else
e79983f4 2469 fn = builtin_decl_explicit (BUILT_IN_STRCPY_CHK);
f5fc4a04 2470 objsz = gimple_call_arg (stmt, with_bounds ? 4 : 2);
8b57bfeb
JJ
2471 break;
2472 default:
2473 gcc_unreachable ();
2474 }
2475
2476 if (fn == NULL_TREE)
2477 return;
2478
cc8bea0a
MS
2479 if (dsi && dstlen)
2480 {
2481 tree type = TREE_TYPE (dstlen);
2482
2483 /* Compute the size of the source sequence, including the nul. */
2484 tree srcsize = srclen ? srclen : size_zero_node;
2485 srcsize = fold_build2 (PLUS_EXPR, type, srcsize, build_int_cst (type, 1));
2486
2487 tree sptr = si && si->ptr ? si->ptr : src;
2488
2489 if (!check_bounds_or_overlap (as_a <gcall *>(stmt), dst, sptr,
2490 dstlen, srcsize))
2491 {
2492 gimple_set_no_warning (stmt, true);
2493 set_no_warning = true;
2494 }
2495 }
2496
2497 tree len = NULL_TREE;
8b57bfeb
JJ
2498 if (srclen != NULL_TREE)
2499 {
2500 args = TYPE_ARG_TYPES (TREE_TYPE (fn));
2501 type = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (args)));
2502
2503 len = fold_convert_loc (loc, type, unshare_expr (srclen));
2504 len = fold_build2_loc (loc, PLUS_EXPR, type, len,
2505 build_int_cst (type, 1));
2506 len = force_gimple_operand_gsi (gsi, len, true, NULL_TREE, true,
2507 GSI_SAME_STMT);
2508 }
2509 if (endptr)
2510 dst = fold_convert_loc (loc, TREE_TYPE (dst), unshare_expr (endptr));
2511 else
2512 dst = fold_build2_loc (loc, POINTER_PLUS_EXPR,
2513 TREE_TYPE (dst), unshare_expr (dst),
2514 fold_convert_loc (loc, sizetype,
2515 unshare_expr (dstlen)));
2516 dst = force_gimple_operand_gsi (gsi, dst, true, NULL_TREE, true,
2517 GSI_SAME_STMT);
2518 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
2519 {
2520 fprintf (dump_file, "Optimizing: ");
2521 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
2522 }
f5fc4a04
IE
2523 if (with_bounds)
2524 {
2525 fn = chkp_maybe_create_clone (fn)->decl;
2526 if (srclen != NULL_TREE)
2527 success = update_gimple_call (gsi, fn, 5 + (objsz != NULL_TREE),
2528 dst,
2529 gimple_call_arg (stmt, 1),
2530 src,
2531 gimple_call_arg (stmt, 3),
2532 len, objsz);
2533 else
2534 success = update_gimple_call (gsi, fn, 4 + (objsz != NULL_TREE),
2535 dst,
2536 gimple_call_arg (stmt, 1),
2537 src,
2538 gimple_call_arg (stmt, 3),
2539 objsz);
2540 }
8b57bfeb 2541 else
f5fc4a04
IE
2542 if (srclen != NULL_TREE)
2543 success = update_gimple_call (gsi, fn, 3 + (objsz != NULL_TREE),
2544 dst, src, len, objsz);
2545 else
2546 success = update_gimple_call (gsi, fn, 2 + (objsz != NULL_TREE),
2547 dst, src, objsz);
8b57bfeb
JJ
2548 if (success)
2549 {
2550 stmt = gsi_stmt (*gsi);
f5fc4a04 2551 gimple_call_set_with_bounds (stmt, with_bounds);
8b57bfeb
JJ
2552 update_stmt (stmt);
2553 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
2554 {
2555 fprintf (dump_file, "into: ");
2556 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
2557 }
2558 /* If srclen == NULL, note that current string length can be
2559 computed by transforming this strcpy into stpcpy. */
2560 if (srclen == NULL_TREE && dsi->dont_invalidate)
2561 dsi->stmt = stmt;
2562 adjust_last_stmt (dsi, stmt, true);
2563 if (srclen != NULL_TREE)
2564 {
2565 laststmt.stmt = stmt;
2566 laststmt.len = srclen;
2567 laststmt.stridx = dsi->idx;
2568 }
2569 }
2570 else if (dump_file && (dump_flags & TDF_DETAILS) != 0)
2571 fprintf (dump_file, "not possible.\n");
cc8bea0a
MS
2572
2573 if (set_no_warning)
2574 gimple_set_no_warning (stmt, true);
8b57bfeb
JJ
2575}
2576
24314386
MG
2577/* Handle a call to malloc or calloc. */
2578
2579static void
2580handle_builtin_malloc (enum built_in_function bcode, gimple_stmt_iterator *gsi)
2581{
355fe088 2582 gimple *stmt = gsi_stmt (*gsi);
24314386 2583 tree lhs = gimple_call_lhs (stmt);
a71dcca8
ML
2584 if (lhs == NULL_TREE)
2585 return;
2586
24314386
MG
2587 gcc_assert (get_stridx (lhs) == 0);
2588 int idx = new_stridx (lhs);
2589 tree length = NULL_TREE;
2590 if (bcode == BUILT_IN_CALLOC)
2591 length = build_int_cst (size_type_node, 0);
e3f9a279 2592 strinfo *si = new_strinfo (lhs, idx, length, length != NULL_TREE);
24314386
MG
2593 if (bcode == BUILT_IN_CALLOC)
2594 si->endptr = lhs;
2595 set_strinfo (idx, si);
2596 si->writable = true;
2597 si->stmt = stmt;
2598 si->dont_invalidate = true;
2599}
2600
2601/* Handle a call to memset.
2602 After a call to calloc, memset(,0,) is unnecessary.
2603 memset(malloc(n),0,n) is calloc(n,1). */
2604
2605static bool
2606handle_builtin_memset (gimple_stmt_iterator *gsi)
2607{
355fe088 2608 gimple *stmt2 = gsi_stmt (*gsi);
24314386
MG
2609 if (!integer_zerop (gimple_call_arg (stmt2, 1)))
2610 return true;
2611 tree ptr = gimple_call_arg (stmt2, 0);
2612 int idx1 = get_stridx (ptr);
2613 if (idx1 <= 0)
2614 return true;
526ceb68 2615 strinfo *si1 = get_strinfo (idx1);
24314386
MG
2616 if (!si1)
2617 return true;
355fe088 2618 gimple *stmt1 = si1->stmt;
24314386
MG
2619 if (!stmt1 || !is_gimple_call (stmt1))
2620 return true;
2621 tree callee1 = gimple_call_fndecl (stmt1);
0ad84f34 2622 if (!valid_builtin_call (stmt1))
24314386
MG
2623 return true;
2624 enum built_in_function code1 = DECL_FUNCTION_CODE (callee1);
2625 tree size = gimple_call_arg (stmt2, 2);
2626 if (code1 == BUILT_IN_CALLOC)
2627 /* Not touching stmt1 */ ;
2628 else if (code1 == BUILT_IN_MALLOC
2629 && operand_equal_p (gimple_call_arg (stmt1, 0), size, 0))
2630 {
2631 gimple_stmt_iterator gsi1 = gsi_for_stmt (stmt1);
2632 update_gimple_call (&gsi1, builtin_decl_implicit (BUILT_IN_CALLOC), 2,
2633 size, build_one_cst (size_type_node));
e3f9a279
RS
2634 si1->nonzero_chars = build_int_cst (size_type_node, 0);
2635 si1->full_string_p = true;
20cb2258 2636 si1->stmt = gsi_stmt (gsi1);
24314386
MG
2637 }
2638 else
2639 return true;
2640 tree lhs = gimple_call_lhs (stmt2);
2641 unlink_stmt_vdef (stmt2);
2642 if (lhs)
2643 {
355fe088 2644 gimple *assign = gimple_build_assign (lhs, ptr);
24314386
MG
2645 gsi_replace (gsi, assign, false);
2646 }
2647 else
2648 {
2649 gsi_remove (gsi, true);
2650 release_defs (stmt2);
2651 }
2652
2653 return false;
2654}
2655
36b85e43
BS
2656/* Handle a call to memcmp. We try to handle small comparisons by
2657 converting them to load and compare, and replacing the call to memcmp
2658 with a __builtin_memcmp_eq call where possible. */
2659
2660static bool
2661handle_builtin_memcmp (gimple_stmt_iterator *gsi)
2662{
2663 gcall *stmt2 = as_a <gcall *> (gsi_stmt (*gsi));
2664 tree res = gimple_call_lhs (stmt2);
2665 tree arg1 = gimple_call_arg (stmt2, 0);
2666 tree arg2 = gimple_call_arg (stmt2, 1);
2667 tree len = gimple_call_arg (stmt2, 2);
2668 unsigned HOST_WIDE_INT leni;
2669 use_operand_p use_p;
2670 imm_use_iterator iter;
2671
2672 if (!res)
2673 return true;
2674
2675 FOR_EACH_IMM_USE_FAST (use_p, iter, res)
2676 {
2677 gimple *ustmt = USE_STMT (use_p);
2678
73d73b48
BS
2679 if (is_gimple_debug (ustmt))
2680 continue;
36b85e43
BS
2681 if (gimple_code (ustmt) == GIMPLE_ASSIGN)
2682 {
2683 gassign *asgn = as_a <gassign *> (ustmt);
2684 tree_code code = gimple_assign_rhs_code (asgn);
2685 if ((code != EQ_EXPR && code != NE_EXPR)
2686 || !integer_zerop (gimple_assign_rhs2 (asgn)))
2687 return true;
2688 }
2689 else if (gimple_code (ustmt) == GIMPLE_COND)
2690 {
2691 tree_code code = gimple_cond_code (ustmt);
2692 if ((code != EQ_EXPR && code != NE_EXPR)
2693 || !integer_zerop (gimple_cond_rhs (ustmt)))
2694 return true;
2695 }
2696 else
2697 return true;
2698 }
2699
2700 if (tree_fits_uhwi_p (len)
2701 && (leni = tree_to_uhwi (len)) <= GET_MODE_SIZE (word_mode)
146ec50f 2702 && pow2p_hwi (leni))
36b85e43
BS
2703 {
2704 leni *= CHAR_TYPE_SIZE;
2705 unsigned align1 = get_pointer_alignment (arg1);
2706 unsigned align2 = get_pointer_alignment (arg2);
2707 unsigned align = MIN (align1, align2);
fffbab82
RS
2708 scalar_int_mode mode;
2709 if (int_mode_for_size (leni, 1).exists (&mode)
e0bd6c9f 2710 && (align >= leni || !targetm.slow_unaligned_access (mode, align)))
36b85e43
BS
2711 {
2712 location_t loc = gimple_location (stmt2);
2713 tree type, off;
2714 type = build_nonstandard_integer_type (leni, 1);
73a699ae 2715 gcc_assert (known_eq (GET_MODE_BITSIZE (TYPE_MODE (type)), leni));
36b85e43
BS
2716 tree ptrtype = build_pointer_type_for_mode (char_type_node,
2717 ptr_mode, true);
2718 off = build_int_cst (ptrtype, 0);
2719 arg1 = build2_loc (loc, MEM_REF, type, arg1, off);
2720 arg2 = build2_loc (loc, MEM_REF, type, arg2, off);
2721 tree tem1 = fold_const_aggregate_ref (arg1);
2722 if (tem1)
2723 arg1 = tem1;
2724 tree tem2 = fold_const_aggregate_ref (arg2);
2725 if (tem2)
2726 arg2 = tem2;
2727 res = fold_convert_loc (loc, TREE_TYPE (res),
2728 fold_build2_loc (loc, NE_EXPR,
2729 boolean_type_node,
2730 arg1, arg2));
2731 gimplify_and_update_call_from_tree (gsi, res);
2732 return false;
2733 }
2734 }
2735
2736 gimple_call_set_fndecl (stmt2, builtin_decl_explicit (BUILT_IN_MEMCMP_EQ));
2737 return false;
2738}
2739
8b57bfeb
JJ
2740/* Handle a POINTER_PLUS_EXPR statement.
2741 For p = "abcd" + 2; compute associated length, or if
2742 p = q + off is pointing to a '\0' character of a string, call
2743 zero_length_string on it. */
2744
2745static void
2746handle_pointer_plus (gimple_stmt_iterator *gsi)
2747{
355fe088 2748 gimple *stmt = gsi_stmt (*gsi);
8b57bfeb
JJ
2749 tree lhs = gimple_assign_lhs (stmt), off;
2750 int idx = get_stridx (gimple_assign_rhs1 (stmt));
526ceb68 2751 strinfo *si, *zsi;
8b57bfeb
JJ
2752
2753 if (idx == 0)
2754 return;
2755
2756 if (idx < 0)
2757 {
2758 tree off = gimple_assign_rhs2 (stmt);
cc269bb6 2759 if (tree_fits_uhwi_p (off)
7d362f6c 2760 && tree_to_uhwi (off) <= (unsigned HOST_WIDE_INT) ~idx)
9771b263 2761 ssa_ver_to_stridx[SSA_NAME_VERSION (lhs)]
ae7e9ddd 2762 = ~(~idx - (int) tree_to_uhwi (off));
8b57bfeb
JJ
2763 return;
2764 }
2765
2766 si = get_strinfo (idx);
e3f9a279 2767 if (si == NULL || si->nonzero_chars == NULL_TREE)
8b57bfeb
JJ
2768 return;
2769
2770 off = gimple_assign_rhs2 (stmt);
2771 zsi = NULL;
e3f9a279 2772 if (si->full_string_p && operand_equal_p (si->nonzero_chars, off, 0))
8b57bfeb
JJ
2773 zsi = zero_length_string (lhs, si);
2774 else if (TREE_CODE (off) == SSA_NAME)
2775 {
355fe088 2776 gimple *def_stmt = SSA_NAME_DEF_STMT (off);
8b57bfeb 2777 if (gimple_assign_single_p (def_stmt)
e3f9a279
RS
2778 && si->full_string_p
2779 && operand_equal_p (si->nonzero_chars,
2780 gimple_assign_rhs1 (def_stmt), 0))
8b57bfeb
JJ
2781 zsi = zero_length_string (lhs, si);
2782 }
2783 if (zsi != NULL
2784 && si->endptr != NULL_TREE
2785 && si->endptr != lhs
2786 && TREE_CODE (si->endptr) == SSA_NAME)
2787 {
2788 enum tree_code rhs_code
2789 = useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (si->endptr))
2790 ? SSA_NAME : NOP_EXPR;
00d66391 2791 gimple_assign_set_rhs_with_ops (gsi, rhs_code, si->endptr);
8b57bfeb
JJ
2792 gcc_assert (gsi_stmt (*gsi) == stmt);
2793 update_stmt (stmt);
2794 }
2795}
2796
a011292a
MS
2797/* If RHS, either directly or indirectly, refers to a string of constant
2798 length, return it. Otherwise return a negative value. */
2799
2800static HOST_WIDE_INT
2801get_string_cst_length (tree rhs)
65f2d1ee
PK
2802{
2803 if (TREE_CODE (rhs) == MEM_REF
2804 && integer_zerop (TREE_OPERAND (rhs, 1)))
2805 {
a011292a 2806 rhs = TREE_OPERAND (rhs, 0);
65f2d1ee 2807 if (TREE_CODE (rhs) == ADDR_EXPR)
05ef3173 2808 {
a011292a
MS
2809 tree rhs_addr = rhs;
2810
05ef3173
MS
2811 rhs = TREE_OPERAND (rhs, 0);
2812 if (TREE_CODE (rhs) != STRING_CST)
2813 {
2814 int idx = get_stridx (rhs_addr);
2815 if (idx > 0)
2816 {
2817 strinfo *si = get_strinfo (idx);
a011292a
MS
2818 if (si
2819 && si->full_string_p
2820 && tree_fits_shwi_p (si->nonzero_chars))
05ef3173
MS
2821 return tree_to_shwi (si->nonzero_chars);
2822 }
2823 }
2824 }
2825 }
2826
2827 if (TREE_CODE (rhs) == VAR_DECL
2828 && TREE_READONLY (rhs))
2829 rhs = DECL_INITIAL (rhs);
2830
2831 if (rhs && TREE_CODE (rhs) == STRING_CST)
a011292a 2832 return strlen (TREE_STRING_POINTER (rhs));
65f2d1ee 2833
05ef3173 2834 return -1;
65f2d1ee
PK
2835}
2836
8b57bfeb
JJ
2837/* Handle a single character store. */
2838
2839static bool
2840handle_char_store (gimple_stmt_iterator *gsi)
2841{
2842 int idx = -1;
526ceb68 2843 strinfo *si = NULL;
355fe088 2844 gimple *stmt = gsi_stmt (*gsi);
8b57bfeb 2845 tree ssaname = NULL_TREE, lhs = gimple_assign_lhs (stmt);
e3f9a279
RS
2846 tree rhs = gimple_assign_rhs1 (stmt);
2847 unsigned HOST_WIDE_INT offset = 0;
8b57bfeb
JJ
2848
2849 if (TREE_CODE (lhs) == MEM_REF
2850 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME)
2851 {
e3f9a279
RS
2852 tree mem_offset = TREE_OPERAND (lhs, 1);
2853 if (tree_fits_uhwi_p (mem_offset))
8b57bfeb 2854 {
e3f9a279
RS
2855 /* Get the strinfo for the base, and use it if it starts with at
2856 least OFFSET nonzero characters. This is trivially true if
2857 OFFSET is zero. */
2858 offset = tree_to_uhwi (mem_offset);
2859 idx = get_stridx (TREE_OPERAND (lhs, 0));
2860 if (idx > 0)
2861 si = get_strinfo (idx);
2862 if (offset == 0)
2863 ssaname = TREE_OPERAND (lhs, 0);
2864 else if (si == NULL || compare_nonzero_chars (si, offset) < 0)
2865 return true;
8b57bfeb
JJ
2866 }
2867 }
2868 else
e3f9a279
RS
2869 {
2870 idx = get_addr_stridx (lhs, NULL_TREE, &offset);
2871 if (idx > 0)
2872 si = get_strinfo (idx);
2873 }
8b57bfeb 2874
e3f9a279
RS
2875 bool storing_zero_p = initializer_zerop (rhs);
2876 bool storing_nonzero_p = (!storing_zero_p
2877 && TREE_CODE (rhs) == INTEGER_CST
2878 && integer_nonzerop (rhs));
a011292a
MS
2879 /* Set to the length of the string being assigned if known. */
2880 HOST_WIDE_INT rhslen;
e3f9a279
RS
2881
2882 if (si != NULL)
8b57bfeb 2883 {
e3f9a279
RS
2884 int cmp = compare_nonzero_chars (si, offset);
2885 gcc_assert (offset == 0 || cmp >= 0);
2886 if (storing_zero_p && cmp == 0 && si->full_string_p)
8b57bfeb 2887 {
e3f9a279
RS
2888 /* When overwriting a '\0' with a '\0', the store can be removed
2889 if we know it has been stored in the current function. */
2890 if (!stmt_could_throw_p (stmt) && si->writable)
8b57bfeb 2891 {
e3f9a279
RS
2892 unlink_stmt_vdef (stmt);
2893 release_defs (stmt);
2894 gsi_remove (gsi, true);
2895 return false;
8b57bfeb
JJ
2896 }
2897 else
e3f9a279
RS
2898 {
2899 si->writable = true;
2900 gsi_next (gsi);
2901 return false;
2902 }
8b57bfeb 2903 }
e3f9a279 2904 /* If si->nonzero_chars > OFFSET, we aren't overwriting '\0',
5b115c1f
MP
2905 and if we aren't storing '\0', we know that the length of the
2906 string and any other zero terminated string in memory remains
2907 the same. In that case we move to the next gimple statement and
2908 return to signal the caller that it shouldn't invalidate anything.
2909
2910 This is benefical for cases like:
2911
2912 char p[20];
2913 void foo (char *q)
2914 {
2915 strcpy (p, "foobar");
2916 size_t len = strlen (p); // This can be optimized into 6
2917 size_t len2 = strlen (q); // This has to be computed
2918 p[0] = 'X';
2919 size_t len3 = strlen (p); // This can be optimized into 6
2920 size_t len4 = strlen (q); // This can be optimized into len2
2921 bar (len, len2, len3, len4);
2922 }
2923 */
e3f9a279 2924 else if (storing_nonzero_p && cmp > 0)
5b115c1f
MP
2925 {
2926 gsi_next (gsi);
2927 return false;
2928 }
e3f9a279
RS
2929 else if (storing_zero_p || storing_nonzero_p || (offset != 0 && cmp > 0))
2930 {
2931 /* When storing_nonzero_p, we know that the string now starts
2932 with OFFSET + 1 nonzero characters, but don't know whether
2933 there's a following nul terminator.
2934
2935 When storing_zero_p, we know that the string is now OFFSET
2936 characters long.
2937
2938 Otherwise, we're storing an unknown value at offset OFFSET,
2939 so need to clip the nonzero_chars to OFFSET. */
2940 location_t loc = gimple_location (stmt);
2941 tree oldlen = si->nonzero_chars;
2942 if (cmp == 0 && si->full_string_p)
2943 /* We're overwriting the nul terminator with a nonzero or
2944 unknown character. If the previous stmt was a memcpy,
2945 its length may be decreased. */
2946 adjust_last_stmt (si, stmt, false);
2947 si = unshare_strinfo (si);
2948 if (storing_nonzero_p)
2949 si->nonzero_chars = build_int_cst (size_type_node, offset + 1);
2950 else
2951 si->nonzero_chars = build_int_cst (size_type_node, offset);
2952 si->full_string_p = storing_zero_p;
2953 if (storing_zero_p
2954 && ssaname
2955 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ssaname))
2956 si->endptr = ssaname;
2957 else
2958 si->endptr = NULL;
2959 si->next = 0;
2960 si->stmt = NULL;
2961 si->writable = true;
2962 si->dont_invalidate = true;
2963 if (oldlen)
2964 {
2965 tree adj = fold_build2_loc (loc, MINUS_EXPR, size_type_node,
2966 si->nonzero_chars, oldlen);
2967 adjust_related_strinfos (loc, si, adj);
2968 }
2969 else
2970 si->prev = 0;
2971 }
8b57bfeb 2972 }
e3f9a279 2973 else if (idx == 0 && (storing_zero_p || storing_nonzero_p))
8b57bfeb
JJ
2974 {
2975 if (ssaname)
e3f9a279 2976 idx = new_stridx (ssaname);
8b57bfeb 2977 else
e3f9a279
RS
2978 idx = new_addr_stridx (lhs);
2979 if (idx != 0)
8b57bfeb 2980 {
e3f9a279
RS
2981 tree ptr = (ssaname ? ssaname : build_fold_addr_expr (lhs));
2982 tree len = storing_nonzero_p ? size_one_node : size_zero_node;
2983 si = new_strinfo (ptr, idx, len, storing_zero_p);
2984 set_strinfo (idx, si);
2985 if (storing_zero_p
2986 && ssaname
2987 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ssaname))
2988 si->endptr = ssaname;
2989 si->dont_invalidate = true;
2990 si->writable = true;
8b57bfeb 2991 }
8b57bfeb 2992 }
198fe1bf 2993 else if (idx == 0
a011292a 2994 && (rhslen = get_string_cst_length (gimple_assign_rhs1 (stmt))) >= 0
198fe1bf
JJ
2995 && ssaname == NULL_TREE
2996 && TREE_CODE (TREE_TYPE (lhs)) == ARRAY_TYPE)
2997 {
198fe1bf 2998 HOST_WIDE_INT a = int_size_in_bytes (TREE_TYPE (lhs));
05ef3173 2999 if (a > 0 && (unsigned HOST_WIDE_INT) a > (unsigned HOST_WIDE_INT) rhslen)
198fe1bf
JJ
3000 {
3001 int idx = new_addr_stridx (lhs);
3002 if (idx != 0)
3003 {
3004 si = new_strinfo (build_fold_addr_expr (lhs), idx,
05ef3173 3005 build_int_cst (size_type_node, rhslen), true);
198fe1bf
JJ
3006 set_strinfo (idx, si);
3007 si->dont_invalidate = true;
3008 }
3009 }
3010 }
8b57bfeb 3011
e3f9a279 3012 if (si != NULL && offset == 0 && storing_zero_p)
8b57bfeb
JJ
3013 {
3014 /* Allow adjust_last_stmt to remove it if the stored '\0'
3015 is immediately overwritten. */
3016 laststmt.stmt = stmt;
3017 laststmt.len = build_int_cst (size_type_node, 1);
3018 laststmt.stridx = si->idx;
3019 }
3020 return true;
3021}
3022
f368600f 3023/* Try to fold strstr (s, t) eq/ne s to strncmp (s, t, strlen (t)) eq/ne 0. */
3b1970cb
PK
3024
3025static void
f368600f 3026fold_strstr_to_strncmp (tree rhs1, tree rhs2, gimple *stmt)
3b1970cb
PK
3027{
3028 if (TREE_CODE (rhs1) != SSA_NAME
3029 || TREE_CODE (rhs2) != SSA_NAME)
3030 return;
3031
3032 gimple *call_stmt = NULL;
3033 for (int pass = 0; pass < 2; pass++)
3034 {
3035 gimple *g = SSA_NAME_DEF_STMT (rhs1);
3036 if (gimple_call_builtin_p (g, BUILT_IN_STRSTR)
3037 && has_single_use (rhs1)
3038 && gimple_call_arg (g, 0) == rhs2)
3039 {
3040 call_stmt = g;
3041 break;
3042 }
3043 std::swap (rhs1, rhs2);
3044 }
3045
3046 if (call_stmt)
3047 {
3048 tree arg0 = gimple_call_arg (call_stmt, 0);
3049
3050 if (arg0 == rhs2)
3051 {
3052 tree arg1 = gimple_call_arg (call_stmt, 1);
3053 tree arg1_len = NULL_TREE;
3054 int idx = get_stridx (arg1);
3055
3056 if (idx)
3057 {
3058 if (idx < 0)
3059 arg1_len = build_int_cst (size_type_node, ~idx);
3060 else
3061 {
3062 strinfo *si = get_strinfo (idx);
3063 if (si)
3064 arg1_len = get_string_length (si);
3065 }
3066 }
3067
3068 if (arg1_len != NULL_TREE)
3069 {
3070 gimple_stmt_iterator gsi = gsi_for_stmt (call_stmt);
f368600f 3071 tree strncmp_decl = builtin_decl_explicit (BUILT_IN_STRNCMP);
96863f32
ML
3072
3073 if (!is_gimple_val (arg1_len))
3074 {
3075 tree arg1_len_tmp = make_ssa_name (TREE_TYPE (arg1_len));
3076 gassign *arg1_stmt = gimple_build_assign (arg1_len_tmp,
3077 arg1_len);
3078 gsi_insert_before (&gsi, arg1_stmt, GSI_SAME_STMT);
3079 arg1_len = arg1_len_tmp;
3080 }
3081
f368600f 3082 gcall *strncmp_call = gimple_build_call (strncmp_decl, 3,
3b1970cb 3083 arg0, arg1, arg1_len);
f368600f
ML
3084 tree strncmp_lhs = make_ssa_name (integer_type_node);
3085 gimple_set_vuse (strncmp_call, gimple_vuse (call_stmt));
3086 gimple_call_set_lhs (strncmp_call, strncmp_lhs);
3b1970cb 3087 gsi_remove (&gsi, true);
f368600f
ML
3088 gsi_insert_before (&gsi, strncmp_call, GSI_SAME_STMT);
3089 tree zero = build_zero_cst (TREE_TYPE (strncmp_lhs));
3b1970cb
PK
3090
3091 if (is_gimple_assign (stmt))
3092 {
3093 if (gimple_assign_rhs_code (stmt) == COND_EXPR)
3094 {
3095 tree cond = gimple_assign_rhs1 (stmt);
f368600f 3096 TREE_OPERAND (cond, 0) = strncmp_lhs;
3b1970cb
PK
3097 TREE_OPERAND (cond, 1) = zero;
3098 }
3099 else
3100 {
f368600f 3101 gimple_assign_set_rhs1 (stmt, strncmp_lhs);
3b1970cb
PK
3102 gimple_assign_set_rhs2 (stmt, zero);
3103 }
3104 }
3105 else
3106 {
3107 gcond *cond = as_a<gcond *> (stmt);
f368600f 3108 gimple_cond_set_lhs (cond, strncmp_lhs);
3b1970cb
PK
3109 gimple_cond_set_rhs (cond, zero);
3110 }
3111 update_stmt (stmt);
3112 }
3113 }
3114 }
3115}
3116
cc8bea0a 3117/* Attempt to check for validity of the performed access a single statement
fa9544ab
ML
3118 at *GSI using string length knowledge, and to optimize it.
3119 If the given basic block needs clean-up of EH, CLEANUP_EH is set to
3120 true. */
8b57bfeb
JJ
3121
3122static bool
fa9544ab 3123strlen_check_and_optimize_stmt (gimple_stmt_iterator *gsi, bool *cleanup_eh)
8b57bfeb 3124{
355fe088 3125 gimple *stmt = gsi_stmt (*gsi);
8b57bfeb
JJ
3126
3127 if (is_gimple_call (stmt))
3128 {
3129 tree callee = gimple_call_fndecl (stmt);
0ad84f34 3130 if (valid_builtin_call (stmt))
8b57bfeb
JJ
3131 switch (DECL_FUNCTION_CODE (callee))
3132 {
3133 case BUILT_IN_STRLEN:
f5fc4a04 3134 case BUILT_IN_STRLEN_CHKP:
8b57bfeb
JJ
3135 handle_builtin_strlen (gsi);
3136 break;
3137 case BUILT_IN_STRCHR:
f5fc4a04 3138 case BUILT_IN_STRCHR_CHKP:
8b57bfeb
JJ
3139 handle_builtin_strchr (gsi);
3140 break;
3141 case BUILT_IN_STRCPY:
3142 case BUILT_IN_STRCPY_CHK:
3143 case BUILT_IN_STPCPY:
3144 case BUILT_IN_STPCPY_CHK:
f5fc4a04
IE
3145 case BUILT_IN_STRCPY_CHKP:
3146 case BUILT_IN_STRCPY_CHK_CHKP:
3147 case BUILT_IN_STPCPY_CHKP:
3148 case BUILT_IN_STPCPY_CHK_CHKP:
8b57bfeb
JJ
3149 handle_builtin_strcpy (DECL_FUNCTION_CODE (callee), gsi);
3150 break;
025d57f0
MS
3151
3152 case BUILT_IN_STRNCAT:
3153 case BUILT_IN_STRNCAT_CHK:
3154 handle_builtin_strncat (DECL_FUNCTION_CODE (callee), gsi);
3155 break;
3156
3157 case BUILT_IN_STPNCPY:
3158 case BUILT_IN_STPNCPY_CHK:
3159 case BUILT_IN_STRNCPY:
3160 case BUILT_IN_STRNCPY_CHK:
3161 handle_builtin_stxncpy (DECL_FUNCTION_CODE (callee), gsi);
3162 break;
3163
8b57bfeb
JJ
3164 case BUILT_IN_MEMCPY:
3165 case BUILT_IN_MEMCPY_CHK:
3166 case BUILT_IN_MEMPCPY:
3167 case BUILT_IN_MEMPCPY_CHK:
f5fc4a04
IE
3168 case BUILT_IN_MEMCPY_CHKP:
3169 case BUILT_IN_MEMCPY_CHK_CHKP:
3170 case BUILT_IN_MEMPCPY_CHKP:
3171 case BUILT_IN_MEMPCPY_CHK_CHKP:
8b57bfeb
JJ
3172 handle_builtin_memcpy (DECL_FUNCTION_CODE (callee), gsi);
3173 break;
3174 case BUILT_IN_STRCAT:
3175 case BUILT_IN_STRCAT_CHK:
f5fc4a04
IE
3176 case BUILT_IN_STRCAT_CHKP:
3177 case BUILT_IN_STRCAT_CHK_CHKP:
8b57bfeb
JJ
3178 handle_builtin_strcat (DECL_FUNCTION_CODE (callee), gsi);
3179 break;
24314386
MG
3180 case BUILT_IN_MALLOC:
3181 case BUILT_IN_CALLOC:
3182 handle_builtin_malloc (DECL_FUNCTION_CODE (callee), gsi);
3183 break;
3184 case BUILT_IN_MEMSET:
3185 if (!handle_builtin_memset (gsi))
3186 return false;
3187 break;
36b85e43
BS
3188 case BUILT_IN_MEMCMP:
3189 if (!handle_builtin_memcmp (gsi))
3190 return false;
3191 break;
8b57bfeb
JJ
3192 default:
3193 break;
3194 }
3195 }
5004bd00 3196 else if (is_gimple_assign (stmt) && !gimple_clobber_p (stmt))
8b57bfeb
JJ
3197 {
3198 tree lhs = gimple_assign_lhs (stmt);
3199
3200 if (TREE_CODE (lhs) == SSA_NAME && POINTER_TYPE_P (TREE_TYPE (lhs)))
3201 {
3202 if (gimple_assign_single_p (stmt)
3203 || (gimple_assign_cast_p (stmt)
3204 && POINTER_TYPE_P (TREE_TYPE (gimple_assign_rhs1 (stmt)))))
3205 {
3206 int idx = get_stridx (gimple_assign_rhs1 (stmt));
9771b263 3207 ssa_ver_to_stridx[SSA_NAME_VERSION (lhs)] = idx;
8b57bfeb
JJ
3208 }
3209 else if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR)
3210 handle_pointer_plus (gsi);
3211 }
3b1970cb
PK
3212 else if (TREE_CODE (lhs) == SSA_NAME && INTEGRAL_TYPE_P (TREE_TYPE (lhs)))
3213 {
3214 enum tree_code code = gimple_assign_rhs_code (stmt);
3215 if (code == COND_EXPR)
3216 {
3217 tree cond = gimple_assign_rhs1 (stmt);
3218 enum tree_code cond_code = TREE_CODE (cond);
3219
3220 if (cond_code == EQ_EXPR || cond_code == NE_EXPR)
f368600f
ML
3221 fold_strstr_to_strncmp (TREE_OPERAND (cond, 0),
3222 TREE_OPERAND (cond, 1), stmt);
3b1970cb
PK
3223 }
3224 else if (code == EQ_EXPR || code == NE_EXPR)
f368600f
ML
3225 fold_strstr_to_strncmp (gimple_assign_rhs1 (stmt),
3226 gimple_assign_rhs2 (stmt), stmt);
f744bfec
JJ
3227 else if (gimple_assign_load_p (stmt)
3228 && TREE_CODE (TREE_TYPE (lhs)) == INTEGER_TYPE
3229 && TYPE_MODE (TREE_TYPE (lhs)) == TYPE_MODE (char_type_node)
3230 && (TYPE_PRECISION (TREE_TYPE (lhs))
3231 == TYPE_PRECISION (char_type_node))
3232 && !gimple_has_volatile_ops (stmt))
3233 {
3234 tree off = integer_zero_node;
3235 unsigned HOST_WIDE_INT coff = 0;
ad2a970f 3236 int idx = 0;
f744bfec
JJ
3237 tree rhs1 = gimple_assign_rhs1 (stmt);
3238 if (code == MEM_REF)
3239 {
3240 idx = get_stridx (TREE_OPERAND (rhs1, 0));
ad2a970f
JJ
3241 if (idx > 0)
3242 {
3243 strinfo *si = get_strinfo (idx);
3244 if (si
3245 && si->nonzero_chars
3246 && TREE_CODE (si->nonzero_chars) == INTEGER_CST
3247 && (wi::to_widest (si->nonzero_chars)
3248 >= wi::to_widest (off)))
3249 off = TREE_OPERAND (rhs1, 1);
3250 else
3251 /* This case is not useful. See if get_addr_stridx
3252 returns something usable. */
3253 idx = 0;
3254 }
f744bfec 3255 }
ad2a970f 3256 if (idx <= 0)
f744bfec
JJ
3257 idx = get_addr_stridx (rhs1, NULL_TREE, &coff);
3258 if (idx > 0)
3259 {
3260 strinfo *si = get_strinfo (idx);
3261 if (si
3262 && si->nonzero_chars
3263 && TREE_CODE (si->nonzero_chars) == INTEGER_CST)
3264 {
3265 widest_int w1 = wi::to_widest (si->nonzero_chars);
3266 widest_int w2 = wi::to_widest (off) + coff;
3267 if (w1 == w2
3268 && si->full_string_p)
3269 {
fa9544ab
ML
3270 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
3271 {
3272 fprintf (dump_file, "Optimizing: ");
3273 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
3274 }
3275
f744bfec
JJ
3276 /* Reading the final '\0' character. */
3277 tree zero = build_int_cst (TREE_TYPE (lhs), 0);
3278 gimple_set_vuse (stmt, NULL_TREE);
3279 gimple_assign_set_rhs_from_tree (gsi, zero);
fa9544ab
ML
3280 *cleanup_eh
3281 |= maybe_clean_or_replace_eh_stmt (stmt,
3282 gsi_stmt (*gsi));
3283 stmt = gsi_stmt (*gsi);
3284 update_stmt (stmt);
3285
3286 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
3287 {
3288 fprintf (dump_file, "into: ");
3289 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
3290 }
f744bfec
JJ
3291 }
3292 else if (w1 > w2)
3293 {
3294 /* Reading a character before the final '\0'
3295 character. Just set the value range to ~[0, 0]
3296 if we don't have anything better. */
3297 wide_int min, max;
3298 tree type = TREE_TYPE (lhs);
3299 enum value_range_type vr
3300 = get_range_info (lhs, &min, &max);
3301 if (vr == VR_VARYING
3302 || (vr == VR_RANGE
3303 && min == wi::min_value (TYPE_PRECISION (type),
3304 TYPE_SIGN (type))
3305 && max == wi::max_value (TYPE_PRECISION (type),
3306 TYPE_SIGN (type))))
3307 set_range_info (lhs, VR_ANTI_RANGE,
3308 wi::zero (TYPE_PRECISION (type)),
3309 wi::zero (TYPE_PRECISION (type)));
3310 }
3311 }
3312 }
3313 }
025d57f0 3314
6a33d0ff
MS
3315 if (strlen_to_stridx)
3316 {
3317 tree rhs1 = gimple_assign_rhs1 (stmt);
3318 if (stridx_strlenloc *ps = strlen_to_stridx->get (rhs1))
3319 strlen_to_stridx->put (lhs, stridx_strlenloc (*ps));
3320 }
3b1970cb
PK
3321 }
3322 else if (TREE_CODE (lhs) != SSA_NAME && !TREE_SIDE_EFFECTS (lhs))
8b57bfeb
JJ
3323 {
3324 tree type = TREE_TYPE (lhs);
3325 if (TREE_CODE (type) == ARRAY_TYPE)
3326 type = TREE_TYPE (type);
3327 if (TREE_CODE (type) == INTEGER_TYPE
3328 && TYPE_MODE (type) == TYPE_MODE (char_type_node)
3329 && TYPE_PRECISION (type) == TYPE_PRECISION (char_type_node))
3330 {
3331 if (! handle_char_store (gsi))
3332 return false;
3333 }
3334 }
3335 }
3b1970cb
PK
3336 else if (gcond *cond = dyn_cast<gcond *> (stmt))
3337 {
3338 enum tree_code code = gimple_cond_code (cond);
3339 if (code == EQ_EXPR || code == NE_EXPR)
f368600f
ML
3340 fold_strstr_to_strncmp (gimple_cond_lhs (stmt),
3341 gimple_cond_rhs (stmt), stmt);
3b1970cb 3342 }
8b57bfeb
JJ
3343
3344 if (gimple_vdef (stmt))
3345 maybe_invalidate (stmt);
3346 return true;
3347}
3348
3349/* Recursively call maybe_invalidate on stmts that might be executed
3350 in between dombb and current bb and that contain a vdef. Stop when
3351 *count stmts are inspected, or if the whole strinfo vector has
3352 been invalidated. */
3353
3354static void
355fe088 3355do_invalidate (basic_block dombb, gimple *phi, bitmap visited, int *count)
8b57bfeb
JJ
3356{
3357 unsigned int i, n = gimple_phi_num_args (phi);
3358
3359 for (i = 0; i < n; i++)
3360 {
3361 tree vuse = gimple_phi_arg_def (phi, i);
355fe088 3362 gimple *stmt = SSA_NAME_DEF_STMT (vuse);
8b57bfeb
JJ
3363 basic_block bb = gimple_bb (stmt);
3364 if (bb == NULL
3365 || bb == dombb
3366 || !bitmap_set_bit (visited, bb->index)
3367 || !dominated_by_p (CDI_DOMINATORS, bb, dombb))
3368 continue;
3369 while (1)
3370 {
3371 if (gimple_code (stmt) == GIMPLE_PHI)
3372 {
3373 do_invalidate (dombb, stmt, visited, count);
3374 if (*count == 0)
3375 return;
3376 break;
3377 }
3378 if (--*count == 0)
3379 return;
3380 if (!maybe_invalidate (stmt))
3381 {
3382 *count = 0;
3383 return;
3384 }
3385 vuse = gimple_vuse (stmt);
3386 stmt = SSA_NAME_DEF_STMT (vuse);
3387 if (gimple_bb (stmt) != bb)
3388 {
3389 bb = gimple_bb (stmt);
3390 if (bb == NULL
3391 || bb == dombb
3392 || !bitmap_set_bit (visited, bb->index)
3393 || !dominated_by_p (CDI_DOMINATORS, bb, dombb))
3394 break;
3395 }
3396 }
3397 }
3398}
3399
4d9192b5
TS
3400class strlen_dom_walker : public dom_walker
3401{
3402public:
fa9544ab
ML
3403 strlen_dom_walker (cdi_direction direction)
3404 : dom_walker (direction), m_cleanup_cfg (false)
3405 {}
4d9192b5 3406
3daacdcd 3407 virtual edge before_dom_children (basic_block);
4d9192b5 3408 virtual void after_dom_children (basic_block);
fa9544ab
ML
3409
3410 /* Flag that will trigger TODO_cleanup_cfg to be returned in strlen
3411 execute function. */
3412 bool m_cleanup_cfg;
4d9192b5
TS
3413};
3414
8b57bfeb 3415/* Callback for walk_dominator_tree. Attempt to optimize various
c7880c8c 3416 string ops by remembering string lengths pointed by pointer SSA_NAMEs. */
8b57bfeb 3417
3daacdcd 3418edge
4d9192b5 3419strlen_dom_walker::before_dom_children (basic_block bb)
8b57bfeb 3420{
8b57bfeb
JJ
3421 basic_block dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
3422
3423 if (dombb == NULL)
3424 stridx_to_strinfo = NULL;
3425 else
3426 {
526ceb68 3427 stridx_to_strinfo = ((vec<strinfo *, va_heap, vl_embed> *) dombb->aux);
8b57bfeb
JJ
3428 if (stridx_to_strinfo)
3429 {
538dd0b7
DM
3430 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
3431 gsi_next (&gsi))
8b57bfeb 3432 {
538dd0b7 3433 gphi *phi = gsi.phi ();
ea057359 3434 if (virtual_operand_p (gimple_phi_result (phi)))
8b57bfeb
JJ
3435 {
3436 bitmap visited = BITMAP_ALLOC (NULL);
3437 int count_vdef = 100;
3438 do_invalidate (dombb, phi, visited, &count_vdef);
3439 BITMAP_FREE (visited);
8b29fd4e
JJ
3440 if (count_vdef == 0)
3441 {
3442 /* If there were too many vdefs in between immediate
3443 dominator and current bb, invalidate everything.
3444 If stridx_to_strinfo has been unshared, we need
3445 to free it, otherwise just set it to NULL. */
3446 if (!strinfo_shared ())
3447 {
3448 unsigned int i;
526ceb68 3449 strinfo *si;
8b29fd4e
JJ
3450
3451 for (i = 1;
3452 vec_safe_iterate (stridx_to_strinfo, i, &si);
3453 ++i)
3454 {
3455 free_strinfo (si);
3456 (*stridx_to_strinfo)[i] = NULL;
3457 }
3458 }
3459 else
3460 stridx_to_strinfo = NULL;
3461 }
8b57bfeb
JJ
3462 break;
3463 }
3464 }
3465 }
3466 }
3467
3468 /* If all PHI arguments have the same string index, the PHI result
3469 has it as well. */
538dd0b7
DM
3470 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
3471 gsi_next (&gsi))
8b57bfeb 3472 {
538dd0b7 3473 gphi *phi = gsi.phi ();
8b57bfeb 3474 tree result = gimple_phi_result (phi);
ea057359 3475 if (!virtual_operand_p (result) && POINTER_TYPE_P (TREE_TYPE (result)))
8b57bfeb
JJ
3476 {
3477 int idx = get_stridx (gimple_phi_arg_def (phi, 0));
3478 if (idx != 0)
3479 {
3480 unsigned int i, n = gimple_phi_num_args (phi);
3481 for (i = 1; i < n; i++)
3482 if (idx != get_stridx (gimple_phi_arg_def (phi, i)))
3483 break;
3484 if (i == n)
9771b263 3485 ssa_ver_to_stridx[SSA_NAME_VERSION (result)] = idx;
8b57bfeb
JJ
3486 }
3487 }
3488 }
3489
fa9544ab
ML
3490 bool cleanup_eh = false;
3491
8b57bfeb 3492 /* Attempt to optimize individual statements. */
538dd0b7 3493 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi); )
fa9544ab 3494 if (strlen_check_and_optimize_stmt (&gsi, &cleanup_eh))
8b57bfeb
JJ
3495 gsi_next (&gsi);
3496
fa9544ab
ML
3497 if (cleanup_eh && gimple_purge_dead_eh_edges (bb))
3498 m_cleanup_cfg = true;
3499
8b57bfeb 3500 bb->aux = stridx_to_strinfo;
9771b263 3501 if (vec_safe_length (stridx_to_strinfo) && !strinfo_shared ())
526ceb68 3502 (*stridx_to_strinfo)[0] = (strinfo *) bb;
3daacdcd 3503 return NULL;
8b57bfeb
JJ
3504}
3505
3506/* Callback for walk_dominator_tree. Free strinfo vector if it is
3507 owned by the current bb, clear bb->aux. */
3508
4d9192b5
TS
3509void
3510strlen_dom_walker::after_dom_children (basic_block bb)
8b57bfeb
JJ
3511{
3512 if (bb->aux)
3513 {
526ceb68 3514 stridx_to_strinfo = ((vec<strinfo *, va_heap, vl_embed> *) bb->aux);
9771b263 3515 if (vec_safe_length (stridx_to_strinfo)
526ceb68 3516 && (*stridx_to_strinfo)[0] == (strinfo *) bb)
8b57bfeb
JJ
3517 {
3518 unsigned int i;
526ceb68 3519 strinfo *si;
8b57bfeb 3520
9771b263 3521 for (i = 1; vec_safe_iterate (stridx_to_strinfo, i, &si); ++i)
8b57bfeb 3522 free_strinfo (si);
9771b263 3523 vec_free (stridx_to_strinfo);
8b57bfeb
JJ
3524 }
3525 bb->aux = NULL;
3526 }
3527}
3528
3529/* Main entry point. */
3530
27a4cd48
DM
3531namespace {
3532
3533const pass_data pass_data_strlen =
8b57bfeb 3534{
27a4cd48
DM
3535 GIMPLE_PASS, /* type */
3536 "strlen", /* name */
3537 OPTGROUP_NONE, /* optinfo_flags */
27a4cd48
DM
3538 TV_TREE_STRLEN, /* tv_id */
3539 ( PROP_cfg | PROP_ssa ), /* properties_required */
3540 0, /* properties_provided */
3541 0, /* properties_destroyed */
3542 0, /* todo_flags_start */
3bea341f 3543 0, /* todo_flags_finish */
8b57bfeb 3544};
27a4cd48
DM
3545
3546class pass_strlen : public gimple_opt_pass
3547{
3548public:
c3284718
RS
3549 pass_strlen (gcc::context *ctxt)
3550 : gimple_opt_pass (pass_data_strlen, ctxt)
27a4cd48
DM
3551 {}
3552
3553 /* opt_pass methods: */
1a3d085c 3554 virtual bool gate (function *) { return flag_optimize_strlen != 0; }
be55bfe6 3555 virtual unsigned int execute (function *);
27a4cd48
DM
3556
3557}; // class pass_strlen
3558
be55bfe6
TS
3559unsigned int
3560pass_strlen::execute (function *fun)
3561{
6a33d0ff
MS
3562 gcc_assert (!strlen_to_stridx);
3563 if (warn_stringop_overflow || warn_stringop_truncation)
3564 strlen_to_stridx = new hash_map<tree, stridx_strlenloc> ();
3565
be55bfe6
TS
3566 ssa_ver_to_stridx.safe_grow_cleared (num_ssa_names);
3567 max_stridx = 1;
be55bfe6
TS
3568
3569 calculate_dominance_info (CDI_DOMINATORS);
3570
3571 /* String length optimization is implemented as a walk of the dominator
3572 tree and a forward walk of statements within each block. */
fa9544ab
ML
3573 strlen_dom_walker walker (CDI_DOMINATORS);
3574 walker.walk (fun->cfg->x_entry_block_ptr);
be55bfe6
TS
3575
3576 ssa_ver_to_stridx.release ();
33e7d32e 3577 strinfo_pool.release ();
c203e8a7 3578 if (decl_to_stridxlist_htab)
be55bfe6
TS
3579 {
3580 obstack_free (&stridx_obstack, NULL);
c203e8a7
TS
3581 delete decl_to_stridxlist_htab;
3582 decl_to_stridxlist_htab = NULL;
be55bfe6
TS
3583 }
3584 laststmt.stmt = NULL;
3585 laststmt.len = NULL_TREE;
3586 laststmt.stridx = 0;
3587
6a33d0ff
MS
3588 if (strlen_to_stridx)
3589 {
3590 strlen_to_stridx->empty ();
3591 delete strlen_to_stridx;
3592 strlen_to_stridx = NULL;
3593 }
025d57f0 3594
fa9544ab 3595 return walker.m_cleanup_cfg ? TODO_cleanup_cfg : 0;
be55bfe6
TS
3596}
3597
27a4cd48
DM
3598} // anon namespace
3599
3600gimple_opt_pass *
3601make_pass_strlen (gcc::context *ctxt)
3602{
3603 return new pass_strlen (ctxt);
3604}