Home
last modified time | relevance | path

Searched refs:AddSubOpc (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerCombiner.cpp171 unsigned ShiftAmt, AddSubOpc; in matchAArch64MulConstCombine() local
185 AddSubOpc = TargetOpcode::G_ADD; in matchAArch64MulConstCombine()
188 AddSubOpc = TargetOpcode::G_SUB; in matchAArch64MulConstCombine()
198 AddSubOpc = TargetOpcode::G_SUB; in matchAArch64MulConstCombine()
202 AddSubOpc = TargetOpcode::G_ADD; in matchAArch64MulConstCombine()
217 auto Res = B.buildInstr(AddSubOpc, {Ty}, {AddSubLHS, AddSubRHS}); in matchAArch64MulConstCombine()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMLxExpansionPass.cpp68 unsigned MulOpc, unsigned AddSubOpc,
270 unsigned MulOpc, unsigned AddSubOpc, in ExpandFPMLxInstruction() argument
285 const MCInstrDesc &MCID2 = TII->get(AddSubOpc); in ExpandFPMLxInstruction()
354 unsigned MulOpc, AddSubOpc; in ExpandFPMLxInstructions() local
357 MulOpc, AddSubOpc, NegAcc, HasLane) || in ExpandFPMLxInstructions()
361 ExpandFPMLxInstruction(MBB, MI, MulOpc, AddSubOpc, NegAcc, HasLane); in ExpandFPMLxInstructions()
H A DARMBaseInstrInfo.h507 unsigned &AddSubOpc, bool &NegAcc,
H A DARMBaseInstrInfo.cpp85 uint16_t AddSubOpc; // Expanded add / sub opcode member
119 MLxHazardOpcodes.insert(ARM_MLxTable[i].AddSubOpc); in ARMBaseInstrInfo()
4880 unsigned &AddSubOpc, in isFpMLxInstruction() argument
4888 AddSubOpc = Entry.AddSubOpc; in isFpMLxInstruction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12666 unsigned ShiftAmt, AddSubOpc; in performMulCombine() local
12680 AddSubOpc = ISD::ADD; in performMulCombine()
12683 AddSubOpc = ISD::SUB; in performMulCombine()
12693 AddSubOpc = ISD::SUB; in performMulCombine()
12697 AddSubOpc = ISD::ADD; in performMulCombine()
12710 SDValue Res = DAG.getNode(AddSubOpc, DL, VT, AddSubN0, AddSubN1); in performMulCombine()