Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp125 bool tryOptAndIntoCompareBranch(MachineInstr &AndInst, bool Invert,
1397 MachineInstr &AndInst, bool Invert, MachineBasicBlock *DstMBB, in tryOptAndIntoCompareBranch() argument
1399 assert(AndInst.getOpcode() == TargetOpcode::G_AND && "Expected G_AND only?"); in tryOptAndIntoCompareBranch()
1422 AndInst.getOperand(2).getReg(), *MIB.getMRI()); in tryOptAndIntoCompareBranch()
1430 Register TestReg = AndInst.getOperand(1).getReg(); in tryOptAndIntoCompareBranch()
1498 MachineInstr *AndInst = getOpcodeDef(TargetOpcode::G_AND, LHS, MRI); in tryOptCompareBranchFedByICmp() local
1505 if (VRegAndVal && !AndInst) { in tryOptCompareBranchFedByICmp()
1533 AndInst = getOpcodeDef(TargetOpcode::G_AND, LHS, MRI); in tryOptCompareBranchFedByICmp()
1543 if (AndInst && in tryOptCompareBranchFedByICmp()
1545 *AndInst, /*Invert = */ Pred == CmpInst::ICMP_NE, DestMBB, MIB)) { in tryOptCompareBranchFedByICmp()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86InstructionSelector.cpp826 MachineInstr &AndInst = in selectZext() local
831 constrainSelectedInstRegOperands(AndInst, TII, TRI, RBI); in selectZext()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4206 const auto *AndInst = dyn_cast<const Instruction>(*ExtInst->user_begin()); in canGetThrough() local
4207 if (AndInst && AndInst->getOpcode() == Instruction::And) { in canGetThrough()
4208 const auto *Cst = dyn_cast<ConstantInt>(AndInst->getOperand(1)); in canGetThrough()