HomeSort by relevance Sort by last modified time
    Searched refs:reg_bits (Results 1 - 2 of 2) sorted by null

  /art/compiler/optimizing/
instruction_simplifier.cc 409 static bool IsSubRegBitsMinusOther(HSub* sub, size_t reg_bits, HInstruction* other) {
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
    [all...]
nodes.h 5314 const V reg_bits = sizeof(T) * 8; local
    [all...]

Completed in 493 milliseconds