Home | History | Annotate | Download | only in Sparc

Lines Matching refs:SPCC

79   return  (CC <= SPCC::ICC_VC);
82 static SPCC::CondCodes GetOppositeBranchCondition(SPCC::CondCodes CC)
85 case SPCC::ICC_A: return SPCC::ICC_N;
86 case SPCC::ICC_N: return SPCC::ICC_A;
87 case SPCC::ICC_NE: return SPCC::ICC_E;
88 case SPCC::ICC_E: return SPCC::ICC_NE;
89 case SPCC::ICC_G: return SPCC::ICC_LE;
90 case SPCC::ICC_LE: return SPCC::ICC_G;
91 case SPCC::ICC_GE: return SPCC::ICC_L;
92 case SPCC::ICC_L: return SPCC::ICC_GE;
93 case SPCC::ICC_GU: return SPCC::ICC_LEU;
94 case SPCC::ICC_LEU: return SPCC::ICC_GU;
95 case SPCC::ICC_CC: return SPCC::ICC_CS;
96 case SPCC::ICC_CS: return SPCC::ICC_CC;
97 case SPCC::ICC_POS: return SPCC::ICC_NEG;
98 case SPCC::ICC_NEG: return SPCC::ICC_POS;
99 case SPCC::ICC_VC: return SPCC::ICC_VS;
100 case SPCC::ICC_VS: return SPCC::ICC_VC;
102 case SPCC::FCC_A: return SPCC::FCC_N;
103 case SPCC::FCC_N: return SPCC::FCC_A;
104 case SPCC::FCC_U: return SPCC::FCC_O;
105 case SPCC::FCC_O: return SPCC::FCC_U;
106 case SPCC::FCC_G: return SPCC::FCC_ULE;
107 case SPCC::FCC_LE: return SPCC::FCC_UG;
108 case SPCC::FCC_UG: return SPCC::FCC_LE;
109 case SPCC::FCC_ULE: return SPCC::FCC_G;
110 case SPCC::FCC_L: return SPCC::FCC_UGE;
111 case SPCC::FCC_GE: return SPCC::FCC_UL;
112 case SPCC::FCC_UL: return SPCC::FCC_GE;
113 case SPCC::FCC_UGE: return SPCC::FCC_L;
114 case SPCC::FCC_LG: return SPCC::FCC_UE;
115 case SPCC::FCC_UE: return SPCC::FCC_LG;
116 case SPCC::FCC_NE: return SPCC::FCC_E;
117 case SPCC::FCC_E: return SPCC::FCC_NE;
119 case SPCC::CPCC_A: return SPCC::CPCC_N;
120 case SPCC::CPCC_N: return SPCC::CPCC_A;
121 case SPCC::CPCC_3: // Fall through
122 case SPCC::CPCC_2: // Fall through
123 case SPCC::CPCC_23: // Fall through
124 case SPCC::CPCC_1: // Fall through
125 case SPCC::CPCC_13: // Fall through
126 case SPCC::CPCC_12: // Fall through
127 case SPCC::CPCC_123: // Fall through
128 case SPCC::CPCC_0: // Fall through
129 case SPCC::CPCC_03: // Fall through
130 case SPCC::CPCC_02: // Fall through
131 case SPCC::CPCC_023: // Fall through
132 case SPCC::CPCC_01: // Fall through
133 case SPCC::CPCC_013: // Fall through
134 case SPCC::CPCC_012:
297 SPCC::CondCodes CC = static_cast<SPCC::CondCodes>(Cond[0].getImm());