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.cc69 RegStorage r_idx = AllocTemp(); in GenLargeSparseSwitch() local
70 LoadConstant(r_idx, size); in GenLargeSparseSwitch()
74 LIR* branch_out = NewLIR2(kA64Cbz2rt, r_idx.GetReg(), 0); in GenLargeSparseSwitch()
78 OpRegRegImm(kOpSub, r_idx, r_idx, 1); in GenLargeSparseSwitch()
/art/compiler/dex/quick/arm/
Dcall_arm.cc75 RegStorage r_idx = AllocTemp(); in GenLargeSparseSwitch() local
76 LoadConstant(r_idx, size); in GenLargeSparseSwitch()
88 OpRegRegImm(kOpSub, r_idx, r_idx, 1); // For value == 1, this should set flags. in GenLargeSparseSwitch()
/art/compiler/dex/quick/
Dgen_common.cc445 RegStorage r_idx = AllocTempRef(); // Not really a reference, but match src/dst. in GenFilledNewArray() local
469 LoadConstant(r_idx, elems - 1); in GenFilledNewArray()
475 LoadBaseIndexed(r_src, r_idx, r_val, 2, k32); in GenFilledNewArray()
479 StoreBaseIndexed(r_dst, r_idx, r_val, 2, k32); in GenFilledNewArray()
481 OpDecAndBranch(kCondGe, r_idx, target); in GenFilledNewArray()