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

Unified Diff: runtime/vm/pages.h

Issue 180243013: Stop creating dummy call frames when calling out to C functions (Closed) Base URL: https://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/pages.h
diff --git a/runtime/vm/pages.h b/runtime/vm/pages.h
index f20b440f5d26beac84fa60c24d5f6258b5b8a099..8f767d9225075effc77a3e208ebcf793b5d7fb86 100644
--- a/runtime/vm/pages.h
+++ b/runtime/vm/pages.h
@@ -43,6 +43,14 @@ class HeapPage {
return object_end_;
}
+ uword start() const {
+ return memory_->start();
+ }
+
+ uword end() const {
+ return memory_->end();
+ }
siva 2014/02/27 00:00:26 Where are these used? I don't see any code using t
Cutch 2014/02/27 15:52:37 Left over debug code. Removed.
+
PageType type() const {
return executable_ ? kExecutable : kData;
}

Powered by Google App Engine
This is Rietveld 408576698