forked from OSchip/llvm-project
parent
0454f657ce
commit
c21ba96566
|
@ -1,9 +1,11 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fblocks -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep -F '@objc_assign_strongCast' %t | count 4
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fblocks -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep -F '@objc_assign_strongCast' %t | count 4
|
||||
|
||||
@interface DSATextSearch @end
|
||||
|
||||
DSATextSearch **_uniqueIdToIdentifierArray = ((void *)0);
|
||||
DSATextSearch **_uniqueIdToIdentifierArray = (0);
|
||||
void foo (int _nextId)
|
||||
{
|
||||
_uniqueIdToIdentifierArray[_nextId] = 0; // objc_assign_strongCast
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep 'objc_assign' %t | count 0
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep 'objc_assign' %t | count 0
|
||||
|
||||
typedef struct {
|
||||
int ival;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-gc-only -emit-llvm -o %t %s
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-unknown-unknown -fobjc-gc-only -emit-llvm -o %t %s
|
||||
|
||||
@interface I0 {
|
||||
I0 *_f0;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-unknown-unknown -fobjc-gc -emit-llvm -o %t %s
|
||||
|
||||
@interface I {
|
||||
__attribute__((objc_gc(strong))) int *i_IdocumentIDs;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// RUN: %clang_cc1 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: %clang_cc1 -x objective-c++ -fobjc-gc -emit-llvm -o %t %s
|
||||
|
||||
@interface I {
|
||||
__attribute__((objc_gc(strong))) signed long *_documentIDs;
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep -e "objc_assign_weak" %t | grep -e "call" | count 6
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep -e "objc_assign_weak" %t | grep -e "call" | count 6
|
||||
|
||||
__weak id* x;
|
||||
id* __weak y;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
|
||||
|
||||
@interface PBXTarget
|
||||
{
|
||||
|
@ -10,6 +11,7 @@ PBXTarget * result;
|
|||
- Meth;
|
||||
@end
|
||||
|
||||
extern void foo();
|
||||
@implementation PBXTarget
|
||||
- Meth {
|
||||
if (_lastKnownTarget != result)
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-gc -g -emit-llvm -o - %s
|
||||
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-gc -g -emit-llvm -o - %s
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-gc -g -emit-llvm -o - %s
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fobjc-gc -g -emit-llvm -o - %s
|
||||
|
||||
// rdar://7252252
|
||||
@interface Loop {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
|
||||
@class NSObject;
|
||||
|
||||
@interface Foo {
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
// RUN: grep -F '@objc_assign_global' %t | count 7
|
||||
// RUN: grep -F '@objc_assign_ivar' %t | count 5
|
||||
// RUN: grep -F '@objc_assign_strongCast' %t | count 8
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep -F '@objc_assign_global' %t | count 7
|
||||
// RUN: grep -F '@objc_assign_ivar' %t | count 5
|
||||
// RUN: grep -F '@objc_assign_strongCast' %t | count 8
|
||||
|
||||
extern id **somefunc(void);
|
||||
extern id *somefunc2(void);
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -fblocks -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep objc_assign_ivar %t | count 3
|
||||
// RUN: grep objc_assign_strongCast %t | count 6
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -fblocks -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep objc_assign_ivar %t | count 3
|
||||
// RUN: grep objc_assign_strongCast %t | count 6
|
||||
|
||||
struct Slice {
|
||||
void *__strong * items;
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep objc_assign_global %t | count 3
|
||||
// RUN: grep objc_assign_strongCast %t | count 2
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep objc_assign_global %t | count 3
|
||||
// RUN: grep objc_assign_strongCast %t | count 2
|
||||
|
||||
@interface A
|
||||
@end
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep objc_assign_ivar %t | count 0
|
||||
// RUN: grep objc_assign_strongCast %t | count 5
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep objc_assign_ivar %t | count 0
|
||||
// RUN: grep objc_assign_strongCast %t | count 5
|
||||
|
||||
@interface TestUnarchiver
|
||||
{
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep -F '@objc_assign_global' %t | count 21
|
||||
// RUN: grep -F '@objc_assign_ivar' %t | count 11
|
||||
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
|
||||
// RUN: grep -F '@objc_assign_global' %t | count 21
|
||||
// RUN: grep -F '@objc_assign_ivar' %t | count 11
|
||||
|
||||
|
||||
typedef const struct __CFDictionary * CFDictionaryRef;
|
||||
|
@ -49,9 +52,9 @@ struct_with_ids_t GlobalStructArray[10];
|
|||
|
||||
|
||||
// The test cases
|
||||
void *rhs = 0;
|
||||
void* rhs = 0;
|
||||
|
||||
#define ASSIGNTEST(expr, global) expr = rhs
|
||||
#define ASSIGNTEST(expr, global) expr = (typeof(expr))rhs
|
||||
|
||||
int testGlobals() {
|
||||
// Everything in this function generates assign_global intercepts
|
||||
|
|
Loading…
Reference in New Issue