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

  /external/llvm/lib/IR/
ValueTypes.cpp 100 if (VectorType *VTy = dyn_cast<VectorType>(LLVMTy))
101 return VTy->getBitWidth();
255 VectorType *VTy = cast<VectorType>(Ty);
257 getVT(VTy->getElementType(), false), VTy->getNumElements());
272 VectorType *VTy = cast<VectorType>(Ty);
273 return getVectorVT(Ty->getContext(), getEVT(VTy->getElementType(), false),
274 VTy->getNumElements());
Constants.cpp 160 if (VectorType *VTy = dyn_cast<VectorType>(Ty))
161 C = ConstantVector::getSplat(VTy->getNumElements(), C);
177 VectorType *VTy = cast<VectorType>(Ty);
178 return ConstantVector::getSplat(VTy->getNumElements(),
179 getAllOnesValue(VTy->getElementType()));
446 VectorType *VTy = dyn_cast<VectorType>(Ty);
447 if (!VTy) {
451 assert(VTy->getElementType()->isIntegerTy(1) &&
453 return ConstantVector::getSplat(VTy->getNumElements(),
458 VectorType *VTy = dyn_cast<VectorType>(Ty)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 63 VectorType *VTy = cast<VectorType>(V->getType());
64 unsigned Width = VTy->getNumElements();
66 return UndefValue::get(VTy->getElementType());
91 return UndefValue::get(VTy->getElementType());
InstCombineSimplifyDemanded.cpp 107 Type *VTy = V->getType();
108 assert((TD || !VTy->isPointerTy()) &&
110 assert((!TD || TD->getTypeSizeInBits(VTy->getScalarType()) == BitWidth) &&
111 (!VTy->isIntOrIntVectorTy() ||
112 VTy->getScalarSizeInBits() == BitWidth) &&
135 return UndefValue::get(VTy);
175 return Constant::getNullValue(VTy);
255 return Constant::getNullValue(VTy);
336 Constant *AndC = Constant::getIntegerValue(VTy,
481 CastInst *NewCast = new ZExtInst(I->getOperand(0), VTy, I->getName())
    [all...]
  /external/llvm/include/llvm/IR/
Value.h 77 Type *VTy;
106 Type *getType() const { return VTy; }
312 VTy = Ty;
IRBuilder.h     [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 57 VectorType *VTy = dyn_cast<VectorType>(C->getType());
58 if (VTy == 0)
61 unsigned NumSrcElts = VTy->getNumElements();
62 Type *SrcEltTy = VTy->getElementType();
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 478 Type *VTy = V->getType();
482 if (VTy->isVectorTy()) {
483 VectorType *VecTy = cast<VectorType>(VTy);
488 if (VTy == DestTy) return;
491 if (VTy->isPointerTy()) {
498 unsigned VSize = VTy->getScalarType()->getPrimitiveSizeInBits();
508 if (VTy->getScalarType()->isIntegerTy() &&
523 if (VTy->getScalarType()->isFloatingPointTy() &&
532 if (VTy->getScalarType()->isIntegerTy() &&
542 if (VTy->getScalarType()->isFloatingPointTy() &
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp     [all...]
CGBuiltin.cpp     [all...]
CGDebugInfo.cpp     [all...]
CGExpr.cpp     [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 459 if (VectorType *VTy = dyn_cast<VectorType>(ElemTy)) {
460 numElem = VTy->getNumElements();
465 if (VectorType *VTy = dyn_cast<VectorType>(Elem2Ty)) {
466 numElem += VTy->getNumElements();
628 Type *VTy = cast<PointerType>(IPtr->getType())->getElementType();
629 int64_t VTyTSS = (int64_t) TD->getTypeStoreSize(VTy);
632 if (VTy != VTy2 && Offset < 0) {
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 315 milliseconds