Home | History | Annotate | Download | only in quick

Lines Matching full:instruction

162   static constexpr bool IsInstructionIGet(Instruction::Code opcode) {
163 return Instruction::IGET <= opcode && opcode <= Instruction::IGET_SHORT;
166 static constexpr bool IsInstructionIPut(Instruction::Code opcode) {
167 return Instruction::IPUT <= opcode && opcode <= Instruction::IPUT_SHORT;
170 static constexpr uint16_t IGetVariant(Instruction::Code opcode) {
171 return opcode - Instruction::IGET;
174 static constexpr uint16_t IPutVariant(Instruction::Code opcode) {
175 return opcode - Instruction::IPUT;