Home
last modified time | relevance | path

Searched refs:bitfield_op (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dinstruction_simplifier_arm.cc44 bool TryMergeIntoShifterOperand(HInstruction* use, HInstruction* bitfield_op, bool do_merge);
45 bool CanMergeIntoShifterOperand(HInstruction* use, HInstruction* bitfield_op) { in CanMergeIntoShifterOperand() argument
46 return TryMergeIntoShifterOperand(use, bitfield_op, /* do_merge= */ false); in CanMergeIntoShifterOperand()
48 bool MergeIntoShifterOperand(HInstruction* use, HInstruction* bitfield_op) { in MergeIntoShifterOperand() argument
49 DCHECK(CanMergeIntoShifterOperand(use, bitfield_op)); in MergeIntoShifterOperand()
50 return TryMergeIntoShifterOperand(use, bitfield_op, /* do_merge= */ true); in MergeIntoShifterOperand()
83 HInstruction* bitfield_op, in TryMergeIntoShifterOperand() argument
87 DCHECK(CanFitInShifterOperand(bitfield_op)); in TryMergeIntoShifterOperand()
88 DCHECK(!bitfield_op->HasEnvironmentUses()); in TryMergeIntoShifterOperand()
97 DCHECK(left == bitfield_op || right == bitfield_op); in TryMergeIntoShifterOperand()
[all …]
Dinstruction_simplifier_arm64.cc45 HInstruction* bitfield_op,
47 bool CanMergeIntoShifterOperand(HInstruction* use, HInstruction* bitfield_op) { in CanMergeIntoShifterOperand() argument
48 return TryMergeIntoShifterOperand(use, bitfield_op, /* do_merge= */ false); in CanMergeIntoShifterOperand()
50 bool MergeIntoShifterOperand(HInstruction* use, HInstruction* bitfield_op) { in MergeIntoShifterOperand() argument
51 DCHECK(CanMergeIntoShifterOperand(use, bitfield_op)); in MergeIntoShifterOperand()
52 return TryMergeIntoShifterOperand(use, bitfield_op, /* do_merge= */ true); in MergeIntoShifterOperand()
89 HInstruction* bitfield_op, in TryMergeIntoShifterOperand() argument
93 DCHECK(CanFitInShifterOperand(bitfield_op)); in TryMergeIntoShifterOperand()
94 DCHECK(!bitfield_op->HasEnvironmentUses()); in TryMergeIntoShifterOperand()
111 DCHECK(left == bitfield_op || right == bitfield_op); in TryMergeIntoShifterOperand()
[all …]
Dnodes_shared.h233 static void GetOpInfoFromInstruction(HInstruction* bitfield_op,