Searched refs:alu_out (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/s390/ |
D | simulator-s390.cc | 1878 bool Simulator::OverflowFromSigned(T1 alu_out, T1 left, T1 right, in OverflowFromSigned() argument 1885 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0)); in OverflowFromSigned() 1890 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0)); in OverflowFromSigned() 2539 uint32_t alu_out = 0; in DecodeTwoByte() local 2542 alu_out = r1_val + r2_val; in DecodeTwoByte() 2545 alu_out = r1_val - r2_val; in DecodeTwoByte() 2550 set_low_register(r1, alu_out); in DecodeTwoByte() 2551 SetS390ConditionCodeCarry<uint32_t>(alu_out, isOF); in DecodeTwoByte() 2908 uint32_t alu_out = 0; in DecodeFourByte() local 2910 alu_out = r1_val << shiftBits; in DecodeFourByte() [all …]
|
D | simulator-s390.h | 262 inline bool OverflowFromSigned(T1 alu_out, T1 left, T1 right, bool addition);
|
/external/v8/src/ppc/ |
D | simulator-ppc.cc | 1121 bool Simulator::OverflowFrom(int32_t alu_out, int32_t left, int32_t right, in OverflowFrom() argument 1129 ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0)); in OverflowFrom() 1135 ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0)); in OverflowFrom() 1979 uintptr_t alu_out = ~ra_val + rb_val + 1; in ExecuteExt2_9bit_part1() local 1986 set_register(rt, alu_out); in ExecuteExt2_9bit_part1() 1988 SetCR0(alu_out); in ExecuteExt2_9bit_part1() 2000 uintptr_t alu_out = ~ra_val + rb_val; in ExecuteExt2_9bit_part1() local 2002 alu_out += 1; in ExecuteExt2_9bit_part1() 2004 set_register(rt, alu_out); in ExecuteExt2_9bit_part1() 2006 SetCR0(static_cast<intptr_t>(alu_out)); in ExecuteExt2_9bit_part1() [all …]
|
D | simulator-ppc.h | 269 bool OverflowFrom(int32_t alu_out, int32_t left, int32_t right,
|
/external/v8/src/mips64/ |
D | simulator-mips64.cc | 3155 int64_t alu_out = 0x12345678; in DecodeTypeRegisterWRsType() local 3158 alu_out = get_fpu_register_signed_word(fs_reg()); in DecodeTypeRegisterWRsType() 3159 set_fpu_register_float(fd_reg(), static_cast<float>(alu_out)); in DecodeTypeRegisterWRsType() 3162 alu_out = get_fpu_register_signed_word(fs_reg()); in DecodeTypeRegisterWRsType() 3163 set_fpu_register_double(fd_reg(), static_cast<double>(alu_out)); in DecodeTypeRegisterWRsType() 3446 int64_t alu_out; in DecodeTypeRegisterSPECIAL() local 3494 alu_out = static_cast<int32_t>(static_cast<uint32_t>(rt_u()) >> sa()); in DecodeTypeRegisterSPECIAL() 3499 alu_out = static_cast<int32_t>( in DecodeTypeRegisterSPECIAL() 3505 SetResult(rd_reg(), alu_out); in DecodeTypeRegisterSPECIAL() 3512 alu_out = static_cast<int64_t>(rt_u() >> sa()); in DecodeTypeRegisterSPECIAL() [all …]
|
D | simulator-mips64.h | 394 inline void SetResult(const int32_t rd_reg, const int64_t alu_out) { in SetResult() argument 395 set_register(rd_reg, alu_out); in SetResult() 396 TraceRegWr(alu_out); in SetResult()
|
/external/v8/src/arm/ |
D | simulator-arm.cc | 1229 bool Simulator::OverflowFrom(int32_t alu_out, in OverflowFrom() argument 1236 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0)); in OverflowFrom() 1241 && ((left < 0 && alu_out >= 0) || (left >= 0 && alu_out < 0)); in OverflowFrom() 2028 int32_t alu_out = rm_val * rs_val; in DecodeType01() local 2029 set_register(rd, alu_out); in DecodeType01() 2031 SetNZFlags(alu_out); in DecodeType01() 2299 int32_t alu_out; in DecodeType01() local 2305 alu_out = rn_val & shifter_operand; in DecodeType01() 2306 set_register(rd, alu_out); in DecodeType01() 2308 SetNZFlags(alu_out); in DecodeType01() [all …]
|
D | simulator-arm.h | 266 bool OverflowFrom(int32_t alu_out,
|
/external/v8/src/mips/ |
D | simulator-mips.cc | 2815 int32_t alu_out = 0x12345678; in DecodeTypeRegisterWRsType() local 2818 alu_out = get_fpu_register_signed_word(fs_reg()); in DecodeTypeRegisterWRsType() 2819 set_fpu_register_float(fd_reg(), static_cast<float>(alu_out)); in DecodeTypeRegisterWRsType() 2822 alu_out = get_fpu_register_signed_word(fs_reg()); in DecodeTypeRegisterWRsType() 2823 set_fpu_register_double(fd_reg(), static_cast<double>(alu_out)); in DecodeTypeRegisterWRsType() 3512 int64_t alu_out = 0x12345678; in DecodeTypeRegisterSPECIAL() local 3549 alu_out = rt() << sa(); in DecodeTypeRegisterSPECIAL() 3550 SetResult(rd_reg(), static_cast<int32_t>(alu_out)); in DecodeTypeRegisterSPECIAL() 3556 alu_out = rt_u() >> sa(); in DecodeTypeRegisterSPECIAL() 3561 alu_out = base::bits::RotateRight32(rt_u(), sa()); in DecodeTypeRegisterSPECIAL() [all …]
|
D | simulator-mips.h | 379 inline void SetResult(int32_t rd_reg, int32_t alu_out) { in SetResult() argument 380 set_register(rd_reg, alu_out); in SetResult() 381 TraceRegWr(alu_out); in SetResult()
|