Searched refs:ldist (Results 1 - 1 of 1) sorted by relevance

/art/compiler/optimizing/
H A Dinstruction_simplifier.cc345 // Try replacing code looking like (x >>> #rdist OP x << #ldist):
347 // Shl tmp, x, #ldist
349 // or like (x >>> #rdist OP x << #-ldist):
351 // Shl tmp, x, #-ldist
361 size_t ldist = Int64FromConstant(shl->GetRight()->AsConstant()); local
362 if (((ldist + rdist) & (reg_bits - 1)) == 0) {

Completed in 63 milliseconds