OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AddressSanitizer
(Results
1 - 12
of
12
) sorted by null
/external/compiler-rt/lib/asan/tests/
asan_test.cc
10
// This file is a part of
AddressSanitizer
, an address sanity checker.
43
TEST(
AddressSanitizer
, HasFeatureAddressSanitizerTest) {
54
TEST(
AddressSanitizer
, SimpleDeathTest) {
58
TEST(
AddressSanitizer
, VariousMallocsTest) {
91
TEST(
AddressSanitizer
, CallocTest) {
97
TEST(
AddressSanitizer
, CallocReturnsZeroMem) {
121
TEST(
AddressSanitizer
, VallocTest) {
129
TEST(
AddressSanitizer
, PvallocTest) {
165
TEST(
AddressSanitizer
, DISABLED_TSDTest) {
175
TEST(
AddressSanitizer
, UAF_char)
[
all
...]
asan_oob_test.cc
10
// This file is a part of
AddressSanitizer
, an address sanity checker.
64
//
AddressSanitizer
.OOB_char (125503 ms)
65
//
AddressSanitizer
.OOB_int (126890 ms)
66
//
AddressSanitizer
.OOBRightTest (315605 ms)
67
//
AddressSanitizer
.SimpleStackTest (366559 ms)
69
TEST(
AddressSanitizer
, OOB_char) {
73
TEST(
AddressSanitizer
, OOB_int) {
77
TEST(
AddressSanitizer
, OOBRightTest) {
104
TEST(
AddressSanitizer
, LargeOOBRightTest) {
114
TEST(
AddressSanitizer
, DISABLED_DemoOOBLeftLow)
[
all
...]
asan_benchmarks_test.cc
10
// This file is a part of
AddressSanitizer
, an address sanity checker.
44
TEST(
AddressSanitizer
, ManyAccessBenchmark) {
66
TEST(
AddressSanitizer
, BorderAccessBenchmark) {
77
TEST(
AddressSanitizer
, FakeStackBenchmark) {
asan_noinst_test.cc
10
// This file is a part of
AddressSanitizer
, an address sanity checker.
42
TEST(
AddressSanitizer
, InternalSimpleDeathTest) {
94
TEST(
AddressSanitizer
, NoInstMallocTest) {
98
TEST(
AddressSanitizer
, ThreadedMallocStressTest) {
126
TEST(
AddressSanitizer
, DISABLED_InternalPrintShadow) {
135
TEST(
AddressSanitizer
, QuarantineTest) {
170
TEST(
AddressSanitizer
, ThreadedQuarantineTest) {
200
TEST(
AddressSanitizer
, ThreadedOneSizeMallocStressTest) {
211
TEST(
AddressSanitizer
, ShadowRegionIsPoisonedTest) {
223
TEST(
AddressSanitizer
, LoadStoreCallbacks)
[
all
...]
asan_str_test.cc
10
// This file is a part of
AddressSanitizer
, an address sanity checker.
80
TEST(
AddressSanitizer
, StrLenOOBTest) {
98
TEST(
AddressSanitizer
, WcsLenTest) {
111
TEST(
AddressSanitizer
, StrNLenOOBTest) {
130
TEST(
AddressSanitizer
, StrDupOOBTest) {
149
TEST(
AddressSanitizer
, StrCpyOOBTest) {
172
TEST(
AddressSanitizer
, StrNCpyOOBTest) {
245
TEST(
AddressSanitizer
, StrChrAndIndexOOBTest) {
253
TEST(
AddressSanitizer
, StrCmpAndFriendsLogicTest) {
329
TEST(
AddressSanitizer
, StrCmpOOBTest)
[
all
...]
asan_mem_test.cc
10
// This file is a part of
AddressSanitizer
, an address sanity checker.
68
TEST(
AddressSanitizer
, MemSetOOBTest) {
105
TEST(
AddressSanitizer
, LargeOOBInMemset) {
191
TEST(
AddressSanitizer
, MemCpyOOBTest) {
203
TEST(
AddressSanitizer
, MemMoveOOBTest) {
209
TEST(
AddressSanitizer
, MemCmpOOBTest) {
asan_asm_test.cc
10
// This file is a part of
AddressSanitizer
, an address sanity checker.
210
TEST(
AddressSanitizer
, asm_load_store) {
217
TEST(
AddressSanitizer
, asm_rw) {
235
TEST(
AddressSanitizer
, asm_flags) {
260
TEST(
AddressSanitizer
, asm_rep_movs) {
/external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp
1
//===--
AddressSanitizer
.cpp - memory error detector ------------*- C++ -*-===//
10
// This file is a part of
AddressSanitizer
, an address sanity checker.
447
///
AddressSanitizer
: instrument the code in module to find memory bugs.
448
struct
AddressSanitizer
: public FunctionPass {
449
explicit
AddressSanitizer
(bool CompileKernel = false, bool Recover = false,
518
AddressSanitizer
*Pass;
519
FunctionStateRAII(
AddressSanitizer
*Pass) : Pass(Pass) {
601
AddressSanitizer
&ASan;
640
FunctionStackPoisoner(Function &F,
AddressSanitizer
&ASan)
[
all
...]