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

Unified Diff: runtime/vm/snapshot_test.cc

Issue 137483010: Add more timing information in the VM to track time spent is dart code Vs native code. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/snapshot_test.cc
===================================================================
--- runtime/vm/snapshot_test.cc (revision 32362)
+++ runtime/vm/snapshot_test.cc (working copy)
@@ -1598,7 +1598,7 @@
EXPECT(Dart_IsString(crappy_string_result));
{
- DARTSCOPE(isolate);
+ HANDLESCOPE(isolate);
{
StackZone zone(Isolate::Current());
@@ -1689,7 +1689,7 @@
EXPECT_VALID(lib);
{
- DARTSCOPE(isolate);
+ HANDLESCOPE(isolate);
{
// Generate a list of nulls from Dart code.
ApiNativeScope scope;
@@ -1807,7 +1807,7 @@
EXPECT_VALID(lib);
{
- DARTSCOPE(isolate);
+ HANDLESCOPE(isolate);
{
// Generate a list of nulls from Dart code.
ApiNativeScope scope;
@@ -2039,7 +2039,7 @@
EXPECT_VALID(lib);
{
- DARTSCOPE(isolate);
+ HANDLESCOPE(isolate);
{
// Generate a list of strings from Dart code.
@@ -2244,7 +2244,7 @@
EXPECT_VALID(lib);
{
- DARTSCOPE(isolate);
+ HANDLESCOPE(isolate);
{
// Generate a list of strings from Dart code.
ApiNativeScope scope;
@@ -2463,7 +2463,7 @@
EXPECT_VALID(lib);
{
- DARTSCOPE(isolate);
+ HANDLESCOPE(isolate);
{
// Generate a list of Uint8Lists from Dart code.
ApiNativeScope scope;

Powered by Google App Engine
This is Rietveld 408576698