field.carbon 5.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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/array/field.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/array/field.carbon
  12. class A {
  13. var v: array(i32, 2);
  14. fn Init() -> A { return {.v = (1, 2)}; }
  15. fn Access[self: Self]() -> i32 {
  16. return self.v[0];
  17. }
  18. fn Use[ref self: Self]() -> i32 {
  19. self.v[0] = 1;
  20. return self.v[1];
  21. }
  22. }
  23. // CHECK:STDOUT: ; ModuleID = 'field.carbon'
  24. // CHECK:STDOUT: source_filename = "field.carbon"
  25. // CHECK:STDOUT:
  26. // CHECK:STDOUT: @A.val.loc16_40 = internal constant { [2 x i32] } { [2 x i32] [i32 1, i32 2] }
  27. // CHECK:STDOUT:
  28. // CHECK:STDOUT: ; Function Attrs: nounwind
  29. // CHECK:STDOUT: define void @_CInit.A.Main(ptr sret({ [2 x i32] }) %return) #0 !dbg !4 {
  30. // CHECK:STDOUT: entry:
  31. // CHECK:STDOUT: %.loc16_39.2.v = getelementptr inbounds nuw { [2 x i32] }, ptr %return, i32 0, i32 0, !dbg !8
  32. // CHECK:STDOUT: %.loc16_38.3.array.index = getelementptr inbounds [2 x i32], ptr %.loc16_39.2.v, i32 0, i64 0, !dbg !9
  33. // CHECK:STDOUT: %.loc16_38.6.array.index = getelementptr inbounds [2 x i32], ptr %.loc16_39.2.v, i32 0, i64 1, !dbg !9
  34. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %return, ptr align 4 @A.val.loc16_40, i64 8, i1 false), !dbg !10
  35. // CHECK:STDOUT: ret void, !dbg !10
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: ; Function Attrs: nounwind
  39. // CHECK:STDOUT: define i32 @_CAccess.A.Main(ptr %self) #0 !dbg !11 {
  40. // CHECK:STDOUT: entry:
  41. // CHECK:STDOUT: %.loc19_16.1.v = getelementptr inbounds nuw { [2 x i32] }, ptr %self, i32 0, i32 0, !dbg !17
  42. // CHECK:STDOUT: %.loc19_20.2.array.index = getelementptr inbounds [2 x i32], ptr %.loc19_16.1.v, i32 0, i32 0, !dbg !17
  43. // CHECK:STDOUT: %.loc19_20.3 = load i32, ptr %.loc19_20.2.array.index, align 4, !dbg !17
  44. // CHECK:STDOUT: ret i32 %.loc19_20.3, !dbg !18
  45. // CHECK:STDOUT: }
  46. // CHECK:STDOUT:
  47. // CHECK:STDOUT: ; Function Attrs: nounwind
  48. // CHECK:STDOUT: define i32 @_CUse.A.Main(ptr %self) #0 !dbg !19 {
  49. // CHECK:STDOUT: entry:
  50. // CHECK:STDOUT: %.loc23_9.v = getelementptr inbounds nuw { [2 x i32] }, ptr %self, i32 0, i32 0, !dbg !22
  51. // CHECK:STDOUT: %.loc23_13.array.index = getelementptr inbounds [2 x i32], ptr %.loc23_9.v, i32 0, i32 0, !dbg !22
  52. // CHECK:STDOUT: store i32 1, ptr %.loc23_13.array.index, align 4, !dbg !22
  53. // CHECK:STDOUT: %.loc24_16.v = getelementptr inbounds nuw { [2 x i32] }, ptr %self, i32 0, i32 0, !dbg !23
  54. // CHECK:STDOUT: %.loc24_20.1.array.index = getelementptr inbounds [2 x i32], ptr %.loc24_16.v, i32 0, i32 1, !dbg !23
  55. // CHECK:STDOUT: %.loc24_20.2 = load i32, ptr %.loc24_20.1.array.index, align 4, !dbg !23
  56. // CHECK:STDOUT: ret i32 %.loc24_20.2, !dbg !24
  57. // CHECK:STDOUT: }
  58. // CHECK:STDOUT:
  59. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite)
  60. // CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias writeonly captures(none), ptr noalias readonly captures(none), i64, i1 immarg) #1
  61. // CHECK:STDOUT:
  62. // CHECK:STDOUT: attributes #0 = { nounwind }
  63. // CHECK:STDOUT: attributes #1 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) }
  64. // CHECK:STDOUT:
  65. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  66. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  67. // CHECK:STDOUT:
  68. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  69. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  70. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  71. // CHECK:STDOUT: !3 = !DIFile(filename: "field.carbon", directory: "")
  72. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "Init", linkageName: "_CInit.A.Main", scope: null, file: !3, line: 16, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  73. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  74. // CHECK:STDOUT: !6 = !{!7}
  75. // CHECK:STDOUT: !7 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  76. // CHECK:STDOUT: !8 = !DILocation(line: 16, column: 27, scope: !4)
  77. // CHECK:STDOUT: !9 = !DILocation(line: 16, column: 33, scope: !4)
  78. // CHECK:STDOUT: !10 = !DILocation(line: 16, column: 20, scope: !4)
  79. // CHECK:STDOUT: !11 = distinct !DISubprogram(name: "Access", linkageName: "_CAccess.A.Main", scope: null, file: !3, line: 18, type: !12, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !15)
  80. // CHECK:STDOUT: !12 = !DISubroutineType(types: !13)
  81. // CHECK:STDOUT: !13 = !{!14, !7}
  82. // CHECK:STDOUT: !14 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  83. // CHECK:STDOUT: !15 = !{!16}
  84. // CHECK:STDOUT: !16 = !DILocalVariable(arg: 1, scope: !11, type: !7)
  85. // CHECK:STDOUT: !17 = !DILocation(line: 19, column: 12, scope: !11)
  86. // CHECK:STDOUT: !18 = !DILocation(line: 19, column: 5, scope: !11)
  87. // CHECK:STDOUT: !19 = distinct !DISubprogram(name: "Use", linkageName: "_CUse.A.Main", scope: null, file: !3, line: 22, type: !12, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !20)
  88. // CHECK:STDOUT: !20 = !{!21}
  89. // CHECK:STDOUT: !21 = !DILocalVariable(arg: 1, scope: !19, type: !7)
  90. // CHECK:STDOUT: !22 = !DILocation(line: 23, column: 5, scope: !19)
  91. // CHECK:STDOUT: !23 = !DILocation(line: 24, column: 12, scope: !19)
  92. // CHECK:STDOUT: !24 = !DILocation(line: 24, column: 5, scope: !19)