Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
cbcca9b
deps: update V8 to 9.2.230.21
targos Jul 14, 2021
92a4738
build: reset embedder string to "-node.0"
targos Jul 14, 2021
f3925e0
src: update NODE_MODULE_VERSION to 95
targos Jun 10, 2021
4d1ae1b
deps: V8: un-cherry-pick bd019bd
refack Mar 27, 2019
4755eff
deps: V8: patch register-arm64.h
refack May 22, 2019
7021ce5
deps: V8: forward declaration of `Rtl*FunctionTable`
refack May 22, 2019
4dfe06c
deps: make v8.h compatible with VS2015
joaocgreis Nov 1, 2019
a83b37f
deps: fix V8 build issue with inline methods
gengjiawen Oct 14, 2020
0d184ad
deps: silence irrelevant V8 warnings
targos Jan 30, 2021
300ba51
deps: silence irrelevant V8 warning
targos May 1, 2021
f97ebf6
tools: update V8 gypfiles for 9.2
targos Apr 11, 2021
e1d1fb9
src: use non-deprecated Symbol::Description
targos Apr 14, 2021
903db05
src: stop using deprecated v8::ApiObject
targos Apr 26, 2021
53fcfe1
test: update trace events test expectations
targos Apr 21, 2021
a5311aa
test: remove test-debug-args
targos Apr 26, 2021
56aec9e
test: ensure microtask queues are not automatically drained
jeisinger Apr 29, 2021
80f6175
deps: bump minimum ICU version to 69
targos May 15, 2021
1e6c1f5
deps: V8: cherry-pick 3d24b3ab8af0
targos Jun 10, 2021
fe13d6b
deps: V8: backport 71e8f8bb3c26
targos Jun 16, 2021
80c2e3e
deps: V8: cherry-pick 986299250e6d
richardlau Jun 16, 2021
dd72030
deps: V8: cherry-pick a5cea1bfc38c
targos Jun 20, 2021
799d0c5
deps: V8: cherry-pick 7ff6609a5385
targos Jun 20, 2021
2587faf
deps: V8: cherry-pick 53784bdb8f01
targos Jul 10, 2021
d975b6a
deps: V8: cherry-pick 2b77ca200c56
targos Jul 10, 2021
03af7f4
deps: V8: cherry-pick 56fe020eec0c
targos Jul 10, 2021
021567a
deps: V8: cherry-pick 3805a698f7b6
targos Jul 10, 2021
59ed44b
deps: V8: cherry-pick 359d44df4cdd
targos Jul 10, 2021
3eb9fad
deps: V8: backport 5c76da8ddcf8
targos Jul 10, 2021
405560f
tools: fetch googletest dependency for V8 CI
targos Jul 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
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: v8/v8@5c76da8

PR-URL: #39337
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
targos committed Jul 20, 2021
commit 3eb9fadcd1e8b4b80605ce3545051b2e90e7d5e5
2 changes: 1 addition & 1 deletion common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
'v8_embedder_string': '-node.17',
'v8_embedder_string': '-node.18',

##### V8 defaults for Node.js #####

Expand Down
3 changes: 2 additions & 1 deletion deps/v8/src/wasm/baseline/mips/liftoff-assembler-mips.h
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,8 @@ void LiftoffAssembler::StoreTaggedPointer(Register dst_addr,
void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr,
Register offset_reg, uint32_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) {
Register src = no_reg;
if (offset_reg != no_reg) {
src = GetUnusedRegister(kGpReg, pinned).gp();
Expand Down
3 changes: 2 additions & 1 deletion deps/v8/src/wasm/baseline/mips64/liftoff-assembler-mips64.h
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,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();
Expand Down