Lines Matching defs:cc
33 uint32_t get_fcsr_condition_bit(uint32_t cc) {
34 if (cc == 0) {
37 return 24 + cc;
1280 void Simulator::set_fcsr_bit(uint32_t cc, bool value) {
1282 FCSR_ |= (1 << cc);
1284 FCSR_ &= ~(1 << cc);
1289 bool Simulator::test_fcsr_bit(uint32_t cc) {
1290 return FCSR_ & (1 << cc);
1961 // Note: To be able to return two values from some calls the code in runtime.cc
2062 // See comment in codegen-arm.cc and bug 1242173.
2326 uint32_t cc, fcsr_cc;
2335 cc = get_instr()->FCccValue();
2336 fcsr_cc = get_fcsr_condition_bit(cc);
2848 uint32_t cc, fcsr_cc;
2849 cc = get_instr()->FCccValue();
2850 fcsr_cc = get_fcsr_condition_bit(cc);
3726 uint32_t cc = get_instr()->FBccValue();
3727 uint32_t fcsr_cc = get_fcsr_condition_bit(cc);
3980 uint32_t cc = instr->FBccValue();
3981 uint32_t fcsr_cc = get_fcsr_condition_bit(cc);