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

Side by Side Diff: src/compiler/bytecode-graph-builder.h

Issue 1664593003: [Interpreter] Adds support for rest parameters to interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes comments. Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ 5 #ifndef V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_
6 #define V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ 6 #define V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_
7 7
8 #include "src/compiler.h" 8 #include "src/compiler.h"
9 #include "src/compiler/bytecode-branch-analysis.h" 9 #include "src/compiler/bytecode-branch-analysis.h"
10 #include "src/compiler/js-graph.h" 10 #include "src/compiler/js-graph.h"
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 interpreter::Register callee, 115 interpreter::Register callee,
116 interpreter::Register first_arg, size_t arity); 116 interpreter::Register first_arg, size_t arity);
117 Node* ProcessCallRuntimeArguments(const Operator* call_runtime_op, 117 Node* ProcessCallRuntimeArguments(const Operator* call_runtime_op,
118 interpreter::Register first_arg, 118 interpreter::Register first_arg,
119 size_t arity); 119 size_t arity);
120 120
121 void BuildCreateLiteral(const Operator* op); 121 void BuildCreateLiteral(const Operator* op);
122 void BuildCreateRegExpLiteral(); 122 void BuildCreateRegExpLiteral();
123 void BuildCreateArrayLiteral(); 123 void BuildCreateArrayLiteral();
124 void BuildCreateObjectLiteral(); 124 void BuildCreateObjectLiteral();
125 void BuildCreateArguments(CreateArgumentsParameters::Type type); 125 void BuildCreateArguments(CreateArgumentsParameters::Type type, int index);
126 void BuildLoadGlobal(TypeofMode typeof_mode); 126 void BuildLoadGlobal(TypeofMode typeof_mode);
127 void BuildStoreGlobal(); 127 void BuildStoreGlobal();
128 void BuildNamedLoad(); 128 void BuildNamedLoad();
129 void BuildKeyedLoad(); 129 void BuildKeyedLoad();
130 void BuildNamedStore(); 130 void BuildNamedStore();
131 void BuildKeyedStore(); 131 void BuildKeyedStore();
132 void BuildLdaLookupSlot(TypeofMode typeof_mode); 132 void BuildLdaLookupSlot(TypeofMode typeof_mode);
133 void BuildStaLookupSlot(LanguageMode language_mode); 133 void BuildStaLookupSlot(LanguageMode language_mode);
134 void BuildCall(); 134 void BuildCall();
135 void BuildCallJSRuntime(); 135 void BuildCallJSRuntime();
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 ZoneVector<Node*> exit_controls_; 257 ZoneVector<Node*> exit_controls_;
258 258
259 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder); 259 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder);
260 }; 260 };
261 261
262 } // namespace compiler 262 } // namespace compiler
263 } // namespace internal 263 } // namespace internal
264 } // namespace v8 264 } // namespace v8
265 265
266 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ 266 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698