Chromium Code Reviews

Unified Diff: src/interpreter/bytecodes.cc

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.
Jump to:
View side-by-side diff with in-line comments
Index: src/interpreter/bytecodes.cc
diff --git a/src/interpreter/bytecodes.cc b/src/interpreter/bytecodes.cc
index 5f7a9085aec33bdba04bcd4764a8cfac73a6e667..4507f279b5a6d92f74b6e158d2fe366ed8dd7593 100644
--- a/src/interpreter/bytecodes.cc
+++ b/src/interpreter/bytecodes.cc
@@ -287,7 +287,9 @@ bool Bytecodes::IsCallRuntime(Bytecode bytecode) {
return bytecode == Bytecode::kCallRuntime ||
bytecode == Bytecode::kCallRuntimeWide ||
bytecode == Bytecode::kCallRuntimeForPair ||
- bytecode == Bytecode::kCallRuntimeForPairWide;
+ bytecode == Bytecode::kCallRuntimeForPairWide ||
+ bytecode == Bytecode::kInvokeIntrinsic ||
+ bytecode == Bytecode::kInvokeIntrinsicWide;
}
// static

Powered by Google App Engine