File: invalid-pointer-pairs-compare-success.cpp

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (74 lines) | stat: -rw-r--r-- 1,427 bytes parent folder | download | duplicates (33)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// RUN: %clangxx_asan -O0 %s -o %t -mllvm -asan-detect-invalid-pointer-pair

// RUN: %env_asan_opts=detect_invalid_pointer_pairs=2 %run %t

#include <assert.h>
#include <stdlib.h>

int foo(char *p) {
  char *p2 = p + 20;
  return p > p2;
}

int bar(char *p, char *q) {
  return p <= q;
}

int baz(char *p, char *q) {
  return p != 0 && p < q;
}

char global[8192] = {};
char small_global[7] = {};

int main() {
  // Heap allocated memory.
  char *p = (char *)malloc(42);
  int r = foo(p);
  free(p);

  p = (char *)malloc(1024);
  bar(p, p + 1024);
  bar(p + 1024, p + 1023);
  bar(p + 1, p + 1023);
  free(p);

  p = (char *)malloc(4096);
  bar(p, p + 4096);
  bar(p + 10, p + 100);
  bar(p + 1024, p + 4096);
  bar(p + 4095, p + 4096);
  bar(p + 4095, p + 4094);
  bar(p + 100, p + 4096);
  bar(p + 100, p + 4094);
  free(p);

  // Global variable.
  bar(&global[0], &global[1]);
  bar(&global[1], &global[2]);
  bar(&global[2], &global[1]);
  bar(&global[0], &global[100]);
  bar(&global[1000], &global[7000]);
  bar(&global[500], &global[10]);
  p = &global[0];
  bar(p, p + 8192);
  p = &global[8000];
  bar(p, p + 192);

  p = &small_global[0];
  bar(p, p + 1);
  bar(p, p + 7);
  bar(p + 7, p + 1);
  bar(p + 6, p + 7);
  bar(p + 7, p + 7);

  // Stack variable.
  char stack[10000];
  bar(&stack[0], &stack[100]);
  bar(&stack[1000], &stack[9000]);
  bar(&stack[500], &stack[10]);

  baz(0, &stack[10]);

  return 0;
}