1 /* { dg-additional-options "-fanalyzer-fine-grained" }
2 { dg-skip-if "requires hosted libstdc++ for stdlib malloc" { ! hostedlib } }
3 -fanalyzer-fine-grained is currently required; see PR analyzer/107851. */
5 /* { dg-additional-options -Wno-analyzer-out-of-bounds } */
11 /* CWE-131 example 5 */
14 int32_t *id_sequence
= (int32_t *) malloc (3); /* { dg-line malloc1 } */
15 if (id_sequence
== NULL
) exit (1);
17 id_sequence
[0] = 13579;
18 id_sequence
[1] = 24680;
19 id_sequence
[2] = 97531;
23 /* { dg-warning "allocated buffer size is not a multiple of the pointee's size \\\[CWE-131\\\]" "warning" { target *-*-* } malloc1 } */
24 /* { dg-message "3 bytes" "note" { target *-*-* } malloc1 } */
25 /* { dg-message "'int32_t \\*' (\\\{aka '(long )?int \\*'\\\})? here; 'sizeof \\(int32_t (\\\{aka (long )?int\\\})?\\)' is '4'" "note" { target c } malloc1 } */
26 /* { dg-message "'int32_t\\*' (\\\{aka '(long )?int\\*'\\\})? here; 'sizeof \\(int32_t (\\\{aka (long )?int\\\})?\\)' is '4'" "note" { target c++ } malloc1 } */
31 int32_t *ptr
= (int32_t *) malloc (10 + sizeof(int32_t)); /* { dg-line malloc2 } */
34 /* { dg-warning "allocated buffer size is not a multiple of the pointee's size \\\[CWE-131\\\]" "warning" { target *-*-* } malloc2 } */
35 /* { dg-message "14 bytes" "note" { target *-*-* } malloc2 } */
36 /* { dg-message "'int32_t \\*' (\\\{aka '(long )?int \\*'\\\})? here; 'sizeof \\(int32_t (\\\{aka (long )?int\\\})?\\)' is '4'" "note" { target c } malloc2 } */
37 /* { dg-message "'int32_t\\*' (\\\{aka '(long )?int\\*'\\\})? here; 'sizeof \\(int32_t (\\\{aka (long )?int\\\})?\\)' is '4'" "note" { target c++ } malloc2 } */
40 void test_3 (int32_t n
)
42 int32_t *ptr
= (int32_t *) malloc (n
+ sizeof (int32_t)); /* { dg-line malloc3 } */
45 /* { dg-warning "allocated buffer size is not a multiple of the pointee's size \\\[CWE-131\\\]" "warning" { target *-*-* } malloc3 } */
46 /* { dg-message "'\[a-z0-9\\+\\(\\)\\s\]*' bytes" "note" { target *-*-* } malloc3 } */
47 /* { dg-message "'int32_t \\*' (\\\{aka '(long )?int \\*'\\\})? here; 'sizeof \\(int32_t (\\\{aka (long )?int\\\})?\\)' is '4'" "note" { target c } malloc3 } */
48 /* { dg-message "'int32_t\\*' (\\\{aka '(long )?int\\*'\\\})? here; 'sizeof \\(int32_t (\\\{aka (long )?int\\\})?\\)' is '4'" "note" { target c++ } malloc3 } */
51 void test_4 (int32_t n
, int32_t m
)
53 int32_t *ptr
= (int32_t *) malloc ((n
+ m
) * sizeof (int32_t));