Lines Matching defs:bytecode
198 // TODO(v8:11429): Decide if this return bytecode or baseline code, when the
241 // If there is no bytecode array, it is either not compiled or it is compiled
592 void SharedFunctionInfo::SetActiveBytecodeArray(BytecodeArray bytecode) {
593 // We don't allow setting the active bytecode array on baseline-optimized
599 set_function_data(bytecode, kReleaseStore);
602 interpreter_data().set_bytecode_array(bytecode);
606 void SharedFunctionInfo::set_bytecode_array(BytecodeArray bytecode) {
609 set_function_data(bytecode, kReleaseStore);
616 // TODO(rmcilroy): Enable bytecode flushing for resumable functions.
621 // Get a snapshot of the function data field, and if it is a bytecode array,
629 // we cannot flush baseline / bytecode.
633 // If bytecode flushing isn't enabled and there is no baseline code there is
641 BytecodeArray bytecode = BytecodeArray::cast(data);
643 return bytecode.IsOld();