Lines Matching defs:Opc
41 // Return the non-pre/post incrementing version of 'Opc'. Return 0
43 virtual unsigned getUnindexedOpcode(unsigned Opc) const =0;
323 bool isUncondBranchOpcode(int Opc) {
324 return Opc == ARM::B || Opc == ARM::tB || Opc == ARM::t2B;
328 bool isCondBranchOpcode(int Opc) {
329 return Opc == ARM::Bcc || Opc == ARM::tBcc || Opc == ARM::t2Bcc;
333 bool isJumpTableBranchOpcode(int Opc) {
334 return Opc == ARM::BR_JTr || Opc == ARM::BR_JTm || Opc == ARM::BR_JTadd ||
335 Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT;
339 bool isIndirectBranchOpcode(int Opc) {
340 return Opc == ARM::BX || Opc == ARM::MOVPCRX || Opc == ARM::tBRIND;
348 int getMatchingCondBranchOpcode(int Opc);