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

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

Issue 2521413002: Revert "Implement rewind: drop one or more frames from the debugger." (Closed)
Patch Set: Created 4 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
« 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 ";
11707 case RawPcDescriptors::kOther: 11705 case RawPcDescriptors::kOther:
11708 return "other "; 11706 return "other ";
11709 case RawPcDescriptors::kAnyKind: 11707 case RawPcDescriptors::kAnyKind:
11710 UNREACHABLE(); 11708 UNREACHABLE();
11711 break; 11709 break;
11712 } 11710 }
11713 UNREACHABLE(); 11711 UNREACHABLE();
11714 return ""; 11712 return "";
11715 } 11713 }
11716 11714
(...skipping 11051 matching lines...) Expand 10 before | Expand all | Expand 10 after
22768 return UserTag::null(); 22766 return UserTag::null();
22769 } 22767 }
22770 22768
22771 22769
22772 const char* UserTag::ToCString() const { 22770 const char* UserTag::ToCString() const {
22773 const String& tag_label = String::Handle(label()); 22771 const String& tag_label = String::Handle(label());
22774 return tag_label.ToCString(); 22772 return tag_label.ToCString();
22775 } 22773 }
22776 22774
22777 } // namespace dart 22775 } // 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