Commit 1da91b83 authored by Jaroslav Sevcik's avatar Jaroslav Sevcik Committed by Commit Bot

Reland "[deoptimizer] Staged materialization of objects."

This relands commit e71b8022.

This can now back in as the fix for chromium:787301 had enough time to
be tested in Canary.

Original change's description:
> [deoptimizer] Staged materialization of objects.
>
> The existing object materialization in the deoptimizer has the following problems:
>
> - Objects do not necessarily verify during materialization (because during the
>   depth first walk we might have inconsistent objects).
>
> - Stack can overflow (because we just materialize using recursive calls).
>
> - We generalize object fields.
>
>
> This CL re-implements the materialization algorithm to solve this problem. The
> new implementation creates the objects in two steps:
>
> 1. We allocate space for all the objects. In general, we allocate ByteArrays
>    of the right size. For leaf objects that cannot participate in cycles,
>    we build and initialize the materialized objects completely.
>
>    For JS objects, we insert markers into the byte array at the positions
>    where unboxed doubles are expected.
>
> 2. We initialize all the objects with the proper field values and change the
>    map from the ByteArray map to the correct map. This requires some sync
>    with the concurrent marker (Heap::NotifyObjectLayoutChange).
>
>    When initializing the JS object fields, we make sure that we respect
>    the unboxed double marker.
>
> Bug: chromium:770106, v8:3836
> Change-Id: I1ec466a9d19db9538df4ba915516d4c3ca825632
> Reviewed-on: https://chromium-review.googlesource.com/777559
> Commit-Queue: Jaroslav Sevcik <jarin@chromium.org>
> Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
> Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#49821}

Bug: chromium:770106, v8:3836
Change-Id: Ied6c4e0fbae52713e55ae6dc13794a7521dbb8a5
Reviewed-on: https://chromium-review.googlesource.com/817745Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#49982}
parent 6ed2690e
This diff is collapsed.
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#ifndef V8_DEOPTIMIZER_H_ #ifndef V8_DEOPTIMIZER_H_
#define V8_DEOPTIMIZER_H_ #define V8_DEOPTIMIZER_H_
#include <stack>
#include <vector> #include <vector>
#include "src/allocation.h" #include "src/allocation.h"
...@@ -31,6 +32,9 @@ class TranslatedValue { ...@@ -31,6 +32,9 @@ class TranslatedValue {
// Returns heap()->arguments_marker() if allocation would be // Returns heap()->arguments_marker() if allocation would be
// necessary to get the value. // necessary to get the value.
Object* GetRawValue() const; Object* GetRawValue() const;
// Getter for the value, takes care of materializing the subgraph
// reachable from this value.
Handle<Object> GetValue(); Handle<Object> GetValue();
bool IsMaterializedObject() const; bool IsMaterializedObject() const;
...@@ -40,7 +44,7 @@ class TranslatedValue { ...@@ -40,7 +44,7 @@ class TranslatedValue {
friend class TranslatedState; friend class TranslatedState;
friend class TranslatedFrame; friend class TranslatedFrame;
enum Kind { enum Kind : uint8_t {
kInvalid, kInvalid,
kTagged, kTagged,
kInt32, kInt32,
...@@ -56,9 +60,20 @@ class TranslatedValue { ...@@ -56,9 +60,20 @@ class TranslatedValue {
kDuplicatedObject // Duplicated object of a deferred object. kDuplicatedObject // Duplicated object of a deferred object.
}; };
enum MaterializationState : uint8_t {
kUninitialized,
kAllocated, // Storage for the object has been allocated (or
// enqueued for allocation).
kFinished, // The object has been initialized (or enqueued for
// initialization).
};
TranslatedValue(TranslatedState* container, Kind kind) TranslatedValue(TranslatedState* container, Kind kind)
: kind_(kind), container_(container) {} : kind_(kind), container_(container) {}
Kind kind() const { return kind_; } Kind kind() const { return kind_; }
MaterializationState materialization_state() const {
return materialization_state_;
}
void Handlify(); void Handlify();
int GetChildrenCount() const; int GetChildrenCount() const;
...@@ -76,15 +91,25 @@ class TranslatedValue { ...@@ -76,15 +91,25 @@ class TranslatedValue {
Isolate* isolate() const; Isolate* isolate() const;
void MaterializeSimple(); void MaterializeSimple();
void set_storage(Handle<HeapObject> storage) { storage_ = storage; }
void set_initialized_storage(Handle<Object> storage);
void mark_finished() { materialization_state_ = kFinished; }
void mark_allocated() { materialization_state_ = kAllocated; }
Handle<Object> GetStorage() {
DCHECK_NE(kUninitialized, materialization_state());
return storage_;
}
Kind kind_; Kind kind_;
MaterializationState materialization_state_ = kUninitialized;
TranslatedState* container_; // This is only needed for materialization of TranslatedState* container_; // This is only needed for materialization of
// objects and constructing handles (to get // objects and constructing handles (to get
// to the isolate). // to the isolate).
MaybeHandle<Object> value_; // Before handlification, this is always null, Handle<Object> storage_; // Contains the materialized value or the
// after materialization it is never null, // byte-array that will be later morphed into
// in between it is only null if the value needs // the materialized object.
// to be materialized.
struct MaterializedObjectInfo { struct MaterializedObjectInfo {
int id_; int id_;
...@@ -211,6 +236,7 @@ class TranslatedFrame { ...@@ -211,6 +236,7 @@ class TranslatedFrame {
height_(height) {} height_(height) {}
void Add(const TranslatedValue& value) { values_.push_back(value); } void Add(const TranslatedValue& value) { values_.push_back(value); }
TranslatedValue* ValueAt(int index) { return &(values_[index]); }
void Handlify(); void Handlify();
Kind kind_; Kind kind_;
...@@ -270,6 +296,8 @@ class TranslatedState { ...@@ -270,6 +296,8 @@ class TranslatedState {
FixedArray* literal_array, RegisterValues* registers, FixedArray* literal_array, RegisterValues* registers,
FILE* trace_file, int parameter_count); FILE* trace_file, int parameter_count);
void VerifyMaterializedObjects();
private: private:
friend TranslatedValue; friend TranslatedValue;
...@@ -288,11 +316,36 @@ class TranslatedState { ...@@ -288,11 +316,36 @@ class TranslatedState {
FILE* trace_file); FILE* trace_file);
void UpdateFromPreviouslyMaterializedObjects(); void UpdateFromPreviouslyMaterializedObjects();
Handle<Object> MaterializeAt(int frame_index, int* value_index); void MaterializeFixedDoubleArray(TranslatedFrame* frame, int* value_index,
Handle<Object> MaterializeObjectAt(int object_index); TranslatedValue* slot, Handle<Map> map);
class CapturedObjectMaterializer; void MaterializeMutableHeapNumber(TranslatedFrame* frame, int* value_index,
Handle<Object> MaterializeCapturedObjectAt(TranslatedValue* slot, TranslatedValue* slot);
int frame_index, int* value_index);
void EnsureObjectAllocatedAt(TranslatedValue* slot);
void SkipSlots(int slots_to_skip, TranslatedFrame* frame, int* value_index);
Handle<ByteArray> AllocateStorageFor(TranslatedValue* slot);
void EnsureJSObjectAllocated(TranslatedValue* slot, Handle<Map> map);
void EnsurePropertiesAllocatedAndMarked(TranslatedValue* properties_slot,
Handle<Map> map);
void EnsureChildrenAllocated(int count, TranslatedFrame* frame,
int* value_index, std::stack<int>* worklist);
void EnsureCapturedObjectAllocatedAt(int object_index,
std::stack<int>* worklist);
Handle<Object> InitializeObjectAt(TranslatedValue* slot);
void InitializeCapturedObjectAt(int object_index, std::stack<int>* worklist,
const DisallowHeapAllocation& no_allocation);
void InitializeJSObjectAt(TranslatedFrame* frame, int* value_index,
TranslatedValue* slot, Handle<Map> map,
const DisallowHeapAllocation& no_allocation);
void InitializeObjectWithTaggedFieldsAt(
TranslatedFrame* frame, int* value_index, TranslatedValue* slot,
Handle<Map> map, const DisallowHeapAllocation& no_allocation);
TranslatedValue* ResolveCapturedObject(TranslatedValue* slot);
TranslatedValue* GetValueByObjectIndex(int object_index);
Handle<Object> GetValueAndAdvance(TranslatedFrame* frame, int* value_index);
static uint32_t GetUInt32Slot(Address fp, int slot_index); static uint32_t GetUInt32Slot(Address fp, int slot_index);
static Float32 GetFloatSlot(Address fp, int slot_index); static Float32 GetFloatSlot(Address fp, int slot_index);
......
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --allow-natives-syntax
function f() {
// Create a non-escaping object.
var o = Object.create(null);
%DeoptimizeNow();
// Keep it alive.
return o ? 1 : 0;
}
f();
f();
%OptimizeFunctionOnNextCall(f);
assertEquals(1, f());
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --allow-natives-syntax
function C() {}
%CompleteInobjectSlackTracking(new C());
function f() {
// Create a non-escaping object.
var o = new C();
// Add an out-of-object double property.
o.x = 0.5;
%DeoptimizeNow();
return o.x + 0.25;
}
f();
f();
%OptimizeFunctionOnNextCall(f);
assertEquals(0.75, f());
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