Home | History | Annotate | Download | only in mips

Lines Matching defs:cc

56 uint32_t get_fcsr_condition_bit(uint32_t cc) {
57 if (cc == 0) {
60 return 24 + cc;
1156 void Simulator::set_fcsr_bit(uint32_t cc, bool value) {
1158 FCSR_ |= (1 << cc);
1160 FCSR_ &= ~(1 << cc);
1165 bool Simulator::test_fcsr_bit(uint32_t cc) {
1166 return FCSR_ & (1 << cc);
1387 // Note: To be able to return two values from some calls the code in runtime.cc
1467 // See comment in codegen-arm.cc and bug 1242173.
2010 uint32_t cc, fcsr_cc;
2014 cc = instr->FCccValue();
2015 fcsr_cc = get_fcsr_condition_bit(cc);
2243 uint32_t cc = instr->FBccValue();
2244 uint32_t fcsr_cc = get_fcsr_condition_bit(cc);
2324 uint32_t cc, cc_value, fcsr_cc;
2337 cc = instr->FBccValue();
2338 fcsr_cc = get_fcsr_condition_bit(cc);