mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 10:16:07 +00:00

clang misses attaching sanitizer metadata for external globals. Reviewed By: eugenis Differential Revision: https://reviews.llvm.org/D129492
42 lines
2.1 KiB
C++
42 lines
2.1 KiB
C++
// REQUIRES: aarch64-registered-target
|
|
|
|
// RUN: %clang_cc1 -include %S/Inputs/sanitizer-extra-source.cpp \
|
|
// RUN: -fsanitize-ignorelist=%S/Inputs/sanitizer-ignorelist-global.txt \
|
|
// RUN: -fsanitize=hwaddress -emit-llvm -triple aarch64-linux-android31 -o -\
|
|
// RUN: %s | FileCheck %s
|
|
|
|
// RUN: %clang_cc1 -include %S/Inputs/sanitizer-extra-source.cpp \
|
|
// RUN: -fsanitize-ignorelist=%S/Inputs/sanitizer-ignorelist-src.txt \
|
|
// RUN: -fsanitize=hwaddress -emit-llvm -triple aarch64-linux-android31 -o -\
|
|
// RUN: %s | FileCheck %s --check-prefix=IGNORELIST
|
|
|
|
int global;
|
|
int __attribute__((no_sanitize("hwaddress"))) attributed_global;
|
|
int __attribute__((disable_sanitizer_instrumentation)) disable_instrumentation_global;
|
|
int ignorelisted_global;
|
|
extern int __attribute__((no_sanitize("hwaddress"))) external_global;
|
|
|
|
void func() {
|
|
static int static_var = 0;
|
|
const char *literal = "Hello, world!";
|
|
external_global = 1;
|
|
}
|
|
|
|
// CHECK: @{{.*}}attributed_global{{.*}} ={{.*}} global {{.*}}, no_sanitize_hwaddress
|
|
// CHECK: @{{.*}}disable_instrumentation_global{{.*}} ={{.*}} global {{.*}}, no_sanitize_hwaddress
|
|
// CHECK: @{{.*}}ignorelisted_global{{.*}} ={{.*}} global {{.*}}, no_sanitize_hwaddress
|
|
// CHECK: @{{.*}}external_global{{.*}} ={{.*}}, no_sanitize_hwaddress
|
|
// CHECK: @{{.*}}extra_global{{.*}}.hwasan{{.*}} =
|
|
// CHECK: @{{.*}}global{{.*}}.hwasan{{.*}} =
|
|
// CHECK: @{{.*}}static_var{{.*}}.hwasan{{.*}} =
|
|
// CHECK: @{{.*}}.hwasan{{.*}} = {{.*}} c"Hello, world!\00"
|
|
|
|
// IGNORELIST: @{{.*}}global{{.*}} ={{.*}} global {{.*}}, no_sanitize_hwaddress
|
|
// IGNORELIST: @{{.*}}attributed_global{{.*}} ={{.*}} global {{.*}}, no_sanitize_hwaddress
|
|
// IGNORELIST: @{{.*}}disable_instrumentation_global{{.*}} ={{.*}} global {{.*}}, no_sanitize_hwaddress
|
|
// IGNORELIST: @{{.*}}ignorelisted_globa{{.*}} ={{.*}} global {{.*}}, no_sanitize_hwaddress
|
|
// IGNORELIST: @{{.*}}static_var{{.*}} ={{.*}} global {{.*}}, no_sanitize_hwaddress
|
|
// IGNORELIST: @{{.*}} = {{.*}} c"Hello, world!\00"{{.*}}, no_sanitize_hwaddress
|
|
// IGNORELIST: @{{.*}}external_global{{.*}} ={{.*}}, no_sanitize_hwaddress
|
|
// IGNORELIST: @{{.*}}extra_global{{.*}}.hwasan{{.*}} =
|