Meador Inge | 000dbcc | 2012-10-18 18:12:40 +0000 | [diff] [blame] | 1 | ; Test that the strcpy library call simplifier works correctly. |
| 2 | ; rdar://6839935 |
| 3 | ; RUN: opt < %s -instcombine -S | FileCheck %s |
| 4 | ; |
| 5 | ; This transformation requires the pointer size, as it assumes that size_t is |
| 6 | ; the size of a pointer. |
| 7 | target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32" |
| 8 | |
| 9 | @hello = constant [6 x i8] c"hello\00" |
| 10 | @a = common global [32 x i8] zeroinitializer, align 1 |
| 11 | @b = common global [32 x i8] zeroinitializer, align 1 |
| 12 | |
| 13 | declare i8* @strcpy(i8*, i8*) |
| 14 | |
| 15 | define void @test_simplify1() { |
Stephen Lin | c1c7a13 | 2013-07-14 01:42:54 +0000 | [diff] [blame] | 16 | ; CHECK-LABEL: @test_simplify1( |
Meador Inge | 000dbcc | 2012-10-18 18:12:40 +0000 | [diff] [blame] | 17 | |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 18 | %dst = getelementptr [32 x i8], [32 x i8]* @a, i32 0, i32 0 |
| 19 | %src = getelementptr [6 x i8], [6 x i8]* @hello, i32 0, i32 0 |
Meador Inge | 000dbcc | 2012-10-18 18:12:40 +0000 | [diff] [blame] | 20 | |
| 21 | call i8* @strcpy(i8* %dst, i8* %src) |
| 22 | ; CHECK: @llvm.memcpy.p0i8.p0i8.i32 |
| 23 | ret void |
| 24 | } |
| 25 | |
| 26 | define i8* @test_simplify2() { |
Stephen Lin | c1c7a13 | 2013-07-14 01:42:54 +0000 | [diff] [blame] | 27 | ; CHECK-LABEL: @test_simplify2( |
Meador Inge | 000dbcc | 2012-10-18 18:12:40 +0000 | [diff] [blame] | 28 | |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 29 | %dst = getelementptr [32 x i8], [32 x i8]* @a, i32 0, i32 0 |
Meador Inge | 000dbcc | 2012-10-18 18:12:40 +0000 | [diff] [blame] | 30 | |
| 31 | %ret = call i8* @strcpy(i8* %dst, i8* %dst) |
David Blaikie | f72d05b | 2015-03-13 18:20:45 +0000 | [diff] [blame] | 32 | ; CHECK: ret i8* getelementptr inbounds ([32 x i8], [32 x i8]* @a, i32 0, i32 0) |
Meador Inge | 000dbcc | 2012-10-18 18:12:40 +0000 | [diff] [blame] | 33 | ret i8* %ret |
| 34 | } |
| 35 | |
| 36 | define i8* @test_no_simplify1() { |
Stephen Lin | c1c7a13 | 2013-07-14 01:42:54 +0000 | [diff] [blame] | 37 | ; CHECK-LABEL: @test_no_simplify1( |
Meador Inge | 000dbcc | 2012-10-18 18:12:40 +0000 | [diff] [blame] | 38 | |
David Blaikie | 79e6c74 | 2015-02-27 19:29:02 +0000 | [diff] [blame] | 39 | %dst = getelementptr [32 x i8], [32 x i8]* @a, i32 0, i32 0 |
| 40 | %src = getelementptr [32 x i8], [32 x i8]* @b, i32 0, i32 0 |
Meador Inge | 000dbcc | 2012-10-18 18:12:40 +0000 | [diff] [blame] | 41 | |
| 42 | %ret = call i8* @strcpy(i8* %dst, i8* %src) |
| 43 | ; CHECK: call i8* @strcpy |
| 44 | ret i8* %ret |
| 45 | } |