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_arm64.cc6120 int32_t last_index = 0; in VisitPackedSwitch() local
6121 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()
6124 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
6126 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()
6128 if (num_entries - last_index == 2) { in VisitPackedSwitch()
6131 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
Dcode_generator_arm_vixl.cc9575 int32_t last_index = 0; in VisitPackedSwitch() local
9576 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()
9579 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
9581 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()
9583 if (num_entries - last_index == 2) { in VisitPackedSwitch()
9586 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
Dinstruction_builder.cc2176 HInstruction* last_index = graph_->GetIntConstant(payload->element_count - 1, dex_pc); in BuildFillArrayData() local
2177 AppendInstruction(new (allocator_) HBoundsCheck(last_index, length, dex_pc)); in BuildFillArrayData()