Searched refs:alu_out (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/v8/src/mips/
H A Dsimulator-mips.cc1862 int32_t* alu_out,
1893 *alu_out = FCSR_;
1896 *alu_out = get_fpu_register_word(fs_reg);
1899 *alu_out = get_fpu_register_hi_word(fs_reg);
1926 *alu_out = rt << sa;
1932 *alu_out = rt_u >> sa;
1937 *alu_out = (rt_u >> sa) | (rt_u << (32 - sa));
1941 *alu_out = rt >> sa;
1944 *alu_out = rt << rs;
1950 *alu_out
1861 ConfigureTypeRegister(Instruction* instr, int32_t* alu_out, int64_t* i64hilo, uint64_t* u64hilo, int32_t* next_pc, int32_t* return_addr_reg, bool* do_interrupt) argument
2153 int32_t alu_out = 0x12345678; local
2704 int32_t alu_out = 0; local
[all...]
H A Dsimulator-mips.h270 int32_t* alu_out,
/external/chromium_org/v8/src/mips64/
H A Dsimulator-mips64.cc1927 int64_t* alu_out,
1960 *alu_out = FCSR_;
1963 *alu_out = static_cast<int64_t>(get_fpu_register_word(fs_reg));
1966 *alu_out = get_fpu_register(fs_reg);
1969 *alu_out = get_fpu_register_hi_word(fs_reg);
1997 *alu_out = (int32_t)rt << sa;
2000 *alu_out = rt << sa;
2003 *alu_out = rt << sa << 32;
2009 *alu_out = (uint32_t)rt_u >> sa;
2014 *alu_out
1926 ConfigureTypeRegister(Instruction* instr, int64_t* alu_out, int64_t* i64hilo, uint64_t* u64hilo, int64_t* next_pc, int64_t* return_addr_reg, bool* do_interrupt, int64_t* i128resultH, int64_t* i128resultL) argument
2279 int64_t alu_out = 0x12345678; local
2833 int64_t alu_out = 0; local
[all...]
H A Dsimulator-mips64.h320 int64_t* alu_out,
/external/chromium_org/v8/src/arm/
H A Dsimulator-arm.cc1292 bool Simulator::OverflowFrom(int32_t alu_out, argument
1299 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0));
1304 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0));
2021 int32_t alu_out = rm_val * rs_val; local
2022 set_register(rd, alu_out);
2024 SetNZFlags(alu_out);
2277 int32_t alu_out; local
2283 alu_out
[all...]
H A Dsimulator-arm.h258 bool OverflowFrom(int32_t alu_out,

Completed in 4954 milliseconds