Lines Matching refs:BytecodeInstruction
25 bool DropframeManager::IsNewlexenvOpcode(BytecodeInstruction::Opcode op) in IsNewlexenvOpcode()
28 case BytecodeInstruction::Opcode::NEWLEXENV_IMM8: in IsNewlexenvOpcode()
29 case BytecodeInstruction::Opcode::NEWLEXENVWITHNAME_IMM8_ID16: in IsNewlexenvOpcode()
30 case BytecodeInstruction::Opcode::WIDE_NEWLEXENV_PREF_IMM16: in IsNewlexenvOpcode()
31 case BytecodeInstruction::Opcode::WIDE_NEWLEXENVWITHNAME_PREF_IMM16_ID16: in IsNewlexenvOpcode()
39 bool DropframeManager::IsStlexvarOpcode(BytecodeInstruction::Opcode op) in IsStlexvarOpcode()
42 case BytecodeInstruction::Opcode::STLEXVAR_IMM4_IMM4: in IsStlexvarOpcode()
43 case BytecodeInstruction::Opcode::STLEXVAR_IMM8_IMM8: in IsStlexvarOpcode()
44 case BytecodeInstruction::Opcode::WIDE_STLEXVAR_PREF_IMM16_IMM16: in IsStlexvarOpcode()
52 …, uint16_t> DropframeManager::ReadStlexvarParams(const uint8_t *pc, BytecodeInstruction::Opcode op) in ReadStlexvarParams()
57 case BytecodeInstruction::Opcode::STLEXVAR_IMM4_IMM4: in ReadStlexvarParams()
61 case BytecodeInstruction::Opcode::STLEXVAR_IMM8_IMM8: in ReadStlexvarParams()
65 case BytecodeInstruction::Opcode::WIDE_STLEXVAR_PREF_IMM16_IMM16: in ReadStlexvarParams()
82 auto bcIns = BytecodeInstruction(method->GetBytecodeArray()); in MethodEntry()
85 BytecodeInstruction::Opcode op = bcIns.GetOpcode(); in MethodEntry()