Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(557)

Side by Side Diff: dart/lib/compiler/implementation/ssa/bailout.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « dart/lib/compiler/implementation/source_map_builder.dart ('k') | dart/lib/compiler/implementation/ssa/builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698