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

Unified Diff: src/interpreter/bytecodes.h

Issue 1645763003: [Interpreter] TurboFan implementation of intrinsics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Update. Created 4 years, 10 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 f854edf5168d3715e48bd00f5f1f8c3e973db6e8..cbd6ed335910779ad7c4a91a0882fe93ced9705b 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -279,6 +279,12 @@ namespace interpreter {
V(ReThrow, OperandType::kNone) \
V(Return, OperandType::kNone) \
\
+ /* Intrinsics */ \
+ V(InvokeIntrinsic, OperandType::kIdx16, OperandType::kMaybeReg8, \
+ OperandType::kRegCount8) \
+ V(InvokeIntrinsicWide, OperandType::kIdx16, OperandType::kMaybeReg16, \
+ OperandType::kRegCount16) \
+ \
/* Debugger */ \
V(Debugger, OperandType::kNone) \
DEBUG_BREAK_BYTECODE_LIST(V)

Powered by Google App Engine
This is Rietveld 408576698