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 #include "src/compiler/bytecode-graph-builder.h" | 5 #include "src/compiler/bytecode-graph-builder.h" |
6 | 6 |
7 #include "src/compiler/linkage.h" | 7 #include "src/compiler/linkage.h" |
8 #include "src/compiler/operator-properties.h" | 8 #include "src/compiler/operator-properties.h" |
9 #include "src/interpreter/bytecode-array-iterator.h" | 9 #include "src/interpreter/bytecode-array-iterator.h" |
10 | 10 |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 UNIMPLEMENTED(); | 326 UNIMPLEMENTED(); |
327 } | 327 } |
328 | 328 |
329 | 329 |
330 void BytecodeGraphBuilder::VisitPopContext( | 330 void BytecodeGraphBuilder::VisitPopContext( |
331 const interpreter::BytecodeArrayIterator& iterator) { | 331 const interpreter::BytecodeArrayIterator& iterator) { |
332 UNIMPLEMENTED(); | 332 UNIMPLEMENTED(); |
333 } | 333 } |
334 | 334 |
335 | 335 |
| 336 void BytecodeGraphBuilder::VisitCreateArrayLiteral( |
| 337 const interpreter::BytecodeArrayIterator& iterator) { |
| 338 UNIMPLEMENTED(); |
| 339 } |
| 340 |
| 341 |
| 342 void BytecodeGraphBuilder::VisitKeyedStoreICGeneric( |
| 343 const interpreter::BytecodeArrayIterator& iterator) { |
| 344 UNIMPLEMENTED(); |
| 345 } |
| 346 |
| 347 |
336 void BytecodeGraphBuilder::VisitCall( | 348 void BytecodeGraphBuilder::VisitCall( |
337 const interpreter::BytecodeArrayIterator& iterator) { | 349 const interpreter::BytecodeArrayIterator& iterator) { |
338 UNIMPLEMENTED(); | 350 UNIMPLEMENTED(); |
339 } | 351 } |
340 | 352 |
341 | 353 |
342 void BytecodeGraphBuilder::VisitCallRuntime( | 354 void BytecodeGraphBuilder::VisitCallRuntime( |
343 const interpreter::BytecodeArrayIterator& iterator) { | 355 const interpreter::BytecodeArrayIterator& iterator) { |
344 UNIMPLEMENTED(); | 356 UNIMPLEMENTED(); |
345 } | 357 } |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 | 658 |
647 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { | 659 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { |
648 if (environment()->IsMarkedAsUnreachable()) return; | 660 if (environment()->IsMarkedAsUnreachable()) return; |
649 environment()->MarkAsUnreachable(); | 661 environment()->MarkAsUnreachable(); |
650 exit_controls_.push_back(exit); | 662 exit_controls_.push_back(exit); |
651 } | 663 } |
652 | 664 |
653 } // namespace compiler | 665 } // namespace compiler |
654 } // namespace internal | 666 } // namespace internal |
655 } // namespace v8 | 667 } // namespace v8 |
OLD | NEW |