Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp89 const SDValue *Parts, unsigned NumParts,
99 unsigned NumParts, EVT PartVT, EVT ValueVT, in getCopyFromParts() argument
102 return getCopyFromPartsVector(DAG, DL, Parts, NumParts, PartVT, ValueVT); in getCopyFromParts()
104 assert(NumParts > 0 && "No parts to assemble!"); in getCopyFromParts()
108 if (NumParts > 1) { in getCopyFromParts()
115 unsigned RoundParts = NumParts & (NumParts - 1) ? in getCopyFromParts()
116 1 << Log2_32(NumParts) : NumParts; in getCopyFromParts()
139 if (RoundParts < NumParts) { in getCopyFromParts()
141 unsigned OddParts = NumParts - RoundParts; in getCopyFromParts()
150 EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); in getCopyFromParts()
[all …]
DTargetLowering.cpp1031 unsigned NumParts = TLI.getNumRegisters(ReturnType->getContext(), VT); in GetReturnInfo() local
1047 for (unsigned i = 0; i < NumParts; ++i) { in GetReturnInfo()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp120 const SDValue *Parts, unsigned NumParts,
129 const SDValue *Parts, unsigned NumParts, in getCopyFromParts() argument
133 return getCopyFromPartsVector(DAG, DL, Parts, NumParts, in getCopyFromParts()
136 assert(NumParts > 0 && "No parts to assemble!"); in getCopyFromParts()
140 if (NumParts > 1) { in getCopyFromParts()
147 unsigned RoundParts = NumParts & (NumParts - 1) ? in getCopyFromParts()
148 1 << Log2_32(NumParts) : NumParts; in getCopyFromParts()
171 if (RoundParts < NumParts) { in getCopyFromParts()
173 unsigned OddParts = NumParts - RoundParts; in getCopyFromParts()
182 EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); in getCopyFromParts()
[all …]
/external/llvm/lib/CodeGen/
DTargetLoweringBase.cpp1596 unsigned NumParts = TLI.getNumRegisters(ReturnType->getContext(), VT); in GetReturnInfo() local
1610 for (unsigned i = 0; i < NumParts; ++i) in GetReturnInfo()
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp1180 unsigned NumParts = TTI->getNumberOfParts(Tys[i]); in areInstsCompatible() local
1181 if (NumParts > 1) in areInstsCompatible()
1183 else if (!NumParts && VCost == ICost + JCost) in areInstsCompatible()