Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCSEMIRBuilder.cpp113 void CSEMIRBuilder::profileEverything(unsigned Opc, ArrayRef<DstOp> DstOps, in profileEverything() argument
120 profileDstOps(DstOps, B); in profileEverything()
137 bool CSEMIRBuilder::checkCopyToDefsPossible(ArrayRef<DstOp> DstOps) { in checkCopyToDefsPossible() argument
138 if (DstOps.size() == 1) in checkCopyToDefsPossible()
141 return llvm::all_of(DstOps, [](const DstOp &Op) { in checkCopyToDefsPossible()
148 CSEMIRBuilder::generateCopiesIfRequired(ArrayRef<DstOp> DstOps, in generateCopiesIfRequired() argument
150 assert(checkCopyToDefsPossible(DstOps) && in generateCopiesIfRequired()
152 if (DstOps.size() == 1) { in generateCopiesIfRequired()
153 const DstOp &Op = DstOps[0]; in generateCopiesIfRequired()
176 ArrayRef<DstOp> DstOps, in buildInstr() argument
[all …]
H A DMachineIRBuilder.cpp1199 MachineIRBuilder::buildInstr(unsigned Opc, ArrayRef<DstOp> DstOps, in buildInstr() argument
1206 assert(DstOps.size() == 1 && "Invalid select"); in buildInstr()
1209 DstOps[0].getLLTTy(*getMRI()), SrcOps[0].getLLTTy(*getMRI()), in buildInstr()
1216 assert(DstOps.size() == 1 && "Invalid Dst"); in buildInstr()
1218 validateUnaryOp(DstOps[0].getLLTTy(*getMRI()), in buildInstr()
1240 assert(DstOps.size() == 1 && "Invalid Dst"); in buildInstr()
1242 validateBinaryOp(DstOps[0].getLLTTy(*getMRI()), in buildInstr()
1252 assert(DstOps.size() == 1 && "Invalid Dst"); in buildInstr()
1254 validateShiftOp(DstOps[0].getLLTTy(*getMRI()), in buildInstr()
1262 assert(DstOps.size() == 1 && "Invalid Dst"); in buildInstr()
[all …]
H A DLegalizerHelper.cpp4229 static void makeDstOps(SmallVectorImpl<DstOp> &DstOps, LLT Ty, in makeDstOps() argument
4241 DstOps.push_back(NarrowTy); in makeDstOps()
4246 DstOps.push_back(LeftoverTy); in makeDstOps()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DCSEMIRBuilder.h72 void profileEverything(unsigned Opc, ArrayRef<DstOp> DstOps,
82 MachineInstrBuilder generateCopiesIfRequired(ArrayRef<DstOp> DstOps,
88 bool checkCopyToDefsPossible(ArrayRef<DstOp> DstOps);
95 buildInstr(unsigned Opc, ArrayRef<DstOp> DstOps, ArrayRef<SrcOp> SrcOps,
H A DMachineIRBuilder.h2242 buildInstr(unsigned Opc, ArrayRef<DstOp> DstOps, ArrayRef<SrcOp> SrcOps,
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp261 emitInstr(unsigned Opcode, std::initializer_list<llvm::DstOp> DstOps,
4251 unsigned Opcode, std::initializer_list<llvm::DstOp> DstOps, in emitInstr() argument
4257 auto MI = MIRBuilder.buildInstr(Opcode, DstOps, SrcOps); in emitInstr()