Searched refs:reg_bits (Results 1 – 2 of 2) sorted by relevance
412 static bool IsSubRegBitsMinusOther(HSub* sub, size_t reg_bits, HInstruction* other) { in IsSubRegBitsMinusOther() argument415 (Int64FromConstant(sub->GetLeft()->AsConstant()) & (reg_bits - 1)) == 0); in IsSubRegBitsMinusOther()483 size_t reg_bits = DataType::Size(ushr->GetType()) * kBitsPerByte; in TryReplaceWithRotateConstantPattern() local486 if (((ldist + rdist) & (reg_bits - 1)) == 0) { in TryReplaceWithRotateConstantPattern()544 size_t reg_bits = DataType::Size(ushr->GetType()) * kBitsPerByte; in TryReplaceWithRotateRegisterSubPattern() local547 if ((shl_shift->IsSub() && IsSubRegBitsMinusOther(shl_shift->AsSub(), reg_bits, ushr_shift)) || in TryReplaceWithRotateRegisterSubPattern()548 (ushr_shift->IsSub() && IsSubRegBitsMinusOther(ushr_shift->AsSub(), reg_bits, shl_shift))) { in TryReplaceWithRotateRegisterSubPattern()1412 size_t reg_bits = (instruction->GetResultType() == DataType::Type::kInt64) ? 64 : 32; in VisitAnd() local1413 size_t shift = Int64FromConstant(input_other->InputAt(1)->AsConstant()) & (reg_bits - 1); in VisitAnd()1415 if ((num_tail_bits_set >= reg_bits - shift) && input_other->IsUShr()) { in VisitAnd()[all …]
5640 const V reg_bits = sizeof(T) * 8; in Compute() local5642 (value << (reg_bits - (distance & max_shift_value))); in Compute()