HomeSort by: relevance | last modified time | path
    Searched defs:VType (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/
RISCVAsmParser.cpp 264 VType,
295 struct VTypeOp VType;
319 case KindTy::VType:
320 VType = o.VType;
333 bool isVType() const { return Kind == KindTy::VType; }
727 assert(Kind == KindTy::VType && "Invalid type access!");
728 return VType.Val;
752 case KindTy::VType:
753 OS << "<vtype: "
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerMatrixIntrinsics.cpp 423 VectorType *VType = dyn_cast<VectorType>(MatrixVal->getType());
424 assert(VType && "MatrixVal must be a vector type");
425 assert(cast<FixedVectorType>(VType)->getNumElements() ==
447 MaskStart < cast<FixedVectorType>(VType)->getNumElements();
805 auto *VType = cast<VectorType>(Ty);
806 Type *EltTy = VType->getElementType();
898 auto VType = cast<VectorType>(Ty);
899 Value *EltPtr = createElementPtr(Ptr, VType->getElementType(), Builder);
903 VType->getElementType(), Builder);
906 VType->getElementType()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 1081 auto EmitIsNegativeTest = [&Builder](Value *V, QualType VType,
1084 bool VSigned = VType->isSignedIntegerOrEnumerationType();
1789 llvm::VectorType *VType =
1792 if (!VType) {
1801 unsigned ResElts = cast<llvm::FixedVectorType>(VType)->getNumElements();
1810 llvm::Value *V = llvm::UndefValue::get(VType);
1923 llvm::Type *EltTy = VType->getElementType();

Completed in 54 milliseconds