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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 environment()->BindRegister(iterator.GetRegisterOperand(0), value); | 248 environment()->BindRegister(iterator.GetRegisterOperand(0), value); |
249 } | 249 } |
250 | 250 |
251 | 251 |
252 void BytecodeGraphBuilder::VisitLdaGlobal( | 252 void BytecodeGraphBuilder::VisitLdaGlobal( |
253 const interpreter::BytecodeArrayIterator& iterator) { | 253 const interpreter::BytecodeArrayIterator& iterator) { |
254 UNIMPLEMENTED(); | 254 UNIMPLEMENTED(); |
255 } | 255 } |
256 | 256 |
257 | 257 |
| 258 void BytecodeGraphBuilder::VisitStaGlobal( |
| 259 const interpreter::BytecodeArrayIterator& iterator) { |
| 260 UNIMPLEMENTED(); |
| 261 } |
| 262 |
| 263 |
| 264 void BytecodeGraphBuilder::VisitLdaContextSlot( |
| 265 const interpreter::BytecodeArrayIterator& iterator) { |
| 266 UNIMPLEMENTED(); |
| 267 } |
| 268 |
| 269 |
258 void BytecodeGraphBuilder::VisitLoadICSloppy( | 270 void BytecodeGraphBuilder::VisitLoadICSloppy( |
259 const interpreter::BytecodeArrayIterator& iterator) { | 271 const interpreter::BytecodeArrayIterator& iterator) { |
260 UNIMPLEMENTED(); | 272 UNIMPLEMENTED(); |
261 } | 273 } |
262 | 274 |
263 | 275 |
264 void BytecodeGraphBuilder::VisitLoadICStrict( | 276 void BytecodeGraphBuilder::VisitLoadICStrict( |
265 const interpreter::BytecodeArrayIterator& iterator) { | 277 const interpreter::BytecodeArrayIterator& iterator) { |
266 UNIMPLEMENTED(); | 278 UNIMPLEMENTED(); |
267 } | 279 } |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 | 592 |
581 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { | 593 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { |
582 if (environment()->IsMarkedAsUnreachable()) return; | 594 if (environment()->IsMarkedAsUnreachable()) return; |
583 environment()->MarkAsUnreachable(); | 595 environment()->MarkAsUnreachable(); |
584 exit_controls_.push_back(exit); | 596 exit_controls_.push_back(exit); |
585 } | 597 } |
586 | 598 |
587 } // namespace compiler | 599 } // namespace compiler |
588 } // namespace internal | 600 } // namespace internal |
589 } // namespace v8 | 601 } // namespace v8 |
OLD | NEW |