Searched refs:test_fcsr_bit (Results 1 - 4 of 4) sorted by relevance
/external/v8/src/mips/ |
H A D | simulator-mips.h | 187 bool test_fcsr_bit(uint32_t cc);
|
H A D | simulator-mips.cc | 1283 bool Simulator::test_fcsr_bit(uint32_t cc) { function in class:v8::internal::Simulator 2513 if (test_fcsr_bit(ft_cc)) set_fpu_register_double(fd_reg(), fs); 2516 if (!test_fcsr_bit(ft_cc)) set_fpu_register_double(fd_reg(), fs); 3109 if (test_fcsr_bit(ft_cc)) set_fpu_register_float(fd_reg(), fs); 3112 if (!test_fcsr_bit(ft_cc)) set_fpu_register_float(fd_reg(), fs); 3739 if (test_fcsr_bit(fcsr_cc)) set_register(rd_reg(), rs()); 3741 if (!test_fcsr_bit(fcsr_cc)) set_register(rd_reg(), rs()); 4031 uint32_t cc_value = test_fcsr_bit(fcsr_cc);
|
/external/v8/src/mips64/ |
H A D | simulator-mips64.h | 197 bool test_fcsr_bit(uint32_t cc);
|
H A D | simulator-mips64.cc | 1216 bool Simulator::test_fcsr_bit(uint32_t cc) { function in class:v8::internal::Simulator 2762 if (test_fcsr_bit(ft_cc)) set_fpu_register_float(fd_reg(), fs); 2765 if (!test_fcsr_bit(ft_cc)) set_fpu_register_float(fd_reg(), fs); 2859 if (test_fcsr_bit(ft_cc)) set_fpu_register_double(fd_reg(), fs); 2862 if (!test_fcsr_bit(ft_cc)) set_fpu_register_double(fd_reg(), fs); 3834 if (test_fcsr_bit(fcsr_cc)) set_register(rd_reg(), rs()); 3836 if (!test_fcsr_bit(fcsr_cc)) set_register(rd_reg(), rs()); 4284 uint32_t cc_value = test_fcsr_bit(fcsr_cc);
|
Completed in 85 milliseconds