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

The data size is required for implementing the `memmove` optimization for `std::copy`, `std::move` etc. correctly as well as replacing `__compressed_pair` with `[[no_unique_address]]` in libc++. Since the compiler already knows the data size, we can avoid some complexity by exposing that information.
20 lines
806 B
C++
20 lines
806 B
C++
// RUN: %clang_cc1 -triple x86_64-unknown-gnu-linux -emit-llvm %s -o - | FileCheck %s
|
|
|
|
// CHECK-LABEL: define dso_local noundef i32 @_Z4testi(
|
|
// CHECK-SAME: i32 noundef [[I:%.*]]) #[[ATTR0:[0-9]+]] {
|
|
// CHECK-NEXT: entry:
|
|
// CHECK-NEXT: [[I_ADDR:%.*]] = alloca i32, align 4
|
|
// CHECK-NEXT: store i32 [[I]], ptr [[I_ADDR]], align 4
|
|
// CHECK-NEXT: [[TMP0:%.*]] = load i32, ptr [[I_ADDR]], align 4
|
|
// CHECK-NEXT: [[INC:%.*]] = add nsw i32 [[TMP0]], 1
|
|
// CHECK-NEXT: store i32 [[INC]], ptr [[I_ADDR]], align 4
|
|
// CHECK-NEXT: [[TMP1:%.*]] = zext i32 [[TMP0]] to i64
|
|
// CHECK-NEXT: [[TMP2:%.*]] = mul nuw i64 4, [[TMP1]]
|
|
// CHECK-NEXT: [[TMP3:%.*]] = load i32, ptr [[I_ADDR]], align 4
|
|
// CHECK-NEXT: ret i32 [[TMP3]]
|
|
//
|
|
int test(int i) {
|
|
(void)__datasizeof(int[i++]);
|
|
return i;
|
|
}
|