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

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

Issue 2684033006: Move _fatal from dart:core to dart:_internal (Closed)
Patch Set: Created 3 years, 10 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 | « runtime/lib/internal_patch.dart ('k') | runtime/vm/bootstrap_natives.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) 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 stacktrace.cc.
21 void _printCurrentStackTrace(); 21 void _printCurrentStackTrace();
22 22
23 DEFINE_NATIVE_ENTRY(DartCore_fatal, 1) { 23 DEFINE_NATIVE_ENTRY(DartInternal_fatal, 1) {
24 // The core library code entered an unrecoverable state. 24 // The SDK 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:core\n"); 27 OS::PrintErr("Fatal error in the SDK libraries\n");
28 _printCurrentStackTrace(); 28 _printCurrentStackTrace();
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();
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 402
403 DEFINE_NATIVE_ENTRY(Internal_inquireIs64Bit, 0) { 403 DEFINE_NATIVE_ENTRY(Internal_inquireIs64Bit, 0) {
404 #if defined(ARCH_IS_64_BIT) 404 #if defined(ARCH_IS_64_BIT)
405 return Bool::True().raw(); 405 return Bool::True().raw();
406 #else 406 #else
407 return Bool::False().raw(); 407 return Bool::False().raw();
408 #endif // defined(ARCH_IS_64_BIT) 408 #endif // defined(ARCH_IS_64_BIT)
409 } 409 }
410 410
411 } // namespace dart 411 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/lib/internal_patch.dart ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698