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

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 939773003: - Simplify collection of stack traces. If we determine that a stack (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « runtime/lib/stacktrace.dart ('k') | runtime/vm/exceptions.cc » ('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 #ifndef VM_BOOTSTRAP_NATIVES_H_ 5 #ifndef VM_BOOTSTRAP_NATIVES_H_
6 #define VM_BOOTSTRAP_NATIVES_H_ 6 #define VM_BOOTSTRAP_NATIVES_H_
7 7
8 #include "vm/native_entry.h" 8 #include "vm/native_entry.h"
9 9
10 // bootstrap dart natives used in the core dart library. 10 // bootstrap dart natives used in the core dart library.
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 V(Random_setupSeed, 1) \ 133 V(Random_setupSeed, 1) \
134 V(Random_initialSeed, 0) \ 134 V(Random_initialSeed, 0) \
135 V(DateNatives_currentTimeMillis, 0) \ 135 V(DateNatives_currentTimeMillis, 0) \
136 V(DateNatives_timeZoneName, 1) \ 136 V(DateNatives_timeZoneName, 1) \
137 V(DateNatives_timeZoneOffsetInSeconds, 1) \ 137 V(DateNatives_timeZoneOffsetInSeconds, 1) \
138 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \ 138 V(DateNatives_localTimeZoneAdjustmentInSeconds, 0) \
139 V(AssertionError_throwNew, 2) \ 139 V(AssertionError_throwNew, 2) \
140 V(TypeError_throwNew, 5) \ 140 V(TypeError_throwNew, 5) \
141 V(FallThroughError_throwNew, 1) \ 141 V(FallThroughError_throwNew, 1) \
142 V(AbstractClassInstantiationError_throwNew, 2) \ 142 V(AbstractClassInstantiationError_throwNew, 2) \
143 V(Stacktrace_setupFullStacktrace, 1) \
144 V(Stopwatch_now, 0) \ 143 V(Stopwatch_now, 0) \
145 V(Stopwatch_frequency, 0) \ 144 V(Stopwatch_frequency, 0) \
146 V(TypedData_Int8Array_new, 1) \ 145 V(TypedData_Int8Array_new, 1) \
147 V(TypedData_Uint8Array_new, 1) \ 146 V(TypedData_Uint8Array_new, 1) \
148 V(TypedData_Uint8ClampedArray_new, 1) \ 147 V(TypedData_Uint8ClampedArray_new, 1) \
149 V(TypedData_Int16Array_new, 1) \ 148 V(TypedData_Int16Array_new, 1) \
150 V(TypedData_Uint16Array_new, 1) \ 149 V(TypedData_Uint16Array_new, 1) \
151 V(TypedData_Int32Array_new, 1) \ 150 V(TypedData_Int32Array_new, 1) \
152 V(TypedData_Uint32Array_new, 1) \ 151 V(TypedData_Uint32Array_new, 1) \
153 V(TypedData_Int64Array_new, 1) \ 152 V(TypedData_Int64Array_new, 1) \
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 static void DN_##name(Dart_NativeArguments args); 388 static void DN_##name(Dart_NativeArguments args);
390 389
391 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 390 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
392 391
393 #undef DECLARE_BOOTSTRAP_NATIVE 392 #undef DECLARE_BOOTSTRAP_NATIVE
394 }; 393 };
395 394
396 } // namespace dart 395 } // namespace dart
397 396
398 #endif // VM_BOOTSTRAP_NATIVES_H_ 397 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/stacktrace.dart ('k') | runtime/vm/exceptions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698