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

Unified Diff: src/interpreter/bytecodes.h

Issue 1568493002: [Interpreter] Add support for calling runtime functions which return a pair. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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/interpreter/bytecodes.h
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
index 5a3e46805f3b0df4ebbbbdcabd6548ca6a720341..71d327b0a7b70a758d594c0470e933df28fe40a6 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -141,6 +141,8 @@ namespace interpreter {
OperandType::kIdx16) \
V(CallRuntime, OperandType::kIdx16, OperandType::kMaybeReg8, \
OperandType::kCount8) \
+ V(CallRuntimePair, OperandType::kIdx16, OperandType::kMaybeReg8, \
+ OperandType::kCount8, OperandType::kReg8) \
oth 2016/01/06 16:26:07 The problem with this bytecode is that the set of
rmcilroy 2016/01/06 16:48:34 We should talk about this when your back in the of
rmcilroy 2016/01/07 17:21:43 As discussed offline, I've changed this to use a n
V(CallJSRuntime, OperandType::kIdx16, OperandType::kReg8, \
OperandType::kCount8) \
\

Powered by Google App Engine
This is Rietveld 408576698