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

Side by Side Diff: runtime/vm/intermediate_language.cc

Issue 11418135: Heuristically predict interference on the back edge and use it to minimize number of register reshu… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 #include "vm/intermediate_language.h" 5 #include "vm/intermediate_language.h"
6 6
7 #include "vm/bit_vector.h" 7 #include "vm/bit_vector.h"
8 #include "vm/dart_entry.h" 8 #include "vm/dart_entry.h"
9 #include "vm/flow_graph_allocator.h" 9 #include "vm/flow_graph_allocator.h"
10 #include "vm/flow_graph_builder.h" 10 #include "vm/flow_graph_builder.h"
(...skipping 2639 matching lines...) Expand 10 before | Expand all | Expand 10 after
2650 return String::length_offset(); 2650 return String::length_offset();
2651 case kArrayCid: 2651 case kArrayCid:
2652 case kImmutableArrayCid: 2652 case kImmutableArrayCid:
2653 return Array::length_offset(); 2653 return Array::length_offset();
2654 default: 2654 default:
2655 UNREACHABLE(); 2655 UNREACHABLE();
2656 return -1; 2656 return -1;
2657 } 2657 }
2658 } 2658 }
2659 2659
2660
2660 #undef __ 2661 #undef __
2661 2662
2662 } // namespace dart 2663 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698