Lines Matching refs:Opcode
192 int result = kInstructionSizeInCodeUnits[Opcode()]; in SizeInCodeUnits()
218 DCHECK(FormatOf(Opcode()) >= k10x && FormatOf(Opcode()) <= k10t); in Next_1xx()
224 DCHECK(FormatOf(Opcode()) >= k20t && FormatOf(Opcode()) <= k25x); in Next_2xx()
230 DCHECK(FormatOf(Opcode()) >= k32x && FormatOf(Opcode()) <= k3rc); in Next_3xx()
236 DCHECK(FormatOf(Opcode()) == k51l); in Next_51l()
242 return Instruction::Name(Opcode()); in Name()
418 Code Opcode(uint16_t inst_data) const { in Opcode() function
424 Code Opcode() const { in Opcode() function
425 return Opcode(Fetch16(0)); in Opcode()
435 DCHECK(FormatOf(Opcode()) == k10x); in SetVRegA_10x()
441 DCHECK(FormatOf(Opcode()) == k3rc); in SetVRegB_3rc()
447 DCHECK(FormatOf(Opcode()) == k35c); in SetVRegB_35c()
453 DCHECK(FormatOf(Opcode()) == k22c); in SetVRegC_22c()
480 return (kInstructionFlags[Opcode()] & kBranch) != 0; in IsBranch()
485 return (kInstructionFlags[Opcode()] & kUnconditional) != 0; in IsUnconditional()
496 return (kInstructionIndexTypes[Opcode()] == kIndexFieldOffset) || in IsQuickened()
497 (kInstructionIndexTypes[Opcode()] == kIndexVtableOffset); in IsQuickened()
502 return (kInstructionFlags[Opcode()] & kSwitch) != 0; in IsSwitch()
507 return (kInstructionFlags[Opcode()] & kThrow) != 0; in IsThrow()
512 return (kInstructionFlags[Opcode()] & kReturn) != 0; in IsReturn()
517 return IsBranch() || IsReturn() || Opcode() == THROW; in IsBasicBlockEnd()
522 return (kInstructionFlags[Opcode()] & kInvoke) != 0; in IsInvoke()
527 return (kInstructionFlags[Opcode()] & kExperimental) != 0; in IsExperimental()
531 return (kInstructionVerifyFlags[Opcode()] & (kVerifyRegA | kVerifyRegAWide)); in GetVerifyTypeArgumentA()
535 return (kInstructionVerifyFlags[Opcode()] & (kVerifyRegB | kVerifyRegBField | in GetVerifyTypeArgumentB()
541 return (kInstructionVerifyFlags[Opcode()] & (kVerifyRegC | kVerifyRegCField | in GetVerifyTypeArgumentC()
546 return (kInstructionVerifyFlags[Opcode()] & (kVerifyArrayData | kVerifyBranchTarget | in GetVerifyExtraFlags()
552 return (kInstructionVerifyFlags[Opcode()] & kVerifyRuntimeOnly) != 0; in GetVerifyIsRuntimeOnly()