Searched refs:VectorType (Results 126 - 150 of 284) sorted by relevance

1234567891011>>

/external/flatbuffers/src/
H A Didl_gen_general.cpp273 return GenTypeGet(type.VectorType());
303 return DestinationType(type.VectorType(), vectorelem);
350 return DestinationMask(type.VectorType(), vectorelem);
359 return DestinationCast(type.VectorType());
387 return SourceCast(type.VectorType(), castFromDest);
576 case BASE_TYPE_VECTOR: return GenGetter(type.VectorType());
948 auto vectortype = field.value.type.VectorType();
999 IsScalar(field.value.type.VectorType().base_type)) ||
1010 : InlineSize(field.value.type.VectorType()));
1060 ? field.value.type.VectorType()
[all...]
H A Didl_gen_fbs.cpp35 return "[" + GenType(type.VectorType()) + "]";
H A Didl_gen_go.cpp296 auto vectortype = field.value.type.VectorType();
320 auto vectortype = field.value.type.VectorType();
463 auto vector_type = field.value.type.VectorType();
510 auto vectortype = field.value.type.VectorType();
665 case BASE_TYPE_VECTOR: return GenGetter(type.VectorType());
693 return GenTypeGet(type.VectorType());
H A Didl_gen_python.cpp232 auto vectortype = field.value.type.VectorType();
258 auto vectortype = field.value.type.VectorType();
390 auto vector_type = field.value.type.VectorType();
438 auto vectortype = field.value.type.VectorType();
533 case BASE_TYPE_VECTOR: return GenGetter(type.VectorType());
563 return GenTypeGet(type.VectorType());
H A Didl_gen_js.cpp217 case BASE_TYPE_VECTOR: return GenType(type.VectorType());
228 case BASE_TYPE_VECTOR: return GenGetter(type.VectorType(), arguments);
505 auto vectortype = field.value.type.VectorType();
619 auto vectorType = field.value.type.VectorType();
692 auto vector_type = field.value.type.VectorType();
/external/llvm/lib/Analysis/
H A DVectorUtils.cpp236 VectorType *VTy = cast<VectorType>(V->getType());
289 if (isa<VectorType>(V->getType()))
/external/swiftshader/third_party/LLVM/lib/Target/
H A DTargetData.cpp306 unsigned Align = getTypeAllocSize(cast<VectorType>(Ty)->getElementType());
307 Align *= cast<VectorType>(Ty)->getNumElements();
430 return cast<VectorType>(Ty)->getBitWidth();
/external/eigen/test/
H A Dbasicstuff.cpp18 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
31 VectorType v1 = VectorType::Random(rows),
32 vzero = VectorType::Zero(rows);
H A Dblock.cpp38 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; typedef
51 VectorType v1 = VectorType::Random(rows);
82 VectorType bc1(m1.block(0,c1,rows,1));
/external/llvm/lib/CodeGen/
H A DAnalysis.cpp219 (isa<VectorType>(T1) && isa<VectorType>(T2) &&
259 if (!isa<VectorType>(I->getType()) &&
267 if (!isa<VectorType>(I->getType()) &&
/external/llvm/lib/Target/X86/
H A DX86TargetObjectFile.cpp122 if (isa<VectorType>(Ty))
H A DX86TargetTransformInfo.cpp1088 if (VectorType *VTy = dyn_cast<VectorType>(Src)) {
1131 VectorType *SrcVTy = dyn_cast<VectorType>(SrcTy);
1137 VectorType *MaskTy =
1138 VectorType::get(Type::getInt8Ty(SrcVTy->getContext()), NumElem);
1168 VectorType *NewMaskTy = VectorType::get(MaskTy->getVectorElementType(),
1438 assert(isa<VectorType>(SrcVTy) && "Unexpected type in getGSVectorCost");
1476 Type *IndexVTy = VectorType
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DConstantFold.cpp45 VectorType *DstTy) {
135 if (VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
136 if (VectorType *SrcTy = dyn_cast<VectorType>(V->getType())) {
553 cast<VectorType>(DestTy)->getNumElements() ==
556 VectorType *DestVecTy = cast<VectorType>(DestTy);
703 VectorType *VTy = cast<VectorType>(V
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp2523 static llvm::VectorType *GetNeonType(CodeGenFunction *CGF,
2530 return llvm::VectorType::get(CGF->Int8Ty, V1Ty ? 1 : (8 << IsQuad));
2534 return llvm::VectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad));
2536 return llvm::VectorType::get(CGF->Int32Ty, V1Ty ? 1 : (2 << IsQuad));
2539 return llvm::VectorType::get(CGF->Int64Ty, V1Ty ? 1 : (1 << IsQuad));
2544 return llvm::VectorType::get(CGF->Int8Ty, 16);
2546 return llvm::VectorType::get(CGF->FloatTy, V1Ty ? 1 : (2 << IsQuad));
2548 return llvm::VectorType::get(CGF->DoubleTy, V1Ty ? 1 : (1 << IsQuad));
2553 static llvm::VectorType *GetFloatNeonType(CodeGenFunction *CGF,
2558 return llvm::VectorType
[all...]
H A DCGExprScalar.cpp826 if (isa<llvm::VectorType>(SrcTy) ||
827 isa<llvm::VectorType>(DstTy))
992 llvm::VectorType *LTy = cast<llvm::VectorType>(LHS->getType());
997 llvm::VectorType *MTy = cast<llvm::VectorType>(Mask->getType());
1010 llvm::VectorType *RTy = llvm::VectorType::get(LTy->getElementType(),
1062 QualType SrcEltType = SrcType->getAs<VectorType>()->getElementType(),
1063 DstEltType = DstType->getAs<VectorType>()
[all...]
H A DTargetInfo.cpp820 cast<llvm::VectorType>(IRType)->getElementType()->isIntegerTy() &&
828 if (cast<llvm::VectorType>(Ty)->getBitWidth() != 64) {
846 } else if (const VectorType *VT = Ty->getAs<VectorType>()) {
1240 if (const VectorType *VT = RetTy->getAs<VectorType>()) {
1249 return ABIArgInfo::getDirect(llvm::VectorType::get(
1312 return Ty->getAs<VectorType>() && Context.getTypeSize(Ty) == 128;
1551 if (const VectorType *VT = Ty->getAs<VectorType>()) {
[all...]
H A DCodeGenTypes.cpp555 const VectorType *VT = cast<VectorType>(Ty);
556 ResultType = llvm::VectorType::get(ConvertType(VT->getElementType()),
/external/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp278 const VectorType *PTy = cast<const VectorType>(Ty);
/external/llvm/include/llvm/IR/
H A DConstants.h37 class VectorType;
476 ConstantVector(VectorType *T, ArrayRef<Constant *> Val);
489 /// Specialize the getType() method to always return a VectorType,
491 inline VectorType *getType() const {
492 return cast<VectorType>(Value::getType());
750 /// Specialize the getType() method to always return a VectorType,
752 inline VectorType *getType() const {
753 return cast<VectorType>(Value::getType());
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp279 auto VT = cast<VectorType>(CDV->getType());
296 auto VT = cast<VectorType>(Vec->getType());
367 auto VT = cast<VectorType>(II.getType());
484 VectorType *VecTy = cast<VectorType>(II.getType());
586 VectorType *ShufTy = VectorType::get(IntTy8, 16);
666 VectorType *ShufTy = VectorType::get(IntTy8, 16);
732 auto *VecTy = cast<VectorType>(I
[all...]
/external/llvm/lib/IR/
H A DLegacyPassManager.cpp515 const AnalysisUsage::VectorType &IDs = AnUsage->getRequiredTransitiveSet();
625 const AnalysisUsage::VectorType &RequiredSet = AnUsage->getRequiredSet();
626 for (AnalysisUsage::VectorType::const_iterator I = RequiredSet.begin(),
638 for (AnalysisUsage::VectorType::const_iterator I2 = RequiredSet.begin(),
839 const AnalysisUsage::VectorType &PreservedSet = AnUsage->getPreservedSet();
860 const AnalysisUsage::VectorType &PreservedSet = AnUsage->getPreservedSet();
863 for (AnalysisUsage::VectorType::const_iterator I = PreservedSet.begin(),
879 const AnalysisUsage::VectorType &PreservedSet = AnUsage->getPreservedSet();
1081 for (AnalysisUsage::VectorType::const_iterator
1215 const AnalysisUsage::VectorType
[all...]
H A DConstantsContext.h101 : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(),
144 : ConstantExpr(VectorType::get(
145 cast<VectorType>(C1->getType())->getElementType(),
146 cast<VectorType>(C3->getType())->getNumElements()),
357 typedef VectorType TypeClass;
/external/swiftshader/third_party/LLVM/include/llvm/
H A DConstants.h36 class VectorType;
460 friend struct ConstantCreator<ConstantVector, VectorType,
464 ConstantVector(VectorType *T, ArrayRef<Constant *> Val);
472 /// getType - Specialize the getType() method to always return a VectorType,
475 inline VectorType *getType() const {
476 return reinterpret_cast<VectorType*>(Value::getType());
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp109 return VectorType::isValidElementType(Ty) && !Ty->isX86_FP80Ty() &&
386 /// \brief Check if ArrayType or StructType is isomorphic to some VectorType.
428 Value *Gather(ArrayRef<Value *> VL, VectorType *Ty);
1473 uint64_t VTSize = DL.getTypeStoreSizeInBits(VectorType::get(EltTy, N));
1534 VectorType *VecTy = VectorType::get(ScalarTy, VL.size());
1539 VecTy = VectorType::get(IntegerType::get(F->getContext(), MinBWs[VL[0]]),
1590 VectorType *SrcVecTy = VectorType::get(SrcTy, VL.size());
1598 VectorType *MaskT
[all...]
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
H A DBitcodeReader.cpp717 ResultTy = VectorType::get(ResultTy, Record[0]);
902 ResultTy = VectorType::get(ResultTy, Record[0]);
1301 } else if (VectorType *VTy = dyn_cast<VectorType>(CurTy)) {
1407 VectorType *OpTy =
1408 dyn_cast_or_null<VectorType>(getTypeByID(Record[0]));
1416 VectorType *OpTy = dyn_cast<VectorType>(CurTy);
1427 VectorType *OpTy = dyn_cast<VectorType>(CurT
[all...]

Completed in 613 milliseconds

1234567891011>>