Lines Matching refs:HInstruction
31 HInstruction* left = instruction->GetLeft(); in TryCombineAndNot()
32 HInstruction* right = instruction->GetRight(); in TryCombineAndNot()
38 HInstruction* other_ins = (left_is_not ? right : left); in TryCombineAndNot()
67 HInstruction* candidate = nullptr; in TryGenerateResetLeastSetBit()
68 HInstruction* other = nullptr; in TryGenerateResetLeastSetBit()
69 HInstruction* left = instruction->GetLeft(); in TryGenerateResetLeastSetBit()
70 HInstruction* right = instruction->GetRight(); in TryGenerateResetLeastSetBit()
81 type, HInstruction::kAnd, other, instruction->GetDexPc()); in TryGenerateResetLeastSetBit()
100 HInstruction* left = instruction->GetLeft(); in TryGenerateMaskUptoLeastSetBit()
101 HInstruction* right = instruction->GetRight(); in TryGenerateMaskUptoLeastSetBit()
102 HInstruction* other = nullptr; in TryGenerateMaskUptoLeastSetBit()
103 HInstruction* candidate = nullptr; in TryGenerateMaskUptoLeastSetBit()
114 type, HInstruction::kXor, other, instruction->GetDexPc()); in TryGenerateMaskUptoLeastSetBit()
123 bool AreLeastSetBitInputs(HInstruction* to_test, HInstruction* other) { in AreLeastSetBitInputs()