Home
last modified time | relevance | path

Searched refs:alu_out (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/s390/
Dsimulator-s390.cc1878 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 …]
Dsimulator-s390.h262 inline bool OverflowFromSigned(T1 alu_out, T1 left, T1 right, bool addition);
/external/v8/src/ppc/
Dsimulator-ppc.cc1121 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 …]
Dsimulator-ppc.h269 bool OverflowFrom(int32_t alu_out, int32_t left, int32_t right,
/external/v8/src/mips64/
Dsimulator-mips64.cc3155 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 …]
Dsimulator-mips64.h394 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/
Dsimulator-arm.cc1229 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 …]
Dsimulator-arm.h266 bool OverflowFrom(int32_t alu_out,
/external/v8/src/mips/
Dsimulator-mips.cc2815 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 …]
Dsimulator-mips.h379 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()