Introduce __builtin_nontemporal_store and __builtin_nontemporal_load.
Summary: Currently clang provides no general way to generate nontemporal loads/stores. There are some architecture specific builtins for doing so (e.g. in x86), but there is no way to generate non-temporal store on, e.g. AArch64. This patch adds generic builtins which are expanded to a simple store with '!nontemporal' attribute in IR. Differential Revision: http://reviews.llvm.org/D12313 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@247104 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/Basic/Builtins.def 4 additions, 0 deletionsinclude/clang/Basic/Builtins.def
- include/clang/Basic/DiagnosticSemaKinds.td 6 additions, 0 deletionsinclude/clang/Basic/DiagnosticSemaKinds.td
- include/clang/Sema/Sema.h 1 addition, 0 deletionsinclude/clang/Sema/Sema.h
- lib/CodeGen/CGBuiltin.cpp 26 additions, 0 deletionslib/CodeGen/CGBuiltin.cpp
- lib/CodeGen/CGExpr.cpp 18 additions, 4 deletionslib/CodeGen/CGExpr.cpp
- lib/CodeGen/CGValue.h 7 additions, 0 deletionslib/CodeGen/CGValue.h
- lib/CodeGen/CodeGenFunction.h 3 additions, 2 deletionslib/CodeGen/CodeGenFunction.h
- lib/Sema/SemaChecking.cpp 75 additions, 0 deletionslib/Sema/SemaChecking.cpp
- test/CodeGen/Nontemporal.cpp 48 additions, 0 deletionstest/CodeGen/Nontemporal.cpp
Loading
Please register or sign in to comment