Searched refs:SplitVector (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h1137 /// SplitVector - Split the vector with EXTRACT_SUBVECTOR using the provides
1139 std::pair<SDValue, SDValue> SplitVector(const SDValue &N, const SDLoc &DL,
1142 /// SplitVector - Split the vector with EXTRACT_SUBVECTOR and return the
1144 std::pair<SDValue, SDValue> SplitVector(const SDValue &N, const SDLoc &DL) { function in class:llvm::SelectionDAG
1147 return SplitVector(N, DL, LoVT, HiVT);
1154 return SplitVector(N->getOperand(OpNo), SDLoc(N));
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp82 llvm::tie(Lo, Hi) = DAG.SplitVector(InOp, dl, LoVT, HiVT);
521 llvm::tie(CL, CH) = DAG.SplitVector(Cond, dl);
H A DLegalizeVectorTypes.cpp988 llvm::tie(Lo, Hi) = DAG.SplitVector(NewSrc, dl);
1205 llvm::tie(LoOp0, HiOp0) = DAG.SplitVector(Src0, DL);
1206 llvm::tie(LoOp1, HiOp1) = DAG.SplitVector(Src1, DL);
1207 llvm::tie(LoMask, HiMask) = DAG.SplitVector(Mask, DL);
1411 llvm::tie(InLoVec, InHiVec) = DAG.SplitVector(InVec, DL);
H A DSelectionDAG.cpp6427 /// SplitVector - Split the vector with EXTRACT_SUBVECTOR and return the
6430 SelectionDAG::SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT, function in class:SelectionDAG

Completed in 77 milliseconds