Searched refs:alu_out (Results 1 – 6 of 6) sorted by relevance
1927 int64_t* alu_out, in ConfigureTypeRegister() argument1960 *alu_out = FCSR_; in ConfigureTypeRegister()1963 *alu_out = static_cast<int64_t>(get_fpu_register_word(fs_reg)); in ConfigureTypeRegister()1966 *alu_out = get_fpu_register(fs_reg); in ConfigureTypeRegister()1969 *alu_out = get_fpu_register_hi_word(fs_reg); in ConfigureTypeRegister()1997 *alu_out = (int32_t)rt << sa; in ConfigureTypeRegister()2000 *alu_out = rt << sa; in ConfigureTypeRegister()2003 *alu_out = rt << sa << 32; in ConfigureTypeRegister()2009 *alu_out = (uint32_t)rt_u >> sa; in ConfigureTypeRegister()2014 *alu_out = ((uint32_t)rt_u >> sa) | ((uint32_t)rt_u << (32 - sa)); in ConfigureTypeRegister()[all …]
320 int64_t* alu_out,
1862 int32_t* alu_out, in ConfigureTypeRegister() argument1893 *alu_out = FCSR_; in ConfigureTypeRegister()1896 *alu_out = get_fpu_register_word(fs_reg); in ConfigureTypeRegister()1899 *alu_out = get_fpu_register_hi_word(fs_reg); in ConfigureTypeRegister()1926 *alu_out = rt << sa; in ConfigureTypeRegister()1932 *alu_out = rt_u >> sa; in ConfigureTypeRegister()1937 *alu_out = (rt_u >> sa) | (rt_u << (32 - sa)); in ConfigureTypeRegister()1941 *alu_out = rt >> sa; in ConfigureTypeRegister()1944 *alu_out = rt << rs; in ConfigureTypeRegister()1950 *alu_out = rt_u >> rs; in ConfigureTypeRegister()[all …]
270 int32_t* alu_out,
1292 bool Simulator::OverflowFrom(int32_t alu_out, in OverflowFrom() argument1299 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0)); in OverflowFrom()1304 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0)); in OverflowFrom()2021 int32_t alu_out = rm_val * rs_val; in DecodeType01() local2022 set_register(rd, alu_out); in DecodeType01()2024 SetNZFlags(alu_out); in DecodeType01()2277 int32_t alu_out; in DecodeType01() local2283 alu_out = rn_val & shifter_operand; in DecodeType01()2284 set_register(rd, alu_out); in DecodeType01()2286 SetNZFlags(alu_out); in DecodeType01()[all …]
258 bool OverflowFrom(int32_t alu_out,