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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp94 const SDValue *Parts, unsigned NumParts,
104 unsigned NumParts, MVT PartVT, EVT ValueVT,
108 return getCopyFromPartsVector(DAG, DL, Parts, NumParts,
111 assert(NumParts > 0 && "No parts to assemble!");
115 if (NumParts > 1) {
122 unsigned RoundParts = NumParts & (NumParts - 1) ?
123 1 << Log2_32(NumParts) : NumParts;
146 if (RoundParts < NumParts) {
102 getCopyFromParts(SelectionDAG &DAG, SDLoc DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, const Value *V, ISD::NodeType AssertOp = ISD::DELETED_NODE) argument
237 getCopyFromPartsVector(SelectionDAG &DAG, SDLoc DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, const Value *V) argument
346 getCopyToParts(SelectionDAG &DAG, SDLoc DL, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, const Value *V, ISD::NodeType ExtendKind = ISD::ANY_EXTEND) argument
469 getCopyToPartsVector(SelectionDAG &DAG, SDLoc DL, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, const Value *V) argument
773 unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), ValueVT); local
[all...]
/external/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1298 unsigned NumParts = TLI.getNumRegisters(ReturnType->getContext(), VT); local
1312 for (unsigned i = 0; i < NumParts; ++i)
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp1158 unsigned NumParts = TTI->getNumberOfParts(Tys[i]); local
1159 if (NumParts > 1)
1161 else if (!NumParts && VCost == ICost + JCost)

Completed in 1107 milliseconds