Home
last modified time | relevance | path

Searched refs:r2_val (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/s390/
Dsimulator-s390.cc2411 int32_t r2_val = get_low_register<int32_t>(r2); in DecodeTwoByte() local
2415 isOF = CheckOverflowForIntAdd(r1_val, r2_val, int32_t); in DecodeTwoByte()
2416 r1_val += r2_val; in DecodeTwoByte()
2421 isOF = CheckOverflowForIntSub(r1_val, r2_val, int32_t); in DecodeTwoByte()
2422 r1_val -= r2_val; in DecodeTwoByte()
2427 r1_val |= r2_val; in DecodeTwoByte()
2431 r1_val &= r2_val; in DecodeTwoByte()
2435 r1_val ^= r2_val; in DecodeTwoByte()
2442 static_cast<int64_t>(r1_val) * static_cast<int64_t>(r2_val); in DecodeTwoByte()
2460 int32_t remainder = dividend % r2_val; in DecodeTwoByte()
[all …]
Dsimulator-s390.h326 void SetS390RoundConditionCode(T1 r2_val, T2 max, T2 min) { in SetS390RoundConditionCode() argument
328 double r2_dval = static_cast<double>(r2_val); in SetS390RoundConditionCode()
343 void SetS390RoundConditionCode(T1 r2_val, int64_t max, int64_t min) { in SetS390RoundConditionCode() argument
345 double r2_dval = static_cast<double>(r2_val); in SetS390RoundConditionCode()
/external/v8/src/ppc/
Dsimulator-ppc.cc3910 intptr_t r2_val = get_register(r2); in CallInternal() local
3985 set_register(r2, r2_val); in CallInternal()