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

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

Issue 2957843002: Add gdb helper functions for creating a handle and using ToCString with RawObjects. (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « no previous file | runtime/lib/stacktrace.cc » ('j') | runtime/vm/gdb_helpers.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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/bootstrap_natives.h" 5 #include "vm/bootstrap_natives.h"
6 6
7 #include "lib/invocation_mirror.h" 7 #include "lib/invocation_mirror.h"
8 #include "vm/code_patcher.h" 8 #include "vm/code_patcher.h"
9 #include "vm/exceptions.h" 9 #include "vm/exceptions.h"
10 #include "vm/heap.h" 10 #include "vm/heap.h"
11 #include "vm/native_entry.h" 11 #include "vm/native_entry.h"
12 #include "vm/object.h" 12 #include "vm/object.h"
13 #include "vm/stack_frame.h" 13 #include "vm/stack_frame.h"
14 #include "vm/symbols.h" 14 #include "vm/symbols.h"
15 15
16 namespace dart { 16 namespace dart {
17 17
18 DECLARE_FLAG(bool, trace_type_checks); 18 DECLARE_FLAG(bool, trace_type_checks);
19 19
20 // Helper function in stacktrace.cc. 20 // Helper function in gdb_helpers.cc.
21 void _printCurrentStackTrace(); 21 void _printDartStackTrace();
22 22
23 DEFINE_NATIVE_ENTRY(DartAsync_fatal, 1) { 23 DEFINE_NATIVE_ENTRY(DartAsync_fatal, 1) {
24 // The dart:async library code entered an unrecoverable state. 24 // The dart:async library code entered an unrecoverable state.
25 const Instance& instance = Instance::CheckedHandle(arguments->NativeArgAt(0)); 25 const Instance& instance = Instance::CheckedHandle(arguments->NativeArgAt(0));
26 const char* msg = instance.ToCString(); 26 const char* msg = instance.ToCString();
27 OS::PrintErr("Fatal error in dart:async: %s\n", msg); 27 OS::PrintErr("Fatal error in dart:async: %s\n", msg);
28 _printCurrentStackTrace(); 28 _printDartStackTrace();
29 FATAL(msg); 29 FATAL(msg);
30 return Object::null(); 30 return Object::null();
31 } 31 }
32 32
33 33
34 DEFINE_NATIVE_ENTRY(Object_equals, 1) { 34 DEFINE_NATIVE_ENTRY(Object_equals, 1) {
35 // Implemented in the flow graph builder. 35 // Implemented in the flow graph builder.
36 UNREACHABLE(); 36 UNREACHABLE();
37 return Object::null(); 37 return Object::null();
38 } 38 }
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 for (intptr_t i = split; i < len; i++) { 393 for (intptr_t i = split; i < len; i++) {
394 type = function_type_arguments.IsNull() 394 type = function_type_arguments.IsNull()
395 ? Type::DynamicType() 395 ? Type::DynamicType()
396 : function_type_arguments.TypeAt(i - split); 396 : function_type_arguments.TypeAt(i - split);
397 result.SetTypeAt(i, type); 397 result.SetTypeAt(i, type);
398 } 398 }
399 return result.Canonicalize(); 399 return result.Canonicalize();
400 } 400 }
401 401
402 } // namespace dart 402 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | runtime/lib/stacktrace.cc » ('j') | runtime/vm/gdb_helpers.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698