Home
last modified time | relevance | path

Searched refs:NegOpc (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64MIPeepholeOpt.cpp120 bool visitADDSUB(unsigned PosOpc, unsigned NegOpc, MachineInstr &MI);
353 unsigned PosOpc, unsigned NegOpc, MachineInstr &MI) { in visitADDSUB() argument
376 [PosOpc, NegOpc](T Imm, unsigned RegSize, T &Imm0, in visitADDSUB()
381 return std::make_pair(NegOpc, NegOpc); in visitADDSUB()
H A DAArch64ISelDAGToDAG.cpp3784 unsigned NegOpc; in tryShiftAmountMod() local
3788 NegOpc = AArch64::SUBWrr; in tryShiftAmountMod()
3792 NegOpc = AArch64::SUBXrr; in tryShiftAmountMod()
3798 CurDAG->getMachineNode(NegOpc, DL, SubVT, Zero, Add1); in tryShiftAmountMod()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelDAGToDAG.cpp278 unsigned NegOpc = VT == MVT::i64 ? LoongArch::SUB_D : LoongArch::SUB_W; in selectShiftMask() local
280 CurDAG->getMachineNode(NegOpc, DL, VT, Zero, N.getOperand(1)); in selectShiftMask()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp1958 unsigned NegOpc = 0; in selectVectorAshrLshr() local
1963 NegOpc = AArch64::NEGv2i64; in selectVectorAshrLshr()
1966 NegOpc = AArch64::NEGv4i32; in selectVectorAshrLshr()
1969 NegOpc = AArch64::NEGv2i32; in selectVectorAshrLshr()
1972 NegOpc = AArch64::NEGv4i16; in selectVectorAshrLshr()
1975 NegOpc = AArch64::NEGv8i16; in selectVectorAshrLshr()
1978 NegOpc = AArch64::NEGv16i8; in selectVectorAshrLshr()
1981 NegOpc = AArch64::NEGv8i8; in selectVectorAshrLshr()
1987 auto Neg = MIB.buildInstr(NegOpc, {RC}, {Src2Reg}); in selectVectorAshrLshr()
5648 unsigned NegOpc) -> MachineInstr * { in emitConstantVector() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/
H A DRISCVInstructionSelector.cpp219 unsigned NegOpc = Subtarget->is64Bit() ? RISCV::SUBW : RISCV::SUB; in selectShiftMask() local
222 .buildInstr(NegOpc, {ShAmtReg}, {Register(RISCV::X0), Reg}); in selectShiftMask()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp2796 unsigned NegOpc = VT == MVT::i64 ? RISCV::SUBW : RISCV::SUB; in selectShiftMask() local
2797 MachineSDNode *Neg = CurDAG->getMachineNode(NegOpc, DL, VT, Zero, in selectShiftMask()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp282 unsigned NegOpc = VT == MVT::i64 ? GET_ND_IF_ENABLED(X86::NEG64r) in getAddressOperands() local
284 SDValue Neg = SDValue(CurDAG->getMachineNode(NegOpc, DL, VT, MVT::i32, in getAddressOperands()