| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of ssa; |
| 6 |
| 5 class BailoutInfo { | 7 class BailoutInfo { |
| 6 int instructionId; | 8 int instructionId; |
| 7 int bailoutId; | 9 int bailoutId; |
| 8 BailoutInfo(this.instructionId, this.bailoutId); | 10 BailoutInfo(this.instructionId, this.bailoutId); |
| 9 } | 11 } |
| 10 | 12 |
| 11 /** | 13 /** |
| 12 * Keeps track of the execution environment for instructions. An | 14 * Keeps track of the execution environment for instructions. An |
| 13 * execution environment contains the SSA instructions that are live. | 15 * execution environment contains the SSA instructions that are live. |
| 14 */ | 16 */ |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 hasComplexBailoutTargets = true; | 539 hasComplexBailoutTargets = true; |
| 538 } | 540 } |
| 539 } else { | 541 } else { |
| 540 hasComplexBailoutTargets = true; | 542 hasComplexBailoutTargets = true; |
| 541 blocks.forEach((HBasicBlock block) { | 543 blocks.forEach((HBasicBlock block) { |
| 542 block.bailoutTargets.add(target); | 544 block.bailoutTargets.add(target); |
| 543 }); | 545 }); |
| 544 } | 546 } |
| 545 } | 547 } |
| 546 } | 548 } |
| OLD | NEW |