generic.carbon 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  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/primitives.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/class/generic.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/class/generic.carbon
  12. // --- classes.carbon
  13. package Classes;
  14. base class Base(T:! type) {
  15. var b: T;
  16. }
  17. class Derived(T:! type) {
  18. extend base: Base(T);
  19. var d: T;
  20. }
  21. class Adapter(T:! type) {
  22. extend adapt Derived(T);
  23. }
  24. // --- create.carbon
  25. package Create;
  26. import Classes;
  27. fn CreateDerived() -> Classes.Derived(i32) {
  28. return {.base = {.b = 1}, .d = 2};
  29. }
  30. fn CreateAdapter() -> Classes.Adapter(i32) {
  31. return CreateDerived() as Classes.Adapter(i32);
  32. }
  33. // --- create_generic.carbon
  34. library "[[@TEST_NAME]]";
  35. class A(T:! type) {
  36. var x: T;
  37. var y: T;
  38. }
  39. fn Make[T:! Core.Copy](x: T, y: T) -> A(T) {
  40. return {.x = x, .y = y};
  41. }
  42. fn Ints() -> A(i32) {
  43. return Make(1 as i32, 2 as i32);
  44. }
  45. fn Empty() -> A(()) {
  46. return Make((), ());
  47. }
  48. fn Tuples() -> A((i32, i32)) {
  49. let x: (i32, i32) = (1, 2);
  50. return Make(x, x);
  51. }
  52. // --- access.carbon
  53. library "[[@TEST_NAME]]";
  54. class C(T:! Core.Copy) {
  55. fn GetBool[self: Self]() -> bool {
  56. return self.v;
  57. }
  58. fn GetT[self: Self]() -> T {
  59. return self.w;
  60. }
  61. var v: bool;
  62. var w: T;
  63. }
  64. fn AccessBool() -> bool {
  65. var c: C(i32) = {.v = true, .w = 0};
  66. return c.GetBool();
  67. }
  68. fn AccessInt() -> i32 {
  69. var c: C(i32) = {.v = true, .w = 0};
  70. return c.GetT();
  71. }
  72. fn AccessEmpty() -> () {
  73. var c: C(()) = {.v = true, .w = ()};
  74. return c.GetT();
  75. }
  76. fn AccessTuple() -> (i32, i32, i32) {
  77. var c: C((i32, i32, i32)) = {.v = true, .w = (1, 2, 3)};
  78. return c.GetT();
  79. }
  80. // CHECK:STDOUT: ; ModuleID = 'classes.carbon'
  81. // CHECK:STDOUT: source_filename = "classes.carbon"
  82. // CHECK:STDOUT:
  83. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  84. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  85. // CHECK:STDOUT:
  86. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  87. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  88. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  89. // CHECK:STDOUT: !3 = !DIFile(filename: "classes.carbon", directory: "")
  90. // CHECK:STDOUT: ; ModuleID = 'create.carbon'
  91. // CHECK:STDOUT: source_filename = "create.carbon"
  92. // CHECK:STDOUT:
  93. // CHECK:STDOUT: @Derived.val.loc7_36 = internal constant { { i32 }, i32 } { { i32 } { i32 1 }, i32 2 }
  94. // CHECK:STDOUT:
  95. // CHECK:STDOUT: ; Function Attrs: nounwind
  96. // CHECK:STDOUT: define void @_CCreateDerived.Create(ptr sret({ { i32 }, i32 }) %return) #0 !dbg !4 {
  97. // CHECK:STDOUT: entry:
  98. // CHECK:STDOUT: %.loc7_35.2.base = getelementptr inbounds nuw { { i32 }, i32 }, ptr %return, i32 0, i32 0, !dbg !8
  99. // CHECK:STDOUT: %.loc7_26.3.b = getelementptr inbounds nuw { i32 }, ptr %.loc7_35.2.base, i32 0, i32 0, !dbg !9
  100. // CHECK:STDOUT: %.loc7_35.6.d = getelementptr inbounds nuw { { i32 }, i32 }, ptr %return, i32 0, i32 1, !dbg !8
  101. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %return, ptr align 4 @Derived.val.loc7_36, i64 8, i1 false), !dbg !10
  102. // CHECK:STDOUT: ret void, !dbg !10
  103. // CHECK:STDOUT: }
  104. // CHECK:STDOUT:
  105. // CHECK:STDOUT: ; Function Attrs: nounwind
  106. // CHECK:STDOUT: define void @_CCreateAdapter.Create(ptr sret({ { i32 }, i32 }) %return) #0 !dbg !11 {
  107. // CHECK:STDOUT: entry:
  108. // CHECK:STDOUT: call void @_CCreateDerived.Create(ptr %return), !dbg !12
  109. // CHECK:STDOUT: ret void, !dbg !13
  110. // CHECK:STDOUT: }
  111. // CHECK:STDOUT:
  112. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite)
  113. // CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias writeonly captures(none), ptr noalias readonly captures(none), i64, i1 immarg) #1
  114. // CHECK:STDOUT:
  115. // CHECK:STDOUT: attributes #0 = { nounwind }
  116. // CHECK:STDOUT: attributes #1 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) }
  117. // CHECK:STDOUT:
  118. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  119. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  120. // CHECK:STDOUT:
  121. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  122. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  123. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  124. // CHECK:STDOUT: !3 = !DIFile(filename: "create.carbon", directory: "")
  125. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "CreateDerived", linkageName: "_CCreateDerived.Create", scope: null, file: !3, line: 6, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  126. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  127. // CHECK:STDOUT: !6 = !{!7}
  128. // CHECK:STDOUT: !7 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  129. // CHECK:STDOUT: !8 = !DILocation(line: 7, column: 10, scope: !4)
  130. // CHECK:STDOUT: !9 = !DILocation(line: 7, column: 19, scope: !4)
  131. // CHECK:STDOUT: !10 = !DILocation(line: 7, column: 3, scope: !4)
  132. // CHECK:STDOUT: !11 = distinct !DISubprogram(name: "CreateAdapter", linkageName: "_CCreateAdapter.Create", scope: null, file: !3, line: 10, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  133. // CHECK:STDOUT: !12 = !DILocation(line: 11, column: 10, scope: !11)
  134. // CHECK:STDOUT: !13 = !DILocation(line: 11, column: 3, scope: !11)
  135. // CHECK:STDOUT: ; ModuleID = 'create_generic.carbon'
  136. // CHECK:STDOUT: source_filename = "create_generic.carbon"
  137. // CHECK:STDOUT:
  138. // CHECK:STDOUT: @tuple.21c.loc22_28.6 = internal constant { i32, i32 } { i32 1, i32 2 }
  139. // CHECK:STDOUT:
  140. // CHECK:STDOUT: ; Function Attrs: nounwind
  141. // CHECK:STDOUT: define void @_CInts.Main(ptr sret({ i32, i32 }) %return) #0 !dbg !4 {
  142. // CHECK:STDOUT: entry:
  143. // CHECK:STDOUT: call void @_CMake.Main.64ccbb8e5d9a0b8e(ptr %return, i32 1, i32 2), !dbg !8
  144. // CHECK:STDOUT: ret void, !dbg !9
  145. // CHECK:STDOUT: }
  146. // CHECK:STDOUT:
  147. // CHECK:STDOUT: ; Function Attrs: nounwind
  148. // CHECK:STDOUT: define void @_CEmpty.Main(ptr sret({ {}, {} }) %return) #0 !dbg !10 {
  149. // CHECK:STDOUT: entry:
  150. // CHECK:STDOUT: call void @_CMake.Main.335f6bfc3bd91486(ptr %return), !dbg !11
  151. // CHECK:STDOUT: ret void, !dbg !12
  152. // CHECK:STDOUT: }
  153. // CHECK:STDOUT:
  154. // CHECK:STDOUT: ; Function Attrs: nounwind
  155. // CHECK:STDOUT: define void @_CTuples.Main(ptr sret({ { i32, i32 }, { i32, i32 } }) %return) #0 !dbg !13 {
  156. // CHECK:STDOUT: entry:
  157. // CHECK:STDOUT: call void @_CMake.Main.7af4aab1086ddeeb(ptr %return, ptr @tuple.21c.loc22_28.6, ptr @tuple.21c.loc22_28.6), !dbg !14
  158. // CHECK:STDOUT: ret void, !dbg !15
  159. // CHECK:STDOUT: }
  160. // CHECK:STDOUT:
  161. // CHECK:STDOUT: ; Function Attrs: nounwind
  162. // CHECK:STDOUT: define linkonce_odr void @_CMake.Main.64ccbb8e5d9a0b8e(ptr sret({ i32, i32 }) %return, i32 %x, i32 %y) #0 !dbg !16 {
  163. // CHECK:STDOUT: entry:
  164. // CHECK:STDOUT: %.loc10_25.2.x = getelementptr inbounds nuw { i32, i32 }, ptr %return, i32 0, i32 0, !dbg !23
  165. // CHECK:STDOUT: store i32 %x, ptr %.loc10_25.2.x, align 4, !dbg !23
  166. // CHECK:STDOUT: %.loc10_25.4.y = getelementptr inbounds nuw { i32, i32 }, ptr %return, i32 0, i32 1, !dbg !23
  167. // CHECK:STDOUT: store i32 %y, ptr %.loc10_25.4.y, align 4, !dbg !23
  168. // CHECK:STDOUT: ret void, !dbg !24
  169. // CHECK:STDOUT: }
  170. // CHECK:STDOUT:
  171. // CHECK:STDOUT: ; Function Attrs: nounwind
  172. // CHECK:STDOUT: define linkonce_odr void @_CMake.Main.335f6bfc3bd91486(ptr sret({ {}, {} }) %return) #0 !dbg !25 {
  173. // CHECK:STDOUT: entry:
  174. // CHECK:STDOUT: %.loc10_25.2.x = getelementptr inbounds nuw { {}, {} }, ptr %return, i32 0, i32 0, !dbg !26
  175. // CHECK:STDOUT: %.loc10_25.4.y = getelementptr inbounds nuw { {}, {} }, ptr %return, i32 0, i32 1, !dbg !26
  176. // CHECK:STDOUT: ret void, !dbg !27
  177. // CHECK:STDOUT: }
  178. // CHECK:STDOUT:
  179. // CHECK:STDOUT: ; Function Attrs: nounwind
  180. // CHECK:STDOUT: define linkonce_odr void @_CMake.Main.7af4aab1086ddeeb(ptr sret({ { i32, i32 }, { i32, i32 } }) %return, ptr %x, ptr %y) #0 !dbg !28 {
  181. // CHECK:STDOUT: entry:
  182. // CHECK:STDOUT: %.loc10_25.2.x = getelementptr inbounds nuw { { i32, i32 }, { i32, i32 } }, ptr %return, i32 0, i32 0, !dbg !34
  183. // CHECK:STDOUT: call void @"_COp.e4daa70d026fdea2:Copy.Core.3e36085cb869f630"(ptr %.loc10_25.2.x, ptr %x), !dbg !35
  184. // CHECK:STDOUT: %.loc10_25.4.y = getelementptr inbounds nuw { { i32, i32 }, { i32, i32 } }, ptr %return, i32 0, i32 1, !dbg !34
  185. // CHECK:STDOUT: call void @"_COp.e4daa70d026fdea2:Copy.Core.3e36085cb869f630"(ptr %.loc10_25.4.y, ptr %y), !dbg !36
  186. // CHECK:STDOUT: ret void, !dbg !37
  187. // CHECK:STDOUT: }
  188. // CHECK:STDOUT:
  189. // CHECK:STDOUT: ; Function Attrs: nounwind
  190. // CHECK:STDOUT: define linkonce_odr void @"_COp.e4daa70d026fdea2:Copy.Core.3e36085cb869f630"(ptr sret({ i32, i32 }) %return, ptr %self) #0 !dbg !38 {
  191. // CHECK:STDOUT: %tuple.elem = getelementptr inbounds nuw { i32, i32 }, ptr %self, i32 0, i32 0, !dbg !44
  192. // CHECK:STDOUT: %tuple.elem.load = load i32, ptr %tuple.elem, align 4, !dbg !44
  193. // CHECK:STDOUT: %tuple.elem1 = getelementptr inbounds nuw { i32, i32 }, ptr %return, i32 0, i32 0, !dbg !45
  194. // CHECK:STDOUT: %tuple.elem2 = getelementptr inbounds nuw { i32, i32 }, ptr %self, i32 0, i32 1, !dbg !46
  195. // CHECK:STDOUT: %tuple.elem.load3 = load i32, ptr %tuple.elem2, align 4, !dbg !46
  196. // CHECK:STDOUT: %tuple.elem4 = getelementptr inbounds nuw { i32, i32 }, ptr %return, i32 0, i32 1, !dbg !45
  197. // CHECK:STDOUT: store i32 %tuple.elem.load, ptr %tuple.elem1, align 4, !dbg !45
  198. // CHECK:STDOUT: store i32 %tuple.elem.load3, ptr %tuple.elem4, align 4, !dbg !45
  199. // CHECK:STDOUT: ret void, !dbg !47
  200. // CHECK:STDOUT: }
  201. // CHECK:STDOUT:
  202. // CHECK:STDOUT: ; uselistorder directives
  203. // CHECK:STDOUT: uselistorder ptr @"_COp.e4daa70d026fdea2:Copy.Core.3e36085cb869f630", { 1, 0 }
  204. // CHECK:STDOUT:
  205. // CHECK:STDOUT: attributes #0 = { nounwind }
  206. // CHECK:STDOUT:
  207. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  208. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  209. // CHECK:STDOUT:
  210. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  211. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  212. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  213. // CHECK:STDOUT: !3 = !DIFile(filename: "create_generic.carbon", directory: "")
  214. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "Ints", linkageName: "_CInts.Main", scope: null, file: !3, line: 13, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  215. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  216. // CHECK:STDOUT: !6 = !{!7}
  217. // CHECK:STDOUT: !7 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  218. // CHECK:STDOUT: !8 = !DILocation(line: 14, column: 10, scope: !4)
  219. // CHECK:STDOUT: !9 = !DILocation(line: 14, column: 3, scope: !4)
  220. // CHECK:STDOUT: !10 = distinct !DISubprogram(name: "Empty", linkageName: "_CEmpty.Main", scope: null, file: !3, line: 17, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  221. // CHECK:STDOUT: !11 = !DILocation(line: 18, column: 10, scope: !10)
  222. // CHECK:STDOUT: !12 = !DILocation(line: 18, column: 3, scope: !10)
  223. // CHECK:STDOUT: !13 = distinct !DISubprogram(name: "Tuples", linkageName: "_CTuples.Main", scope: null, file: !3, line: 21, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  224. // CHECK:STDOUT: !14 = !DILocation(line: 23, column: 10, scope: !13)
  225. // CHECK:STDOUT: !15 = !DILocation(line: 23, column: 3, scope: !13)
  226. // CHECK:STDOUT: !16 = distinct !DISubprogram(name: "Make", linkageName: "_CMake.Main.64ccbb8e5d9a0b8e", scope: null, file: !3, line: 9, type: !17, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !20)
  227. // CHECK:STDOUT: !17 = !DISubroutineType(types: !18)
  228. // CHECK:STDOUT: !18 = !{!7, !19, !19}
  229. // CHECK:STDOUT: !19 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  230. // CHECK:STDOUT: !20 = !{!21, !22}
  231. // CHECK:STDOUT: !21 = !DILocalVariable(arg: 1, scope: !16, type: !19)
  232. // CHECK:STDOUT: !22 = !DILocalVariable(arg: 2, scope: !16, type: !19)
  233. // CHECK:STDOUT: !23 = !DILocation(line: 10, column: 10, scope: !16)
  234. // CHECK:STDOUT: !24 = !DILocation(line: 10, column: 3, scope: !16)
  235. // CHECK:STDOUT: !25 = distinct !DISubprogram(name: "Make", linkageName: "_CMake.Main.335f6bfc3bd91486", scope: null, file: !3, line: 9, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  236. // CHECK:STDOUT: !26 = !DILocation(line: 10, column: 10, scope: !25)
  237. // CHECK:STDOUT: !27 = !DILocation(line: 10, column: 3, scope: !25)
  238. // CHECK:STDOUT: !28 = distinct !DISubprogram(name: "Make", linkageName: "_CMake.Main.7af4aab1086ddeeb", scope: null, file: !3, line: 9, type: !29, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !31)
  239. // CHECK:STDOUT: !29 = !DISubroutineType(types: !30)
  240. // CHECK:STDOUT: !30 = !{!7, !7, !7}
  241. // CHECK:STDOUT: !31 = !{!32, !33}
  242. // CHECK:STDOUT: !32 = !DILocalVariable(arg: 1, scope: !28, type: !7)
  243. // CHECK:STDOUT: !33 = !DILocalVariable(arg: 2, scope: !28, type: !7)
  244. // CHECK:STDOUT: !34 = !DILocation(line: 10, column: 10, scope: !28)
  245. // CHECK:STDOUT: !35 = !DILocation(line: 10, column: 16, scope: !28)
  246. // CHECK:STDOUT: !36 = !DILocation(line: 10, column: 24, scope: !28)
  247. // CHECK:STDOUT: !37 = !DILocation(line: 10, column: 3, scope: !28)
  248. // CHECK:STDOUT: !38 = distinct !DISubprogram(name: "Op", linkageName: "_COp.e4daa70d026fdea2:Copy.Core.3e36085cb869f630", scope: null, file: !39, line: 48, type: !40, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !42)
  249. // CHECK:STDOUT: !39 = !DIFile(filename: "min_prelude/parts/copy.carbon", directory: "")
  250. // CHECK:STDOUT: !40 = !DISubroutineType(types: !41)
  251. // CHECK:STDOUT: !41 = !{!7, !7}
  252. // CHECK:STDOUT: !42 = !{!43}
  253. // CHECK:STDOUT: !43 = !DILocalVariable(arg: 1, scope: !38, type: !7)
  254. // CHECK:STDOUT: !44 = !DILocation(line: 49, column: 13, scope: !38)
  255. // CHECK:STDOUT: !45 = !DILocation(line: 49, column: 12, scope: !38)
  256. // CHECK:STDOUT: !46 = !DILocation(line: 49, column: 26, scope: !38)
  257. // CHECK:STDOUT: !47 = !DILocation(line: 49, column: 5, scope: !38)
  258. // CHECK:STDOUT: ; ModuleID = 'access.carbon'
  259. // CHECK:STDOUT: source_filename = "access.carbon"
  260. // CHECK:STDOUT:
  261. // CHECK:STDOUT: @C.val.310.loc16_3 = internal constant { i1, i32 } { i1 true, i32 0 }
  262. // CHECK:STDOUT: @C.val.8d5.loc26_3 = internal constant { i1, {} } { i1 true, {} zeroinitializer }
  263. // CHECK:STDOUT: @C.val.76f.loc31_3 = internal constant { i1, { i32, i32, i32 } } { i1 true, { i32, i32, i32 } { i32 1, i32 2, i32 3 } }
  264. // CHECK:STDOUT:
  265. // CHECK:STDOUT: ; Function Attrs: nounwind
  266. // CHECK:STDOUT: define i1 @_CAccessBool.Main() #0 !dbg !4 {
  267. // CHECK:STDOUT: entry:
  268. // CHECK:STDOUT: %c.var = alloca { i1, i32 }, align 8, !dbg !8
  269. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %c.var), !dbg !8
  270. // CHECK:STDOUT: %.loc16_37.2.v = getelementptr inbounds nuw { i1, i32 }, ptr %c.var, i32 0, i32 0, !dbg !9
  271. // CHECK:STDOUT: %.loc16_37.5.w = getelementptr inbounds nuw { i1, i32 }, ptr %c.var, i32 0, i32 1, !dbg !9
  272. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %c.var, ptr align 4 @C.val.310.loc16_3, i64 8, i1 false), !dbg !8
  273. // CHECK:STDOUT: %C.GetBool.call = call i1 @_CGetBool.C.Main.64ccbb8e5d9a0b8e(ptr %c.var), !dbg !10
  274. // CHECK:STDOUT: ret i1 %C.GetBool.call, !dbg !11
  275. // CHECK:STDOUT: }
  276. // CHECK:STDOUT:
  277. // CHECK:STDOUT: ; Function Attrs: nounwind
  278. // CHECK:STDOUT: define i32 @_CAccessInt.Main() #0 !dbg !12 {
  279. // CHECK:STDOUT: entry:
  280. // CHECK:STDOUT: %c.var = alloca { i1, i32 }, align 8, !dbg !16
  281. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %c.var), !dbg !16
  282. // CHECK:STDOUT: %.loc21_37.2.v = getelementptr inbounds nuw { i1, i32 }, ptr %c.var, i32 0, i32 0, !dbg !17
  283. // CHECK:STDOUT: %.loc21_37.5.w = getelementptr inbounds nuw { i1, i32 }, ptr %c.var, i32 0, i32 1, !dbg !17
  284. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %c.var, ptr align 4 @C.val.310.loc16_3, i64 8, i1 false), !dbg !16
  285. // CHECK:STDOUT: %C.GetT.call = call i32 @_CGetT.C.Main.64ccbb8e5d9a0b8e(ptr %c.var), !dbg !18
  286. // CHECK:STDOUT: ret i32 %C.GetT.call, !dbg !19
  287. // CHECK:STDOUT: }
  288. // CHECK:STDOUT:
  289. // CHECK:STDOUT: ; Function Attrs: nounwind
  290. // CHECK:STDOUT: define void @_CAccessEmpty.Main() #0 !dbg !20 {
  291. // CHECK:STDOUT: entry:
  292. // CHECK:STDOUT: %c.var = alloca { i1, {} }, align 8, !dbg !23
  293. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %c.var), !dbg !23
  294. // CHECK:STDOUT: %.loc26_37.2.v = getelementptr inbounds nuw { i1, {} }, ptr %c.var, i32 0, i32 0, !dbg !24
  295. // CHECK:STDOUT: %.loc26_37.4.w = getelementptr inbounds nuw { i1, {} }, ptr %c.var, i32 0, i32 1, !dbg !24
  296. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 1 %c.var, ptr align 1 @C.val.8d5.loc26_3, i64 1, i1 false), !dbg !23
  297. // CHECK:STDOUT: call void @_CGetT.C.Main.335f6bfc3bd91486(ptr %c.var), !dbg !25
  298. // CHECK:STDOUT: ret void, !dbg !26
  299. // CHECK:STDOUT: }
  300. // CHECK:STDOUT:
  301. // CHECK:STDOUT: ; Function Attrs: nounwind
  302. // CHECK:STDOUT: define void @_CAccessTuple.Main(ptr sret({ i32, i32, i32 }) %return) #0 !dbg !27 {
  303. // CHECK:STDOUT: entry:
  304. // CHECK:STDOUT: %c.var = alloca { i1, { i32, i32, i32 } }, align 8, !dbg !28
  305. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %c.var), !dbg !28
  306. // CHECK:STDOUT: %.loc31_57.2.v = getelementptr inbounds nuw { i1, { i32, i32, i32 } }, ptr %c.var, i32 0, i32 0, !dbg !29
  307. // CHECK:STDOUT: %.loc31_57.4.w = getelementptr inbounds nuw { i1, { i32, i32, i32 } }, ptr %c.var, i32 0, i32 1, !dbg !29
  308. // CHECK:STDOUT: %tuple.elem0.tuple.elem = getelementptr inbounds nuw { i32, i32, i32 }, ptr %.loc31_57.4.w, i32 0, i32 0, !dbg !30
  309. // CHECK:STDOUT: %tuple.elem1.tuple.elem = getelementptr inbounds nuw { i32, i32, i32 }, ptr %.loc31_57.4.w, i32 0, i32 1, !dbg !30
  310. // CHECK:STDOUT: %tuple.elem2.tuple.elem = getelementptr inbounds nuw { i32, i32, i32 }, ptr %.loc31_57.4.w, i32 0, i32 2, !dbg !30
  311. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %c.var, ptr align 4 @C.val.76f.loc31_3, i64 16, i1 false), !dbg !28
  312. // CHECK:STDOUT: call void @_CGetT.C.Main.3ae0849a77989a11(ptr %return, ptr %c.var), !dbg !31
  313. // CHECK:STDOUT: ret void, !dbg !32
  314. // CHECK:STDOUT: }
  315. // CHECK:STDOUT:
  316. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  317. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
  318. // CHECK:STDOUT:
  319. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite)
  320. // CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias writeonly captures(none), ptr noalias readonly captures(none), i64, i1 immarg) #2
  321. // CHECK:STDOUT:
  322. // CHECK:STDOUT: ; Function Attrs: nounwind
  323. // CHECK:STDOUT: define linkonce_odr i1 @_CGetBool.C.Main.64ccbb8e5d9a0b8e(ptr %self) #0 !dbg !33 {
  324. // CHECK:STDOUT: entry:
  325. // CHECK:STDOUT: %.loc6_16.1.v = getelementptr inbounds nuw { i1, i32 }, ptr %self, i32 0, i32 0, !dbg !38
  326. // CHECK:STDOUT: %.loc6_16.2 = load i8, ptr %.loc6_16.1.v, align 1, !dbg !38
  327. // CHECK:STDOUT: %.loc6_16.21 = trunc i8 %.loc6_16.2 to i1, !dbg !38
  328. // CHECK:STDOUT: ret i1 %.loc6_16.21, !dbg !39
  329. // CHECK:STDOUT: }
  330. // CHECK:STDOUT:
  331. // CHECK:STDOUT: ; Function Attrs: nounwind
  332. // CHECK:STDOUT: define linkonce_odr i32 @_CGetT.C.Main.64ccbb8e5d9a0b8e(ptr %self) #0 !dbg !40 {
  333. // CHECK:STDOUT: entry:
  334. // CHECK:STDOUT: %.loc9_16.1.w = getelementptr inbounds nuw { i1, i32 }, ptr %self, i32 0, i32 1, !dbg !45
  335. // CHECK:STDOUT: %.loc9_16.2 = load i32, ptr %.loc9_16.1.w, align 4, !dbg !45
  336. // CHECK:STDOUT: ret i32 %.loc9_16.2, !dbg !46
  337. // CHECK:STDOUT: }
  338. // CHECK:STDOUT:
  339. // CHECK:STDOUT: ; Function Attrs: nounwind
  340. // CHECK:STDOUT: define linkonce_odr void @_CGetT.C.Main.335f6bfc3bd91486(ptr %self) #0 !dbg !47 {
  341. // CHECK:STDOUT: entry:
  342. // CHECK:STDOUT: %.loc9_16.1.w = getelementptr inbounds nuw { i1, {} }, ptr %self, i32 0, i32 1, !dbg !52
  343. // CHECK:STDOUT: ret void, !dbg !53
  344. // CHECK:STDOUT: }
  345. // CHECK:STDOUT:
  346. // CHECK:STDOUT: ; Function Attrs: nounwind
  347. // CHECK:STDOUT: define linkonce_odr void @_CGetT.C.Main.3ae0849a77989a11(ptr sret({ i32, i32, i32 }) %return, ptr %self) #0 !dbg !54 {
  348. // CHECK:STDOUT: entry:
  349. // CHECK:STDOUT: %.loc9_16.1.w = getelementptr inbounds nuw { i1, { i32, i32, i32 } }, ptr %self, i32 0, i32 1, !dbg !57
  350. // CHECK:STDOUT: call void @"_COp.a02bcb1b1383357d:Copy.Core.975a30a52004fa2c"(ptr %return, ptr %.loc9_16.1.w), !dbg !57
  351. // CHECK:STDOUT: ret void, !dbg !58
  352. // CHECK:STDOUT: }
  353. // CHECK:STDOUT:
  354. // CHECK:STDOUT: ; Function Attrs: nounwind
  355. // CHECK:STDOUT: define linkonce_odr void @"_COp.a02bcb1b1383357d:Copy.Core.975a30a52004fa2c"(ptr sret({ i32, i32, i32 }) %return, ptr %self) #0 !dbg !59 {
  356. // CHECK:STDOUT: %tuple.elem = getelementptr inbounds nuw { i32, i32, i32 }, ptr %self, i32 0, i32 0, !dbg !63
  357. // CHECK:STDOUT: %tuple.elem.load = load i32, ptr %tuple.elem, align 4, !dbg !63
  358. // CHECK:STDOUT: %tuple.elem1 = getelementptr inbounds nuw { i32, i32, i32 }, ptr %return, i32 0, i32 0, !dbg !64
  359. // CHECK:STDOUT: %tuple.elem2 = getelementptr inbounds nuw { i32, i32, i32 }, ptr %self, i32 0, i32 1, !dbg !65
  360. // CHECK:STDOUT: %tuple.elem.load3 = load i32, ptr %tuple.elem2, align 4, !dbg !65
  361. // CHECK:STDOUT: %tuple.elem4 = getelementptr inbounds nuw { i32, i32, i32 }, ptr %return, i32 0, i32 1, !dbg !64
  362. // CHECK:STDOUT: %tuple.elem5 = getelementptr inbounds nuw { i32, i32, i32 }, ptr %self, i32 0, i32 2, !dbg !66
  363. // CHECK:STDOUT: %tuple.elem.load6 = load i32, ptr %tuple.elem5, align 4, !dbg !66
  364. // CHECK:STDOUT: %tuple.elem7 = getelementptr inbounds nuw { i32, i32, i32 }, ptr %return, i32 0, i32 2, !dbg !64
  365. // CHECK:STDOUT: store i32 %tuple.elem.load, ptr %tuple.elem1, align 4, !dbg !64
  366. // CHECK:STDOUT: store i32 %tuple.elem.load3, ptr %tuple.elem4, align 4, !dbg !64
  367. // CHECK:STDOUT: store i32 %tuple.elem.load6, ptr %tuple.elem7, align 4, !dbg !64
  368. // CHECK:STDOUT: ret void, !dbg !67
  369. // CHECK:STDOUT: }
  370. // CHECK:STDOUT:
  371. // CHECK:STDOUT: ; uselistorder directives
  372. // CHECK:STDOUT: uselistorder ptr @llvm.lifetime.start.p0, { 3, 2, 1, 0 }
  373. // CHECK:STDOUT: uselistorder ptr @llvm.memcpy.p0.p0.i64, { 3, 2, 1, 0 }
  374. // CHECK:STDOUT:
  375. // CHECK:STDOUT: attributes #0 = { nounwind }
  376. // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  377. // CHECK:STDOUT: attributes #2 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) }
  378. // CHECK:STDOUT:
  379. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  380. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  381. // CHECK:STDOUT:
  382. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  383. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  384. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  385. // CHECK:STDOUT: !3 = !DIFile(filename: "access.carbon", directory: "")
  386. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "AccessBool", linkageName: "_CAccessBool.Main", scope: null, file: !3, line: 15, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  387. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  388. // CHECK:STDOUT: !6 = !{!7}
  389. // CHECK:STDOUT: !7 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  390. // CHECK:STDOUT: !8 = !DILocation(line: 16, column: 3, scope: !4)
  391. // CHECK:STDOUT: !9 = !DILocation(line: 16, column: 19, scope: !4)
  392. // CHECK:STDOUT: !10 = !DILocation(line: 17, column: 10, scope: !4)
  393. // CHECK:STDOUT: !11 = !DILocation(line: 17, column: 3, scope: !4)
  394. // CHECK:STDOUT: !12 = distinct !DISubprogram(name: "AccessInt", linkageName: "_CAccessInt.Main", scope: null, file: !3, line: 20, type: !13, spFlags: DISPFlagDefinition, unit: !2)
  395. // CHECK:STDOUT: !13 = !DISubroutineType(types: !14)
  396. // CHECK:STDOUT: !14 = !{!15}
  397. // CHECK:STDOUT: !15 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  398. // CHECK:STDOUT: !16 = !DILocation(line: 21, column: 3, scope: !12)
  399. // CHECK:STDOUT: !17 = !DILocation(line: 21, column: 19, scope: !12)
  400. // CHECK:STDOUT: !18 = !DILocation(line: 22, column: 10, scope: !12)
  401. // CHECK:STDOUT: !19 = !DILocation(line: 22, column: 3, scope: !12)
  402. // CHECK:STDOUT: !20 = distinct !DISubprogram(name: "AccessEmpty", linkageName: "_CAccessEmpty.Main", scope: null, file: !3, line: 25, type: !21, spFlags: DISPFlagDefinition, unit: !2)
  403. // CHECK:STDOUT: !21 = !DISubroutineType(types: !22)
  404. // CHECK:STDOUT: !22 = !{null}
  405. // CHECK:STDOUT: !23 = !DILocation(line: 26, column: 3, scope: !20)
  406. // CHECK:STDOUT: !24 = !DILocation(line: 26, column: 18, scope: !20)
  407. // CHECK:STDOUT: !25 = !DILocation(line: 27, column: 10, scope: !20)
  408. // CHECK:STDOUT: !26 = !DILocation(line: 27, column: 3, scope: !20)
  409. // CHECK:STDOUT: !27 = distinct !DISubprogram(name: "AccessTuple", linkageName: "_CAccessTuple.Main", scope: null, file: !3, line: 30, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  410. // CHECK:STDOUT: !28 = !DILocation(line: 31, column: 3, scope: !27)
  411. // CHECK:STDOUT: !29 = !DILocation(line: 31, column: 31, scope: !27)
  412. // CHECK:STDOUT: !30 = !DILocation(line: 31, column: 48, scope: !27)
  413. // CHECK:STDOUT: !31 = !DILocation(line: 32, column: 10, scope: !27)
  414. // CHECK:STDOUT: !32 = !DILocation(line: 32, column: 3, scope: !27)
  415. // CHECK:STDOUT: !33 = distinct !DISubprogram(name: "GetBool", linkageName: "_CGetBool.C.Main.64ccbb8e5d9a0b8e", scope: null, file: !3, line: 5, type: !34, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !36)
  416. // CHECK:STDOUT: !34 = !DISubroutineType(types: !35)
  417. // CHECK:STDOUT: !35 = !{!7, !7}
  418. // CHECK:STDOUT: !36 = !{!37}
  419. // CHECK:STDOUT: !37 = !DILocalVariable(arg: 1, scope: !33, type: !7)
  420. // CHECK:STDOUT: !38 = !DILocation(line: 6, column: 12, scope: !33)
  421. // CHECK:STDOUT: !39 = !DILocation(line: 6, column: 5, scope: !33)
  422. // CHECK:STDOUT: !40 = distinct !DISubprogram(name: "GetT", linkageName: "_CGetT.C.Main.64ccbb8e5d9a0b8e", scope: null, file: !3, line: 8, type: !41, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !43)
  423. // CHECK:STDOUT: !41 = !DISubroutineType(types: !42)
  424. // CHECK:STDOUT: !42 = !{!15, !7}
  425. // CHECK:STDOUT: !43 = !{!44}
  426. // CHECK:STDOUT: !44 = !DILocalVariable(arg: 1, scope: !40, type: !7)
  427. // CHECK:STDOUT: !45 = !DILocation(line: 9, column: 12, scope: !40)
  428. // CHECK:STDOUT: !46 = !DILocation(line: 9, column: 5, scope: !40)
  429. // CHECK:STDOUT: !47 = distinct !DISubprogram(name: "GetT", linkageName: "_CGetT.C.Main.335f6bfc3bd91486", scope: null, file: !3, line: 8, type: !48, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !50)
  430. // CHECK:STDOUT: !48 = !DISubroutineType(types: !49)
  431. // CHECK:STDOUT: !49 = !{null, !7}
  432. // CHECK:STDOUT: !50 = !{!51}
  433. // CHECK:STDOUT: !51 = !DILocalVariable(arg: 1, scope: !47, type: !7)
  434. // CHECK:STDOUT: !52 = !DILocation(line: 9, column: 12, scope: !47)
  435. // CHECK:STDOUT: !53 = !DILocation(line: 9, column: 5, scope: !47)
  436. // CHECK:STDOUT: !54 = distinct !DISubprogram(name: "GetT", linkageName: "_CGetT.C.Main.3ae0849a77989a11", scope: null, file: !3, line: 8, type: !34, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !55)
  437. // CHECK:STDOUT: !55 = !{!56}
  438. // CHECK:STDOUT: !56 = !DILocalVariable(arg: 1, scope: !54, type: !7)
  439. // CHECK:STDOUT: !57 = !DILocation(line: 9, column: 12, scope: !54)
  440. // CHECK:STDOUT: !58 = !DILocation(line: 9, column: 5, scope: !54)
  441. // CHECK:STDOUT: !59 = distinct !DISubprogram(name: "Op", linkageName: "_COp.a02bcb1b1383357d:Copy.Core.975a30a52004fa2c", scope: null, file: !60, line: 54, type: !34, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !61)
  442. // CHECK:STDOUT: !60 = !DIFile(filename: "min_prelude/parts/copy.carbon", directory: "")
  443. // CHECK:STDOUT: !61 = !{!62}
  444. // CHECK:STDOUT: !62 = !DILocalVariable(arg: 1, scope: !59, type: !7)
  445. // CHECK:STDOUT: !63 = !DILocation(line: 55, column: 13, scope: !59)
  446. // CHECK:STDOUT: !64 = !DILocation(line: 55, column: 12, scope: !59)
  447. // CHECK:STDOUT: !65 = !DILocation(line: 55, column: 26, scope: !59)
  448. // CHECK:STDOUT: !66 = !DILocation(line: 55, column: 39, scope: !59)
  449. // CHECK:STDOUT: !67 = !DILocation(line: 55, column: 5, scope: !59)