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

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

Issue 2523053002: Implement rewind: drop one or more frames from the debugger. (Closed)
Patch Set: code review Created 4 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
« no previous file with comments | « runtime/vm/json_stream.cc ('k') | runtime/vm/raw_object.h » ('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 #include "vm/object.h" 5 #include "vm/object.h"
6 6
7 #include "include/dart_api.h" 7 #include "include/dart_api.h"
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "vm/assembler.h" 9 #include "vm/assembler.h"
10 #include "vm/become.h" 10 #include "vm/become.h"
(...skipping 11684 matching lines...) Expand 10 before | Expand all | Expand 10 after
11695 case RawPcDescriptors::kDeopt: 11695 case RawPcDescriptors::kDeopt:
11696 return "deopt "; 11696 return "deopt ";
11697 case RawPcDescriptors::kIcCall: 11697 case RawPcDescriptors::kIcCall:
11698 return "ic-call "; 11698 return "ic-call ";
11699 case RawPcDescriptors::kUnoptStaticCall: 11699 case RawPcDescriptors::kUnoptStaticCall:
11700 return "unopt-call "; 11700 return "unopt-call ";
11701 case RawPcDescriptors::kRuntimeCall: 11701 case RawPcDescriptors::kRuntimeCall:
11702 return "runtime-call "; 11702 return "runtime-call ";
11703 case RawPcDescriptors::kOsrEntry: 11703 case RawPcDescriptors::kOsrEntry:
11704 return "osr-entry "; 11704 return "osr-entry ";
11705 case RawPcDescriptors::kRewind:
11706 return "rewind ";
11705 case RawPcDescriptors::kOther: 11707 case RawPcDescriptors::kOther:
11706 return "other "; 11708 return "other ";
11707 case RawPcDescriptors::kAnyKind: 11709 case RawPcDescriptors::kAnyKind:
11708 UNREACHABLE(); 11710 UNREACHABLE();
11709 break; 11711 break;
11710 } 11712 }
11711 UNREACHABLE(); 11713 UNREACHABLE();
11712 return ""; 11714 return "";
11713 } 11715 }
11714 11716
(...skipping 11056 matching lines...) Expand 10 before | Expand all | Expand 10 after
22771 return UserTag::null(); 22773 return UserTag::null();
22772 } 22774 }
22773 22775
22774 22776
22775 const char* UserTag::ToCString() const { 22777 const char* UserTag::ToCString() const {
22776 const String& tag_label = String::Handle(label()); 22778 const String& tag_label = String::Handle(label());
22777 return tag_label.ToCString(); 22779 return tag_label.ToCString();
22778 } 22780 }
22779 22781
22780 } // namespace dart 22782 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/json_stream.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698