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

Unified Diff: src/interpreter/bytecodes.h

Issue 1362383002: [Interpreter] Add CallRuntime support to the interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Move function address calculation into bytecode handler and have an option on CEntry stub for argv_… 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/interpreter/bytecodes.h
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
index e85966bdb7c2494b35ea4dabef1e2cee8cee7d23..cb09f6c4b2d1b302d488eda922a5c2c863fe161c 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -67,6 +67,8 @@ namespace interpreter {
\
/* Call operations. */ \
V(Call, OperandType::kReg, OperandType::kReg, OperandType::kCount) \
+ V(CallRuntime, OperandType::kWideIdx, OperandType::kReg, \
+ OperandType::kCount) \
\
/* Test Operators */ \
V(TestEqual, OperandType::kReg) \

Powered by Google App Engine
This is Rietveld 408576698