right_shift.carbon 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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/full.carbon
  6. // TODO: Add ranges and switch to "--dump-sem-ir-ranges=only".
  7. // EXTRA-ARGS: --dump-sem-ir-ranges=if-present
  8. //
  9. // AUTOUPDATE
  10. // TIP: To test this file alone, run:
  11. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/operators/overloaded/right_shift.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/operators/overloaded/right_shift.carbon
  14. // This file was generated from binary_op.carbon.tmpl. Run make_tests.sh to regenerate.
  15. package User;
  16. class C {};
  17. impl C as Core.RightShiftWith(C) where .Result = C {
  18. fn Op[self: C](other: C) -> C {
  19. return {};
  20. }
  21. }
  22. impl C as Core.RightShiftAssignWith(C) {
  23. fn Op[ref self: C](other: C) {}
  24. }
  25. fn TestOp(a: C, b: C) -> C {
  26. //@dump-sem-ir-begin
  27. return a >> b;
  28. //@dump-sem-ir-end
  29. }
  30. fn TestAssign(a: C*, b: C) {
  31. //@dump-sem-ir-begin
  32. *a >>= b;
  33. //@dump-sem-ir-end
  34. }
  35. // CHECK:STDOUT: --- right_shift.carbon
  36. // CHECK:STDOUT:
  37. // CHECK:STDOUT: constants {
  38. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  39. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  40. // CHECK:STDOUT: %RightShiftWith.type.a33: type = facet_type <@RightShiftWith, @RightShiftWith(%C)> [concrete]
  41. // CHECK:STDOUT: %RightShiftWith.Op.type.19b: type = fn_type @RightShiftWith.Op, @RightShiftWith(%C) [concrete]
  42. // CHECK:STDOUT: %RightShiftWith.impl_witness: <witness> = impl_witness file.%RightShiftWith.impl_witness_table [concrete]
  43. // CHECK:STDOUT: %C.as.RightShiftWith.impl.Op.type: type = fn_type @C.as.RightShiftWith.impl.Op [concrete]
  44. // CHECK:STDOUT: %C.as.RightShiftWith.impl.Op: %C.as.RightShiftWith.impl.Op.type = struct_value () [concrete]
  45. // CHECK:STDOUT: %RightShiftWith.facet: %RightShiftWith.type.a33 = facet_value %C, (%RightShiftWith.impl_witness) [concrete]
  46. // CHECK:STDOUT: %RightShiftAssignWith.type.df5: type = facet_type <@RightShiftAssignWith, @RightShiftAssignWith(%C)> [concrete]
  47. // CHECK:STDOUT: %RightShiftAssignWith.Op.type.ae9: type = fn_type @RightShiftAssignWith.Op, @RightShiftAssignWith(%C) [concrete]
  48. // CHECK:STDOUT: %RightShiftAssignWith.impl_witness: <witness> = impl_witness file.%RightShiftAssignWith.impl_witness_table [concrete]
  49. // CHECK:STDOUT: %C.as.RightShiftAssignWith.impl.Op.type: type = fn_type @C.as.RightShiftAssignWith.impl.Op [concrete]
  50. // CHECK:STDOUT: %C.as.RightShiftAssignWith.impl.Op: %C.as.RightShiftAssignWith.impl.Op.type = struct_value () [concrete]
  51. // CHECK:STDOUT: %RightShiftAssignWith.facet: %RightShiftAssignWith.type.df5 = facet_value %C, (%RightShiftAssignWith.impl_witness) [concrete]
  52. // CHECK:STDOUT: %.919: type = fn_type_with_self_type %RightShiftWith.Op.type.19b, %RightShiftWith.facet [concrete]
  53. // CHECK:STDOUT: %ptr.019: type = ptr_type %C [concrete]
  54. // CHECK:STDOUT: %.a3c: type = fn_type_with_self_type %RightShiftAssignWith.Op.type.ae9, %RightShiftAssignWith.facet [concrete]
  55. // CHECK:STDOUT: }
  56. // CHECK:STDOUT:
  57. // CHECK:STDOUT: imports {
  58. // CHECK:STDOUT: }
  59. // CHECK:STDOUT:
  60. // CHECK:STDOUT: fn @TestOp(%a.param: %C, %b.param: %C) -> %return.param: %C {
  61. // CHECK:STDOUT: !entry:
  62. // CHECK:STDOUT: %a.ref: %C = name_ref a, %a
  63. // CHECK:STDOUT: %b.ref: %C = name_ref b, %b
  64. // CHECK:STDOUT: %impl.elem1: %.919 = impl_witness_access constants.%RightShiftWith.impl_witness, element1 [concrete = constants.%C.as.RightShiftWith.impl.Op]
  65. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %a.ref, %impl.elem1
  66. // CHECK:STDOUT: <elided>
  67. // CHECK:STDOUT: %C.as.RightShiftWith.impl.Op.call: init %C = call %bound_method(%a.ref, %b.ref) to %.loc30
  68. // CHECK:STDOUT: return %C.as.RightShiftWith.impl.Op.call to %return
  69. // CHECK:STDOUT: }
  70. // CHECK:STDOUT:
  71. // CHECK:STDOUT: fn @TestAssign(%a.param: %ptr.019, %b.param: %C) {
  72. // CHECK:STDOUT: !entry:
  73. // CHECK:STDOUT: %a.ref: %ptr.019 = name_ref a, %a
  74. // CHECK:STDOUT: %.loc38: ref %C = deref %a.ref
  75. // CHECK:STDOUT: %b.ref: %C = name_ref b, %b
  76. // CHECK:STDOUT: %impl.elem0: %.a3c = impl_witness_access constants.%RightShiftAssignWith.impl_witness, element0 [concrete = constants.%C.as.RightShiftAssignWith.impl.Op]
  77. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %.loc38, %impl.elem0
  78. // CHECK:STDOUT: %C.as.RightShiftAssignWith.impl.Op.call: init %empty_tuple.type = call %bound_method(%.loc38, %b.ref)
  79. // CHECK:STDOUT: <elided>
  80. // CHECK:STDOUT: }
  81. // CHECK:STDOUT: