base.carbon 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: @struct.2.loc22_36 = internal constant { { i32 }, i32 } { { i32 } { i32 4 }, i32 7 }
  30. // CHECK:STDOUT:
  31. // CHECK:STDOUT: define void @Make(ptr sret({ { i32 }, i32 }) %return) {
  32. // CHECK:STDOUT: entry:
  33. // CHECK:STDOUT: %.loc22_35.2.base = getelementptr inbounds { { i32 }, i32 }, ptr %return, i32 0, i32 0
  34. // CHECK:STDOUT: %.loc22_26.2.b = getelementptr inbounds { i32 }, ptr %.loc22_35.2.base, i32 0, i32 0
  35. // CHECK:STDOUT: %.loc22_35.4.d = getelementptr inbounds { { i32 }, i32 }, ptr %return, i32 0, i32 1
  36. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %return, ptr align 4 @struct.2.loc22_36, i64 8, i1 false)
  37. // CHECK:STDOUT: ret void
  38. // CHECK:STDOUT: }
  39. // CHECK:STDOUT:
  40. // CHECK:STDOUT: define void @Access(ptr sret({ i32, i32 }) %return, ptr %d) {
  41. // CHECK:STDOUT: entry:
  42. // CHECK:STDOUT: %.loc26_12.1.d = getelementptr inbounds { { i32 }, i32 }, ptr %d, i32 0, i32 1
  43. // CHECK:STDOUT: %.loc26_12.2 = load i32, ptr %.loc26_12.1.d, align 4
  44. // CHECK:STDOUT: %.loc26_17.1.base = getelementptr inbounds { { i32 }, i32 }, ptr %d, i32 0, i32 0
  45. // CHECK:STDOUT: %.loc26_22.1.b = getelementptr inbounds { i32 }, ptr %.loc26_17.1.base, i32 0, i32 0
  46. // CHECK:STDOUT: %.loc26_22.2 = load i32, ptr %.loc26_22.1.b, align 4
  47. // CHECK:STDOUT: %.loc26_24.2.tuple.elem = getelementptr inbounds { i32, i32 }, ptr %return, i32 0, i32 0
  48. // CHECK:STDOUT: store i32 %.loc26_12.2, ptr %.loc26_24.2.tuple.elem, align 4
  49. // CHECK:STDOUT: %.loc26_24.4.tuple.elem = getelementptr inbounds { i32, i32 }, ptr %return, i32 0, i32 1
  50. // CHECK:STDOUT: store i32 %.loc26_22.2, ptr %.loc26_24.4.tuple.elem, align 4
  51. // CHECK:STDOUT: ret void
  52. // CHECK:STDOUT: }
  53. // CHECK:STDOUT:
  54. // CHECK:STDOUT: define ptr @Convert(ptr %p) {
  55. // CHECK:STDOUT: entry:
  56. // CHECK:STDOUT: %.loc30_11.2.base = getelementptr inbounds { { i32 }, i32 }, ptr %p, i32 0, i32 0
  57. // CHECK:STDOUT: ret ptr %.loc30_11.2.base
  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 nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #0
  62. // CHECK:STDOUT:
  63. // CHECK:STDOUT: attributes #0 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) }