Lines Matching defs:bytecode
31 #include "src/interpreter/bytecode-array-iterator.h"
289 interpreter::Bytecode bytecode =
292 // Make sure we read the actual bytecode, not a prefix scaling bytecode.
293 if (interpreter::Bytecodes::IsPrefixScalingBytecode(bytecode)) {
294 bytecode =
298 if (bytecode == interpreter::Bytecode::kDebugger) {
300 } else if (bytecode == interpreter::Bytecode::kReturn) {
302 } else if (bytecode == interpreter::Bytecode::kSuspendGenerator) {
304 } else if (interpreter::Bytecodes::IsCallOrConstruct(bytecode)) {
348 // bytecode array, and we'll read the actual generator object off the
1526 // To prepare bytecode for debugging, we already need to have the debug
1536 // Have to discard baseline code before installing debug bytecode, since the
1537 // bytecode array field on the baseline code object is immutable.
2765 // If function has bytecode array then prepare function for debug
2804 // calling set accessors go through a store bytecode. Store bytecodes
2853 Bytecode bytecode = bytecode_iterator.current_bytecode();
2854 if (interpreter::Bytecodes::IsCallRuntime(bytecode)) {
2855 auto id = (bytecode == Bytecode::kInvokeIntrinsic)
2867 switch (bytecode) {