Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp7594 const SDValue ShiftRHS = RHS.getOperand(1); in SelectSVERegRegAddrMode() local
7595 if (auto *C = dyn_cast<ConstantSDNode>(ShiftRHS)) in SelectSVERegRegAddrMode()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp7745 MachineOperand &ShiftRHS = ShiftInst->getOperand(2); in selectShiftedRegister() local
7746 auto Immed = getImmedFromMO(ShiftRHS); in selectShiftedRegister()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp31579 unsigned ShiftRHS = IsROTL ? ISD::SRL : ISD::SHL; in LowerRotate() local
31593 DAG.getNode(ShiftRHS, DL, VT, R, DAG.getConstant(4, DL, VT))); in LowerRotate()
31603 DAG.getNode(ShiftRHS, DL, VT, R, DAG.getConstant(6, DL, VT))); in LowerRotate()
31613 DAG.getNode(ShiftRHS, DL, VT, R, DAG.getConstant(7, DL, VT))); in LowerRotate()
56604 SDValue ShiftRHS = Src.getOperand(1); in combineMOVMSK() local
56609 ShiftRHS = DAG.getBitcast(ShiftVT, ShiftRHS); in combineMOVMSK()
56613 ShiftRHS = getTargetVShiftByConstNode(X86ISD::VSHLI, DL, ShiftVT, in combineMOVMSK()
56614 ShiftRHS, ShiftAmt, DAG); in combineMOVMSK()
56616 ShiftRHS = DAG.getBitcast(SrcVT, ShiftRHS); in combineMOVMSK()
56617 SDValue Res = DAG.getNode(ISD::XOR, DL, SrcVT, ShiftLHS, ShiftRHS); in combineMOVMSK()