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

Unified Diff: runtime/vm/runtime_entry.h

Issue 8818001: Add 64-bit stubs to call into the runtime and to call native functions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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/runtime_entry.h
===================================================================
--- runtime/vm/runtime_entry.h (revision 2143)
+++ runtime/vm/runtime_entry.h (working copy)
@@ -33,6 +33,11 @@
int argument_count() const { return argument_count_; }
uword GetEntryPoint() const { return reinterpret_cast<uword>(function()); }
+ // Add function to a class and that class to the class dictionary so that
+ // frame walking can be used (for testing purposes only).
+ static const Function& RegisterFakeFunction(const char* name,
Ivan Posva 2011/12/07 08:34:51 Please do not put testing code into non-test sourc
regis 2011/12/07 19:37:36 Made the function global in runtime_entry_test.cc.
+ const Code& code);
+
// Generate code to call the runtime entry.
void CallFromDart(Assembler* assembler) const;
void CallFromStub(Assembler* assembler) const;

Powered by Google App Engine
This is Rietveld 408576698