reference.carbon 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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/int.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/interop/cpp/reference.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/interop/cpp/reference.carbon
  12. // --- reference_params.h
  13. class C {};
  14. void TakeCRef(C&);
  15. void TakeCRRef(C&&);
  16. void TakeConstCRef(const C&);
  17. void TakeIntRef(int&);
  18. void TakeIntRRef(int&&);
  19. void TakeConstIntRef(const int&);
  20. // --- pass_references.carbon
  21. library "[[@TEST_NAME]]";
  22. import Cpp library "reference_params.h";
  23. fn PassRefs() {
  24. var c: Cpp.C;
  25. Cpp.TakeCRef(c);
  26. Cpp.TakeCRRef({} as Cpp.C);
  27. Cpp.TakeConstCRef(c);
  28. var n: i32;
  29. Cpp.TakeIntRef(n);
  30. Cpp.TakeIntRRef(42 as i32);
  31. Cpp.TakeConstIntRef(n);
  32. }
  33. // CHECK:STDOUT: ; ModuleID = 'pass_references.carbon'
  34. // CHECK:STDOUT: source_filename = "pass_references.carbon"
  35. // CHECK:STDOUT: target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128"
  36. // CHECK:STDOUT: target triple = "x86_64-unknown-linux-gnu"
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: @C.val.loc9_18.3 = internal constant {} zeroinitializer
  39. // CHECK:STDOUT:
  40. // CHECK:STDOUT: define void @_CPassRefs.Main() !dbg !7 {
  41. // CHECK:STDOUT: entry:
  42. // CHECK:STDOUT: %c.var = alloca {}, align 8, !dbg !10
  43. // CHECK:STDOUT: %.loc9_18.2.temp = alloca {}, align 8, !dbg !11
  44. // CHECK:STDOUT: %n.var = alloca i32, align 4, !dbg !12
  45. // CHECK:STDOUT: %.loc14_22.3.temp = alloca i32, align 4, !dbg !13
  46. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %c.var), !dbg !10
  47. // CHECK:STDOUT: call void @_Z8TakeCRefR1C.carbon_thunk(ptr %c.var), !dbg !14
  48. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %.loc9_18.2.temp), !dbg !11
  49. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 1 %.loc9_18.2.temp, ptr align 1 @C.val.loc9_18.3, i64 0, i1 false), !dbg !11
  50. // CHECK:STDOUT: call void @_Z9TakeCRRefO1C.carbon_thunk(ptr %.loc9_18.2.temp), !dbg !15
  51. // CHECK:STDOUT: call void @_Z13TakeConstCRefRK1C.carbon_thunk(ptr %c.var), !dbg !16
  52. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %n.var), !dbg !12
  53. // CHECK:STDOUT: call void @_Z10TakeIntRefRi.carbon_thunk(ptr %n.var), !dbg !17
  54. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %.loc14_22.3.temp), !dbg !13
  55. // CHECK:STDOUT: store i32 42, ptr %.loc14_22.3.temp, align 4, !dbg !13
  56. // CHECK:STDOUT: call void @_Z11TakeIntRRefOi.carbon_thunk(ptr %.loc14_22.3.temp), !dbg !18
  57. // CHECK:STDOUT: call void @_Z15TakeConstIntRefRKi.carbon_thunk(ptr %n.var), !dbg !19
  58. // CHECK:STDOUT: ret void, !dbg !20
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  62. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #0
  63. // CHECK:STDOUT:
  64. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite)
  65. // CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias writeonly captures(none), ptr noalias readonly captures(none), i64, i1 immarg) #1
  66. // CHECK:STDOUT:
  67. // CHECK:STDOUT: ; Function Attrs: alwaysinline mustprogress
  68. // CHECK:STDOUT: define dso_local void @_Z8TakeCRefR1C.carbon_thunk(ptr %0) #2 {
  69. // CHECK:STDOUT: entry:
  70. // CHECK:STDOUT: %.addr = alloca ptr, align 8
  71. // CHECK:STDOUT: store ptr %0, ptr %.addr, align 8
  72. // CHECK:STDOUT: %1 = load ptr, ptr %.addr, align 8
  73. // CHECK:STDOUT: call void @_Z8TakeCRefR1C(ptr nonnull align 1 dereferenceable(1) %1)
  74. // CHECK:STDOUT: ret void
  75. // CHECK:STDOUT: }
  76. // CHECK:STDOUT:
  77. // CHECK:STDOUT: declare void @_Z8TakeCRefR1C(ptr nonnull align 1 dereferenceable(1)) #3
  78. // CHECK:STDOUT:
  79. // CHECK:STDOUT: ; Function Attrs: alwaysinline mustprogress
  80. // CHECK:STDOUT: define dso_local void @_Z9TakeCRRefO1C.carbon_thunk(ptr %0) #2 {
  81. // CHECK:STDOUT: entry:
  82. // CHECK:STDOUT: %.addr = alloca ptr, align 8
  83. // CHECK:STDOUT: store ptr %0, ptr %.addr, align 8
  84. // CHECK:STDOUT: %1 = load ptr, ptr %.addr, align 8
  85. // CHECK:STDOUT: call void @_Z9TakeCRRefO1C(ptr nonnull align 1 dereferenceable(1) %1)
  86. // CHECK:STDOUT: ret void
  87. // CHECK:STDOUT: }
  88. // CHECK:STDOUT:
  89. // CHECK:STDOUT: declare void @_Z9TakeCRRefO1C(ptr nonnull align 1 dereferenceable(1)) #3
  90. // CHECK:STDOUT:
  91. // CHECK:STDOUT: ; Function Attrs: alwaysinline mustprogress
  92. // CHECK:STDOUT: define dso_local void @_Z13TakeConstCRefRK1C.carbon_thunk(ptr %0) #2 {
  93. // CHECK:STDOUT: entry:
  94. // CHECK:STDOUT: %.addr = alloca ptr, align 8
  95. // CHECK:STDOUT: store ptr %0, ptr %.addr, align 8
  96. // CHECK:STDOUT: %1 = load ptr, ptr %.addr, align 8
  97. // CHECK:STDOUT: call void @_Z13TakeConstCRefRK1C(ptr nonnull align 1 dereferenceable(1) %1)
  98. // CHECK:STDOUT: ret void
  99. // CHECK:STDOUT: }
  100. // CHECK:STDOUT:
  101. // CHECK:STDOUT: declare void @_Z13TakeConstCRefRK1C(ptr nonnull align 1 dereferenceable(1)) #3
  102. // CHECK:STDOUT:
  103. // CHECK:STDOUT: ; Function Attrs: alwaysinline mustprogress
  104. // CHECK:STDOUT: define dso_local void @_Z10TakeIntRefRi.carbon_thunk(ptr %0) #2 {
  105. // CHECK:STDOUT: entry:
  106. // CHECK:STDOUT: %.addr = alloca ptr, align 8
  107. // CHECK:STDOUT: store ptr %0, ptr %.addr, align 8
  108. // CHECK:STDOUT: %1 = load ptr, ptr %.addr, align 8
  109. // CHECK:STDOUT: call void @_Z10TakeIntRefRi(ptr nonnull align 4 dereferenceable(4) %1)
  110. // CHECK:STDOUT: ret void
  111. // CHECK:STDOUT: }
  112. // CHECK:STDOUT:
  113. // CHECK:STDOUT: declare void @_Z10TakeIntRefRi(ptr nonnull align 4 dereferenceable(4)) #3
  114. // CHECK:STDOUT:
  115. // CHECK:STDOUT: ; Function Attrs: alwaysinline mustprogress
  116. // CHECK:STDOUT: define dso_local void @_Z11TakeIntRRefOi.carbon_thunk(ptr %0) #2 {
  117. // CHECK:STDOUT: entry:
  118. // CHECK:STDOUT: %.addr = alloca ptr, align 8
  119. // CHECK:STDOUT: store ptr %0, ptr %.addr, align 8
  120. // CHECK:STDOUT: %1 = load ptr, ptr %.addr, align 8
  121. // CHECK:STDOUT: call void @_Z11TakeIntRRefOi(ptr nonnull align 4 dereferenceable(4) %1)
  122. // CHECK:STDOUT: ret void
  123. // CHECK:STDOUT: }
  124. // CHECK:STDOUT:
  125. // CHECK:STDOUT: declare void @_Z11TakeIntRRefOi(ptr nonnull align 4 dereferenceable(4)) #3
  126. // CHECK:STDOUT:
  127. // CHECK:STDOUT: ; Function Attrs: alwaysinline mustprogress
  128. // CHECK:STDOUT: define dso_local void @_Z15TakeConstIntRefRKi.carbon_thunk(ptr %0) #2 {
  129. // CHECK:STDOUT: entry:
  130. // CHECK:STDOUT: %.addr = alloca ptr, align 8
  131. // CHECK:STDOUT: store ptr %0, ptr %.addr, align 8
  132. // CHECK:STDOUT: %1 = load ptr, ptr %.addr, align 8
  133. // CHECK:STDOUT: call void @_Z15TakeConstIntRefRKi(ptr nonnull align 4 dereferenceable(4) %1)
  134. // CHECK:STDOUT: ret void
  135. // CHECK:STDOUT: }
  136. // CHECK:STDOUT:
  137. // CHECK:STDOUT: declare void @_Z15TakeConstIntRefRKi(ptr nonnull align 4 dereferenceable(4)) #3
  138. // CHECK:STDOUT:
  139. // CHECK:STDOUT: ; uselistorder directives
  140. // CHECK:STDOUT: uselistorder ptr @llvm.lifetime.start.p0, { 3, 2, 1, 0 }
  141. // CHECK:STDOUT:
  142. // CHECK:STDOUT: attributes #0 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  143. // CHECK:STDOUT: attributes #1 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) }
  144. // CHECK:STDOUT: attributes #2 = { alwaysinline mustprogress "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="0" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" }
  145. // CHECK:STDOUT: attributes #3 = { "no-trapping-math"="true" "stack-protector-buffer-size"="0" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" }
  146. // CHECK:STDOUT:
  147. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1, !2, !3, !4}
  148. // CHECK:STDOUT: !llvm.dbg.cu = !{!5}
  149. // CHECK:STDOUT:
  150. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  151. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  152. // CHECK:STDOUT: !2 = !{i32 1, !"wchar_size", i32 4}
  153. // CHECK:STDOUT: !3 = !{i32 8, !"PIC Level", i32 0}
  154. // CHECK:STDOUT: !4 = !{i32 7, !"PIE Level", i32 2}
  155. // CHECK:STDOUT: !5 = distinct !DICompileUnit(language: DW_LANG_C, file: !6, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  156. // CHECK:STDOUT: !6 = !DIFile(filename: "pass_references.carbon", directory: "")
  157. // CHECK:STDOUT: !7 = distinct !DISubprogram(name: "PassRefs", linkageName: "_CPassRefs.Main", scope: null, file: !6, line: 6, type: !8, spFlags: DISPFlagDefinition, unit: !5)
  158. // CHECK:STDOUT: !8 = !DISubroutineType(types: !9)
  159. // CHECK:STDOUT: !9 = !{}
  160. // CHECK:STDOUT: !10 = !DILocation(line: 7, column: 3, scope: !7)
  161. // CHECK:STDOUT: !11 = !DILocation(line: 9, column: 17, scope: !7)
  162. // CHECK:STDOUT: !12 = !DILocation(line: 12, column: 3, scope: !7)
  163. // CHECK:STDOUT: !13 = !DILocation(line: 14, column: 19, scope: !7)
  164. // CHECK:STDOUT: !14 = !DILocation(line: 8, column: 3, scope: !7)
  165. // CHECK:STDOUT: !15 = !DILocation(line: 9, column: 3, scope: !7)
  166. // CHECK:STDOUT: !16 = !DILocation(line: 10, column: 3, scope: !7)
  167. // CHECK:STDOUT: !17 = !DILocation(line: 13, column: 3, scope: !7)
  168. // CHECK:STDOUT: !18 = !DILocation(line: 14, column: 3, scope: !7)
  169. // CHECK:STDOUT: !19 = !DILocation(line: 15, column: 3, scope: !7)
  170. // CHECK:STDOUT: !20 = !DILocation(line: 6, column: 1, scope: !7)