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

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

Issue 1468003002: [Interpreter] Add support for cast operators to bytecode graph builder and (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased the patch and removed unused definitions of matcher classes in unittests Created 5 years 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
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/js-graph.h" 9 #include "src/compiler/js-graph.h"
10 #include "src/interpreter/bytecode-array-iterator.h" 10 #include "src/interpreter/bytecode-array-iterator.h"
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 void BuildNamedLoad(const interpreter::BytecodeArrayIterator& iterator); 110 void BuildNamedLoad(const interpreter::BytecodeArrayIterator& iterator);
111 void BuildKeyedLoad(const interpreter::BytecodeArrayIterator& iterator); 111 void BuildKeyedLoad(const interpreter::BytecodeArrayIterator& iterator);
112 void BuildNamedStore(const interpreter::BytecodeArrayIterator& iterator); 112 void BuildNamedStore(const interpreter::BytecodeArrayIterator& iterator);
113 void BuildKeyedStore(const interpreter::BytecodeArrayIterator& iterator); 113 void BuildKeyedStore(const interpreter::BytecodeArrayIterator& iterator);
114 void BuildCall(const interpreter::BytecodeArrayIterator& iterator); 114 void BuildCall(const interpreter::BytecodeArrayIterator& iterator);
115 void BuildBinaryOp(const Operator* op, 115 void BuildBinaryOp(const Operator* op,
116 const interpreter::BytecodeArrayIterator& iterator); 116 const interpreter::BytecodeArrayIterator& iterator);
117 void BuildCompareOp(const Operator* op, 117 void BuildCompareOp(const Operator* op,
118 const interpreter::BytecodeArrayIterator& iterator); 118 const interpreter::BytecodeArrayIterator& iterator);
119 void BuildDelete(const interpreter::BytecodeArrayIterator& iterator); 119 void BuildDelete(const interpreter::BytecodeArrayIterator& iterator);
120 void BuildCastOperator(const Operator* js_op,
121 const interpreter::BytecodeArrayIterator& iterator);
120 122
121 // Growth increment for the temporary buffer used to construct input lists to 123 // Growth increment for the temporary buffer used to construct input lists to
122 // new nodes. 124 // new nodes.
123 static const int kInputBufferSizeIncrement = 64; 125 static const int kInputBufferSizeIncrement = 64;
124 126
125 // Field accessors 127 // Field accessors
126 CommonOperatorBuilder* common() const { return jsgraph_->common(); } 128 CommonOperatorBuilder* common() const { return jsgraph_->common(); }
127 Zone* graph_zone() const { return graph()->zone(); } 129 Zone* graph_zone() const { return graph()->zone(); }
128 CompilationInfo* info() const { return info_; } 130 CompilationInfo* info() const { return info_; }
129 JSGraph* jsgraph() const { return jsgraph_; } 131 JSGraph* jsgraph() const { return jsgraph_; }
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 NodeVector values_; 222 NodeVector values_;
221 int register_base_; 223 int register_base_;
222 }; 224 };
223 225
224 226
225 } // namespace compiler 227 } // namespace compiler
226 } // namespace internal 228 } // namespace internal
227 } // namespace v8 229 } // namespace v8
228 230
229 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ 231 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | src/interpreter/bytecode-array-builder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698