Index: src/compiler/js-global-specialization.h |
diff --git a/src/compiler/js-global-specialization.h b/src/compiler/js-global-specialization.h |
index d6de4e119809cdbaab8cec80a8f50fbaff5c7938..8454bd0e6b6def8c71e1ba0855dc431c7cb586be 100644 |
--- a/src/compiler/js-global-specialization.h |
+++ b/src/compiler/js-global-specialization.h |
@@ -33,7 +33,6 @@ class JSGlobalSpecialization final : public AdvancedReducer { |
enum Flag { |
kNoFlags = 0u, |
kDeoptimizationEnabled = 1u << 0, |
- kTypingEnabled = 1u << 1 |
}; |
typedef base::Flags<Flag> Flags; |
@@ -46,10 +45,6 @@ class JSGlobalSpecialization final : public AdvancedReducer { |
private: |
Reduction ReduceJSLoadGlobal(Node* node); |
Reduction ReduceJSStoreGlobal(Node* node); |
- Reduction ReduceLoadFromPropertyCell(Node* node, |
- Handle<PropertyCell> property_cell); |
- Reduction ReduceStoreToPropertyCell(Node* node, |
- Handle<PropertyCell> property_cell); |
Reduction Replace(Node* node, Node* value, Node* effect = nullptr, |
Node* control = nullptr) { |
@@ -58,6 +53,10 @@ class JSGlobalSpecialization final : public AdvancedReducer { |
} |
Reduction Replace(Node* node, Handle<Object> value); |
+ struct ScriptContextTableLookupResult; |
+ bool LookupInScriptContextTable(Handle<Name> name, |
+ ScriptContextTableLookupResult* result); |
+ |
Graph* graph() const; |
JSGraph* jsgraph() const { return jsgraph_; } |
Isolate* isolate() const; |