call_recursive_reorder.carbon 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/full.carbon
  6. //
  7. // AUTOUPDATE
  8. // TIP: To test this file alone, run:
  9. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/function/generic/call_recursive_reorder.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/function/generic/call_recursive_reorder.carbon
  12. // Builds on `call_recursive_basic.carbon`.
  13. fn F[T:! type, U:! type](x: T, y: U, count: i32) -> i32 {
  14. if (count > 2) {
  15. return count;
  16. }
  17. return F(y, x, count + 1);
  18. }
  19. fn M() {
  20. var ptr_i32 : i32*;
  21. var ptr_f64 : f64*;
  22. var ptr_bool : bool*;
  23. F(ptr_i32, ptr_bool, 0);
  24. F(ptr_f64, ptr_bool, 0);
  25. }
  26. // CHECK:STDOUT: ; ModuleID = 'call_recursive_reorder.carbon'
  27. // CHECK:STDOUT: source_filename = "call_recursive_reorder.carbon"
  28. // CHECK:STDOUT:
  29. // CHECK:STDOUT: ; Function Attrs: nounwind
  30. // CHECK:STDOUT: define void @_CM.Main() #0 !dbg !4 {
  31. // CHECK:STDOUT: entry:
  32. // CHECK:STDOUT: %ptr_i32.var = alloca ptr, align 8, !dbg !7
  33. // CHECK:STDOUT: %ptr_f64.var = alloca ptr, align 8, !dbg !8
  34. // CHECK:STDOUT: %ptr_bool.var = alloca ptr, align 8, !dbg !9
  35. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %ptr_i32.var), !dbg !7
  36. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %ptr_f64.var), !dbg !8
  37. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %ptr_bool.var), !dbg !9
  38. // CHECK:STDOUT: %.loc27_5 = load ptr, ptr %ptr_i32.var, align 8, !dbg !10
  39. // CHECK:STDOUT: %.loc27_14 = load ptr, ptr %ptr_bool.var, align 8, !dbg !11
  40. // CHECK:STDOUT: %F.call.loc27 = call i32 @_CF.Main.2fe87eb83f5a4614(ptr %.loc27_5, ptr %.loc27_14, i32 0), !dbg !12
  41. // CHECK:STDOUT: %.loc28_5 = load ptr, ptr %ptr_f64.var, align 8, !dbg !13
  42. // CHECK:STDOUT: %.loc28_14 = load ptr, ptr %ptr_bool.var, align 8, !dbg !14
  43. // CHECK:STDOUT: %F.call.loc28 = call i32 @_CF.Main.2fe87eb83f5a4614(ptr %.loc28_5, ptr %.loc28_14, i32 0), !dbg !15
  44. // CHECK:STDOUT: ret void, !dbg !16
  45. // CHECK:STDOUT: }
  46. // CHECK:STDOUT:
  47. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  48. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
  49. // CHECK:STDOUT:
  50. // CHECK:STDOUT: ; Function Attrs: nounwind
  51. // CHECK:STDOUT: define linkonce_odr i32 @_CF.Main.2fe87eb83f5a4614(ptr %x, ptr %y, i32 %count) #0 !dbg !17 {
  52. // CHECK:STDOUT: entry:
  53. // CHECK:STDOUT: %Int.as.OrderedWith.impl.Greater.call = icmp sgt i32 %count, 2, !dbg !26
  54. // CHECK:STDOUT: br i1 %Int.as.OrderedWith.impl.Greater.call, label %if.then, label %if.else, !dbg !27
  55. // CHECK:STDOUT:
  56. // CHECK:STDOUT: if.then: ; preds = %entry
  57. // CHECK:STDOUT: ret i32 %count, !dbg !28
  58. // CHECK:STDOUT:
  59. // CHECK:STDOUT: if.else: ; preds = %entry
  60. // CHECK:STDOUT: %Int.as.AddWith.impl.Op.call = add i32 %count, 1, !dbg !29
  61. // CHECK:STDOUT: %F.call = call i32 @_CF.Main.2fe87eb83f5a4614(ptr %y, ptr %x, i32 %Int.as.AddWith.impl.Op.call), !dbg !30
  62. // CHECK:STDOUT: ret i32 %F.call, !dbg !31
  63. // CHECK:STDOUT: }
  64. // CHECK:STDOUT:
  65. // CHECK:STDOUT: ; uselistorder directives
  66. // CHECK:STDOUT: uselistorder ptr @llvm.lifetime.start.p0, { 2, 1, 0 }
  67. // CHECK:STDOUT: uselistorder ptr @_CF.Main.2fe87eb83f5a4614, { 0, 2, 1 }
  68. // CHECK:STDOUT:
  69. // CHECK:STDOUT: attributes #0 = { nounwind }
  70. // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  73. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  74. // CHECK:STDOUT:
  75. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  76. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  77. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  78. // CHECK:STDOUT: !3 = !DIFile(filename: "call_recursive_reorder.carbon", directory: "")
  79. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "M", linkageName: "_CM.Main", scope: null, file: !3, line: 22, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  80. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  81. // CHECK:STDOUT: !6 = !{null}
  82. // CHECK:STDOUT: !7 = !DILocation(line: 23, column: 3, scope: !4)
  83. // CHECK:STDOUT: !8 = !DILocation(line: 24, column: 3, scope: !4)
  84. // CHECK:STDOUT: !9 = !DILocation(line: 25, column: 3, scope: !4)
  85. // CHECK:STDOUT: !10 = !DILocation(line: 27, column: 5, scope: !4)
  86. // CHECK:STDOUT: !11 = !DILocation(line: 27, column: 14, scope: !4)
  87. // CHECK:STDOUT: !12 = !DILocation(line: 27, column: 3, scope: !4)
  88. // CHECK:STDOUT: !13 = !DILocation(line: 28, column: 5, scope: !4)
  89. // CHECK:STDOUT: !14 = !DILocation(line: 28, column: 14, scope: !4)
  90. // CHECK:STDOUT: !15 = !DILocation(line: 28, column: 3, scope: !4)
  91. // CHECK:STDOUT: !16 = !DILocation(line: 22, column: 1, scope: !4)
  92. // CHECK:STDOUT: !17 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main.2fe87eb83f5a4614", scope: null, file: !3, line: 15, type: !18, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !22)
  93. // CHECK:STDOUT: !18 = !DISubroutineType(types: !19)
  94. // CHECK:STDOUT: !19 = !{!20, !21, !21, !20}
  95. // CHECK:STDOUT: !20 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  96. // CHECK:STDOUT: !21 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  97. // CHECK:STDOUT: !22 = !{!23, !24, !25}
  98. // CHECK:STDOUT: !23 = !DILocalVariable(arg: 1, scope: !17, type: !21)
  99. // CHECK:STDOUT: !24 = !DILocalVariable(arg: 2, scope: !17, type: !21)
  100. // CHECK:STDOUT: !25 = !DILocalVariable(arg: 3, scope: !17, type: !20)
  101. // CHECK:STDOUT: !26 = !DILocation(line: 16, column: 7, scope: !17)
  102. // CHECK:STDOUT: !27 = !DILocation(line: 16, column: 6, scope: !17)
  103. // CHECK:STDOUT: !28 = !DILocation(line: 17, column: 5, scope: !17)
  104. // CHECK:STDOUT: !29 = !DILocation(line: 19, column: 18, scope: !17)
  105. // CHECK:STDOUT: !30 = !DILocation(line: 19, column: 10, scope: !17)
  106. // CHECK:STDOUT: !31 = !DILocation(line: 19, column: 3, scope: !17)