Lines Matching refs:right
32 HInstruction* right = instruction->GetRight(); in TryCombineAndNot() local
36 if (left->IsNot() ^ right->IsNot()) { in TryCombineAndNot()
38 HInstruction* other_ins = (left_is_not ? right : left); in TryCombineAndNot()
39 HNot* not_ins = (left_is_not ? left : right)->AsNot(); in TryCombineAndNot()
70 HInstruction* right = instruction->GetRight(); in TryGenerateResetLeastSetBit() local
71 if (AreLeastSetBitInputs(left, right)) { in TryGenerateResetLeastSetBit()
73 other = right; in TryGenerateResetLeastSetBit()
74 } else if (AreLeastSetBitInputs(right, left)) { in TryGenerateResetLeastSetBit()
75 candidate = right; in TryGenerateResetLeastSetBit()
101 HInstruction* right = instruction->GetRight(); in TryGenerateMaskUptoLeastSetBit() local
104 if (AreLeastSetBitInputs(left, right)) { in TryGenerateMaskUptoLeastSetBit()
106 other = right; in TryGenerateMaskUptoLeastSetBit()
107 } else if (AreLeastSetBitInputs(right, left)) { in TryGenerateMaskUptoLeastSetBit()
108 candidate = right; in TryGenerateMaskUptoLeastSetBit()