summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/sanitizer_common/tests/sanitizer_stackdepot_test.cc
blob: c210620c8da1b6ebe68bd5e244878ad998ef4a0d (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//===-- sanitizer_stackdepot_test.cc --------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file is a part of ThreadSanitizer/AddressSanitizer runtime.
//
//===----------------------------------------------------------------------===//
#include "sanitizer_common/sanitizer_stackdepot.h"
#include "sanitizer_common/sanitizer_internal_defs.h"
#include "sanitizer_common/sanitizer_libc.h"
#include "gtest/gtest.h"

namespace __sanitizer {

TEST(SanitizerCommon, StackDepotBasic) {
  uptr s1[] = {1, 2, 3, 4, 5};
  u32 i1 = StackDepotPut(s1, ARRAY_SIZE(s1));
  uptr sz1 = 0;
  const uptr *sp1 = StackDepotGet(i1, &sz1);
  EXPECT_NE(sp1, (uptr*)0);
  EXPECT_EQ(sz1, ARRAY_SIZE(s1));
  EXPECT_EQ(internal_memcmp(sp1?:s1, s1, sizeof(s1)), 0);
}

TEST(SanitizerCommon, StackDepotAbsent) {
  uptr sz1 = 0;
  const uptr *sp1 = StackDepotGet(-10, &sz1);
  EXPECT_EQ(sp1, (uptr*)0);
}

TEST(SanitizerCommon, StackDepotEmptyStack) {
  u32 i1 = StackDepotPut(0, 0);
  uptr sz1 = 0;
  const uptr *sp1 = StackDepotGet(i1, &sz1);
  EXPECT_EQ(sp1, (uptr*)0);
}

TEST(SanitizerCommon, StackDepotZeroId) {
  uptr sz1 = 0;
  const uptr *sp1 = StackDepotGet(0, &sz1);
  EXPECT_EQ(sp1, (uptr*)0);
}

TEST(SanitizerCommon, StackDepotSame) {
  uptr s1[] = {1, 2, 3, 4, 6};
  u32 i1 = StackDepotPut(s1, ARRAY_SIZE(s1));
  u32 i2 = StackDepotPut(s1, ARRAY_SIZE(s1));
  EXPECT_EQ(i1, i2);
  uptr sz1 = 0;
  const uptr *sp1 = StackDepotGet(i1, &sz1);
  EXPECT_NE(sp1, (uptr*)0);
  EXPECT_EQ(sz1, ARRAY_SIZE(s1));
  EXPECT_EQ(internal_memcmp(sp1?:s1, s1, sizeof(s1)), 0);
}

TEST(SanitizerCommon, StackDepotSeveral) {
  uptr s1[] = {1, 2, 3, 4, 7};
  u32 i1 = StackDepotPut(s1, ARRAY_SIZE(s1));
  uptr s2[] = {1, 2, 3, 4, 8, 9};
  u32 i2 = StackDepotPut(s2, ARRAY_SIZE(s2));
  EXPECT_NE(i1, i2);
}

}  // namespace __sanitizer
OpenPOWER on IntegriCloud