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

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

Issue 11262032: Add 'part of' in dart2js code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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
« no previous file with comments | « lib/compiler/implementation/script.dart ('k') | lib/compiler/implementation/ssa/builder.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
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
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 }
OLDNEW
« no previous file with comments | « lib/compiler/implementation/script.dart ('k') | lib/compiler/implementation/ssa/builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698