Lines Matching refs:Opc
43 virtual unsigned getUnindexedOpcode(unsigned Opc) const =0;
341 bool isUncondBranchOpcode(int Opc) { in isUncondBranchOpcode() argument
342 return Opc == ARM::B || Opc == ARM::tB || Opc == ARM::t2B; in isUncondBranchOpcode()
346 bool isCondBranchOpcode(int Opc) { in isCondBranchOpcode() argument
347 return Opc == ARM::Bcc || Opc == ARM::tBcc || Opc == ARM::t2Bcc; in isCondBranchOpcode()
351 bool isJumpTableBranchOpcode(int Opc) { in isJumpTableBranchOpcode() argument
352 return Opc == ARM::BR_JTr || Opc == ARM::BR_JTm || Opc == ARM::BR_JTadd || in isJumpTableBranchOpcode()
353 Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT; in isJumpTableBranchOpcode()
357 bool isIndirectBranchOpcode(int Opc) { in isIndirectBranchOpcode() argument
358 return Opc == ARM::BX || Opc == ARM::MOVPCRX || Opc == ARM::tBRIND; in isIndirectBranchOpcode()
366 int getMatchingCondBranchOpcode(int Opc);