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

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

Issue 2396433003: Lazy deopt: (Closed)
Patch Set: . Created 4 years, 2 months 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
« runtime/vm/stack_frame.h ('K') | « runtime/vm/stack_frame.h ('k') | no next file » | 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 #include "vm/stack_frame.h" 5 #include "vm/stack_frame.h"
6 6
7 #include "platform/memory_sanitizer.h" 7 #include "platform/memory_sanitizer.h"
8 #include "vm/assembler.h" 8 #include "vm/assembler.h"
9 #include "vm/deopt_instructions.h" 9 #include "vm/deopt_instructions.h"
10 #include "vm/isolate.h" 10 #include "vm/isolate.h"
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 #else 559 #else
560 return (index - num_materializations_); 560 return (index - num_materializations_);
561 #endif 561 #endif
562 } 562 }
563 } 563 }
564 UNREACHABLE(); 564 UNREACHABLE();
565 return 0; 565 return 0;
566 } 566 }
567 567
568 568
569 void ValidateFrames() {
Florian Schneider 2016/10/04 21:32:41 #ifdef DEBUG
rmacnak 2016/10/04 22:11:28 Done.
570 StackFrameIterator frames(StackFrameIterator::kValidateFrames);
571 StackFrame* frame = frames.NextFrame();
572 while (frame != NULL) {
573 frame = frames.NextFrame();
574 }
575 }
576
577
569 } // namespace dart 578 } // namespace dart
OLDNEW
« runtime/vm/stack_frame.h ('K') | « runtime/vm/stack_frame.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698