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

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

Issue 509153003: New bigint implementation in the vm. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 "include/dart_api.h" 7 #include "include/dart_api.h"
8 8
9 #include "vm/bigint_operations.h"
10 #include "vm/exceptions.h" 9 #include "vm/exceptions.h"
11 #include "vm/native_entry.h" 10 #include "vm/native_entry.h"
12 #include "vm/object.h" 11 #include "vm/object.h"
13 #include "vm/object_store.h" 12 #include "vm/object_store.h"
14 13
15 namespace dart { 14 namespace dart {
16 15
17 DECLARE_FLAG(bool, trace_intrinsified_natives); 16 DECLARE_FLAG(bool, trace_intrinsified_natives);
18 17
19 // dart:profiler. 18 // dart:profiler.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 51
53 DEFINE_NATIVE_ENTRY(Profiler_getCurrentTag, 0) { 52 DEFINE_NATIVE_ENTRY(Profiler_getCurrentTag, 0) {
54 if (FLAG_trace_intrinsified_natives) { 53 if (FLAG_trace_intrinsified_natives) {
55 OS::Print("Profiler_getCurrentTag\n"); 54 OS::Print("Profiler_getCurrentTag\n");
56 } 55 }
57 return isolate->current_tag(); 56 return isolate->current_tag();
58 } 57 }
59 58
60 59
61 } // namespace dart 60 } // namespace dart
OLDNEW
« runtime/lib/bigint.dart ('K') | « runtime/lib/math.cc ('k') | runtime/lib/typed_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698