
We have a new policy in place making links to private resources something we try to avoid in source and test files. Normally, we'd organically switch to the new policy rather than make a sweeping change across a project. However, Clang is in a somewhat special circumstance currently: recently, I've had several new contributors run into rdar links around test code which their patch was changing the behavior of. This turns out to be a surprisingly bad experience, especially for newer folks, for a handful of reasons: not understanding what the link is and feeling intimidated by it, wondering whether their changes are actually breaking something important to a downstream in some way, having to hunt down strangers not involved with the patch to impose on them for help, accidental pressure from asking for potentially private IP to be made public, etc. Because folks run into these links entirely by chance (through fixing bugs or working on new features), there's not really a set of problematic links to focus on -- all of the links have basically the same potential for causing these problems. As a result, this is an omnibus patch to remove all such links. This was not a mechanical change; it was done by manually searching for rdar, radar, radr, and other variants to find all the various problematic links. From there, I tried to retain or reword the surrounding comments so that we would lose as little context as possible. However, because most links were just a plain link with no supporting context, the majority of the changes are simple removals. Differential Review: https://reviews.llvm.org/D158071
79 lines
2.5 KiB
Plaintext
79 lines
2.5 KiB
Plaintext
// RUN: %clang_cc1 -triple i386-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -fexceptions -fobjc-exceptions -O2 -o - %s | FileCheck %s
|
|
|
|
// Test we maintain at least a basic amount of interoperation between
|
|
// ObjC and C++ exceptions in the legacy runtime.
|
|
|
|
void foo(void);
|
|
|
|
void test0(id obj) {
|
|
@synchronized(obj) {
|
|
foo();
|
|
}
|
|
}
|
|
// CHECK-LABEL: define{{.*}} void @_Z5test0P11objc_object(
|
|
// Enter the @synchronized block.
|
|
// CHECK: call i32 @objc_sync_enter(ptr [[OBJ:%.*]])
|
|
// CHECK: call void @objc_exception_try_enter(ptr nonnull [[BUF:%.*]])
|
|
// CHECK-NEXT: [[T1:%.*]] = call i32 @_setjmp(ptr nonnull [[BUF]])
|
|
// CHECK-NEXT: [[T2:%.*]] = icmp eq i32 [[T1]], 0
|
|
// CHECK-NEXT: br i1 [[T2]],
|
|
|
|
// Body.
|
|
// CHECK: invoke void @_Z3foov()
|
|
|
|
// Leave the @synchronized. The reload of obj here is unnecessary.
|
|
// CHECK: call void @objc_exception_try_exit(ptr nonnull [[BUF]])
|
|
// CHECK-NEXT: [[T0:%.*]] = load ptr, ptr
|
|
// CHECK-NEXT: call i32 @objc_sync_exit(ptr [[T0]])
|
|
// CHECK-NEXT: ret void
|
|
|
|
// Real EH cleanup.
|
|
// CHECK: [[T0:%.*]] = landingpad
|
|
// CHECK-NEXT: cleanup
|
|
// CHECK-NEXT: call void @objc_exception_try_exit(ptr nonnull [[BUF]])
|
|
// CHECK-NEXT: [[T0:%.*]] = load ptr, ptr
|
|
// CHECK-NEXT: call i32 @objc_sync_exit(ptr [[T0]])
|
|
// CHECK-NEXT: resume
|
|
|
|
// ObjC EH "cleanup".
|
|
// CHECK: [[T0:%.*]] = load ptr, ptr
|
|
// CHECK-NEXT: call i32 @objc_sync_exit(ptr [[T0]])
|
|
// CHECK-NEXT: [[T0:%.*]] = call ptr @objc_exception_extract(ptr nonnull [[BUF]])
|
|
// CHECK-NEXT: call void @objc_exception_throw(ptr [[T0]])
|
|
// CHECK-NEXT: unreachable
|
|
|
|
void test1(id obj, bool *failed) {
|
|
@try {
|
|
foo();
|
|
} @catch (...) {
|
|
*failed = true;
|
|
}
|
|
}
|
|
// CHECK-LABEL: define{{.*}} void @_Z5test1P11objc_objectPb(
|
|
// Enter the @try block.
|
|
// CHECK: call void @objc_exception_try_enter(ptr nonnull [[BUF:%.*]])
|
|
// CHECK-NEXT: [[T1:%.*]] = call i32 @_setjmp(ptr nonnull [[BUF]])
|
|
// CHECK-NEXT: [[T2:%.*]] = icmp eq i32 [[T1]], 0
|
|
// CHECK-NEXT: br i1 [[T2]],
|
|
|
|
// Body.
|
|
// CHECK: invoke void @_Z3foov()
|
|
|
|
// Catch handler. Reload of 'failed' address is unnecessary.
|
|
// CHECK: [[T0:%.*]] = load ptr, ptr
|
|
// CHECK-NEXT: store i8 1, ptr [[T0]],
|
|
// CHECK-NEXT: br label
|
|
|
|
// Leave the @try.
|
|
// CHECK: call void @objc_exception_try_exit(ptr nonnull [[BUF]])
|
|
// CHECK-NEXT: br label
|
|
// CHECK: ret void
|
|
|
|
|
|
// Real EH cleanup.
|
|
// CHECK: [[T0:%.*]] = landingpad
|
|
// CHECK-NEXT: cleanup
|
|
// CHECK-NEXT: call void @objc_exception_try_exit(ptr nonnull [[BUF]])
|
|
// CHECK-NEXT: resume
|
|
|