Skip to content

Commit d639321

Browse files
targosjasnell
authored andcommitted
deps: patch V8 to 9.0.257.13
Refs: v8/v8@9.0.257.11...9.0.257.13 PR-URL: #37830 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 7120411 commit d639321

File tree

9 files changed

+166
-47
lines changed

9 files changed

+166
-47
lines changed

deps/v8/include/v8-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 9
1212
#define V8_MINOR_VERSION 0
1313
#define V8_BUILD_NUMBER 257
14-
#define V8_PATCH_LEVEL 11
14+
#define V8_PATCH_LEVEL 13
1515

1616
// Use 1 for candidates and 0 otherwise.
1717
// (Boolean macro values are not supported by all preprocessors.)

deps/v8/src/builtins/mips/builtins-mips.cc

+17-9
Original file line numberDiff line numberDiff line change
@@ -2299,15 +2299,23 @@ void Builtins::Generate_WasmCompileLazy(MacroAssembler* masm) {
22992299
// Save all parameter registers (see wasm-linkage.h). They might be
23002300
// overwritten in the runtime call below. We don't have any callee-saved
23012301
// registers in wasm, so no need to store anything else.
2302-
constexpr RegList gp_regs = Register::ListOf(a0, a2, a3);
2303-
constexpr RegList fp_regs =
2304-
DoubleRegister::ListOf(f2, f4, f6, f8, f10, f12, f14);
2305-
constexpr int16_t num_to_push = base::bits::CountPopulation(gp_regs) +
2306-
base::bits::CountPopulation(fp_regs);
2307-
// The number of regs to be pushed before kWasmInstanceRegister should be
2308-
// equal to kNumberOfSavedAllParamRegs.
2309-
STATIC_ASSERT(num_to_push ==
2310-
WasmCompileLazyFrameConstants::kNumberOfSavedAllParamRegs);
2302+
RegList gp_regs = 0;
2303+
for (Register gp_param_reg : wasm::kGpParamRegisters) {
2304+
gp_regs |= gp_param_reg.bit();
2305+
}
2306+
2307+
RegList fp_regs = 0;
2308+
for (DoubleRegister fp_param_reg : wasm::kFpParamRegisters) {
2309+
fp_regs |= fp_param_reg.bit();
2310+
}
2311+
2312+
CHECK_EQ(NumRegs(gp_regs), arraysize(wasm::kGpParamRegisters));
2313+
CHECK_EQ(NumRegs(fp_regs), arraysize(wasm::kFpParamRegisters));
2314+
CHECK_EQ(WasmCompileLazyFrameConstants::kNumberOfSavedGpParamRegs,
2315+
NumRegs(gp_regs));
2316+
CHECK_EQ(WasmCompileLazyFrameConstants::kNumberOfSavedFpParamRegs,
2317+
NumRegs(fp_regs));
2318+
23112319
__ MultiPush(gp_regs);
23122320
__ MultiPushFPU(fp_regs);
23132321

deps/v8/src/builtins/mips64/builtins-mips64.cc

+48-23
Original file line numberDiff line numberDiff line change
@@ -1478,7 +1478,9 @@ void Generate_ContinueToBuiltinHelper(MacroAssembler* masm,
14781478
bool with_result) {
14791479
const RegisterConfiguration* config(RegisterConfiguration::Default());
14801480
int allocatable_register_count = config->num_allocatable_general_registers();
1481-
Register scratch = t3;
1481+
UseScratchRegisterScope temps(masm);
1482+
Register scratch = temps.Acquire();
1483+
14821484
if (with_result) {
14831485
if (java_script_builtin) {
14841486
__ mov(scratch, v0);
@@ -2363,24 +2365,41 @@ void Builtins::Generate_WasmCompileLazy(MacroAssembler* masm) {
23632365
// Save all parameter registers (see wasm-linkage.h). They might be
23642366
// overwritten in the runtime call below. We don't have any callee-saved
23652367
// registers in wasm, so no need to store anything else.
2366-
constexpr RegList gp_regs =
2367-
Register::ListOf(a0, a2, a3, a4, a5, a6, a7);
2368-
constexpr RegList fp_regs =
2369-
DoubleRegister::ListOf(f2, f4, f6, f8, f10, f12, f14);
2370-
constexpr int16_t num_to_push = base::bits::CountPopulation(gp_regs) +
2371-
base::bits::CountPopulation(fp_regs);
2372-
// The number of regs to be pushed before kWasmInstanceRegister should be
2373-
// equal to kNumberOfSavedAllParamRegs.
2374-
STATIC_ASSERT(num_to_push ==
2375-
WasmCompileLazyFrameConstants::kNumberOfSavedAllParamRegs);
2376-
__ MultiPush(gp_regs);
2377-
if (CpuFeatures::IsSupported(MIPS_SIMD)) {
2378-
__ MultiPushMSA(fp_regs);
2379-
} else {
2380-
__ MultiPushFPU(fp_regs);
2381-
__ Dsubu(sp, sp, base::bits::CountPopulation(fp_regs) * kDoubleSize);
2368+
RegList gp_regs = 0;
2369+
for (Register gp_param_reg : wasm::kGpParamRegisters) {
2370+
gp_regs |= gp_param_reg.bit();
2371+
}
2372+
2373+
RegList fp_regs = 0;
2374+
for (DoubleRegister fp_param_reg : wasm::kFpParamRegisters) {
2375+
fp_regs |= fp_param_reg.bit();
23822376
}
23832377

2378+
CHECK_EQ(NumRegs(gp_regs), arraysize(wasm::kGpParamRegisters));
2379+
CHECK_EQ(NumRegs(fp_regs), arraysize(wasm::kFpParamRegisters));
2380+
CHECK_EQ(WasmCompileLazyFrameConstants::kNumberOfSavedGpParamRegs,
2381+
NumRegs(gp_regs));
2382+
CHECK_EQ(WasmCompileLazyFrameConstants::kNumberOfSavedFpParamRegs,
2383+
NumRegs(fp_regs));
2384+
2385+
__ MultiPush(gp_regs);
2386+
// Check if machine has simd enabled, if so push vector registers. If not
2387+
// then only push double registers.
2388+
Label push_doubles, simd_pushed;
2389+
__ li(a1, ExternalReference::supports_wasm_simd_128_address());
2390+
// If > 0 then simd is available.
2391+
__ Lbu(a1, MemOperand(a1));
2392+
__ Branch(&push_doubles, le, a1, Operand(zero_reg));
2393+
// Save vector registers.
2394+
__ MultiPushMSA(fp_regs);
2395+
__ Branch(&simd_pushed);
2396+
__ bind(&push_doubles);
2397+
__ MultiPushFPU(fp_regs);
2398+
// kFixedFrameSizeFromFp is hard coded to include space for Simd
2399+
// registers, so we still need to allocate extra (unused) space on the stack
2400+
// as if they were saved.
2401+
__ Dsubu(sp, sp, base::bits::CountPopulation(fp_regs) * kDoubleSize);
2402+
__ bind(&simd_pushed);
23842403
// Pass instance and function index as an explicit arguments to the runtime
23852404
// function.
23862405
__ Push(kWasmInstanceRegister, kWasmCompileLazyFuncIndexRegister);
@@ -2390,12 +2409,18 @@ void Builtins::Generate_WasmCompileLazy(MacroAssembler* masm) {
23902409
__ CallRuntime(Runtime::kWasmCompileLazy, 2);
23912410

23922411
// Restore registers.
2393-
if (CpuFeatures::IsSupported(MIPS_SIMD)) {
2394-
__ MultiPopMSA(fp_regs);
2395-
} else {
2396-
__ Daddu(sp, sp, base::bits::CountPopulation(fp_regs) * kDoubleSize);
2397-
__ MultiPopFPU(fp_regs);
2398-
}
2412+
Label pop_doubles, simd_popped;
2413+
__ li(a1, ExternalReference::supports_wasm_simd_128_address());
2414+
// If > 0 then simd is available.
2415+
__ Lbu(a1, MemOperand(a1));
2416+
__ Branch(&pop_doubles, le, a1, Operand(zero_reg));
2417+
// Pop vector registers.
2418+
__ MultiPopMSA(fp_regs);
2419+
__ Branch(&simd_popped);
2420+
__ bind(&pop_doubles);
2421+
__ Daddu(sp, sp, base::bits::CountPopulation(fp_regs) * kDoubleSize);
2422+
__ MultiPopFPU(fp_regs);
2423+
__ bind(&simd_popped);
23992424
__ MultiPop(gp_regs);
24002425
}
24012426
// Finally, jump to the entrypoint.

deps/v8/src/codegen/mips64/register-mips64.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace internal {
2121

2222
#define ALLOCATABLE_GENERAL_REGISTERS(V) \
2323
V(a0) V(a1) V(a2) V(a3) \
24-
V(a4) V(a5) V(a6) V(a7) V(t0) V(t1) V(t2) V(s7) \
24+
V(a4) V(a5) V(a6) V(a7) V(t0) V(t1) V(t2) V(t3) V(s7) \
2525
V(v0) V(v1)
2626

2727
#define DOUBLE_REGISTERS(V) \
@@ -368,7 +368,7 @@ constexpr Register kReturnRegister2 = a0;
368368
constexpr Register kJSFunctionRegister = a1;
369369
constexpr Register kContextRegister = s7;
370370
constexpr Register kAllocateSizeRegister = a0;
371-
constexpr Register kSpeculationPoisonRegister = a7;
371+
constexpr Register kSpeculationPoisonRegister = t3;
372372
constexpr Register kInterpreterAccumulatorRegister = v0;
373373
constexpr Register kInterpreterBytecodeOffsetRegister = t0;
374374
constexpr Register kInterpreterBytecodeArrayRegister = t1;

deps/v8/src/deoptimizer/translated-state.cc

+49-9
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,8 @@ Address TranslatedState::DecompressIfNeeded(intptr_t value) {
12821282
}
12831283
}
12841284

1285-
TranslatedState::TranslatedState(const JavaScriptFrame* frame) {
1285+
TranslatedState::TranslatedState(const JavaScriptFrame* frame)
1286+
: purpose_(kFrameInspection) {
12861287
int deopt_index = Safepoint::kNoDeoptimizationIndex;
12871288
DeoptimizationData data =
12881289
static_cast<const OptimizedFrame*>(frame)->GetDeoptimizationData(
@@ -1672,25 +1673,63 @@ void TranslatedState::EnsureCapturedObjectAllocatedAt(
16721673
}
16731674

16741675
default:
1675-
CHECK(map->IsJSObjectMap());
16761676
EnsureJSObjectAllocated(slot, map);
1677-
TranslatedValue* properties_slot = &(frame->values_[value_index]);
1678-
value_index++;
1677+
int remaining_children_count = slot->GetChildrenCount() - 1;
1678+
1679+
TranslatedValue* properties_slot = frame->ValueAt(value_index);
1680+
value_index++, remaining_children_count--;
16791681
if (properties_slot->kind() == TranslatedValue::kCapturedObject) {
1680-
// If we are materializing the property array, make sure we put
1681-
// the mutable heap numbers at the right places.
1682+
// We are materializing the property array, so make sure we put the
1683+
// mutable heap numbers at the right places.
16821684
EnsurePropertiesAllocatedAndMarked(properties_slot, map);
16831685
EnsureChildrenAllocated(properties_slot->GetChildrenCount(), frame,
16841686
&value_index, worklist);
1687+
} else {
1688+
CHECK_EQ(properties_slot->kind(), TranslatedValue::kTagged);
16851689
}
1686-
// Make sure all the remaining children (after the map and properties) are
1687-
// allocated.
1688-
return EnsureChildrenAllocated(slot->GetChildrenCount() - 2, frame,
1690+
1691+
TranslatedValue* elements_slot = frame->ValueAt(value_index);
1692+
value_index++, remaining_children_count--;
1693+
if (elements_slot->kind() == TranslatedValue::kCapturedObject ||
1694+
!map->IsJSArrayMap()) {
1695+
// Handle this case with the other remaining children below.
1696+
value_index--, remaining_children_count++;
1697+
} else {
1698+
CHECK_EQ(elements_slot->kind(), TranslatedValue::kTagged);
1699+
elements_slot->GetValue();
1700+
if (purpose_ == kFrameInspection) {
1701+
// We are materializing a JSArray for the purpose of frame inspection.
1702+
// If we were to construct it with the above elements value then an
1703+
// actual deopt later on might create another JSArray instance with
1704+
// the same elements store. That would violate the key assumption
1705+
// behind left-trimming.
1706+
elements_slot->ReplaceElementsArrayWithCopy();
1707+
}
1708+
}
1709+
1710+
// Make sure all the remaining children (after the map, properties store,
1711+
// and possibly elements store) are allocated.
1712+
return EnsureChildrenAllocated(remaining_children_count, frame,
16891713
&value_index, worklist);
16901714
}
16911715
UNREACHABLE();
16921716
}
16931717

1718+
void TranslatedValue::ReplaceElementsArrayWithCopy() {
1719+
DCHECK_EQ(kind(), TranslatedValue::kTagged);
1720+
DCHECK_EQ(materialization_state(), TranslatedValue::kFinished);
1721+
auto elements = Handle<FixedArrayBase>::cast(GetValue());
1722+
DCHECK(elements->IsFixedArray() || elements->IsFixedDoubleArray());
1723+
if (elements->IsFixedDoubleArray()) {
1724+
DCHECK(!elements->IsCowArray());
1725+
set_storage(isolate()->factory()->CopyFixedDoubleArray(
1726+
Handle<FixedDoubleArray>::cast(elements)));
1727+
} else if (!elements->IsCowArray()) {
1728+
set_storage(isolate()->factory()->CopyFixedArray(
1729+
Handle<FixedArray>::cast(elements)));
1730+
}
1731+
}
1732+
16941733
void TranslatedState::EnsureChildrenAllocated(int count, TranslatedFrame* frame,
16951734
int* value_index,
16961735
std::stack<int>* worklist) {
@@ -1755,6 +1794,7 @@ Handle<ByteArray> TranslatedState::AllocateStorageFor(TranslatedValue* slot) {
17551794

17561795
void TranslatedState::EnsureJSObjectAllocated(TranslatedValue* slot,
17571796
Handle<Map> map) {
1797+
CHECK(map->IsJSObjectMap());
17581798
CHECK_EQ(map->instance_size(), slot->GetChildrenCount() * kTaggedSize);
17591799

17601800
Handle<ByteArray> object_storage = AllocateStorageFor(slot);

deps/v8/src/deoptimizer/translated-state.h

+18-1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ class TranslatedValue {
125125
return storage_;
126126
}
127127

128+
void ReplaceElementsArrayWithCopy();
129+
128130
Kind kind_;
129131
MaterializationState materialization_state_ = kUninitialized;
130132
TranslatedState* container_; // This is only needed for materialization of
@@ -335,7 +337,15 @@ class TranslatedFrame {
335337

336338
class TranslatedState {
337339
public:
338-
TranslatedState() = default;
340+
// There are two constructors, each for a different purpose:
341+
342+
// The default constructor is for the purpose of deoptimizing an optimized
343+
// frame (replacing it with one or several unoptimized frames). It is used by
344+
// the Deoptimizer.
345+
TranslatedState() : purpose_(kDeoptimization) {}
346+
347+
// This constructor is for the purpose of merely inspecting an optimized
348+
// frame. It is used by stack trace generation and various debugging features.
339349
explicit TranslatedState(const JavaScriptFrame* frame);
340350

341351
void Prepare(Address stack_frame_pointer);
@@ -370,6 +380,12 @@ class TranslatedState {
370380
private:
371381
friend TranslatedValue;
372382

383+
// See the description of the constructors for an explanation of the two
384+
// purposes. The only actual difference is that in the kFrameInspection case
385+
// extra work is needed to not violate assumptions made by left-trimming. For
386+
// details, see the code around ReplaceElementsArrayWithCopy.
387+
enum Purpose { kDeoptimization, kFrameInspection };
388+
373389
TranslatedFrame CreateNextTranslatedFrame(TranslationArrayIterator* iterator,
374390
FixedArray literal_array,
375391
Address fp, FILE* trace_file);
@@ -426,6 +442,7 @@ class TranslatedState {
426442
static Float32 GetFloatSlot(Address fp, int slot_index);
427443
static Float64 GetDoubleSlot(Address fp, int slot_index);
428444

445+
Purpose const purpose_;
429446
std::vector<TranslatedFrame> frames_;
430447
Isolate* isolate_ = nullptr;
431448
Address stack_frame_pointer_ = kNullAddress;

deps/v8/test/message/message.status

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@
7070
}],
7171

7272
################################################################################
73-
['arch == ppc64', {
73+
['arch == ppc64 or arch == mips64el or arch == mipsel', {
7474
# Tests that require Simd enabled.
7575
'wasm-trace-memory': [SKIP],
76-
}],
76+
}], # arch == ppc64 or arch == mips64el or arch == mipsel
7777

7878

7979
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright 2021 the V8 project authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
5+
// Flags: --allow-natives-syntax --verify-heap
6+
7+
function foo() {
8+
const arr = Array(1000);
9+
10+
function bar() {
11+
try { ({a: p4nda, b: arr.length}); } catch(e) {}
12+
}
13+
14+
for (var i = 0; i < 25; i++) bar();
15+
16+
/p4nda/.test({}); // Deopt here.
17+
18+
arr.shift();
19+
}
20+
21+
%PrepareFunctionForOptimization(foo);
22+
foo();
23+
foo();
24+
%OptimizeFunctionOnNextCall(foo);
25+
foo();

deps/v8/tools/testrunner/base_runner.py

+4
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,10 @@ def _get_statusfile_variables(self, options):
653653
if self.build_config.arch == 'ppc64':
654654
no_simd_sse = True
655655

656+
if self.build_config.arch == 'mips64el' or \
657+
self.build_config.arch == 'mipsel':
658+
no_simd_sse = not simd_mips
659+
656660
return {
657661
"arch": self.build_config.arch,
658662
"asan": self.build_config.asan,

0 commit comments

Comments
 (0)