Searched defs:alu_out (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/v8/src/mips/
H A Dsimulator-mips.cc1797 int32_t& alu_out,
1830 alu_out = FCSR_;
1833 alu_out = get_fpu_register(fs_reg);
1863 alu_out = rt << sa;
1869 alu_out = rt_u >> sa;
1874 alu_out = (rt_u >> sa) | (rt_u << (32 - sa));
1878 alu_out = rt >> sa;
1881 alu_out = rt << rs;
1887 alu_out = rt_u >> rs;
1892 alu_out
1796 ConfigureTypeRegister(Instruction* instr, int32_t& alu_out, int64_t& i64hilo, uint64_t& u64hilo, int32_t& next_pc, bool& do_interrupt) argument
2055 int32_t alu_out = 0x12345678; local
2461 int32_t alu_out = 0; local
[all...]
/external/v8/src/mips/
H A Dsimulator-mips.cc1681 int32_t& alu_out,
1714 alu_out = FCSR_;
1717 alu_out = get_fpu_register(fs_reg);
1745 alu_out = rt << sa;
1751 alu_out = rt_u >> sa;
1756 alu_out = (rt_u >> sa) | (rt_u << (32 - sa));
1760 alu_out = rt >> sa;
1763 alu_out = rt << rs;
1769 alu_out = rt_u >> rs;
1774 alu_out
1680 ConfigureTypeRegister(Instruction* instr, int32_t& alu_out, int64_t& i64hilo, uint64_t& u64hilo, int32_t& next_pc, bool& do_interrupt) argument
1936 int32_t alu_out = 0x12345678; local
2321 int32_t alu_out = 0; local
[all...]
/external/chromium_org/v8/src/arm/
H A Dsimulator-arm.cc1302 bool Simulator::OverflowFrom(int32_t alu_out, argument
1309 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0));
1314 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0));
2110 int32_t alu_out = rm_val * rs_val; local
2111 set_register(rd, alu_out);
2113 SetNZFlags(alu_out);
2366 int32_t alu_out; local
2372 alu_out
[all...]
/external/v8/src/arm/
H A Dsimulator-arm.cc1359 bool Simulator::OverflowFrom(int32_t alu_out, argument
1366 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0));
1371 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0));
2025 int32_t alu_out = rm_val * rs_val; local
2026 set_register(rd, alu_out);
2028 SetNZFlags(alu_out);
2267 int32_t alu_out; local
2273 alu_out
[all...]

Completed in 132 milliseconds