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

/art/compiler/optimizing/
H A Dcode_generator_arm64.cc77 static constexpr uint32_t kPackedSwitchCompareJumpThreshold = 7; member in namespace:art::arm64
556 DCHECK_GE(num_entries, kPackedSwitchCompareJumpThreshold);
4759 if (num_entries <= kPackedSwitchCompareJumpThreshold ||
H A Dcode_generator_arm.cc60 static constexpr uint32_t kPackedSwitchCompareJumpThreshold = 7; member in namespace:art::arm
6637 if (switch_instr->GetNumEntries() > kPackedSwitchCompareJumpThreshold &&
6653 if (num_entries <= kPackedSwitchCompareJumpThreshold || !codegen_->GetAssembler()->IsThumb()) {

Completed in 47 milliseconds