field.carbon 5.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 !7
  32. // CHECK:STDOUT: %.loc16_38.3.array.index = getelementptr inbounds [2 x i32], ptr %.loc16_39.2.v, i32 0, i64 0, !dbg !8
  33. // CHECK:STDOUT: %.loc16_38.6.array.index = getelementptr inbounds [2 x i32], ptr %.loc16_39.2.v, i32 0, i64 1, !dbg !8
  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 !9
  35. // CHECK:STDOUT: ret void, !dbg !9
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: ; Function Attrs: nounwind
  39. // CHECK:STDOUT: define i32 @_CAccess.A.Main(ptr %self) #0 !dbg !10 {
  40. // CHECK:STDOUT: entry:
  41. // CHECK:STDOUT: %.loc19_16.1.v = getelementptr inbounds nuw { [2 x i32] }, ptr %self, i32 0, i32 0, !dbg !11
  42. // CHECK:STDOUT: %.loc19_20.2.array.index = getelementptr inbounds [2 x i32], ptr %.loc19_16.1.v, i32 0, i32 0, !dbg !11
  43. // CHECK:STDOUT: %.loc19_20.3 = load i32, ptr %.loc19_20.2.array.index, align 4, !dbg !11
  44. // CHECK:STDOUT: ret i32 %.loc19_20.3, !dbg !12
  45. // CHECK:STDOUT: }
  46. // CHECK:STDOUT:
  47. // CHECK:STDOUT: ; Function Attrs: nounwind
  48. // CHECK:STDOUT: define i32 @_CUse.A.Main(ptr %self) #0 !dbg !13 {
  49. // CHECK:STDOUT: entry:
  50. // CHECK:STDOUT: %.loc23_9.v = getelementptr inbounds nuw { [2 x i32] }, ptr %self, i32 0, i32 0, !dbg !14
  51. // CHECK:STDOUT: %.loc23_13.array.index = getelementptr inbounds [2 x i32], ptr %.loc23_9.v, i32 0, i32 0, !dbg !14
  52. // CHECK:STDOUT: store i32 1, ptr %.loc23_13.array.index, align 4, !dbg !14
  53. // CHECK:STDOUT: %.loc24_16.v = getelementptr inbounds nuw { [2 x i32] }, ptr %self, i32 0, i32 0, !dbg !15
  54. // CHECK:STDOUT: %.loc24_20.1.array.index = getelementptr inbounds [2 x i32], ptr %.loc24_16.v, i32 0, i32 1, !dbg !15
  55. // CHECK:STDOUT: %.loc24_20.2 = load i32, ptr %.loc24_20.1.array.index, align 4, !dbg !15
  56. // CHECK:STDOUT: ret i32 %.loc24_20.2, !dbg !16
  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, 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 = !{}
  75. // CHECK:STDOUT: !7 = !DILocation(line: 16, column: 27, scope: !4)
  76. // CHECK:STDOUT: !8 = !DILocation(line: 16, column: 33, scope: !4)
  77. // CHECK:STDOUT: !9 = !DILocation(line: 16, column: 20, scope: !4)
  78. // CHECK:STDOUT: !10 = distinct !DISubprogram(name: "Access", linkageName: "_CAccess.A.Main", scope: null, file: !3, line: 18, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  79. // CHECK:STDOUT: !11 = !DILocation(line: 19, column: 12, scope: !10)
  80. // CHECK:STDOUT: !12 = !DILocation(line: 19, column: 5, scope: !10)
  81. // CHECK:STDOUT: !13 = distinct !DISubprogram(name: "Use", linkageName: "_CUse.A.Main", scope: null, file: !3, line: 22, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  82. // CHECK:STDOUT: !14 = !DILocation(line: 23, column: 5, scope: !13)
  83. // CHECK:STDOUT: !15 = !DILocation(line: 24, column: 12, scope: !13)
  84. // CHECK:STDOUT: !16 = !DILocation(line: 24, column: 5, scope: !13)