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.cc5850 int32_t last_index = 0; in VisitPackedSwitch() local
5851 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()
5854 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
5856 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()
5858 if (num_entries - last_index == 2) { in VisitPackedSwitch()
5861 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
Dcode_generator_arm_vixl.cc9373 int32_t last_index = 0; in VisitPackedSwitch() local
9374 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()
9377 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
9379 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()
9381 if (num_entries - last_index == 2) { in VisitPackedSwitch()
9384 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
Dinstruction_builder.cc1903 HInstruction* last_index = graph_->GetIntConstant(payload->element_count - 1, dex_pc); in BuildFillArrayData() local
1904 AppendInstruction(new (allocator_) HBoundsCheck(last_index, length, dex_pc)); in BuildFillArrayData()