Home
last modified time | relevance | path

Searched refs:last_index (Results 1 – 4 of 4) sorted by relevance

/art/compiler/linker/
Dlinker_patch_test.cc152 constexpr size_t last_index = arraysize(patches) - 1u; in TEST() local
156 bool expected = (i != last_index ? i : 7u) == (j != last_index ? j : 7u); in TEST()
163 bool expected = (i != last_index ? i : 7u) < (j != last_index ? j : 7u); in TEST()
/art/compiler/optimizing/
Dcode_generator_mips64.cc7518 int32_t last_index = 0; in GenPackedSwitchWithCompares() local
7519 for (; num_entries - last_index > 2; last_index += 2) { in GenPackedSwitchWithCompares()
7522 __ Bltzc(temp_reg, codegen_->GetLabelOf(successors[last_index + 1])); in GenPackedSwitchWithCompares()
7524 __ Beqzc(temp_reg, codegen_->GetLabelOf(successors[last_index + 2])); in GenPackedSwitchWithCompares()
7526 if (num_entries - last_index == 2) { in GenPackedSwitchWithCompares()
7529 __ Beqzc(temp_reg, codegen_->GetLabelOf(successors[last_index + 1])); in GenPackedSwitchWithCompares()
Dcode_generator_arm_vixl.cc9144 int32_t last_index = 0; in VisitPackedSwitch() local
9145 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()
9148 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
9150 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()
9152 if (num_entries - last_index == 2) { in VisitPackedSwitch()
9155 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
Dcode_generator_mips.cc10027 int32_t last_index = 0; in GenPackedSwitchWithCompares() local
10028 for (; num_entries - last_index > 2; last_index += 2) { in GenPackedSwitchWithCompares()
10031 __ Bltz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1])); in GenPackedSwitchWithCompares()
10033 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 2])); in GenPackedSwitchWithCompares()
10035 if (num_entries - last_index == 2) { in GenPackedSwitchWithCompares()
10038 __ Beqz(temp_reg, codegen_->GetLabelOf(successors[last_index + 1])); in GenPackedSwitchWithCompares()