HomeSort by relevance Sort by last modified time
    Searched defs:VTy (Results 1 - 13 of 13) sorted by null

  /external/llvm/lib/VMCore/
ValueTypes.cpp 88 if (VectorType *VTy = dyn_cast<VectorType>(LLVMTy))
89 return VTy->getBitWidth();
213 VectorType *VTy = cast<VectorType>(Ty);
214 return getVectorVT(Ty->getContext(), getEVT(VTy->getElementType(), false),
215 VTy->getNumElements());
Constants.cpp 124 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
125 C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
142 VectorType *VTy = cast<VectorType>(Ty);
143 Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
381 VectorType *VTy = dyn_cast<VectorType>(Ty);
382 if (!VTy) {
386 assert(VTy->getElementType()->isIntegerTy(1) &&
388 SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
394 VectorType *VTy = dyn_cast<VectorType>(Ty)
    [all...]
Instructions.cpp     [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 106 Type *VTy = V->getType();
107 assert((TD || !VTy->isPointerTy()) &&
109 assert((!TD || TD->getTypeSizeInBits(VTy->getScalarType()) == BitWidth) &&
110 (!VTy->isIntOrIntVectorTy() ||
111 VTy->getScalarSizeInBits() == BitWidth) &&
134 return UndefValue::get(VTy);
176 return Constant::getNullValue(VTy);
245 return Constant::getNullValue(VTy);
326 Constant *AndC = Constant::getIntegerValue(VTy,
471 CastInst *NewCast = new ZExtInst(I->getOperand(0), VTy, I->getName())
    [all...]
  /external/llvm/include/llvm/
Value.h 79 Type *VTy;
108 Type *getType() const { return VTy; }
309 VTy = Ty;
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp     [all...]
CGBuiltin.cpp     [all...]
CGDebugInfo.cpp     [all...]
CGExprScalar.cpp 790 llvm::VectorType *VTy = cast<llvm::VectorType>(V1->getType());
794 if (VTy->getNumElements() == 3 && Idx > 3)
    [all...]
  /external/llvm/lib/Target/CBackend/
CBackend.cpp 449 VectorType *VTy = cast<VectorType>(Ty);
450 return printSimpleType(Out, VTy->getElementType(), isSigned,
452 utostr(TD->getTypeAllocSize(VTy)) + " ))) " + NameSoFar);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 826 const VectorType *VTy = E->getType()->getAs<VectorType>();
827 QualType EltTy = VTy->getElementType();
828 unsigned NElts = VTy->getNumElements();
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 1072 milliseconds