Lines Matching defs:bytecode
28 #include "src/interpreter/bytecode-array-iterator.h"
29 #include "src/interpreter/bytecode-flags.h"
268 Handle<BytecodeArray> bytecode)
272 bytecode_(bytecode),
274 CodeObjectRequired::kNo, AllocateBuffer(bytecode)),
282 // based on the size of the bytecode, to be:
284 // 16 + (bytecode size) / 4
325 // Allocate the bytecode offset table.
340 int BaselineCompiler::EstimateInstructionSize(BytecodeArray bytecode) {
341 return bytecode.length() * kAverageBytecodeToInstructionRatio;
442 // TODO(leszeks): Update the max_call_args as part of the main bytecode
502 interpreter::Bytecode bytecode = iterator().current_bytecode();
506 // We should make sure to preserve the accumulator whenever the bytecode
511 !interpreter::Bytecodes::WritesAccumulator(bytecode) &&
512 !interpreter::Bytecodes::IsJump(bytecode) &&
513 !interpreter::Bytecodes::IsSwitch(bytecode)) {
518 switch (bytecode) {
562 ? "Trace bytecode entry"
563 : "Trace bytecode exit");
1956 // OSR based on the install target offset, i.e. does the current bytecode
2329 // Not emitted in valid bytecode.