Lines Matching refs:kInstructionDescriptors

222     int8_t result = kInstructionDescriptors[Opcode()].size_in_code_units;  in SizeInCodeUnits()
235 const int8_t result = kInstructionDescriptors[Opcode()].size_in_code_units; in CodeUnitsRequiredForSizeComputation()
533 return kInstructionDescriptors[opcode].format; in FormatOf()
538 return kInstructionDescriptors[opcode].index_type; in IndexTypeOf()
543 return kInstructionDescriptors[opcode].flags; in FlagsOf()
548 return kInstructionDescriptors[opcode].verify_flags; in VerifyFlagsOf()
553 return (kInstructionDescriptors[Opcode()].flags & kBranch) != 0; in IsBranch()
558 return (kInstructionDescriptors[Opcode()].flags & kUnconditional) != 0; in IsUnconditional()
569 return (kInstructionDescriptors[Opcode()].index_type == kIndexFieldOffset) || in IsQuickened()
570 (kInstructionDescriptors[Opcode()].index_type == kIndexVtableOffset); in IsQuickened()
575 return (kInstructionDescriptors[Opcode()].flags & kSwitch) != 0; in IsSwitch()
580 return (kInstructionDescriptors[Opcode()].flags & kThrow) != 0; in IsThrow()
585 return (kInstructionDescriptors[Opcode()].flags & kReturn) != 0; in IsReturn()
595 return (kInstructionDescriptors[Opcode()].flags & kInvoke) != 0; in IsInvoke()
600 return (kInstructionDescriptors[Opcode()].flags & kExperimental) != 0; in IsExperimental()
604 return (kInstructionDescriptors[Opcode()].verify_flags & (kVerifyRegA | kVerifyRegAWide)); in GetVerifyTypeArgumentA()
608 return (kInstructionDescriptors[Opcode()].verify_flags & (kVerifyRegB | kVerifyRegBField | in GetVerifyTypeArgumentB()
614 return (kInstructionDescriptors[Opcode()].verify_flags & (kVerifyRegC | kVerifyRegCField | in GetVerifyTypeArgumentC()
619 return (kInstructionDescriptors[Opcode()].verify_flags & kVerifyRegHPrototype); in GetVerifyTypeArgumentH()
623 return (kInstructionDescriptors[Opcode()].verify_flags & (kVerifyArrayData | in GetVerifyExtraFlags()
629 return (kInstructionDescriptors[Opcode()].verify_flags & kVerifyRuntimeOnly) != 0; in GetVerifyIsRuntimeOnly()
691 static const InstructionDescriptor kInstructionDescriptors[]; variable