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

/art/compiler/dex/quick/arm64/
H A Dcall_arm64.cc43 * mov r_idx, #table_size
45 * cbz r_idx, quit
47 * sub r_idx, #1
74 // Set up r_idx
75 RegStorage r_idx = AllocTemp(); local
76 LoadConstant(r_idx, size);
80 LIR* branch_out = NewLIR2(kA64Cbz2rt, r_idx.GetReg(), 0);
84 OpRegRegImm(kOpSub, r_idx, r_idx, 1);
/art/compiler/dex/quick/arm/
H A Dcall_arm.cc47 * mov r_idx, #table_size
50 * sub r_idx, #1
54 * cbnz r_idx, lp
81 // Set up r_idx
82 RegStorage r_idx = AllocTemp(); local
83 LoadConstant(r_idx, size);
95 OpRegRegImm(kOpSub, r_idx, r_idx, 1); // For value == 1, this should set flags.
/art/compiler/dex/quick/
H A Dgen_common.cc583 RegStorage r_idx = AllocTempRef(); // Not really a reference, but match src/dst. local
608 LoadConstant(r_idx, static_cast<int>(elems - 1));
614 LoadBaseIndexed(r_src, r_idx, r_val, 2, k32);
618 StoreBaseIndexed(r_dst, r_idx, r_val, 2, k32);
620 OpDecAndBranch(kCondGe, r_idx, loop_head_target);
626 FreeTemp(r_idx);

Completed in 341 milliseconds