mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 19:06:05 +00:00

This reverts commit 27ecb63c260400dd20b8c5dc16d0dfd2d0e7122e. Still fails compiler-rt: https://lab.llvm.org/buildbot/#/builders/109/builds/75364
91 lines
3.6 KiB
C++
91 lines
3.6 KiB
C++
// RUN: %clang_cc1 -triple powerpc-ibm-aix-xcoff -x c++ -emit-llvm \
|
|
// RUN: -fno-use-cxa-atexit < %s | \
|
|
// RUN: FileCheck --check-prefix=NO-REGISTER %s
|
|
// RUN: %clang_cc1 -triple powerpc64-ibm-aix-xcoff -x c++ -emit-llvm \
|
|
// RUN: -fno-use-cxa-atexit < %s | \
|
|
// RUN: FileCheck --check-prefix=NO-REGISTER %s
|
|
|
|
// RUN: %clang_cc1 -triple powerpc-ibm-aix-xcoff -x c++ -emit-llvm \
|
|
// RUN: -fno-use-cxa-atexit -fregister-global-dtors-with-atexit < %s | \
|
|
// RUN: FileCheck --check-prefix=REGISTER %s
|
|
// RUN: %clang_cc1 -triple powerpc64-ibm-aix-xcoff -x c++ -emit-llvm \
|
|
// RUN: -fno-use-cxa-atexit -fregister-global-dtors-with-atexit < %s | \
|
|
// RUN: FileCheck --check-prefix=REGISTER %s
|
|
|
|
struct test {
|
|
test();
|
|
~test();
|
|
} t;
|
|
|
|
int bar() __attribute__((destructor(100)));
|
|
int bar2() __attribute__((destructor(65535)));
|
|
int bar3(int) __attribute__((destructor(65535)));
|
|
|
|
int bar() {
|
|
return 1;
|
|
}
|
|
|
|
int bar2() {
|
|
return 2;
|
|
}
|
|
|
|
int bar3(int a) {
|
|
return a;
|
|
}
|
|
|
|
// NO-REGISTER: @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I__, ptr null }]
|
|
// NO-REGISTER: @llvm.global_dtors = appending global [4 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 100, ptr @_Z3barv, ptr null }, { i32, ptr, ptr } { i32 65535, ptr @_Z4bar2v, ptr null }, { i32, ptr, ptr } { i32 65535, ptr @_Z4bar3i, ptr null }, { i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__D_a, ptr null }]
|
|
|
|
// REGISTER: @llvm.global_ctors = appending global [3 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I__, ptr null }, { i32, ptr, ptr } { i32 100, ptr @__GLOBAL_init_100, ptr null }, { i32, ptr, ptr } { i32 65535, ptr @__GLOBAL_init_65535, ptr null }]
|
|
// REGISTER: @llvm.global_dtors = appending global [3 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__D_a, ptr null }, { i32, ptr, ptr } { i32 100, ptr @__GLOBAL_cleanup_100, ptr null }, { i32, ptr, ptr } { i32 65535, ptr @__GLOBAL_cleanup_65535, ptr null }]
|
|
|
|
// REGISTER: define internal void @__GLOBAL_init_100() [[ATTR:#[0-9]+]] {
|
|
// REGISTER: entry:
|
|
// REGISTER: %0 = call i32 @atexit(ptr @_Z3barv)
|
|
// REGISTER: ret void
|
|
// REGISTER: }
|
|
|
|
// REGISTER: define internal void @__GLOBAL_init_65535() [[ATTR:#[0-9]+]] {
|
|
// REGISTER: entry:
|
|
// REGISTER: %0 = call i32 @atexit(ptr @_Z4bar2v)
|
|
// REGISTER: %1 = call i32 @atexit(ptr @_Z4bar3i)
|
|
// REGISTER: ret void
|
|
// REGISTER: }
|
|
|
|
// REGISTER: define internal void @__GLOBAL_cleanup_100() [[ATTR:#[0-9]+]] {
|
|
// REGISTER: entry:
|
|
// REGISTER: %0 = call i32 @unatexit(ptr @_Z3barv)
|
|
// REGISTER: %needs_destruct = icmp eq i32 %0, 0
|
|
// REGISTER: br i1 %needs_destruct, label %destruct.call, label %destruct.end
|
|
|
|
// REGISTER: destruct.call:
|
|
// REGISTER: call void @_Z3barv()
|
|
// REGISTER: br label %destruct.end
|
|
|
|
// REGISTER: destruct.end:
|
|
// REGISTER: ret void
|
|
// REGISTER: }
|
|
|
|
// REGISTER: define internal void @__GLOBAL_cleanup_65535() [[ATTR:#[0-9]+]] {
|
|
// REGISTER: entry:
|
|
// REGISTER: %0 = call i32 @unatexit(ptr @_Z4bar3i)
|
|
// REGISTER: %needs_destruct = icmp eq i32 %0, 0
|
|
// REGISTER: br i1 %needs_destruct, label %destruct.call, label %unatexit.call
|
|
|
|
// REGISTER: destruct.call:
|
|
// REGISTER: call void @_Z4bar3i()
|
|
// REGISTER: br label %unatexit.call
|
|
|
|
// REGISTER: unatexit.call:
|
|
// REGISTER: %1 = call i32 @unatexit(ptr @_Z4bar2v)
|
|
// REGISTER: %needs_destruct1 = icmp eq i32 %1, 0
|
|
// REGISTER: br i1 %needs_destruct1, label %destruct.call2, label %destruct.end
|
|
|
|
// REGISTER: destruct.call2:
|
|
// REGISTER: call void @_Z4bar2v()
|
|
// REGISTER: br label %destruct.end
|
|
|
|
// REGISTER: destruct.end:
|
|
// REGISTER: ret void
|
|
// REGISTER: }
|