base.carbon 5.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. // AUTOUPDATE
  6. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/class/base.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/class/base.carbon
  10. base class Base {
  11. var b: i32;
  12. }
  13. class Derived {
  14. extend base: Base;
  15. var d: i32;
  16. }
  17. fn Make() -> Derived {
  18. return {.base = {.b = 4}, .d = 7};
  19. }
  20. fn Access(d: Derived) -> (i32, i32) {
  21. return (d.d, d.base.b);
  22. }
  23. fn Convert(p: Derived*) -> Base* {
  24. return p;
  25. }
  26. // CHECK:STDOUT: ; ModuleID = 'base.carbon'
  27. // CHECK:STDOUT: source_filename = "base.carbon"
  28. // CHECK:STDOUT:
  29. // CHECK:STDOUT: @Derived.val.loc22_36 = internal constant { { i32 }, i32 } { { i32 } { i32 4 }, i32 7 }
  30. // CHECK:STDOUT:
  31. // CHECK:STDOUT: define void @_CMake.Main(ptr sret({ { i32 }, i32 }) %return) !dbg !4 {
  32. // CHECK:STDOUT: entry:
  33. // CHECK:STDOUT: %.loc22_35.2.base = getelementptr inbounds nuw { { i32 }, i32 }, ptr %return, i32 0, i32 0, !dbg !7
  34. // CHECK:STDOUT: %.loc22_26.3.b = getelementptr inbounds nuw { i32 }, ptr %.loc22_35.2.base, i32 0, i32 0, !dbg !8
  35. // CHECK:STDOUT: %.loc22_35.5.d = getelementptr inbounds nuw { { i32 }, i32 }, ptr %return, i32 0, i32 1, !dbg !7
  36. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %return, ptr align 4 @Derived.val.loc22_36, i64 8, i1 false), !dbg !9
  37. // CHECK:STDOUT: ret void, !dbg !9
  38. // CHECK:STDOUT: }
  39. // CHECK:STDOUT:
  40. // CHECK:STDOUT: define void @_CAccess.Main(ptr sret({ i32, i32 }) %return, ptr %d) !dbg !10 {
  41. // CHECK:STDOUT: entry:
  42. // CHECK:STDOUT: %.loc26_12.1.d = getelementptr inbounds nuw { { i32 }, i32 }, ptr %d, i32 0, i32 1, !dbg !11
  43. // CHECK:STDOUT: %.loc26_12.2 = load i32, ptr %.loc26_12.1.d, align 4, !dbg !11
  44. // CHECK:STDOUT: %.loc26_17.1.base = getelementptr inbounds nuw { { i32 }, i32 }, ptr %d, i32 0, i32 0, !dbg !12
  45. // CHECK:STDOUT: %.loc26_22.1.b = getelementptr inbounds nuw { i32 }, ptr %.loc26_17.1.base, i32 0, i32 0, !dbg !12
  46. // CHECK:STDOUT: %.loc26_22.2 = load i32, ptr %.loc26_22.1.b, align 4, !dbg !12
  47. // CHECK:STDOUT: %tuple.elem0.tuple.elem = getelementptr inbounds nuw { i32, i32 }, ptr %return, i32 0, i32 0, !dbg !13
  48. // CHECK:STDOUT: store i32 %.loc26_12.2, ptr %tuple.elem0.tuple.elem, align 4, !dbg !13
  49. // CHECK:STDOUT: %tuple.elem1.tuple.elem = getelementptr inbounds nuw { i32, i32 }, ptr %return, i32 0, i32 1, !dbg !13
  50. // CHECK:STDOUT: store i32 %.loc26_22.2, ptr %tuple.elem1.tuple.elem, align 4, !dbg !13
  51. // CHECK:STDOUT: ret void, !dbg !14
  52. // CHECK:STDOUT: }
  53. // CHECK:STDOUT:
  54. // CHECK:STDOUT: define ptr @_CConvert.Main(ptr %p) !dbg !15 {
  55. // CHECK:STDOUT: entry:
  56. // CHECK:STDOUT: %.loc30_11.2.base = getelementptr inbounds nuw { { i32 }, i32 }, ptr %p, i32 0, i32 0, !dbg !16
  57. // CHECK:STDOUT: ret ptr %.loc30_11.2.base, !dbg !16
  58. // CHECK:STDOUT: }
  59. // CHECK:STDOUT:
  60. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite)
  61. // CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias writeonly captures(none), ptr noalias readonly captures(none), i64, i1 immarg) #0
  62. // CHECK:STDOUT:
  63. // CHECK:STDOUT: attributes #0 = { 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: "base.carbon", directory: "")
  72. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "Make", linkageName: "_CMake.Main", scope: null, file: !3, line: 21, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  73. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  74. // CHECK:STDOUT: !6 = !{}
  75. // CHECK:STDOUT: !7 = !DILocation(line: 22, column: 10, scope: !4)
  76. // CHECK:STDOUT: !8 = !DILocation(line: 22, column: 19, scope: !4)
  77. // CHECK:STDOUT: !9 = !DILocation(line: 22, column: 3, scope: !4)
  78. // CHECK:STDOUT: !10 = distinct !DISubprogram(name: "Access", linkageName: "_CAccess.Main", scope: null, file: !3, line: 25, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  79. // CHECK:STDOUT: !11 = !DILocation(line: 26, column: 11, scope: !10)
  80. // CHECK:STDOUT: !12 = !DILocation(line: 26, column: 16, scope: !10)
  81. // CHECK:STDOUT: !13 = !DILocation(line: 26, column: 10, scope: !10)
  82. // CHECK:STDOUT: !14 = !DILocation(line: 26, column: 3, scope: !10)
  83. // CHECK:STDOUT: !15 = distinct !DISubprogram(name: "Convert", linkageName: "_CConvert.Main", scope: null, file: !3, line: 29, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  84. // CHECK:STDOUT: !16 = !DILocation(line: 30, column: 3, scope: !15)