Commit f360ed87 authored by Junliang Yan's avatar Junliang Yan Committed by Commit Bot

s390x: [liftoff] Add kRttWithDepth

Change-Id: I60b9cb6e0f7552fbdc35b62b6b379c8ac5f203e8
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2716323Reviewed-by: 's avatarMilad Fa <mfarazma@redhat.com>
Commit-Queue: Junliang Yan <junyan@redhat.com>
Cr-Commit-Position: refs/heads/master@{#73007}
parent 0697a1b0
......@@ -484,6 +484,7 @@ void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst,
case kRef:
case kRtt:
case kOptRef:
case kRttWithDepth:
case kI64: {
LoadU64(dst.gp(), MemOperand(fp, offset));
break;
......@@ -562,6 +563,7 @@ void LiftoffAssembler::LoadReturnStackSlot(LiftoffRegister dst, int offset,
case kRef:
case kRtt:
case kOptRef:
case kRttWithDepth:
case kI64: {
LoadU64(dst.gp(), MemOperand(sp, offset));
break;
......@@ -711,6 +713,7 @@ void LiftoffAssembler::Fill(LiftoffRegister reg, int offset, ValueType type) {
case kRef:
case kOptRef:
case kRtt:
case kRttWithDepth:
LoadU64(reg.gp(), src);
break;
case kF32:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment