Home
last modified time | relevance | path

Searched refs:r_idx (Results 1 – 3 of 3) sorted by relevance

/art/compiler/dex/quick/arm64/
Dcall_arm64.cc75 RegStorage r_idx = AllocTemp(); in GenLargeSparseSwitch() local
76 LoadConstant(r_idx, size); in GenLargeSparseSwitch()
80 LIR* branch_out = NewLIR2(kA64Cbz2rt, r_idx.GetReg(), 0); in GenLargeSparseSwitch()
84 OpRegRegImm(kOpSub, r_idx, r_idx, 1); in GenLargeSparseSwitch()
/art/compiler/dex/quick/arm/
Dcall_arm.cc82 RegStorage r_idx = AllocTemp(); in GenLargeSparseSwitch() local
83 LoadConstant(r_idx, size); in GenLargeSparseSwitch()
95 OpRegRegImm(kOpSub, r_idx, r_idx, 1); // For value == 1, this should set flags. in GenLargeSparseSwitch()
/art/compiler/dex/quick/
Dgen_common.cc583 RegStorage r_idx = AllocTempRef(); // Not really a reference, but match src/dst. in GenFilledNewArray() local
608 LoadConstant(r_idx, static_cast<int>(elems - 1)); in GenFilledNewArray()
614 LoadBaseIndexed(r_src, r_idx, r_val, 2, k32); in GenFilledNewArray()
618 StoreBaseIndexed(r_dst, r_idx, r_val, 2, k32); in GenFilledNewArray()
620 OpDecAndBranch(kCondGe, r_idx, loop_head_target); in GenFilledNewArray()
626 FreeTemp(r_idx); in GenFilledNewArray()