Home | History | Annotate | Download | only in arm64

Lines Matching refs:rl_index

1186                              RegLocation rl_index, RegLocation rl_dest, int scale) {
1191 bool constant_index = rl_index.is_const;
1194 rl_index = LoadValue(rl_index, kCoreReg);
1220 GenArrayBoundsCheck(mir_graph_->ConstantValue(rl_index), reg_len);
1224 data_offset += mir_graph_->ConstantValue(rl_index) << scale;
1238 GenArrayBoundsCheck(rl_index.reg, reg_len);
1242 LoadRefIndexed(reg_ptr, rl_index.reg, rl_result.reg, scale);
1244 LoadBaseIndexed(reg_ptr, rl_index.reg, rl_result.reg, scale, size);
1260 RegLocation rl_index, RegLocation rl_src, int scale, bool card_mark) {
1263 bool constant_index = rl_index.is_const;
1274 rl_index = LoadValue(rl_index, kCoreReg);
1311 GenArrayBoundsCheck(mir_graph_->ConstantValue(rl_index), reg_len);
1315 data_offset += mir_graph_->ConstantValue(rl_index) << scale;
1325 GenArrayBoundsCheck(rl_index.reg, reg_len);
1329 StoreRefIndexed(reg_ptr, rl_index.reg, rl_src.reg, scale);
1331 StoreBaseIndexed(reg_ptr, rl_index.reg, rl_src.reg, scale, size);