Searched refs:reg_bits (Results 1 – 2 of 2) sorted by relevance
416 static bool IsSubRegBitsMinusOther(HSub* sub, size_t reg_bits, HInstruction* other) { in IsSubRegBitsMinusOther() argument419 (Int64FromConstant(sub->GetLeft()->AsConstant()) & (reg_bits - 1)) == 0); in IsSubRegBitsMinusOther()487 size_t reg_bits = DataType::Size(ushr->GetType()) * kBitsPerByte; in TryReplaceWithRotateConstantPattern() local490 if (((ldist + rdist) & (reg_bits - 1)) == 0) { in TryReplaceWithRotateConstantPattern()548 size_t reg_bits = DataType::Size(ushr->GetType()) * kBitsPerByte; in TryReplaceWithRotateRegisterSubPattern() local551 if ((shl_shift->IsSub() && IsSubRegBitsMinusOther(shl_shift->AsSub(), reg_bits, ushr_shift)) || in TryReplaceWithRotateRegisterSubPattern()552 (ushr_shift->IsSub() && IsSubRegBitsMinusOther(ushr_shift->AsSub(), reg_bits, shl_shift))) { in TryReplaceWithRotateRegisterSubPattern()1416 size_t reg_bits = (instruction->GetResultType() == DataType::Type::kInt64) ? 64 : 32; in VisitAnd() local1417 size_t shift = Int64FromConstant(input_other->InputAt(1)->AsConstant()) & (reg_bits - 1); in VisitAnd()1419 if ((num_tail_bits_set >= reg_bits - shift) && input_other->IsUShr()) { in VisitAnd()[all …]
5531 const V reg_bits = sizeof(T) * 8; in Compute() local5533 (value << (reg_bits - (distance & max_shift_value))); in Compute()