Searched refs:NumElem (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp387 unsigned NumElem = SrcVT.getVectorNumElements(); local
449 for (unsigned Idx = 0; Idx != NumElem; ++Idx) {
494 for (unsigned Idx=0; Idx<NumElem; Idx++) {
533 unsigned NumElem = StVT.getVectorNumElements(); local
552 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
586 unsigned NumElem = VT.getVectorNumElements(); local
613 SmallVector<SDValue, 8> Ops(NumElem, Mask);
H A DDAGCombiner.cpp5385 unsigned NumElem = VecTy.getVectorNumElements(); local
5388 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
8065 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType; local
8068 if (NumElem < 2)
8072 for (unsigned i=0; i < NumElem; ++i) {
8088 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8092 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8098 for (unsigned i = 0; i < NumElem ; ++i) {
8099 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
8126 for (unsigned i = 0; i < NumElem ;
8251 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1; local
8627 int NumElem = VT.getVectorNumElements(); local
[all...]
H A DLegalizeIntegerTypes.cpp2955 unsigned NumElem = N->getOperand(0).getValueType().getVectorNumElements(); local
2958 assert(NumElem * NumOperands == NumOutElem &&
2965 for (unsigned j = 0; j < NumElem; ++j) {
2968 Ops[i * NumElem + j] = DAG.getNode(ISD::ANY_EXTEND, dl, OutElemTy, Ext);
3017 unsigned NumElem = Incoming->getValueType(0).getVectorNumElements(); local
3019 for (unsigned i=0; i<NumElem; ++i) {
H A DLegalizeDAG.cpp3695 unsigned NumElem = VT.getVectorNumElements();
3698 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
/freebsd-10.0-release/contrib/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp572 unsigned NumElem = cast<VectorType>(Val0->getType())->getNumElements(); local
573 CondTy = VectorType::get(CondTy, NumElem);
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DInstructions.h821 unsigned NumElem = cast<VectorType>(Ptr->getType())->getNumElements(); local
822 return VectorType::get(PtrTy, NumElem);
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp2275 unsigned NumElem = cast<VectorType>(VArgType)->getNumElements(); local
2276 std::vector<Constant*> Mask(NumElem);
2287 // from which we'll extract NumElem total elements (where the first NumElemI

Completed in 121 milliseconds