Commit 79c1b995 authored by Junliang Yan's avatar Junliang Yan Committed by V8 LUCI CQ

ppc: [liftoff] implement calls to NativeWasmCode

Change-Id: I44f84a91a22cbe6cc364b43d096244fafaea7aca
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3114850Reviewed-by: 's avatarMilad Fa <mfarazma@redhat.com>
Commit-Queue: Junliang Yan <junyan@redhat.com>
Cr-Commit-Position: refs/heads/main@{#76461}
parent ec06bb6c
...@@ -2475,11 +2475,11 @@ void LiftoffAssembler::CallC(const ValueKindSig* sig, ...@@ -2475,11 +2475,11 @@ void LiftoffAssembler::CallC(const ValueKindSig* sig,
} }
void LiftoffAssembler::CallNativeWasmCode(Address addr) { void LiftoffAssembler::CallNativeWasmCode(Address addr) {
bailout(kUnsupportedArchitecture, "CallNativeWasmCode"); Call(addr, RelocInfo::WASM_CALL);
} }
void LiftoffAssembler::TailCallNativeWasmCode(Address addr) { void LiftoffAssembler::TailCallNativeWasmCode(Address addr) {
bailout(kUnsupportedArchitecture, "TailCallNativeWasmCode"); Jump(addr, RelocInfo::WASM_CALL);
} }
void LiftoffAssembler::CallIndirect(const ValueKindSig* sig, void LiftoffAssembler::CallIndirect(const ValueKindSig* sig,
......
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