Lines Matching refs:kInstructionDescriptors
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()
526 return kInstructionDescriptors[opcode].format; in FormatOf()
531 return kInstructionDescriptors[opcode].index_type; in IndexTypeOf()
536 return kInstructionDescriptors[opcode].flags; in FlagsOf()
541 return kInstructionDescriptors[opcode].verify_flags; in VerifyFlagsOf()
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()
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()
684 static const InstructionDescriptor kInstructionDescriptors[]; variable