Home
last modified time | relevance | path

Searched refs:NewShiftOpcode (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h375 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DRISCVISelLowering.cpp1194 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
1205 if (NewShiftOpcode == ISD::SRL && CC->isOne()) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h778 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DAArch64ISelLowering.cpp20703 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
20707 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
20710 return X.getValueType().isScalarInteger() || NewShiftOpcode == ISD::SHL; in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86ISelLowering.h1070 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DX86ISelLowering.cpp5935 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
5939 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
5952 return NewShiftOpcode == ISD::SHL; in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DTargetLowering.h771 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
783 if (XC && NewShiftOpcode == ISD::SHL && XC->isOne()) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp3850 unsigned NewShiftOpcode; in optimizeSetCCByHoistingAndByConstFromLogicalShift() local
3857 auto Match = [&NewShiftOpcode, &X, &C, &Y, &TLI, &DAG](SDValue V) { in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3864 NewShiftOpcode = ISD::SRL; in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3867 NewShiftOpcode = ISD::SHL; in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3884 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG); in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3905 SDValue T0 = DAG.getNode(NewShiftOpcode, DL, VT, X, Y); in optimizeSetCCByHoistingAndByConstFromLogicalShift()