| OLD | NEW |
| 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/bytecode-loop-analysis.h" | 10 #include "src/compiler/bytecode-loop-analysis.h" |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 void BuildBinaryOpWithImmediate(const Operator* op); | 130 void BuildBinaryOpWithImmediate(const Operator* op); |
| 131 void BuildCompareOp(const Operator* op); | 131 void BuildCompareOp(const Operator* op); |
| 132 void BuildDelete(LanguageMode language_mode); | 132 void BuildDelete(LanguageMode language_mode); |
| 133 void BuildCastOperator(const Operator* op); | 133 void BuildCastOperator(const Operator* op); |
| 134 void BuildForInPrepare(); | 134 void BuildForInPrepare(); |
| 135 void BuildForInNext(); | 135 void BuildForInNext(); |
| 136 void BuildInvokeIntrinsic(); | 136 void BuildInvokeIntrinsic(); |
| 137 | 137 |
| 138 // Helper function to create binary operation hint from the recorded | 138 // Helper function to create binary operation hint from the recorded |
| 139 // type feedback. | 139 // type feedback. |
| 140 BinaryOperationHints GetBinaryOperationHint(); | 140 BinaryOperationHint GetBinaryOperationHint(); |
| 141 | 141 |
| 142 // Control flow plumbing. | 142 // Control flow plumbing. |
| 143 void BuildJump(); | 143 void BuildJump(); |
| 144 void BuildConditionalJump(Node* condition); | 144 void BuildConditionalJump(Node* condition); |
| 145 void BuildJumpIfEqual(Node* comperand); | 145 void BuildJumpIfEqual(Node* comperand); |
| 146 void BuildJumpIfToBooleanEqual(Node* boolean_comperand); | 146 void BuildJumpIfToBooleanEqual(Node* boolean_comperand); |
| 147 void BuildJumpIfNotHole(); | 147 void BuildJumpIfNotHole(); |
| 148 | 148 |
| 149 // Simulates control flow by forward-propagating environments. | 149 // Simulates control flow by forward-propagating environments. |
| 150 void MergeIntoSuccessorEnvironment(int target_offset); | 150 void MergeIntoSuccessorEnvironment(int target_offset); |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 ZoneVector<Node*> exit_controls_; | 259 ZoneVector<Node*> exit_controls_; |
| 260 | 260 |
| 261 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder); | 261 DISALLOW_COPY_AND_ASSIGN(BytecodeGraphBuilder); |
| 262 }; | 262 }; |
| 263 | 263 |
| 264 } // namespace compiler | 264 } // namespace compiler |
| 265 } // namespace internal | 265 } // namespace internal |
| 266 } // namespace v8 | 266 } // namespace v8 |
| 267 | 267 |
| 268 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ | 268 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ |
| OLD | NEW |