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

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: 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 4e7707af3f14f6b5a2f3168a60fc87e51fb6f536..a8a7ba1b550f5ef0ed1ce93ca2466fd9c1817abd 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -261,7 +261,10 @@ namespace interpreter {
/* Non-local flow control */ \
V(Throw, OperandType::kNone) \
V(ReThrow, OperandType::kNone) \
- V(Return, OperandType::kNone)
+ V(Return, OperandType::kNone) \
+ \
+ /* Intrinsics */ \
+ V(IntrinsicOneArg, OperandType::kIdx16, OperandType::kMaybeReg16)
oth 2016/02/01 09:52:33 Can this be called this CallIntrinsic or InvokeInt
rmcilroy 2016/02/01 11:04:44 +1 for InvokeIntrinsic and the comment on using kR
epertoso 2016/03/03 11:20:39 Added InvokeIntrinsic and InvokeIntrinsicWide. As
// Enumeration of the size classes of operand types used by bytecodes.
enum class OperandSize : uint8_t {

Powered by Google App Engine
This is Rietveld 408576698