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

Unified Diff: vm/bitmap_test.cc

Issue 9791048: - Wire the stack frame iterator to use stack maps for traversing objects if there are stack maps in… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « vm/bitmap.cc ('k') | vm/code_descriptors.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/bitmap_test.cc
===================================================================
--- vm/bitmap_test.cc (revision 6294)
+++ vm/bitmap_test.cc (working copy)
@@ -37,8 +37,7 @@
value = !value;
}
// Create a Bitmap object from the builder and verify it's contents.
- const Stackmap& bmap1 = Stackmap::Handle(
- Stackmap::New(0, Code::Handle(), bmap1_builder));
+ const Stackmap& bmap1 = Stackmap::Handle(Stackmap::New(0, bmap1_builder));
EXPECT_EQ(1022, bmap1_builder->Maximum());
EXPECT_EQ(0, bmap1_builder->Minimum());
OS::Print("%s\n", bmap1.ToCString());
@@ -62,8 +61,7 @@
for (int32_t i = 1025; i <= 2048; i++) {
EXPECT(!bmap1_builder->Get(i));
}
- const Stackmap& bmap2 = Stackmap::Handle(
- Stackmap::New(0, Code::Handle(), bmap1_builder));
+ const Stackmap& bmap2 = Stackmap::Handle(Stackmap::New(0, bmap1_builder));
EXPECT_EQ(1024, bmap1_builder->Maximum());
EXPECT_EQ(257, bmap1_builder->Minimum());
for (int32_t i = 0; i <= 256; i++) {
« no previous file with comments | « vm/bitmap.cc ('k') | vm/code_descriptors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698