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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp99 const SDValue *Parts, unsigned NumParts,
109 unsigned NumParts, MVT PartVT, EVT ValueVT,
113 return getCopyFromPartsVector(DAG, DL, Parts, NumParts,
116 assert(NumParts > 0 && "No parts to assemble!");
120 if (NumParts > 1) {
127 unsigned RoundParts = NumParts & (NumParts - 1) ?
128 1 << Log2_32(NumParts) : NumParts;
151 if (RoundParts < NumParts) {
107 getCopyFromParts(SelectionDAG &DAG, SDLoc DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, const Value *V, ISD::NodeType AssertOp = ISD::DELETED_NODE) argument
242 getCopyFromPartsVector(SelectionDAG &DAG, SDLoc DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, const Value *V) argument
351 getCopyToParts(SelectionDAG &DAG, SDLoc DL, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, const Value *V, ISD::NodeType ExtendKind = ISD::ANY_EXTEND) argument
474 getCopyToPartsVector(SelectionDAG &DAG, SDLoc DL, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, const Value *V) argument
782 unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), ValueVT); local
[all...]
/external/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1484 unsigned NumParts = TLI.getNumRegisters(ReturnType->getContext(), VT); local
1498 for (unsigned i = 0; i < NumParts; ++i)
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp1154 unsigned NumParts = TTI->getNumberOfParts(Tys[i]); local
1155 if (NumParts > 1)
1157 else if (!NumParts && VCost == ICost + JCost)

Completed in 189 milliseconds