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/GISel/
H A DAArch64InstructionSelector.cpp7567 MachineOperand &ShiftRHS = ShiftInst->getOperand(2); in selectShiftedRegister() local
7568 auto Immed = getImmedFromMO(ShiftRHS); in selectShiftedRegister()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp7315 const SDValue ShiftRHS = RHS.getOperand(1); in SelectSVERegRegAddrMode() local
7316 if (auto *C = dyn_cast<ConstantSDNode>(ShiftRHS)) in SelectSVERegRegAddrMode()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp30362 unsigned ShiftRHS = IsROTL ? ISD::SRL : ISD::SHL; in LowerRotate() local
30376 DAG.getNode(ShiftRHS, DL, VT, R, DAG.getConstant(4, DL, VT))); in LowerRotate()
30386 DAG.getNode(ShiftRHS, DL, VT, R, DAG.getConstant(6, DL, VT))); in LowerRotate()
30396 DAG.getNode(ShiftRHS, DL, VT, R, DAG.getConstant(7, DL, VT))); in LowerRotate()
54561 SDValue ShiftRHS = Src.getOperand(1); in combineMOVMSK() local
54566 ShiftRHS = DAG.getBitcast(ShiftVT, ShiftRHS); in combineMOVMSK()
54570 ShiftRHS = getTargetVShiftByConstNode(X86ISD::VSHLI, DL, ShiftVT, in combineMOVMSK()
54571 ShiftRHS, ShiftAmt, DAG); in combineMOVMSK()
54573 ShiftRHS = DAG.getBitcast(SrcVT, ShiftRHS); in combineMOVMSK()
54574 SDValue Res = DAG.getNode(ISD::XOR, DL, SrcVT, ShiftLHS, ShiftRHS); in combineMOVMSK()