Searched refs:NumParts (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp202 unsigned NumParts = TLI->getNumRegistersForCallingConv( local
204 if (NumParts > 1) {
206 if (NewVT.getSizeInBits() * NumParts != CurVT.getSizeInBits())
219 if (NumParts == 1) {
235 for (unsigned Part = 0; Part < NumParts; ++Part) {
243 if (Part == NumParts - 1)
257 if (NumParts < 2)
265 assert(Unmerge->getNumOperands() == NumParts + 1);
270 for (unsigned PartIdx = 0; PartIdx < NumParts; ++PartIdx) {
276 if (PartIdx == NumParts
[all...]
H A DLegalizerHelper.cpp46 unsigned NumParts = Size / NarrowSize; local
47 unsigned LeftoverSize = Size - NumParts * NarrowSize;
51 return {NumParts, 0};
63 return std::make_pair(NumParts, NumLeftover);
123 void LegalizerHelper::extractParts(Register Reg, LLT Ty, int NumParts, argument
125 for (int i = 0; i < NumParts; ++i)
138 unsigned NumParts = RegSize / MainSize; local
139 unsigned LeftoverSize = RegSize - NumParts * MainSize;
143 for (unsigned I = 0; I < NumParts; ++I)
159 for (unsigned I = 0; I != NumParts;
613 int NumParts = SizeOp0 / NarrowSize; local
633 int NumParts = TotalSize / NarrowSize; local
695 unsigned NumParts = SizeOp0 / SizeOp1; local
725 int NumParts = SizeOp0 / NarrowTy.getSizeInBits(); local
760 int NumParts = SizeOp0 / NarrowTy.getSizeInBits(); local
846 int NumParts = SizeOp0 / NarrowSize; local
912 unsigned NumParts = SizeOp0 / NarrowSize; local
1019 int NumParts = SizeOp0 / NarrowSize; local
1085 unsigned NumParts = SizeOp0 / NarrowSize; local
1153 unsigned NumParts = NewElts / OldElts; local
2332 int NumParts = Size / NarrowSize; local
2363 const int NumParts = Size / NarrowSize; local
2475 int NumParts = getNarrowTypeBreakDown(DstTy, NarrowTy0, LeftoverTy0).first; local
2555 unsigned NumParts; local
2599 unsigned NumParts; local
2664 unsigned NumParts = 0; local
2740 int NumParts, NumLeftover; local
2916 int NumParts = -1; local
3509 int NumParts = SizeOp1 / NarrowSize; local
3576 int NumParts = SizeOp0 / NarrowSize; local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp572 unsigned NumParts = getNumVectorRegs(SrcTy); local
573 if (NumParts <= 2)
585 if (NumParts > 1)
586 NumParts /= 2;
587 Cost += NumParts;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CallLowering.cpp70 unsigned NumParts = TLI.getNumRegisters(Context, VT); local
72 if (NumParts == 1) {
84 for (unsigned i = 0; i < NumParts; ++i) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp195 const SDValue *Parts, unsigned NumParts,
205 const SDValue *Parts, unsigned NumParts,
210 return getCopyFromPartsVector(DAG, DL, Parts, NumParts, PartVT, ValueVT, V,
213 assert(NumParts > 0 && "No parts to assemble!");
217 if (NumParts > 1) {
225 (NumParts & (NumParts - 1)) ? 1 << Log2_32(NumParts) : NumParts;
248 if (RoundParts < NumParts) {
204 getCopyFromParts(SelectionDAG &DAG, const SDLoc &DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, const Value *V, Optional<CallingConv::ID> CC = None, Optional<ISD::NodeType> AssertOp = None) argument
361 getCopyFromPartsVector(SelectionDAG &DAG, const SDLoc &DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, const Value *V, Optional<CallingConv::ID> CallConv) argument
502 getCopyToParts(SelectionDAG &DAG, const SDLoc &DL, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, const Value *V, Optional<CallingConv::ID> CallConv = None, ISD::NodeType ExtendKind = ISD::ANY_EXTEND) argument
662 getCopyToPartsVector(SelectionDAG &DAG, const SDLoc &DL, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, const Value *V, Optional<CallingConv::ID> CallConv) argument
901 unsigned NumParts = RegCount[Value]; local
1886 unsigned NumParts = TLI.getNumRegistersForCallingConv(Context, CC, VT); local
9250 unsigned NumParts = getNumRegistersForCallingConv(CLI.RetTy->getContext(), local
9874 unsigned NumParts = TLI->getNumRegistersForCallingConv( local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerHelper.h144 void extractParts(Register Reg, LLT Ty, int NumParts,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCallLowering.cpp170 unsigned NumParts = TLI.getNumRegistersForCallingConv(Ctx, CallConv, VT); local
175 if (NumParts == 1) {
195 for (unsigned i = 0; i < NumParts; ++i) {
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp1441 constexpr unsigned NumParts = 4; local
1442 raw_self_contained_string_ostream parts[NumParts];
1603 for (size_t i = 0; i < NumParts; ++i) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1494 unsigned NumParts = local
1510 for (unsigned i = 0; i < NumParts; ++i)

Completed in 216 milliseconds