Lines Matching refs:Opcode

221     int8_t result = kInstructionDescriptors[Opcode()].size_in_code_units;  in SizeInCodeUnits()
231 const int8_t result = kInstructionDescriptors[Opcode()].size_in_code_units; in CodeUnitsRequiredForSizeComputation()
253 DCHECK(FormatOf(Opcode()) >= k10x && FormatOf(Opcode()) <= k10t); in Next_1xx()
259 DCHECK(FormatOf(Opcode()) >= k20t && FormatOf(Opcode()) <= k22c); in Next_2xx()
265 DCHECK(FormatOf(Opcode()) >= k32x && FormatOf(Opcode()) <= k3rc); in Next_3xx()
271 DCHECK(FormatOf(Opcode()) >= k45cc && FormatOf(Opcode()) <= k4rcc); in Next_4xx()
277 DCHECK(FormatOf(Opcode()) == k51l); in Next_51l()
283 return Instruction::Name(Opcode()); in Name()
472 Code Opcode(uint16_t inst_data) const { in Opcode() function
478 Code Opcode() const { in Opcode() function
479 return Opcode(Fetch16(0)); in Opcode()
489 DCHECK(FormatOf(Opcode()) == k10x); in SetVRegA_10x()
495 DCHECK(FormatOf(Opcode()) == k3rc); in SetVRegB_3rc()
501 DCHECK(FormatOf(Opcode()) == k35c); in SetVRegB_35c()
507 DCHECK(FormatOf(Opcode()) == k22c); in SetVRegC_22c()
513 DCHECK(FormatOf(Opcode()) == k21c); in SetVRegA_21c()
519 DCHECK(FormatOf(Opcode()) == k21c); in SetVRegB_21c()
546 return (kInstructionDescriptors[Opcode()].flags & kBranch) != 0; in IsBranch()
551 return (kInstructionDescriptors[Opcode()].flags & kUnconditional) != 0; in IsUnconditional()
562 return (kInstructionDescriptors[Opcode()].index_type == kIndexFieldOffset) || in IsQuickened()
563 (kInstructionDescriptors[Opcode()].index_type == kIndexVtableOffset); in IsQuickened()
568 return (kInstructionDescriptors[Opcode()].flags & kSwitch) != 0; in IsSwitch()
573 return (kInstructionDescriptors[Opcode()].flags & kThrow) != 0; in IsThrow()
578 return (kInstructionDescriptors[Opcode()].flags & kReturn) != 0; in IsReturn()
583 return IsBranch() || IsReturn() || Opcode() == THROW; in IsBasicBlockEnd()
588 return (kInstructionDescriptors[Opcode()].flags & kInvoke) != 0; in IsInvoke()
593 return (kInstructionDescriptors[Opcode()].flags & kExperimental) != 0; in IsExperimental()
597 return (kInstructionDescriptors[Opcode()].verify_flags & (kVerifyRegA | kVerifyRegAWide)); in GetVerifyTypeArgumentA()
601 return (kInstructionDescriptors[Opcode()].verify_flags & (kVerifyRegB | kVerifyRegBField | in GetVerifyTypeArgumentB()
607 return (kInstructionDescriptors[Opcode()].verify_flags & (kVerifyRegC | kVerifyRegCField | in GetVerifyTypeArgumentC()
612 return (kInstructionDescriptors[Opcode()].verify_flags & kVerifyRegHPrototype); in GetVerifyTypeArgumentH()
616 return (kInstructionDescriptors[Opcode()].verify_flags & (kVerifyArrayData | in GetVerifyExtraFlags()
622 return (kInstructionDescriptors[Opcode()].verify_flags & kVerifyRuntimeOnly) != 0; in GetVerifyIsRuntimeOnly()