freebsd-dev/test/CodeGen/object-size.c

112 lines
3.8 KiB
C
Raw Normal View History

2009-12-15 18:49:47 +00:00
// RUN: clang-cc -triple x86_64-apple-darwin -emit-llvm %s -o - | FileCheck %s
2009-11-04 15:04:32 +00:00
#define strcpy(dest, src) \
((__builtin_object_size(dest, 0) != -1ULL) \
? __builtin___strcpy_chk (dest, src, __builtin_object_size(dest, 1)) \
: __inline_strcpy_chk(dest, src))
static char *__inline_strcpy_chk (char *dest, const char *src) {
return __builtin___strcpy_chk(dest, src, __builtin_object_size(dest, 1));
}
char gbuf[63];
char *gp;
int gi, gj;
void test1() {
2009-12-15 18:49:47 +00:00
// CHECK: %call = call i8* @__strcpy_chk(i8* getelementptr inbounds ([63 x i8]* @gbuf, i32 0, i64 4), i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0), i64 59)
2009-11-04 15:04:32 +00:00
strcpy(&gbuf[4], "Hi there");
}
void test2() {
2009-12-15 18:49:47 +00:00
// CHECK: %call = call i8* @__strcpy_chk(i8* getelementptr inbounds ([63 x i8]* @gbuf, i32 0, i32 0), i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0), i64 63)
2009-11-04 15:04:32 +00:00
strcpy(gbuf, "Hi there");
}
void test3() {
2009-12-15 18:49:47 +00:00
// CHECK: %call = call i8* @__strcpy_chk(i8* getelementptr inbounds ([63 x i8]* @gbuf, i64 1, i64 37), i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0), i64 0)
2009-11-04 15:04:32 +00:00
strcpy(&gbuf[100], "Hi there");
}
void test4() {
2009-12-15 18:49:47 +00:00
// CHECK: %call = call i8* @__strcpy_chk(i8* getelementptr inbounds ([63 x i8]* @gbuf, i32 0, i64 -1), i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0), i64 0)
2009-11-04 15:04:32 +00:00
strcpy((char*)(void*)&gbuf[-1], "Hi there");
}
void test5() {
2009-12-15 18:49:47 +00:00
// CHECK: %tmp = load i8** @gp
// CHECK-NEXT:%0 = call i64 @llvm.objectsize.i64(i8* %tmp, i32 0)
// CHECK-NEXT:%cmp = icmp ne i64 %0, -1
2009-11-04 15:04:32 +00:00
strcpy(gp, "Hi there");
}
void test6() {
char buf[57];
2009-12-15 18:49:47 +00:00
// CHECK: %call = call i8* @__strcpy_chk(i8* %arrayidx, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0), i64 53)
2009-11-04 15:04:32 +00:00
strcpy(&buf[4], "Hi there");
}
void test7() {
int i;
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* getelementptr inbounds ([63 x i8]* @gbuf, i32 0, i32 0), i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy((++i, gbuf), "Hi there");
}
void test8() {
char *buf[50];
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* %tmp1, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy(buf[++gi], "Hi there");
}
void test9() {
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* %0, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy((char *)((++gi) + gj), "Hi there");
}
char **p;
void test10() {
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* %tmp1, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy(*(++p), "Hi there");
}
void test11() {
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* %tmp, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy(gp = gbuf, "Hi there");
}
void test12() {
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* %ptrincdec, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy(++gp, "Hi there");
}
void test13() {
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* %tmp, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy(gp++, "Hi there");
}
void test14() {
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* %ptrincdec, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy(--gp, "Hi there");
}
void test15() {
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* %tmp, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy(gp--, "Hi there");
}
void test16() {
2009-12-15 18:49:47 +00:00
// CHECK-NOT: __strcpy_chk
// CHECK: %call = call i8* @__inline_strcpy_chk(i8* %tmp1, i8* getelementptr inbounds ([9 x i8]* @.str, i32 0, i32 0))
2009-11-04 15:04:32 +00:00
strcpy(gp += 1, "Hi there");
}