HomeSort by relevance Sort by last modified time
    Searched refs:VecTy (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/include/llvm/ADT/
TinyPtrVector.h 28 typedef llvm::SmallVector<EltTy, 4> VecTy;
29 typedef typename VecTy::value_type value_type;
31 llvm::PointerUnion<EltTy, VecTy*> Val;
35 if (VecTy *V = Val.template dyn_cast<VecTy*>())
40 if (VecTy *V = Val.template dyn_cast<VecTy*>())
41 Val = new VecTy(*V);
57 Val = new VecTy(*RHS.Val.template get<VecTy*>());
    [all...]
  /external/llvm/lib/Analysis/
CostModel.cpp 258 Type *VecTy = ReduxRoot->getOperand(0)->getType();
259 unsigned NumVecElems = VecTy->getVectorNumElements();
285 Ty = VecTy;
322 Type *VecTy = ReduxRoot->getOperand(0)->getType();
323 unsigned NumVecElems = VecTy->getVectorNumElements();
376 Ty = VecTy;
Lint.cpp 512 VectorType *VecTy = dyn_cast<VectorType>(V->getType());
513 if (!VecTy) {
530 unsigned BitWidth = VecTy->getElementType()->getIntegerBitWidth();
531 for (unsigned I = 0, N = VecTy->getNumElements(); I != N; ++I) {
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 87 MVT VecTy = MVT::getVectorVT(IntTy, getVectorNumElements());
88 assert(VecTy.SimpleTy >= 0 &&
90 return VecTy;
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
Scalarizer.cpp 105 VectorLayout() : VecTy(nullptr), ElemTy(nullptr), VecAlign(0), ElemSize(0) {}
113 VectorType *VecTy;
342 Layout.VecTy = dyn_cast<VectorType>(Ty);
343 if (!Layout.VecTy)
347 Layout.ElemTy = Layout.VecTy->getElementType();
355 Layout.VecAlign = DL->getABITypeAlignment(Layout.VecTy);
590 unsigned NumElems = Layout.VecTy->getNumElements();
614 unsigned NumElems = Layout.VecTy->getNumElements();
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
LoopVectorize.cpp     [all...]
BBVectorize.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp     [all...]
  /external/llvm/lib/IR/
AutoUpgrade.cpp 343 Type *VecTy = CI->getType();
344 Type *EltTy = VecTy->getVectorElementType();
345 unsigned EltNum = VecTy->getVectorNumElements();
350 Rep = UndefValue::get(VecTy);
DataLayout.cpp 713 if (VectorType *VecTy = dyn_cast<VectorType>(Ty))
714 return VectorType::get(IntTy, VecTy->getNumElements());
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
InstCombineSelect.cpp     [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 485 VectorType *VecTy = cast<VectorType>(VTy);
486 DestTy = pickVectorType(VecTy->getNumElements());
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGBuiltin.cpp     [all...]
TargetInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]

Completed in 616 milliseconds

1 2