strcpy-1.ll 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. @hello = constant [6 x i8] c"hello\00"
  9. @a = common global [32 x i8] zeroinitializer, align 1
  10. @b = common global [32 x i8] zeroinitializer, align 1
  11. declare i8* @strcpy(i8*, i8*)
  12. define void @test_simplify1() {
  13. ; CHECK-LABEL: @test_simplify1(
  14. %dst = getelementptr [32 x i8], [32 x i8]* @a, i32 0, i32 0
  15. %src = getelementptr [6 x i8], [6 x i8]* @hello, i32 0, i32 0
  16. call i8* @strcpy(i8* %dst, i8* %src)
  17. ; CHECK: @llvm.memcpy.p0i8.p0i8.i32
  18. ret void
  19. }
  20. define i8* @test_simplify2() {
  21. ; CHECK-LABEL: @test_simplify2(
  22. %dst = getelementptr [32 x i8], [32 x i8]* @a, i32 0, i32 0
  23. %ret = call i8* @strcpy(i8* %dst, i8* %dst)
  24. ; CHECK: ret i8* getelementptr inbounds ([32 x i8], [32 x i8]* @a, i32 0, i32 0)
  25. ret i8* %ret
  26. }
  27. define i8* @test_no_simplify1() {
  28. ; CHECK-LABEL: @test_no_simplify1(
  29. %dst = getelementptr [32 x i8], [32 x i8]* @a, i32 0, i32 0
  30. %src = getelementptr [32 x i8], [32 x i8]* @b, i32 0, i32 0
  31. %ret = call i8* @strcpy(i8* %dst, i8* %src)
  32. ; CHECK: call i8* @strcpy
  33. ret i8* %ret
  34. }