Home
last modified time | relevance | path

Searched refs:And0 (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonLoopIdiomRecognition.cpp1632 Instruction *And0 = dyn_cast<Instruction>(I->getOperand(0)); in setupPreSimplifier() local
1634 if (!And0 || !And1) in setupPreSimplifier()
1636 if (And0->getOpcode() != Instruction::And || in setupPreSimplifier()
1639 if (And0->getOperand(1) != And1->getOperand(1)) in setupPreSimplifier()
1642 return B.CreateAnd(B.CreateXor(And0->getOperand(0), And1->getOperand(0)), in setupPreSimplifier()
1643 And0->getOperand(1)); in setupPreSimplifier()
1764 Instruction *And0 = dyn_cast<Instruction>(Xor->getOperand(0)); in setupPostSimplifier() local
1767 if (!And0 || And0->getOpcode() != Instruction::And) in setupPostSimplifier()
1768 std::swap(And0, And1); in setupPostSimplifier()
1769 ConstantInt *C1 = dyn_cast<ConstantInt>(And0->getOperand(1)); in setupPostSimplifier()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64ISelDAGToDAG.cpp2687 SDValue And0 = N->getOperand(0); in tryBitfieldInsertOpFromOr() local
2689 if (And0.hasOneUse() && And1.hasOneUse() && in tryBitfieldInsertOpFromOr()
2690 isOpcWithIntImmediate(And0.getNode(), ISD::AND, Mask0Imm) && in tryBitfieldInsertOpFromOr()
2699 std::swap(And0, And1); in tryBitfieldInsertOpFromOr()
2704 SDValue Dst = And0->getOperand(0); in tryBitfieldInsertOpFromOr()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
DMipsISelLowering.cpp874 SDValue And0 = N->getOperand(0), And1 = N->getOperand(1); in performORCombine() local
879 if (And0.getOpcode() != ISD::AND) in performORCombine()
882 if (!(CN = dyn_cast<ConstantSDNode>(And0.getOperand(1))) || in performORCombine()
915 And0.getOperand(0)); in performORCombine()
955 And0->getOperand(0)); in performORCombine()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86ISelDAGToDAG.cpp4275 SDValue And0 = And->getOperand(0); in shrinkAndImmediate() local
4293 if (!CurDAG->MaskedValueIsZero(And0, HighZeros)) in shrinkAndImmediate()
4299 ReplaceNode(And, And0.getNode()); in shrinkAndImmediate()
4306 SDValue NewAnd = CurDAG->getNode(ISD::AND, SDLoc(And), VT, And0, NewMask); in shrinkAndImmediate()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
DLegalizerHelper.cpp6427 Register And0 = MIRBuilder.buildAnd(Src0Ty, Src0, NotSignBitMask).getReg(0); in lowerFCopySign() local
6447 MIRBuilder.buildOr(Dst, And0, And1, Flags); in lowerFCopySign()