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

/art/compiler/dex/quick/arm/
H A Dcall_arm.cc37 * mov r_idx, #table_size
40 * sub r_idx, #1
44 * cbnz r_idx, lp
74 // Set up r_idx
75 RegStorage r_idx = AllocTemp(); local
76 LoadConstant(r_idx, size);
88 OpRegRegImm(kOpSub, r_idx, r_idx, 1); // For value == 1, this should set flags.
/art/compiler/dex/quick/arm64/
H A Dcall_arm64.cc34 * mov r_idx, #table_size
36 * cbz r_idx, quit
38 * sub r_idx, #1
68 // Set up r_idx
69 RegStorage r_idx = AllocTemp(); local
70 LoadConstant(r_idx, size);
74 LIR* branch_out = NewLIR2(kA64Cbz2rt, r_idx.GetReg(), 0);
78 OpRegRegImm(kOpSub, r_idx, r_idx, 1);
/art/compiler/dex/quick/
H A Dgen_common.cc445 RegStorage r_idx = AllocTempRef(); // Not really a reference, but match src/dst. local
469 LoadConstant(r_idx, elems - 1);
475 LoadBaseIndexed(r_src, r_idx, r_val, 2, k32);
479 StoreBaseIndexed(r_dst, r_idx, r_val, 2, k32);
481 OpDecAndBranch(kCondGe, r_idx, target);

Completed in 160 milliseconds