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

Unified Diff: src/assembler.cc

Issue 6170001: Direct call api functions (arm implementation) (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 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: src/assembler.cc
===================================================================
--- src/assembler.cc (revision 6213)
+++ src/assembler.cc (working copy)
@@ -552,8 +552,10 @@
: address_(Redirect(Builtins::c_function_address(id))) {}
-ExternalReference::ExternalReference(ApiFunction* fun)
- : address_(Redirect(fun->address())) {}
+ExternalReference::ExternalReference(
+ ApiFunction* fun, bool fp_return = false,
+ Type type = ExternalReference::BUILTIN_CALL)
+ : address_(Redirect(fun->address(), fp_return, type)) {}
ExternalReference::ExternalReference(Builtins::Name name)
@@ -891,6 +893,7 @@
}
+ExternalReference::
ExternalReferenceRedirector* ExternalReference::redirector_ = NULL;

Powered by Google App Engine
This is Rietveld 408576698