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

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

Issue 1541143003: [Interpreter] Adds support for Load/Store LookupSlots to BytecodeGraphBuilder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: removes an extra line in bytecode-graph-builder.h. Created 4 years, 12 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 const interpreter::BytecodeArrayIterator& iterator); 140 const interpreter::BytecodeArrayIterator& iterator);
141 void BuildCreateArguments(CreateArgumentsParameters::Type type, 141 void BuildCreateArguments(CreateArgumentsParameters::Type type,
142 const interpreter::BytecodeArrayIterator& iterator); 142 const interpreter::BytecodeArrayIterator& iterator);
143 void BuildLoadGlobal(const interpreter::BytecodeArrayIterator& iterator, 143 void BuildLoadGlobal(const interpreter::BytecodeArrayIterator& iterator,
144 TypeofMode typeof_mode); 144 TypeofMode typeof_mode);
145 void BuildStoreGlobal(const interpreter::BytecodeArrayIterator& iterator); 145 void BuildStoreGlobal(const interpreter::BytecodeArrayIterator& iterator);
146 void BuildNamedLoad(const interpreter::BytecodeArrayIterator& iterator); 146 void BuildNamedLoad(const interpreter::BytecodeArrayIterator& iterator);
147 void BuildKeyedLoad(const interpreter::BytecodeArrayIterator& iterator); 147 void BuildKeyedLoad(const interpreter::BytecodeArrayIterator& iterator);
148 void BuildNamedStore(const interpreter::BytecodeArrayIterator& iterator); 148 void BuildNamedStore(const interpreter::BytecodeArrayIterator& iterator);
149 void BuildKeyedStore(const interpreter::BytecodeArrayIterator& iterator); 149 void BuildKeyedStore(const interpreter::BytecodeArrayIterator& iterator);
150 void BuildLdaLookupSlot(TypeofMode typeof_mode,
151 const interpreter::BytecodeArrayIterator& iterator);
152 void BuildStaLookupSlot(LanguageMode language_mode,
153 const interpreter::BytecodeArrayIterator& iterator);
150 void BuildCall(const interpreter::BytecodeArrayIterator& iterator); 154 void BuildCall(const interpreter::BytecodeArrayIterator& iterator);
151 void BuildBinaryOp(const Operator* op, 155 void BuildBinaryOp(const Operator* op,
152 const interpreter::BytecodeArrayIterator& iterator); 156 const interpreter::BytecodeArrayIterator& iterator);
153 void BuildCompareOp(const Operator* op, 157 void BuildCompareOp(const Operator* op,
154 const interpreter::BytecodeArrayIterator& iterator); 158 const interpreter::BytecodeArrayIterator& iterator);
155 void BuildDelete(const interpreter::BytecodeArrayIterator& iterator); 159 void BuildDelete(const interpreter::BytecodeArrayIterator& iterator);
156 void BuildCastOperator(const Operator* js_op, 160 void BuildCastOperator(const Operator* js_op,
157 const interpreter::BytecodeArrayIterator& iterator); 161 const interpreter::BytecodeArrayIterator& iterator);
158 162
159 // Control flow plumbing. 163 // Control flow plumbing.
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 Node* accumulator_state_values_; 333 Node* accumulator_state_values_;
330 int register_base_; 334 int register_base_;
331 int accumulator_base_; 335 int accumulator_base_;
332 }; 336 };
333 337
334 } // namespace compiler 338 } // namespace compiler
335 } // namespace internal 339 } // namespace internal
336 } // namespace v8 340 } // namespace v8
337 341
338 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ 342 #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