mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 21:45:46 -04:00

This patch teaches ubsan to insert an alignment check for the 'this' pointer at the start of each method/lambda. This allows clang to emit significantly fewer alignment checks overall, because if 'this' is aligned, so are its fields. This is essentially the same thing r295515 does, but for the alignment check instead of the null check. One difference is that we keep the alignment checks on member expressions where the base is a DeclRefExpr. There's an opportunity to diagnose unaligned accesses in this situation (as pointed out by Eli, see PR32630). Testing: check-clang, check-ubsan, and a stage2 ubsan build. Along with the patch from D30285, this roughly halves the amount of alignment checks we emit when compiling X86FastISel.cpp. Here are the numbers from patched/unpatched clangs based on r298160. ------------------------------------------ | Setup | # of alignment checks | ------------------------------------------ | unpatched, -O0 | 24326 | | patched, -O0 | 12717 | (-47.7%) ------------------------------------------ Differential Revision: https://reviews.llvm.org/D30283 llvm-svn: 300370
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin10 -emit-llvm -o - %s -fsanitize=alignment | FileCheck %s
|
|
|
|
struct S {
|
|
int I;
|
|
};
|
|
|
|
extern S g_S;
|
|
extern S array_S[];
|
|
|
|
// CHECK-LABEL: define i32 @_Z18load_extern_global
|
|
int load_extern_global() {
|
|
// FIXME: The IR builder constant-folds the alignment check away to 'true'
|
|
// here, so we never call the diagnostic. This is PR32630.
|
|
// CHECK-NOT: ptrtoint i32* {{.*}} to i32, !nosanitize
|
|
// CHECK: [[I:%.*]] = load i32, i32* getelementptr inbounds (%struct.S, %struct.S* @g_S, i32 0, i32 0), align 4
|
|
// CHECK-NEXT: ret i32 [[I]]
|
|
return g_S.I;
|
|
}
|
|
|
|
// CHECK-LABEL: define i32 @_Z22load_from_extern_array
|
|
int load_from_extern_array(int I) {
|
|
// CHECK: [[I:%.*]] = getelementptr inbounds %struct.S, %struct.S* {{.*}}, i32 0, i32 0
|
|
// CHECK-NEXT: [[PTRTOINT:%.*]] = ptrtoint i32* [[I]] to i64, !nosanitize
|
|
// CHECK-NEXT: [[AND:%.*]] = and i64 [[PTRTOINT]], 3, !nosanitize
|
|
// CHECK-NEXT: [[ICMP:%.*]] = icmp eq i64 [[AND]], 0, !nosanitize
|
|
// CHECK-NEXT: br i1 [[ICMP]]
|
|
// CHECK: call void @__ubsan_handle_type_mismatch
|
|
return array_S[I].I;
|
|
}
|