Home
last modified time | relevance | path

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

/external/v8/src/s390/
Dsimulator-s390.cc2432 bool isOF = false; in DecodeTwoByte() local
2435 isOF = CheckOverflowForIntAdd(r1_val, r2_val, int32_t); in DecodeTwoByte()
2438 SetS390OverflowCode(isOF); in DecodeTwoByte()
2441 isOF = CheckOverflowForIntSub(r1_val, r2_val, int32_t); in DecodeTwoByte()
2444 SetS390OverflowCode(isOF); in DecodeTwoByte()
2560 bool isOF = false; in DecodeTwoByte() local
2563 isOF = CheckOverflowForUIntAdd(r1_val, r2_val); in DecodeTwoByte()
2566 isOF = CheckOverflowForUIntSub(r1_val, r2_val); in DecodeTwoByte()
2571 SetS390ConditionCodeCarry<uint32_t>(alu_out, isOF); in DecodeTwoByte()
2969 bool isOF = false; in DecodeFourByte() local
[all …]
Dsimulator-s390.h435 void SetS390OverflowCode(bool isOF) { in SetS390OverflowCode() argument
436 if (isOF) condition_reg_ = CC_OF; in SetS390OverflowCode()