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

/art/compiler/optimizing/
H A Dinstruction_simplifier.cc409 static bool IsSubRegBitsMinusOther(HSub* sub, size_t reg_bits, HInstruction* other) { argument
412 (Int64FromConstant(sub->GetLeft()->AsConstant()) & (reg_bits - 1)) == 0);
480 size_t reg_bits = DataType::Size(ushr->GetType()) * kBitsPerByte; local
483 if (((ldist + rdist) & (reg_bits - 1)) == 0) {
541 size_t reg_bits = DataType::Size(ushr->GetType()) * kBitsPerByte; local
544 if ((shl_shift->IsSub() && IsSubRegBitsMinusOther(shl_shift->AsSub(), reg_bits, ushr_shift)) ||
545 (ushr_shift->IsSub() && IsSubRegBitsMinusOther(ushr_shift->AsSub(), reg_bits, shl_shift))) {
1374 size_t reg_bits = (instruction->GetResultType() == DataType::Type::kInt64) ? 64 : 32; local
1375 size_t shift = Int64FromConstant(input_other->InputAt(1)->AsConstant()) & (reg_bits - 1);
1377 if ((num_tail_bits_set >= reg_bits
[all...]
H A Dnodes.h5314 const V reg_bits = sizeof(T) * 8; local
5316 (value << (reg_bits - (distance & max_shift_value)));

Completed in 37 milliseconds