Skip to content

Commit 7954a05

Browse files
authoredDec 4, 2024··
[Clang] Enable -fpointer-tbaa by default. (#117244)
Support for more precise TBAA metadata has been added a while ago (behind the -fpointer-tbaa flag). The more precise TBAA metadata allows treating accesses of different pointer types as no-alias. This helps to remove more redundant loads and stores in a number of workloads. Some highlights on the impact across llvm-test-suite's MultiSource, SPEC2006 & SPEC2017 include: * +2% more NoAlias results for memory accesses * +3% more stores removed by DSE, * +4% more loops vectorized. This closes a relatively big gap to GCC, which has been supporting disambiguating based on pointer types for a long time. (https://clang.godbolt.org/z/K7Wbhrz4q) Pointer-TBAA support for pointers to builtin types has been added in #76612. Support for user-defined types has been added in #110569. There are 2 recent PRs with bug fixes for special cases uncovered during testing: * #116991 * #116596 PR: #117244
1 parent 431581b commit 7954a05

12 files changed

+483
-461
lines changed
 

‎clang/docs/ReleaseNotes.rst

+6
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ code bases.
5252
`migrate to Vulkan <https://developer.android.com/guide/topics/renderscript/migrate>`_
5353
or other options.
5454

55+
- Clang now emits distinct type-based alias analysis tags for incompatible
56+
pointers by default, enabling more powerful alias analysis when accessing
57+
pointer types. This change may silently change code behavior for code
58+
containing strict-aliasing violations. The new default behavior can be
59+
disabled using ``-fno-pointer-tbaa``.
60+
5561
C/C++ Language Potentially Breaking Changes
5662
-------------------------------------------
5763

‎clang/include/clang/Basic/CodeGenOptions.def

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ ENUM_CODEGENOPT(StructReturnConvention, StructReturnConventionKind, 2, SRCK_Defa
242242

243243
CODEGENOPT(RelaxAll , 1, 0) ///< Relax all machine code instructions.
244244
CODEGENOPT(RelaxedAliasing , 1, 0) ///< Set when -fno-strict-aliasing is enabled.
245-
CODEGENOPT(PointerTBAA, 1, 0) ///< Whether or not to use distinct TBAA tags for pointers.
245+
CODEGENOPT(PointerTBAA , 1, 1) ///< Whether or not to use distinct TBAA tags for pointers.
246246
CODEGENOPT(StructPathTBAA , 1, 0) ///< Whether or not to use struct-path TBAA.
247247
CODEGENOPT(NewStructPathTBAA , 1, 0) ///< Whether or not to use enhanced struct-path TBAA.
248248
CODEGENOPT(SaveTempLabels , 1, 0) ///< Save temporary labels.

‎clang/include/clang/Driver/Options.td

+6-3
Original file line numberDiff line numberDiff line change
@@ -7387,9 +7387,12 @@ def fuse_register_sized_bitfield_access: Flag<["-"], "fuse-register-sized-bitfie
73877387
def relaxed_aliasing : Flag<["-"], "relaxed-aliasing">,
73887388
HelpText<"Turn off Type Based Alias Analysis">,
73897389
MarshallingInfoFlag<CodeGenOpts<"RelaxedAliasing">>;
7390-
def pointer_tbaa: Flag<["-"], "pointer-tbaa">,
7391-
HelpText<"Turn on Type Based Alias Analysis for pointer accesses">,
7392-
MarshallingInfoFlag<CodeGenOpts<"PointerTBAA">>;
7390+
defm pointer_tbaa: BoolOption<"", "pointer-tbaa", CodeGenOpts<"PointerTBAA">,
7391+
DefaultTrue,
7392+
PosFlag<SetTrue, [], [ClangOption], "Enable">,
7393+
NegFlag<SetFalse, [], [ClangOption], "Disable">,
7394+
BothFlags<[], [ClangOption], " that single precision floating-point divide and sqrt used in ">>
7395+
;
73937396
def no_struct_path_tbaa : Flag<["-"], "no-struct-path-tbaa">,
73947397
HelpText<"Turn off struct-path aware Type Based Alias Analysis">,
73957398
MarshallingInfoNegativeFlag<CodeGenOpts<"StructPathTBAA">>;

‎clang/lib/Driver/ToolChains/Clang.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5937,9 +5937,9 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
59375937
if (!Args.hasFlag(options::OPT_fstrict_aliasing, StrictAliasingAliasOption,
59385938
options::OPT_fno_strict_aliasing, !IsWindowsMSVC))
59395939
CmdArgs.push_back("-relaxed-aliasing");
5940-
if (Args.hasFlag(options::OPT_fpointer_tbaa, options::OPT_fno_pointer_tbaa,
5940+
if (Args.hasFlag(options::OPT_fno_pointer_tbaa, options::OPT_fpointer_tbaa,
59415941
false))
5942-
CmdArgs.push_back("-pointer-tbaa");
5942+
CmdArgs.push_back("-no-pointer-tbaa");
59435943
if (!Args.hasFlag(options::OPT_fstruct_path_tbaa,
59445944
options::OPT_fno_struct_path_tbaa, true))
59455945
CmdArgs.push_back("-no-struct-path-tbaa");

‎clang/test/CodeGen/attr-counted-by.c

+28-28
Large diffs are not rendered by default.

‎clang/test/CodeGen/tbaa-pointers.c

+102-102
Large diffs are not rendered by default.

‎clang/test/CodeGen/tbaa-reference.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// RUN: %clang_cc1 -triple x86_64-linux -O1 -disable-llvm-passes %s -emit-llvm -o - | FileCheck %s -check-prefixes=CHECK,OLD-PATH
2-
// RUN: %clang_cc1 -triple x86_64-linux -O1 -disable-llvm-passes -pointer-tbaa %s -emit-llvm -o - | FileCheck %s -check-prefixes=CHECK,OLD-PATH-POINTER
3-
// RUN: %clang_cc1 -triple x86_64-linux -O1 -disable-llvm-passes %s -emit-llvm -new-struct-path-tbaa -o - | FileCheck %s -check-prefixes=CHECK,NEW-PATH
4-
// RUN: %clang_cc1 -triple x86_64-linux -O1 -disable-llvm-passes %s -pointer-tbaa -emit-llvm -new-struct-path-tbaa -o - | FileCheck %s -check-prefixes=CHECK,NEW-PATH-POINTER
1+
// RUN: %clang_cc1 -triple x86_64-linux -O1 -disable-llvm-passes -no-pointer-tbaa %s -emit-llvm -o - | FileCheck %s -check-prefixes=CHECK,OLD-PATH
2+
// RUN: %clang_cc1 -triple x86_64-linux -O1 -disable-llvm-passes %s -emit-llvm -o - | FileCheck %s -check-prefixes=CHECK,OLD-PATH-POINTER
3+
// RUN: %clang_cc1 -triple x86_64-linux -O1 -disable-llvm-passes %s -no-pointer-tbaa -emit-llvm -new-struct-path-tbaa -o - | FileCheck %s -check-prefixes=CHECK,NEW-PATH
4+
// RUN: %clang_cc1 -triple x86_64-linux -O1 -disable-llvm-passes %s -emit-llvm -new-struct-path-tbaa -o - | FileCheck %s -check-prefixes=CHECK,NEW-PATH-POINTER
55
//
66
// Check that we generate correct TBAA information for reference accesses.
77

‎clang/test/CodeGenCXX/template-instantiation.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
// CHECK2-NOT: _ZTVN5test31SIiEE
1919
// CHECK2-NOT: _ZTSN5test31SIiEE
20+
// CHECK2: !{!"p1 _ZTSN5test31SIiEE",
2021

2122
// CHECK-LABEL: define linkonce_odr void @_ZN5test21CIiEC1Ev(ptr {{[^,]*}} %this) unnamed_addr
2223
// CHECK-LABEL: define linkonce_odr void @_ZN5test21CIiE6foobarIdEEvT_(

0 commit comments

Comments
 (0)