Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h460 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DRISCVISelLowering.cpp1903 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
1914 if (NewShiftOpcode == ISD::SRL && CC->isOne()) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h859 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DAArch64ISelLowering.cpp25395 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
25399 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
25402 return X.getValueType().isScalarInteger() || NewShiftOpcode == ISD::SHL; in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.h1138 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DX86ISelLowering.cpp3254 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
3258 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
3271 return NewShiftOpcode == ISD::SHL; in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h795 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
807 if (XC && NewShiftOpcode == ISD::SHL && XC->isOne()) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp4112 unsigned NewShiftOpcode; in optimizeSetCCByHoistingAndByConstFromLogicalShift() local
4119 auto Match = [&NewShiftOpcode, &X, &C, &Y, &TLI, &DAG](SDValue V) { in optimizeSetCCByHoistingAndByConstFromLogicalShift()
4126 NewShiftOpcode = ISD::SRL; in optimizeSetCCByHoistingAndByConstFromLogicalShift()
4129 NewShiftOpcode = ISD::SHL; in optimizeSetCCByHoistingAndByConstFromLogicalShift()
4146 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG); in optimizeSetCCByHoistingAndByConstFromLogicalShift()
4167 SDValue T0 = DAG.getNode(NewShiftOpcode, DL, VT, X, Y); in optimizeSetCCByHoistingAndByConstFromLogicalShift()