virtual_base.carbon 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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/virtual_base.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/interop/cpp/virtual_base.carbon
  12. // --- diamond.h
  13. struct A {
  14. A();
  15. int a;
  16. };
  17. struct B : virtual A {
  18. B();
  19. int b;
  20. };
  21. struct C : virtual A {
  22. C();
  23. int c;
  24. };
  25. struct D : B, C {
  26. int d;
  27. };
  28. // Layout of D (x86_64):
  29. //
  30. // 0: B | 0: vptr
  31. // 8: | 8: int B::b
  32. // 12: (4 bytes padding)
  33. // 16: C | 0: vptr
  34. // 24: | 8: int C::c
  35. // 28: int D::d
  36. // 32: A | 0: int A::a
  37. // 36: (4 bytes padding)
  38. // 40: (end of D)
  39. // --- use_diamond.carbon
  40. library "[[@TEST_NAME]]";
  41. import Cpp library "diamond.h";
  42. fn Make() {
  43. // This should construct a 40-byte object, using a construtor with a `...C1`
  44. // mangled name for D (a complete object constructor), which should call
  45. // constructors with `...C2` mangled names for A, B, and C (base subobject
  46. // constructors).
  47. var _: Cpp.D = Cpp.D.D();
  48. }
  49. fn AccessD(d: Cpp.D) -> i32 {
  50. // This should read an i32 at offset 28.
  51. return d.d;
  52. }
  53. // CHECK:STDOUT: ; ModuleID = 'use_diamond.carbon'
  54. // CHECK:STDOUT: source_filename = "use_diamond.carbon"
  55. // 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"
  56. // CHECK:STDOUT: target triple = "x86_64-unknown-linux-gnu"
  57. // CHECK:STDOUT:
  58. // CHECK:STDOUT: $_ZN1DC1Ev = comdat any
  59. // CHECK:STDOUT:
  60. // CHECK:STDOUT: $_ZTV1D = comdat any
  61. // CHECK:STDOUT:
  62. // CHECK:STDOUT: $_ZTT1D = comdat any
  63. // CHECK:STDOUT:
  64. // CHECK:STDOUT: $_ZTC1D0_1B = comdat any
  65. // CHECK:STDOUT:
  66. // CHECK:STDOUT: $_ZTI1B = comdat any
  67. // CHECK:STDOUT:
  68. // CHECK:STDOUT: $_ZTS1B = comdat any
  69. // CHECK:STDOUT:
  70. // CHECK:STDOUT: $_ZTI1A = comdat any
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: $_ZTS1A = comdat any
  73. // CHECK:STDOUT:
  74. // CHECK:STDOUT: $_ZTC1D16_1C = comdat any
  75. // CHECK:STDOUT:
  76. // CHECK:STDOUT: $_ZTI1C = comdat any
  77. // CHECK:STDOUT:
  78. // CHECK:STDOUT: $_ZTS1C = comdat any
  79. // CHECK:STDOUT:
  80. // CHECK:STDOUT: $_ZTI1D = comdat any
  81. // CHECK:STDOUT:
  82. // CHECK:STDOUT: $_ZTS1D = comdat any
  83. // CHECK:STDOUT:
  84. // CHECK:STDOUT: @_ZTV1D = linkonce_odr dso_local unnamed_addr constant { [3 x ptr], [3 x ptr] } { [3 x ptr] [ptr inttoptr (i64 32 to ptr), ptr null, ptr @_ZTI1D], [3 x ptr] [ptr inttoptr (i64 16 to ptr), ptr inttoptr (i64 -16 to ptr), ptr @_ZTI1D] }, comdat, align 8
  85. // CHECK:STDOUT: @_ZTT1D = linkonce_odr dso_local unnamed_addr constant [4 x ptr] [ptr getelementptr inbounds inrange(-24, 0) ({ [3 x ptr], [3 x ptr] }, ptr @_ZTV1D, i32 0, i32 0, i32 3), ptr getelementptr inbounds inrange(-24, 0) ({ [3 x ptr] }, ptr @_ZTC1D0_1B, i32 0, i32 0, i32 3), ptr getelementptr inbounds inrange(-24, 0) ({ [3 x ptr] }, ptr @_ZTC1D16_1C, i32 0, i32 0, i32 3), ptr getelementptr inbounds inrange(-24, 0) ({ [3 x ptr], [3 x ptr] }, ptr @_ZTV1D, i32 0, i32 1, i32 3)], comdat, align 8
  86. // CHECK:STDOUT: @_ZTC1D0_1B = linkonce_odr dso_local unnamed_addr constant { [3 x ptr] } { [3 x ptr] [ptr inttoptr (i64 32 to ptr), ptr null, ptr @_ZTI1B] }, comdat, align 8
  87. // CHECK:STDOUT: @_ZTI1B = linkonce_odr dso_local constant { ptr, ptr, i32, i32, ptr, i64 } { ptr getelementptr inbounds (ptr, ptr @_ZTVN10__cxxabiv121__vmi_class_type_infoE, i64 2), ptr @_ZTS1B, i32 0, i32 1, ptr @_ZTI1A, i64 -6141 }, comdat, align 8
  88. // CHECK:STDOUT: @_ZTVN10__cxxabiv121__vmi_class_type_infoE = external global [0 x ptr]
  89. // CHECK:STDOUT: @_ZTS1B = linkonce_odr dso_local constant [3 x i8] c"1B\00", comdat, align 1
  90. // CHECK:STDOUT: @_ZTI1A = linkonce_odr dso_local constant { ptr, ptr } { ptr getelementptr inbounds (ptr, ptr @_ZTVN10__cxxabiv117__class_type_infoE, i64 2), ptr @_ZTS1A }, comdat, align 8
  91. // CHECK:STDOUT: @_ZTVN10__cxxabiv117__class_type_infoE = external global [0 x ptr]
  92. // CHECK:STDOUT: @_ZTS1A = linkonce_odr dso_local constant [3 x i8] c"1A\00", comdat, align 1
  93. // CHECK:STDOUT: @_ZTC1D16_1C = linkonce_odr dso_local unnamed_addr constant { [3 x ptr] } { [3 x ptr] [ptr inttoptr (i64 16 to ptr), ptr null, ptr @_ZTI1C] }, comdat, align 8
  94. // CHECK:STDOUT: @_ZTI1C = linkonce_odr dso_local constant { ptr, ptr, i32, i32, ptr, i64 } { ptr getelementptr inbounds (ptr, ptr @_ZTVN10__cxxabiv121__vmi_class_type_infoE, i64 2), ptr @_ZTS1C, i32 0, i32 1, ptr @_ZTI1A, i64 -6141 }, comdat, align 8
  95. // CHECK:STDOUT: @_ZTS1C = linkonce_odr dso_local constant [3 x i8] c"1C\00", comdat, align 1
  96. // CHECK:STDOUT: @_ZTI1D = linkonce_odr dso_local constant { ptr, ptr, i32, i32, ptr, i64, ptr, i64 } { ptr getelementptr inbounds (ptr, ptr @_ZTVN10__cxxabiv121__vmi_class_type_infoE, i64 2), ptr @_ZTS1D, i32 2, i32 2, ptr @_ZTI1B, i64 2, ptr @_ZTI1C, i64 4098 }, comdat, align 8
  97. // CHECK:STDOUT: @_ZTS1D = linkonce_odr dso_local constant [3 x i8] c"1D\00", comdat, align 1
  98. // CHECK:STDOUT:
  99. // CHECK:STDOUT: ; Function Attrs: alwaysinline mustprogress uwtable
  100. // CHECK:STDOUT: define dso_local void @_ZN1DC1Ev.carbon_thunk(ptr noundef %return) #0 {
  101. // CHECK:STDOUT: entry:
  102. // CHECK:STDOUT: %return.addr = alloca ptr, align 8
  103. // CHECK:STDOUT: store ptr %return, ptr %return.addr, align 8, !tbaa !12
  104. // CHECK:STDOUT: %0 = load ptr, ptr %return.addr, align 8, !tbaa !12
  105. // CHECK:STDOUT: call void @_ZN1DC1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0)
  106. // CHECK:STDOUT: ret void
  107. // CHECK:STDOUT: }
  108. // CHECK:STDOUT:
  109. // CHECK:STDOUT: ; Function Attrs: inlinehint mustprogress uwtable
  110. // CHECK:STDOUT: define linkonce_odr dso_local void @_ZN1DC1Ev(ptr noundef nonnull align 8 dereferenceable(32) %this) unnamed_addr #1 comdat align 2 {
  111. // CHECK:STDOUT: entry:
  112. // CHECK:STDOUT: %this.addr = alloca ptr, align 8
  113. // CHECK:STDOUT: store ptr %this, ptr %this.addr, align 8, !tbaa !12
  114. // CHECK:STDOUT: %this1 = load ptr, ptr %this.addr, align 8
  115. // CHECK:STDOUT: %0 = getelementptr inbounds i8, ptr %this1, i64 32
  116. // CHECK:STDOUT: call void @_ZN1AC2Ev(ptr noundef nonnull align 4 dereferenceable(4) %0)
  117. // CHECK:STDOUT: call void @_ZN1BC2Ev(ptr noundef nonnull align 8 dereferenceable(12) %this1, ptr noundef getelementptr inbounds (ptr, ptr @_ZTT1D, i64 1))
  118. // CHECK:STDOUT: %1 = getelementptr inbounds i8, ptr %this1, i64 16
  119. // CHECK:STDOUT: call void @_ZN1CC2Ev(ptr noundef nonnull align 8 dereferenceable(12) %1, ptr noundef getelementptr inbounds (ptr, ptr @_ZTT1D, i64 2))
  120. // CHECK:STDOUT: store ptr getelementptr inbounds inrange(-24, 0) ({ [3 x ptr], [3 x ptr] }, ptr @_ZTV1D, i32 0, i32 0, i32 3), ptr %this1, align 8, !tbaa !15
  121. // CHECK:STDOUT: %add.ptr = getelementptr inbounds i8, ptr %this1, i64 16
  122. // CHECK:STDOUT: store ptr getelementptr inbounds inrange(-24, 0) ({ [3 x ptr], [3 x ptr] }, ptr @_ZTV1D, i32 0, i32 1, i32 3), ptr %add.ptr, align 8, !tbaa !15
  123. // CHECK:STDOUT: ret void
  124. // CHECK:STDOUT: }
  125. // CHECK:STDOUT:
  126. // CHECK:STDOUT: ; Function Attrs: nounwind
  127. // CHECK:STDOUT: define void @_CMake.Main() #2 !dbg !17 {
  128. // CHECK:STDOUT: entry:
  129. // CHECK:STDOUT: %_.var = alloca [40 x i8], align 1, !dbg !20
  130. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %_.var), !dbg !20
  131. // CHECK:STDOUT: call void @_ZN1DC1Ev.carbon_thunk(ptr %_.var), !dbg !21
  132. // CHECK:STDOUT: ret void, !dbg !22
  133. // CHECK:STDOUT: }
  134. // CHECK:STDOUT:
  135. // CHECK:STDOUT: ; Function Attrs: nounwind
  136. // CHECK:STDOUT: define i32 @_CAccessD.Main(ptr %d) #2 !dbg !23 {
  137. // CHECK:STDOUT: entry:
  138. // CHECK:STDOUT: %.loc16_11.1.d = getelementptr inbounds nuw [40 x i8], ptr %d, i32 0, i32 28, !dbg !30
  139. // CHECK:STDOUT: %.loc16_11.2 = load i32, ptr %.loc16_11.1.d, align 4, !dbg !30
  140. // CHECK:STDOUT: ret i32 %.loc16_11.2, !dbg !31
  141. // CHECK:STDOUT: }
  142. // CHECK:STDOUT:
  143. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  144. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #3
  145. // CHECK:STDOUT:
  146. // CHECK:STDOUT: declare void @_ZN1AC2Ev(ptr noundef nonnull align 4 dereferenceable(4)) unnamed_addr #4
  147. // CHECK:STDOUT:
  148. // CHECK:STDOUT: declare void @_ZN1BC2Ev(ptr noundef nonnull align 8 dereferenceable(12), ptr noundef) unnamed_addr #4
  149. // CHECK:STDOUT:
  150. // CHECK:STDOUT: declare void @_ZN1CC2Ev(ptr noundef nonnull align 8 dereferenceable(12), ptr noundef) unnamed_addr #4
  151. // CHECK:STDOUT:
  152. // CHECK:STDOUT: ; uselistorder directives
  153. // CHECK:STDOUT: uselistorder ptr inttoptr (i64 32 to ptr), { 1, 0 }
  154. // CHECK:STDOUT: uselistorder ptr inttoptr (i64 16 to ptr), { 1, 0 }
  155. // CHECK:STDOUT: uselistorder ptr getelementptr inbounds inrange(-24, 0) ({ [3 x ptr], [3 x ptr] }, ptr @_ZTV1D, i32 0, i32 0, i32 3), { 1, 0 }
  156. // CHECK:STDOUT: uselistorder ptr getelementptr inbounds inrange(-24, 0) ({ [3 x ptr], [3 x ptr] }, ptr @_ZTV1D, i32 0, i32 1, i32 3), { 1, 0 }
  157. // CHECK:STDOUT: uselistorder ptr @_ZTI1D, { 1, 0 }
  158. // CHECK:STDOUT:
  159. // CHECK:STDOUT: attributes #0 = { alwaysinline mustprogress uwtable "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" }
  160. // CHECK:STDOUT: attributes #1 = { inlinehint mustprogress uwtable "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" }
  161. // CHECK:STDOUT: attributes #2 = { nounwind }
  162. // CHECK:STDOUT: attributes #3 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  163. // CHECK:STDOUT: attributes #4 = { "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" }
  164. // CHECK:STDOUT:
  165. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1, !2, !3, !4, !5}
  166. // CHECK:STDOUT: !llvm.dbg.cu = !{!6}
  167. // CHECK:STDOUT: !llvm.errno.tbaa = !{!8}
  168. // CHECK:STDOUT:
  169. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  170. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  171. // CHECK:STDOUT: !2 = !{i32 1, !"wchar_size", i32 4}
  172. // CHECK:STDOUT: !3 = !{i32 8, !"PIC Level", i32 2}
  173. // CHECK:STDOUT: !4 = !{i32 7, !"PIE Level", i32 2}
  174. // CHECK:STDOUT: !5 = !{i32 7, !"uwtable", i32 2}
  175. // CHECK:STDOUT: !6 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !7, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  176. // CHECK:STDOUT: !7 = !DIFile(filename: "use_diamond.carbon", directory: "")
  177. // CHECK:STDOUT: !8 = !{!9, !9, i64 0}
  178. // CHECK:STDOUT: !9 = !{!"int", !10, i64 0}
  179. // CHECK:STDOUT: !10 = !{!"omnipotent char", !11, i64 0}
  180. // CHECK:STDOUT: !11 = !{!"Simple C++ TBAA"}
  181. // CHECK:STDOUT: !12 = !{!13, !13, i64 0}
  182. // CHECK:STDOUT: !13 = !{!"p1 _ZTS1D", !14, i64 0}
  183. // CHECK:STDOUT: !14 = !{!"any pointer", !10, i64 0}
  184. // CHECK:STDOUT: !15 = !{!16, !16, i64 0}
  185. // CHECK:STDOUT: !16 = !{!"vtable pointer", !11, i64 0}
  186. // CHECK:STDOUT: !17 = distinct !DISubprogram(name: "Make", linkageName: "_CMake.Main", scope: null, file: !7, line: 6, type: !18, spFlags: DISPFlagDefinition, unit: !6)
  187. // CHECK:STDOUT: !18 = !DISubroutineType(types: !19)
  188. // CHECK:STDOUT: !19 = !{null}
  189. // CHECK:STDOUT: !20 = !DILocation(line: 11, column: 3, scope: !17)
  190. // CHECK:STDOUT: !21 = !DILocation(line: 11, column: 18, scope: !17)
  191. // CHECK:STDOUT: !22 = !DILocation(line: 6, column: 1, scope: !17)
  192. // CHECK:STDOUT: !23 = distinct !DISubprogram(name: "AccessD", linkageName: "_CAccessD.Main", scope: null, file: !7, line: 14, type: !24, spFlags: DISPFlagDefinition, unit: !6, retainedNodes: !28)
  193. // CHECK:STDOUT: !24 = !DISubroutineType(types: !25)
  194. // CHECK:STDOUT: !25 = !{!26, !27}
  195. // CHECK:STDOUT: !26 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  196. // CHECK:STDOUT: !27 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  197. // CHECK:STDOUT: !28 = !{!29}
  198. // CHECK:STDOUT: !29 = !DILocalVariable(arg: 1, scope: !23, type: !27)
  199. // CHECK:STDOUT: !30 = !DILocation(line: 16, column: 10, scope: !23)
  200. // CHECK:STDOUT: !31 = !DILocation(line: 16, column: 3, scope: !23)