Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h742 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DAArch64ISelLowering.cpp17659 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
17663 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
17666 return X.getValueType().isScalarInteger() || NewShiftOpcode == ISD::SHL; in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.h1030 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DX86ISelLowering.cpp5463 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
5467 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
5480 return NewShiftOpcode == ISD::SHL; in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h745 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
757 if (XC && NewShiftOpcode == ISD::SHL && XC->isOne()) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp3333 unsigned NewShiftOpcode; in optimizeSetCCByHoistingAndByConstFromLogicalShift() local
3340 auto Match = [&NewShiftOpcode, &X, &C, &Y, &TLI, &DAG](SDValue V) { in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3347 NewShiftOpcode = ISD::SRL; in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3350 NewShiftOpcode = ISD::SHL; in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3367 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG); in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3388 SDValue T0 = DAG.getNode(NewShiftOpcode, DL, VT, X, Y); in optimizeSetCCByHoistingAndByConstFromLogicalShift()