Commit c55edb44 authored by Georg Neis's avatar Georg Neis Committed by Commit Bot

[turbofan] Extend and streamline serialization.

- Trigger serialization for more objects, such as some root maps.
- Serialize more data for certain object kinds.
- Add macros for convenience.
- Mark a few functions as const.

R=jarin@chromium.org
Bug: v8:7790

Change-Id: Id39b97e93728c0b3d87d9546bdf68abd04496c05
Reviewed-on: https://chromium-review.googlesource.com/1158572Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
Commit-Queue: Georg Neis <neis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#54923}
parent 3b3f2bbd
This diff is collapsed.
...@@ -157,7 +157,7 @@ class JSObjectRef : public HeapObjectRef { ...@@ -157,7 +157,7 @@ class JSObjectRef : public HeapObjectRef {
FixedArrayBaseRef elements() const; FixedArrayBaseRef elements() const;
void EnsureElementsTenured(); void EnsureElementsTenured();
ElementsKind GetElementsKind(); ElementsKind GetElementsKind() const;
}; };
struct SlackTrackingResult { struct SlackTrackingResult {
...@@ -359,7 +359,7 @@ class SharedFunctionInfoRef : public HeapObjectRef { ...@@ -359,7 +359,7 @@ class SharedFunctionInfoRef : public HeapObjectRef {
bool has_duplicate_parameters() const; bool has_duplicate_parameters() const;
int function_map_index() const; int function_map_index() const;
FunctionKind kind() const; FunctionKind kind() const;
LanguageMode language_mode(); LanguageMode language_mode() const;
bool native() const; bool native() const;
bool HasBreakInfo() const; bool HasBreakInfo() const;
bool HasBuiltinId() const; bool HasBuiltinId() const;
......
...@@ -28,10 +28,14 @@ Reduction JSHeapCopyReducer::Reduce(Node* node) { ...@@ -28,10 +28,14 @@ Reduction JSHeapCopyReducer::Reduce(Node* node) {
ObjectRef(broker(), HeapConstantOf(node->op())); ObjectRef(broker(), HeapConstantOf(node->op()));
break; break;
} }
case IrOpcode::kJSCreateFunctionContext: { case IrOpcode::kJSCreateArray: {
CreateFunctionContextParameters const& p = CreateArrayParameters const& p = CreateArrayParametersOf(node->op());
CreateFunctionContextParametersOf(node->op()); Handle<AllocationSite> site;
ScopeInfoRef(broker(), p.scope_info()); if (p.site().ToHandle(&site)) AllocationSiteRef(broker(), site);
break;
}
case IrOpcode::kJSCreateCatchContext: {
ScopeInfoRef(broker(), ScopeInfoOf(node->op()));
break; break;
} }
case IrOpcode::kJSCreateClosure: { case IrOpcode::kJSCreateClosure: {
...@@ -41,6 +45,12 @@ Reduction JSHeapCopyReducer::Reduce(Node* node) { ...@@ -41,6 +45,12 @@ Reduction JSHeapCopyReducer::Reduce(Node* node) {
HeapObjectRef(broker(), p.code()); HeapObjectRef(broker(), p.code());
break; break;
} }
case IrOpcode::kJSCreateFunctionContext: {
CreateFunctionContextParameters const& p =
CreateFunctionContextParametersOf(node->op());
ScopeInfoRef(broker(), p.scope_info());
break;
}
case IrOpcode::kJSLoadNamed: case IrOpcode::kJSLoadNamed:
case IrOpcode::kJSStoreNamed: { case IrOpcode::kJSStoreNamed: {
NamedAccess const& p = NamedAccessOf(node->op()); NamedAccess const& p = NamedAccessOf(node->op());
......
...@@ -445,8 +445,7 @@ void FixedTypedArray<Traits>::FixedTypedArrayVerify(Isolate* isolate) { ...@@ -445,8 +445,7 @@ void FixedTypedArray<Traits>::FixedTypedArrayVerify(Isolate* isolate) {
} }
} }
bool JSObject::ElementsAreSafeToExamine() const {
bool JSObject::ElementsAreSafeToExamine() {
// If a GC was caused while constructing this object, the elements // If a GC was caused while constructing this object, the elements
// pointer may point to a one pointer filler map. // pointer may point to a one pointer filler map.
return reinterpret_cast<Map*>(elements()) != return reinterpret_cast<Map*>(elements()) !=
......
...@@ -2547,7 +2547,7 @@ SMI_ACCESSORS(JSMessageObject, start_position, kStartPositionOffset) ...@@ -2547,7 +2547,7 @@ SMI_ACCESSORS(JSMessageObject, start_position, kStartPositionOffset)
SMI_ACCESSORS(JSMessageObject, end_position, kEndPositionOffset) SMI_ACCESSORS(JSMessageObject, end_position, kEndPositionOffset)
SMI_ACCESSORS(JSMessageObject, error_level, kErrorLevelOffset) SMI_ACCESSORS(JSMessageObject, error_level, kErrorLevelOffset)
ElementsKind JSObject::GetElementsKind() { ElementsKind JSObject::GetElementsKind() const {
ElementsKind kind = map()->elements_kind(); ElementsKind kind = map()->elements_kind();
#if VERIFY_HEAP && DEBUG #if VERIFY_HEAP && DEBUG
FixedArrayBase* fixed_array = FixedArrayBase* fixed_array =
......
...@@ -2265,7 +2265,7 @@ class JSObject: public JSReceiver { ...@@ -2265,7 +2265,7 @@ class JSObject: public JSReceiver {
static inline void SetMapAndElements(Handle<JSObject> object, static inline void SetMapAndElements(Handle<JSObject> object,
Handle<Map> map, Handle<Map> map,
Handle<FixedArrayBase> elements); Handle<FixedArrayBase> elements);
inline ElementsKind GetElementsKind(); inline ElementsKind GetElementsKind() const;
ElementsAccessor* GetElementsAccessor(); ElementsAccessor* GetElementsAccessor();
// Returns true if an object has elements of PACKED_SMI_ELEMENTS or // Returns true if an object has elements of PACKED_SMI_ELEMENTS or
// HOLEY_SMI_ELEMENTS ElementsKind. // HOLEY_SMI_ELEMENTS ElementsKind.
...@@ -2655,7 +2655,7 @@ class JSObject: public JSReceiver { ...@@ -2655,7 +2655,7 @@ class JSObject: public JSReceiver {
// If a GC was caused while constructing this object, the elements pointer // If a GC was caused while constructing this object, the elements pointer
// may point to a one pointer filler map. The object won't be rooted, but // may point to a one pointer filler map. The object won't be rooted, but
// our heap verification code could stumble across it. // our heap verification code could stumble across it.
bool ElementsAreSafeToExamine(); bool ElementsAreSafeToExamine() const;
#endif #endif
Object* SlowReverseLookup(Object* value); Object* SlowReverseLookup(Object* value);
......
...@@ -188,7 +188,7 @@ BailoutReason SharedFunctionInfo::disable_optimization_reason() const { ...@@ -188,7 +188,7 @@ BailoutReason SharedFunctionInfo::disable_optimization_reason() const {
return DisabledOptimizationReasonBits::decode(flags()); return DisabledOptimizationReasonBits::decode(flags());
} }
LanguageMode SharedFunctionInfo::language_mode() { LanguageMode SharedFunctionInfo::language_mode() const {
STATIC_ASSERT(LanguageModeSize == 2); STATIC_ASSERT(LanguageModeSize == 2);
return construct_language_mode(IsStrictBit::decode(flags())); return construct_language_mode(IsStrictBit::decode(flags()));
} }
......
...@@ -415,7 +415,7 @@ class SharedFunctionInfo : public HeapObject, public NeverReadOnlySpaceObject { ...@@ -415,7 +415,7 @@ class SharedFunctionInfo : public HeapObject, public NeverReadOnlySpaceObject {
DECL_BOOLEAN_ACCESSORS(allows_lazy_compilation) DECL_BOOLEAN_ACCESSORS(allows_lazy_compilation)
// Indicates the language mode. // Indicates the language mode.
inline LanguageMode language_mode(); inline LanguageMode language_mode() const;
inline void set_language_mode(LanguageMode language_mode); inline void set_language_mode(LanguageMode language_mode);
// Indicates whether the source is implicitly wrapped in a function. // Indicates whether the source is implicitly wrapped in a function.
......
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