2003-08-17-FoldSwitch-dbg.ll 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ; RUN: opt < %s -simplifycfg -S | FileCheck %s
  2. ; CHECK-NOT: switch
  3. %llvm.dbg.anchor.type = type { i32, i32 }
  4. %llvm.dbg.compile_unit.type = type { i32, { }*, i32, i8*, i8*, i8*, i1, i1, i8* }
  5. @llvm.dbg.compile_units = linkonce constant %llvm.dbg.anchor.type { i32 458752, i32 17 }, section "llvm.metadata"
  6. @.str = internal constant [4 x i8] c"a.c\00", section "llvm.metadata" ; <[4 x i8]*> [#uses=1]
  7. @.str1 = internal constant [6 x i8] c"/tmp/\00", section "llvm.metadata" ; <[6 x i8]*> [#uses=1]
  8. @.str2 = internal constant [55 x i8] c"4.2.1 (Based on Apple Inc. build 5636) (LLVM build 00)\00", section "llvm.metadata" ; <[55 x i8]*> [#uses=1]
  9. @llvm.dbg.compile_unit = internal constant %llvm.dbg.compile_unit.type { i32 458769, { }* bitcast (%llvm.dbg.anchor.type* @llvm.dbg.compile_units to { }*), i32 1, i8* getelementptr ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i8* getelementptr ([6 x i8], [6 x i8]* @.str1, i32 0, i32 0), i8* getelementptr ([55 x i8], [55 x i8]* @.str2, i32 0, i32 0), i1 true, i1 false, i8* null }, section "llvm.metadata" ; <%llvm.dbg.compile_unit.type*> [#uses=1]
  10. declare void @llvm.dbg.stoppoint(i32, i32, { }*) nounwind
  11. ; Test folding all to same dest
  12. define i32 @test3(i1 %C) {
  13. br i1 %C, label %Start, label %TheDest
  14. Start: ; preds = %0
  15. call void @llvm.dbg.stoppoint(i32 5, i32 0, { }* bitcast (%llvm.dbg.compile_unit.type* @llvm.dbg.compile_unit to { }*))
  16. switch i32 3, label %TheDest [
  17. i32 0, label %TheDest
  18. i32 1, label %TheDest
  19. i32 2, label %TheDest
  20. i32 5, label %TheDest
  21. ]
  22. TheDest: ; preds = %Start, %Start, %Start, %Start, %Start, %0
  23. ret i32 1234
  24. }
  25. ; Test folding switch -> branch
  26. define i32 @test4(i32 %C) {
  27. switch i32 %C, label %L1 [
  28. i32 0, label %L2
  29. ]
  30. L1: ; preds = %0
  31. call void @llvm.dbg.stoppoint(i32 5, i32 0, { }* bitcast (%llvm.dbg.compile_unit.type* @llvm.dbg.compile_unit to { }*))
  32. ret i32 0
  33. L2: ; preds = %0
  34. call void @llvm.dbg.stoppoint(i32 5, i32 0, { }* bitcast (%llvm.dbg.compile_unit.type* @llvm.dbg.compile_unit to { }*))
  35. ret i32 1
  36. }
  37. ; Can fold into a cond branch!
  38. define i32 @test5(i32 %C) {
  39. switch i32 %C, label %L1 [
  40. i32 0, label %L2
  41. i32 123, label %L1
  42. ]
  43. L1: ; preds = %0, %0
  44. call void @llvm.dbg.stoppoint(i32 5, i32 0, { }* bitcast (%llvm.dbg.compile_unit.type* @llvm.dbg.compile_unit to { }*))
  45. ret i32 0
  46. L2: ; preds = %0
  47. call void @llvm.dbg.stoppoint(i32 5, i32 0, { }* bitcast (%llvm.dbg.compile_unit.type* @llvm.dbg.compile_unit to { }*))
  48. ret i32 1
  49. }