Lines Matching refs:SPCC
83 return (CC <= SPCC::ICC_VC); in IsIntegerCC()
87 static SPCC::CondCodes GetOppositeBranchCondition(SPCC::CondCodes CC) in GetOppositeBranchCondition()
90 case SPCC::ICC_A: return SPCC::ICC_N; in GetOppositeBranchCondition()
91 case SPCC::ICC_N: return SPCC::ICC_A; in GetOppositeBranchCondition()
92 case SPCC::ICC_NE: return SPCC::ICC_E; in GetOppositeBranchCondition()
93 case SPCC::ICC_E: return SPCC::ICC_NE; in GetOppositeBranchCondition()
94 case SPCC::ICC_G: return SPCC::ICC_LE; in GetOppositeBranchCondition()
95 case SPCC::ICC_LE: return SPCC::ICC_G; in GetOppositeBranchCondition()
96 case SPCC::ICC_GE: return SPCC::ICC_L; in GetOppositeBranchCondition()
97 case SPCC::ICC_L: return SPCC::ICC_GE; in GetOppositeBranchCondition()
98 case SPCC::ICC_GU: return SPCC::ICC_LEU; in GetOppositeBranchCondition()
99 case SPCC::ICC_LEU: return SPCC::ICC_GU; in GetOppositeBranchCondition()
100 case SPCC::ICC_CC: return SPCC::ICC_CS; in GetOppositeBranchCondition()
101 case SPCC::ICC_CS: return SPCC::ICC_CC; in GetOppositeBranchCondition()
102 case SPCC::ICC_POS: return SPCC::ICC_NEG; in GetOppositeBranchCondition()
103 case SPCC::ICC_NEG: return SPCC::ICC_POS; in GetOppositeBranchCondition()
104 case SPCC::ICC_VC: return SPCC::ICC_VS; in GetOppositeBranchCondition()
105 case SPCC::ICC_VS: return SPCC::ICC_VC; in GetOppositeBranchCondition()
107 case SPCC::FCC_A: return SPCC::FCC_N; in GetOppositeBranchCondition()
108 case SPCC::FCC_N: return SPCC::FCC_A; in GetOppositeBranchCondition()
109 case SPCC::FCC_U: return SPCC::FCC_O; in GetOppositeBranchCondition()
110 case SPCC::FCC_O: return SPCC::FCC_U; in GetOppositeBranchCondition()
111 case SPCC::FCC_G: return SPCC::FCC_ULE; in GetOppositeBranchCondition()
112 case SPCC::FCC_LE: return SPCC::FCC_UG; in GetOppositeBranchCondition()
113 case SPCC::FCC_UG: return SPCC::FCC_LE; in GetOppositeBranchCondition()
114 case SPCC::FCC_ULE: return SPCC::FCC_G; in GetOppositeBranchCondition()
115 case SPCC::FCC_L: return SPCC::FCC_UGE; in GetOppositeBranchCondition()
116 case SPCC::FCC_GE: return SPCC::FCC_UL; in GetOppositeBranchCondition()
117 case SPCC::FCC_UL: return SPCC::FCC_GE; in GetOppositeBranchCondition()
118 case SPCC::FCC_UGE: return SPCC::FCC_L; in GetOppositeBranchCondition()
119 case SPCC::FCC_LG: return SPCC::FCC_UE; in GetOppositeBranchCondition()
120 case SPCC::FCC_UE: return SPCC::FCC_LG; in GetOppositeBranchCondition()
121 case SPCC::FCC_NE: return SPCC::FCC_E; in GetOppositeBranchCondition()
122 case SPCC::FCC_E: return SPCC::FCC_NE; in GetOppositeBranchCondition()
181 SPCC::CondCodes BranchCode = (SPCC::CondCodes)I->getOperand(1).getImm(); in AnalyzeBranch()