Home | History | Annotate | Download | only in quick

Lines Matching refs:rl_dest

1245 bool Mir2Lir::PartiallyIntersects(RegLocation rl_src, RegLocation rl_dest) {
1247 DCHECK(rl_dest.wide);
1248 return (abs(mir_graph_->SRegToVReg(rl_src.s_reg_low) - mir_graph_->SRegToVReg(rl_dest.s_reg_low)) == 1);
1251 bool Mir2Lir::Intersects(RegLocation rl_src, RegLocation rl_dest) {
1253 DCHECK(rl_dest.wide);
1254 return (abs(mir_graph_->SRegToVReg(rl_src.s_reg_low) - mir_graph_->SRegToVReg(rl_dest.s_reg_low)) <= 1);