| 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 | |
| 7 class BailoutInfo { | 5 class BailoutInfo { |
| 8 int instructionId; | 6 int instructionId; |
| 9 int bailoutId; | 7 int bailoutId; |
| 10 BailoutInfo(this.instructionId, this.bailoutId); | 8 BailoutInfo(this.instructionId, this.bailoutId); |
| 11 } | 9 } |
| 12 | 10 |
| 13 /** | 11 /** |
| 14 * Keeps track of the execution environment for instructions. An | 12 * Keeps track of the execution environment for instructions. An |
| 15 * execution environment contains the SSA instructions that are live. | 13 * execution environment contains the SSA instructions that are live. |
| 16 */ | 14 */ |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 hasComplexBailoutTargets = true; | 537 hasComplexBailoutTargets = true; |
| 540 } | 538 } |
| 541 } else { | 539 } else { |
| 542 hasComplexBailoutTargets = true; | 540 hasComplexBailoutTargets = true; |
| 543 blocks.forEach((HBasicBlock block) { | 541 blocks.forEach((HBasicBlock block) { |
| 544 block.bailoutTargets.add(target); | 542 block.bailoutTargets.add(target); |
| 545 }); | 543 }); |
| 546 } | 544 } |
| 547 } | 545 } |
| 548 } | 546 } |
| OLD | NEW |