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

Unified Diff: src/interpreter/bytecode-generator.h

Issue 1412953007: [Interpreter] Fill out function prologue support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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/interpreter/bytecode-generator.h
diff --git a/src/interpreter/bytecode-generator.h b/src/interpreter/bytecode-generator.h
index e79ff787e9246ba278bddfa09a3e48daf21a7fc2..4acfb6be388dc3e9c471bb1071c2f90f169503d6 100644
--- a/src/interpreter/bytecode-generator.h
+++ b/src/interpreter/bytecode-generator.h
@@ -46,6 +46,9 @@ class BytecodeGenerator : public AstVisitor {
void VisitPropertyLoad(Register obj, Property* expr);
void VisitVariableLoad(Variable* variable, FeedbackVectorSlot slot);
void VisitVariableAssignment(Variable* variable, FeedbackVectorSlot slot);
+ void VisitArgumentsObject(Variable* arguments);
+ void VisitThisFunctionVariable(Variable* this_function_var);
+ void VisitNewTargetVariable(Variable* this_function_var);
Michael Starzinger 2015/10/21 18:42:17 nit: s/this_function_var/new_target_var/. Or even
rmcilroy 2015/10/22 15:19:52 Done.
void VisitNewLocalFunctionContext();
void VisitBuildLocalActivationContext();
void VisitNewLocalBlockContext(Scope* scope);

Powered by Google App Engine
This is Rietveld 408576698