2016-04-20 09:02:18 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
|
2011-10-02 09:16:38 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK-NF
|
2011-02-26 17:12:15 +08:00
|
|
|
|
|
|
|
// Most of this test is apparently just verifying that we don't crash.
|
2008-09-04 12:36:23 +08:00
|
|
|
|
2009-11-17 16:57:36 +08:00
|
|
|
int printf(const char *, ...);
|
2008-09-04 12:36:23 +08:00
|
|
|
|
|
|
|
@interface Root
|
|
|
|
@end
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int x, y, z[10];
|
|
|
|
} MyPoint;
|
|
|
|
typedef struct {
|
|
|
|
float width, height;
|
|
|
|
} MySize;
|
|
|
|
|
|
|
|
@interface A : Root
|
|
|
|
+(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (MyPoint) arg3;
|
|
|
|
+(float) returnAFloat;
|
|
|
|
+(double) returnADouble;
|
|
|
|
+(MyPoint) returnAPoint;
|
|
|
|
+(void) printThisSize: (MySize) arg0;
|
|
|
|
+(MySize) returnASize;
|
|
|
|
|
|
|
|
-(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (MyPoint) arg3;
|
|
|
|
-(float) returnAFloat;
|
|
|
|
-(double) returnADouble;
|
|
|
|
-(MyPoint) returnAPoint;
|
|
|
|
-(void) printThisSize: (MySize) arg0;
|
|
|
|
-(MySize) returnASize;
|
|
|
|
@end
|
|
|
|
@interface B : A
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation A
|
|
|
|
+(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (MyPoint) arg3 {
|
|
|
|
printf("(CLASS) theInt: %d, theFloat: %f, theDouble: %f, thePoint: { %d, %d }\n",
|
|
|
|
arg0, arg1, arg2, arg3.x, arg3.y);
|
|
|
|
}
|
|
|
|
+(float) returnAFloat {
|
|
|
|
return 15.;
|
|
|
|
}
|
|
|
|
+(double) returnADouble {
|
|
|
|
return 25.;
|
|
|
|
}
|
|
|
|
+(MyPoint) returnAPoint {
|
|
|
|
MyPoint x = { 35, 45 };
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
+(void) printThisSize: (MySize) arg0 {
|
|
|
|
printf("(CLASS) theSize: { %f, %f }\n",
|
|
|
|
arg0.width, arg0.height);
|
|
|
|
}
|
|
|
|
+(MySize) returnASize {
|
|
|
|
MySize x = { 32, 44 };
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (MyPoint) arg3 {
|
|
|
|
printf("theInt: %d, theFloat: %f, theDouble: %f, thePoint: { %d, %d }\n",
|
|
|
|
arg0, arg1, arg2, arg3.x, arg3.y);
|
|
|
|
}
|
|
|
|
-(float) returnAFloat {
|
|
|
|
return 10.;
|
|
|
|
}
|
|
|
|
-(double) returnADouble {
|
|
|
|
return 20.;
|
|
|
|
}
|
|
|
|
-(MyPoint) returnAPoint {
|
|
|
|
MyPoint x = { 30, 40 };
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
-(void) printThisSize: (MySize) arg0 {
|
|
|
|
printf("theSize: { %f, %f }\n",
|
|
|
|
arg0.width, arg0.height);
|
|
|
|
}
|
|
|
|
-(MySize) returnASize {
|
|
|
|
MySize x = { 22, 34 };
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation B
|
|
|
|
+(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (MyPoint) arg3 {
|
|
|
|
arg3.x *= 2;
|
|
|
|
arg3.y *= 2;
|
|
|
|
[ super printThisInt: arg0*2 andThatFloat: arg1*2 andADouble: arg2*2 andAPoint: arg3 ];
|
|
|
|
}
|
|
|
|
+(void) printThisSize: (MySize) arg0 {
|
|
|
|
arg0.width *= 2;
|
|
|
|
arg0.height *= 2;
|
|
|
|
[ super printThisSize: arg0 ];
|
|
|
|
}
|
|
|
|
+(float) returnAFloat {
|
|
|
|
return [ super returnAFloat ]*2;
|
|
|
|
}
|
|
|
|
+(double) returnADouble {
|
|
|
|
return [ super returnADouble ]*2;
|
|
|
|
}
|
|
|
|
+(MyPoint) returnAPoint {
|
|
|
|
MyPoint x = [ super returnAPoint ];
|
|
|
|
x.x *= 2;
|
|
|
|
x.y *= 2;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
+(MySize) returnASize {
|
|
|
|
MySize x = [ super returnASize ];
|
|
|
|
x.width *= 2;
|
|
|
|
x.height *= 2;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(void) printThisInt: (int) arg0 andThatFloat: (float) arg1 andADouble: (double) arg2 andAPoint: (MyPoint) arg3 {
|
|
|
|
arg3.x *= 2;
|
|
|
|
arg3.y *= 2;
|
|
|
|
[ super printThisInt: arg0*2 andThatFloat: arg1*2 andADouble: arg2*2 andAPoint: arg3 ];
|
|
|
|
}
|
|
|
|
-(void) printThisSize: (MySize) arg0 {
|
|
|
|
arg0.width *= 2;
|
|
|
|
arg0.height *= 2;
|
|
|
|
[ super printThisSize: arg0 ];
|
|
|
|
}
|
|
|
|
-(float) returnAFloat {
|
|
|
|
return [ super returnAFloat ]*2;
|
|
|
|
}
|
|
|
|
-(double) returnADouble {
|
|
|
|
return [ super returnADouble ]*2;
|
|
|
|
}
|
|
|
|
-(MyPoint) returnAPoint {
|
|
|
|
MyPoint x = [ super returnAPoint ];
|
|
|
|
x.x *= 2;
|
|
|
|
x.y *= 2;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
-(MySize) returnASize {
|
|
|
|
MySize x = [ super returnASize ];
|
|
|
|
x.width *= 2;
|
|
|
|
x.height *= 2;
|
|
|
|
return x;
|
|
|
|
}
|
2010-02-24 15:14:12 +08:00
|
|
|
-(const float) returnAConstFloat {
|
|
|
|
return 5;
|
|
|
|
}
|
2008-09-04 12:36:23 +08:00
|
|
|
@end
|
2011-02-26 17:12:15 +08:00
|
|
|
|
|
|
|
// rdar://problem/7854674
|
|
|
|
// CHECK: define void @test0([[A:%.*]]*
|
|
|
|
// CHECK-NF: define void @test0([[A:%.*]]*
|
2011-05-15 05:12:11 +08:00
|
|
|
void test0(A *x) {
|
|
|
|
// CHECK: [[X:%.*]] = alloca [[A]]*
|
2011-02-26 17:12:15 +08:00
|
|
|
// CHECK-NEXT: [[POINT:%.*]] = alloca [[POINT_T:%.*]],
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK: [[T0:%.*]] = load [[A]]*, [[A]]** [[X]]
|
2011-05-15 05:12:11 +08:00
|
|
|
// CHECK: [[T1:%.*]] = bitcast [[A]]* [[T0]] to i8*
|
|
|
|
// CHECK-NEXT: icmp eq i8* [[T1]], null
|
|
|
|
// CHECK-NEXT: br i1
|
|
|
|
// CHECK: call {{.*}} @objc_msgSend_stret to
|
|
|
|
// CHECK-NEXT: br label
|
2011-02-26 17:12:15 +08:00
|
|
|
// CHECK: [[T0:%.*]] = bitcast [[POINT_T]]* [[POINT]] to i8*
|
Change memcpy/memove/memset to have dest and source alignment attributes (Step 1).
Summary:
Upstream LLVM is changing the the prototypes of the @llvm.memcpy/memmove/memset
intrinsics. This change updates the Clang tests for this change.
The @llvm.memcpy/memmove/memset intrinsics currently have an explicit argument
which is required to be a constant integer. It represents the alignment of the
dest (and source), and so must be the minimum of the actual alignment of the
two.
This change removes the alignment argument in favour of placing the alignment
attribute on the source and destination pointers of the memory intrinsic call.
For example, code which used to read:
call void @llvm.memcpy.p0i8.p0i8.i32(i8* %dest, i8* %src, i32 100, i32 4, i1 false)
will now read
call void @llvm.memcpy.p0i8.p0i8.i32(i8* align 4 %dest, i8* align 4 %src, i32 100, i1 false)
At this time the source and destination alignments must be the same (Step 1).
Step 2 of the change, to be landed shortly, will relax that contraint and allow
the source and destination to have different alignments.
llvm-svn: 322964
2018-01-20 01:12:54 +08:00
|
|
|
// CHECK-NEXT: call void @llvm.memset.p0i8.i64(i8* align 4 [[T0]], i8 0, i64 48, i1 false)
|
2011-05-15 05:12:11 +08:00
|
|
|
// CHECK-NEXT: br label
|
|
|
|
|
|
|
|
// CHECK-NF: [[X:%.*]] = alloca [[A]]*
|
|
|
|
// CHECK-NF-NEXT: [[POINT:%.*]] = alloca [[POINT_T:%.*]],
|
2015-02-28 05:19:58 +08:00
|
|
|
// CHECK-NF: [[T0:%.*]] = load [[A]]*, [[A]]** [[X]]
|
2011-05-15 05:12:11 +08:00
|
|
|
// CHECK-NF: [[T1:%.*]] = bitcast [[A]]* [[T0]] to i8*
|
|
|
|
// CHECK-NF-NEXT: icmp eq i8* [[T1]], null
|
|
|
|
// CHECK-NF-NEXT: br i1
|
|
|
|
// CHECK-NF: call {{.*}} @objc_msgSend_stret to
|
|
|
|
// CHECK-NF-NEXT: br label
|
2011-02-26 17:12:15 +08:00
|
|
|
// CHECK-NF: [[T0:%.*]] = bitcast [[POINT_T]]* [[POINT]] to i8*
|
Change memcpy/memove/memset to have dest and source alignment attributes (Step 1).
Summary:
Upstream LLVM is changing the the prototypes of the @llvm.memcpy/memmove/memset
intrinsics. This change updates the Clang tests for this change.
The @llvm.memcpy/memmove/memset intrinsics currently have an explicit argument
which is required to be a constant integer. It represents the alignment of the
dest (and source), and so must be the minimum of the actual alignment of the
two.
This change removes the alignment argument in favour of placing the alignment
attribute on the source and destination pointers of the memory intrinsic call.
For example, code which used to read:
call void @llvm.memcpy.p0i8.p0i8.i32(i8* %dest, i8* %src, i32 100, i32 4, i1 false)
will now read
call void @llvm.memcpy.p0i8.p0i8.i32(i8* align 4 %dest, i8* align 4 %src, i32 100, i1 false)
At this time the source and destination alignments must be the same (Step 1).
Step 2 of the change, to be landed shortly, will relax that contraint and allow
the source and destination to have different alignments.
llvm-svn: 322964
2018-01-20 01:12:54 +08:00
|
|
|
// CHECK-NF-NEXT: call void @llvm.memset.p0i8.i64(i8* align 4 [[T0]], i8 0, i64 48, i1 false)
|
2011-05-15 05:12:11 +08:00
|
|
|
// CHECK-NF-NEXT: br label
|
|
|
|
MyPoint point = [x returnAPoint];
|
2011-02-26 17:12:15 +08:00
|
|
|
}
|