aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/out-of-bounds-diagram-1-unicode.c
blob: 71f66ff87c9e6f88797cfc24eddd1afcfcad710c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* { dg-additional-options "-fdiagnostics-show-path-depths" } */
/* { dg-additional-options "-fdiagnostics-path-format=inline-events -fdiagnostics-show-caret" } */
/* { dg-additional-options "-fdiagnostics-text-art-charset=unicode" } */

#include <stdint.h>

int32_t arr[10];

void int_arr_write_element_after_end_off_by_one(int32_t x)
{
  arr[10] = x;  /* { dg-line line } */
}
/* { dg-warning "buffer overflow" "warning" { target *-*-* } line } */
/* { dg-message "valid subscripts for 'arr' are '\\\[0\\\]' to '\\\[9\\\]'" "valid subscript note" { target *-*-* } line } */


/* { dg-begin-multiline-output "" }
   arr[10] = x;
   ~~~~~~~~^~~
  event 1 (depth 0)
    |
    | int32_t arr[10];
    |         ^~~
    |         |
    |         (1) capacity: 40 bytes
    |
    +--> 'int_arr_write_element_after_end_off_by_one': event 2 (depth 1)
           |
           |   arr[10] = x;
           |   ~~~~~~~~^~~
           |           |
           |           (2) out-of-bounds write from byte 40 till byte 43 but 'arr' ends at byte 40
           |
   { dg-end-multiline-output "" } */

/* { dg-begin-multiline-output "" }

                                        ┌────────────────────────────────┐
                                        │write from 'x' (type: 'int32_t')│
                                        └────────────────────────────────┘


                                                        v
  ┌────────┬─────────────────┬─────────┐┌────────────────────────────────┐
  │  [0]   │       ...       │   [9]   ││                                │
  ├────────┴─────────────────┴─────────┤│       after valid range        │
  │    'arr' (type: 'int32_t[10]')     ││                                │
  └────────────────────────────────────┘└────────────────────────────────┘
  ├─────────────────┬──────────────────┤├───────────────┬────────────────┤
                    │                                   │
          ╭─────────┴────────╮                ╭─────────┴─────────╮
          │capacity: 40 bytes│                │overflow of 4 bytes│
          ╰──────────────────╯                ╰───────────────────╯

   { dg-end-multiline-output "" } */