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

Unified Diff: src/assembler.cc

Issue 1362383002: [Interpreter] Add CallRuntime support to the interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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
diff --git a/src/assembler.cc b/src/assembler.cc
index c81cdc2b78a39c4dc0f7a5cb5effdc661529ab48..2dad518914804a115f2599c29185c7a468939f51 100644
--- a/src/assembler.cc
+++ b/src/assembler.cc
@@ -1413,6 +1413,12 @@ ExternalReference ExternalReference::vector_store_virtual_register(
}
+ExternalReference ExternalReference::runtime_function_table_address() {
+ return ExternalReference(const_cast<Runtime::Function*>(
+ Runtime::FunctionForId(static_cast<Runtime::FunctionId>(0))));
+}
+
+
double power_helper(double x, double y) {
int y_int = static_cast<int>(y);
if (y == y_int) {
« no previous file with comments | « src/assembler.h ('k') | src/builtins.h » ('j') | src/interpreter/interpreter.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698