Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h371 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DRISCVISelLowering.cpp1294 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
1305 if (NewShiftOpcode == ISD::SRL && CC->isOne()) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h796 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DAArch64ISelLowering.cpp22624 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
22628 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
22631 return X.getValueType().isScalarInteger() || NewShiftOpcode == ISD::SHL; in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.h1119 unsigned OldShiftOpcode, unsigned NewShiftOpcode,
H A DX86ISelLowering.cpp6053 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
6057 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
6070 return NewShiftOpcode == ISD::SHL; in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DTargetLowering.h759 unsigned OldShiftOpcode, unsigned NewShiftOpcode, in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() argument
771 if (XC && NewShiftOpcode == ISD::SHL && XC->isOne()) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp3920 unsigned NewShiftOpcode; in optimizeSetCCByHoistingAndByConstFromLogicalShift() local
3927 auto Match = [&NewShiftOpcode, &X, &C, &Y, &TLI, &DAG](SDValue V) { in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3934 NewShiftOpcode = ISD::SRL; in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3937 NewShiftOpcode = ISD::SHL; in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3954 X, XC, CC, Y, OldShiftOpcode, NewShiftOpcode, DAG); in optimizeSetCCByHoistingAndByConstFromLogicalShift()
3975 SDValue T0 = DAG.getNode(NewShiftOpcode, DL, VT, X, Y); in optimizeSetCCByHoistingAndByConstFromLogicalShift()