Home
last modified time | relevance | path

Searched refs:current_bytecode (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-array-accessor.cc32 Bytecode current_bytecode = Bytecodes::FromByte(current_byte); in UpdateOperandScale() local
33 if (Bytecodes::IsPrefixScalingBytecode(current_bytecode)) { in UpdateOperandScale()
35 Bytecodes::PrefixBytecodeToOperandScale(current_bytecode); in UpdateOperandScale()
48 Bytecode BytecodeArrayAccessor::current_bytecode() const { in current_bytecode() function in v8::internal::interpreter::BytecodeArrayAccessor
52 Bytecode current_bytecode = Bytecodes::FromByte(current_byte); in current_bytecode() local
53 DCHECK(!Bytecodes::IsPrefixScalingBytecode(current_bytecode)); in current_bytecode()
54 return current_bytecode; in current_bytecode()
59 Bytecodes::Size(current_bytecode(), current_operand_scale()); in current_bytecode_size()
65 DCHECK_LT(operand_index, Bytecodes::NumberOfOperands(current_bytecode())); in GetUnsignedOperand()
67 Bytecodes::GetOperandType(current_bytecode(), operand_index)); in GetUnsignedOperand()
[all …]
Dbytecode-array-accessor.h26 Bytecode current_bytecode() const;
/external/v8/src/compiler/
Dbytecode-analysis.cc252 Bytecode bytecode = iterator.current_bytecode(); in Analyze()
349 DCHECK_EQ(iterator.current_bytecode(), Bytecode::kJumpLoop); in Analyze()
368 Bytecode bytecode = iterator.current_bytecode(); in Analyze()
382 UpdateOutLiveness(iterator.current_bytecode(), *header_liveness.out, in Analyze()
505 Bytecode bytecode = iterator.current_bytecode(); in LivenessIsValid()
575 if (forward_iterator.current_bytecode() == Bytecode::kJumpLoop) { in LivenessIsValid()
581 if (forward_iterator.current_bytecode() == Bytecode::kJumpLoop) { in LivenessIsValid()
Dbytecode-graph-builder.cc660 iterator.current_bytecode() == interpreter::Bytecode::kStackCheck) { in VisitBytecodes()
665 switch (iterator.current_bytecode()) { in VisitBytecodes()
/external/v8/src/runtime/
Druntime-interpreter.cc65 interpreter::Bytecode bytecode = bytecode_iterator.current_bytecode(); in PrintRegisters()
/external/v8/src/debug/
Ddebug-evaluate.cc526 interpreter::Bytecode bytecode = it.current_bytecode(); in FunctionHasNoSideEffect()
/external/v8/src/
Dobjects.cc14695 if (interpreter::Bytecodes::IsJump(iterator.current_bytecode())) { in Disassemble()