summaryrefslogtreecommitdiff
path: root/deps/v8/src/wasm/baseline/mips64
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2021-07-10 13:15:42 +0200
committerMichaël Zasso <targos@protonmail.com>2021-07-12 09:33:48 +0200
commitde85b1ea950871beeddc117f3cd2c0887fd47451 (patch)
tree59b81c32bec088a2d3cd93694ac5c2dcbd434265 /deps/v8/src/wasm/baseline/mips64
parent8bb09f49c5d9b4b52318de21ddbbe290176c6659 (diff)
downloadnode-new-de85b1ea950871beeddc117f3cd2c0887fd47451.tar.gz
deps: V8: backport 5c76da8ddcf8
Original commit message: [mips][wasm][liftoff] Fix compile failed Port 2b77ca200c56667c68895e49c96c10ff77834f09 Bug: v8:11809 Change-Id: Idbbbc10d1339d6c8463686b6e701fb601a217cab Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2931557 Reviewed-by: Zhao Jiazhong <zhaojiazhong-hf@loongson.cn> Commit-Queue: Zhao Jiazhong <zhaojiazhong-hf@loongson.cn> Auto-Submit: Liu yu <liuyu@loongson.cn> Cr-Commit-Position: refs/heads/master@{#74934} Refs: https://github.com/v8/v8/commit/5c76da8ddcf89297a8dc2606b68da97d7a5329cb PR-URL: https://github.com/nodejs/node/pull/39337 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'deps/v8/src/wasm/baseline/mips64')
-rw-r--r--deps/v8/src/wasm/baseline/mips64/liftoff-assembler-mips64.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/src/wasm/baseline/mips64/liftoff-assembler-mips64.h b/deps/v8/src/wasm/baseline/mips64/liftoff-assembler-mips64.h
index a5a9f8ce23..dfbd8d6a75 100644
--- a/deps/v8/src/wasm/baseline/mips64/liftoff-assembler-mips64.h
+++ b/deps/v8/src/wasm/baseline/mips64/liftoff-assembler-mips64.h
@@ -470,7 +470,8 @@ void LiftoffAssembler::StoreTaggedPointer(Register dst_addr,
void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr,
Register offset_reg, uintptr_t offset_imm,
LoadType type, LiftoffRegList pinned,
- uint32_t* protected_load_pc, bool is_load_mem) {
+ uint32_t* protected_load_pc, bool is_load_mem,
+ bool i64_offset) {
MemOperand src_op = liftoff::GetMemOp(this, src_addr, offset_reg, offset_imm);
if (protected_load_pc) *protected_load_pc = pc_offset();