Searched defs:max_rhs (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/compiler/
H A Doperation-typer.cc815 uint32_t max_rhs = rhs->Max(); local
816 if (max_rhs > 31) {
818 max_rhs = 31;
822 if (max_lhs > (kMaxInt >> max_rhs) || min_lhs < (kMinInt >> max_rhs)) {
829 static_cast<int32_t>(static_cast<uint32_t>(min_lhs) << max_rhs));
832 static_cast<int32_t>(static_cast<uint32_t>(max_lhs) << max_rhs));
850 uint32_t max_rhs = rhs->Max(); local
851 if (max_rhs > 31) {
853 max_rhs
875 uint32_t max_rhs = rhs->Max(); local
[all...]

Completed in 253 milliseconds