mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-09 08:56:06 +00:00

Summary: Right now we annotate C++'s `operator new` with `noalias` attribute, which very much is healthy for optimizations. However as per [[ http://eel.is/c++draft/basic.stc.dynamic.allocation | `[basic.stc.dynamic.allocation]` ]], there are more promises on global `operator new`, namely: * non-`std::nothrow_t` `operator new` *never* returns `nullptr` * If `std::align_val_t align` parameter is taken, the pointer will also be `align`-aligned * ~~global `operator new`-returned pointer is `__STDCPP_DEFAULT_NEW_ALIGNMENT__`-aligned ~~ It's more caveated than that. Supplying this information may not cause immediate landslide effects on any specific benchmarks, but it for sure will be healthy for optimizer in the sense that the IR will better reflect the guarantees provided in the source code. The caveat is `-fno-assume-sane-operator-new`, which currently prevents emitting `noalias` attribute, and is automatically passed by Sanitizers ([[ https://bugs.llvm.org/show_bug.cgi?id=16386 | PR16386 ]]) - should it also cover these attributes? The problem is that the flag is back-end-specific, as seen in `test/Modules/explicit-build-flags.cpp`. But while it is okay to add `noalias` metadata in backend, we really should be adding at least the alignment metadata to the AST, since that allows us to perform sema checks on it. Reviewers: erichkeane, rjmccall, jdoerfert, eugenis, rsmith Reviewed By: rsmith Subscribers: xbolva00, jrtc27, atanasyan, nlopes, cfe-commits Tags: #llvm, #clang Differential Revision: https://reviews.llvm.org/D73380
30 lines
991 B
C++
30 lines
991 B
C++
// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o %t-1.ll %s
|
|
// RUN: FileCheck --check-prefix=ALL -check-prefix SANE --input-file=%t-1.ll %s
|
|
// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -fno-assume-sane-operator-new -o %t-2.ll %s
|
|
// RUN: FileCheck --check-prefix=ALL -check-prefix SANENOT --input-file=%t-2.ll %s
|
|
|
|
class teste {
|
|
int A;
|
|
public:
|
|
teste() : A(2) {}
|
|
};
|
|
|
|
void f1() {
|
|
// ALL: declare nonnull i8* @_Znwj(
|
|
new teste();
|
|
}
|
|
|
|
// rdar://5739832 - operator new should check for overflow in multiply.
|
|
void *f2(long N) {
|
|
return new int[N];
|
|
|
|
// ALL: [[UWO:%.*]] = call {{.*}} @llvm.umul.with.overflow
|
|
// ALL-NEXT: [[OVER:%.*]] = extractvalue {{.*}} [[UWO]], 1
|
|
// ALL-NEXT: [[SUM:%.*]] = extractvalue {{.*}} [[UWO]], 0
|
|
// ALL-NEXT: [[RESULT:%.*]] = select i1 [[OVER]], i32 -1, i32 [[SUM]]
|
|
// SANE-NEXT: call noalias nonnull i8* @_Znaj(i32 [[RESULT]])
|
|
// SANENOT-NEXT: call nonnull i8* @_Znaj(i32 [[RESULT]])
|
|
}
|
|
|
|
// ALL: declare nonnull i8* @_Znaj(
|