Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Unified Diff: src/compiler/ast-graph-builder.h

Issue 1321993004: Vector ICs: ObjectLiteral refactoring for Oracle feedback (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: ObjectLiteral refactorin. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/compiler/ast-graph-builder.h
diff --git a/src/compiler/ast-graph-builder.h b/src/compiler/ast-graph-builder.h
index f5ad2620fc0c53c25762fc725ff4bb68c1069256..bd74fda634b67cfffe54b54bf7db81cabfaa62c2 100644
--- a/src/compiler/ast-graph-builder.h
+++ b/src/compiler/ast-graph-builder.h
@@ -253,6 +253,7 @@ class AstGraphBuilder : public AstVisitor {
Node* BuildLocalScriptContext(Scope* scope);
Node* BuildLocalBlockContext(Scope* scope);
+ void BuildAccessor(Node* home_object, ObjectLiteralProperty* property);
Michael Starzinger 2015/09/07 08:31:13 nit: After addressing the comment about naming, th
mvstanton 2015/09/07 13:36:09 Done.
// Builder to create an arguments object if it is used.
Node* BuildArgumentsObject(Variable* arguments);
@@ -326,8 +327,9 @@ class AstGraphBuilder : public AstVisitor {
// Builder for adding the [[HomeObject]] to a value if the value came from a
// function literal and needs a home object. Do nothing otherwise.
- Node* BuildSetHomeObject(Node* value, Node* home_object, Expression* expr,
- const VectorSlotPair& feedback);
+ Node* BuildSetHomeObject(Node* value, Node* home_object,
+ ObjectLiteralProperty* property,
+ int slot_number = 0);
// Builders for error reporting at runtime.
Node* BuildThrowError(Node* exception, BailoutId bailout_id);

Powered by Google App Engine
This is Rietveld 408576698