PPC/s390: [liftoff][mv] Support multi-value returns
Port b931af5dd8
R=thibaudm@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
BUG=
LOG=N
Change-Id: Idb61dd337187a8afd4e3b8705b80dab98eb11fa5
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2195796
Reviewed-by: Junliang Yan <jyan@ca.ibm.com>
Commit-Queue: Milad Farazmand <miladfar@ca.ibm.com>
Cr-Commit-Position: refs/heads/master@{#67749}
This commit is contained in:
parent
45557b1f89
commit
d746a0347c
@ -192,6 +192,12 @@ void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst,
|
||||
bailout(kUnsupportedArchitecture, "LoadCallerFrameSlot");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::StoreCallerFrameSlot(LiftoffRegister src,
|
||||
uint32_t caller_slot_idx,
|
||||
ValueType type) {
|
||||
bailout(kUnsupportedArchitecture, "StoreCallerFrameSlot");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::MoveStackValue(uint32_t dst_offset, uint32_t src_offset,
|
||||
ValueType type) {
|
||||
bailout(kUnsupportedArchitecture, "MoveStackValue");
|
||||
|
@ -191,6 +191,12 @@ void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst,
|
||||
bailout(kUnsupportedArchitecture, "LoadCallerFrameSlot");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::StoreCallerFrameSlot(LiftoffRegister src,
|
||||
uint32_t caller_slot_idx,
|
||||
ValueType type) {
|
||||
bailout(kUnsupportedArchitecture, "StoreCallerFrameSlot");
|
||||
}
|
||||
|
||||
void LiftoffAssembler::MoveStackValue(uint32_t dst_offset, uint32_t src_offset,
|
||||
ValueType type) {
|
||||
bailout(kUnsupportedArchitecture, "MoveStackValue");
|
||||
|
Loading…
Reference in New Issue
Block a user