Home
last modified time | relevance | path

Searched refs:isOF (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/s390/
Dsimulator-s390.cc2412 bool isOF = false; in DecodeTwoByte() local
2415 isOF = CheckOverflowForIntAdd(r1_val, r2_val, int32_t); in DecodeTwoByte()
2418 SetS390OverflowCode(isOF); in DecodeTwoByte()
2421 isOF = CheckOverflowForIntSub(r1_val, r2_val, int32_t); in DecodeTwoByte()
2424 SetS390OverflowCode(isOF); in DecodeTwoByte()
2540 bool isOF = false; in DecodeTwoByte() local
2543 isOF = CheckOverflowForUIntAdd(r1_val, r2_val); in DecodeTwoByte()
2546 isOF = CheckOverflowForUIntSub(r1_val, r2_val); in DecodeTwoByte()
2551 SetS390ConditionCodeCarry<uint32_t>(alu_out, isOF); in DecodeTwoByte()
2949 bool isOF = false; in DecodeFourByte() local
[all …]
Dsimulator-s390.h434 void SetS390OverflowCode(bool isOF) { in SetS390OverflowCode() argument
435 if (isOF) condition_reg_ = CC_OF; in SetS390OverflowCode()