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

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 2739 auto VAT = FD->getCapturedVLAType();
2740 VLASizeMap[VAT->getSizeExpr()] = ExprArg;
CodeGenFunction.cpp 1129 auto VAT = FD->getCapturedVLAType();
1130 VLASizeMap[VAT->getSizeExpr()] = ExprArg;
2184 const VariableArrayType *vat = cast<VariableArrayType>(ty); local
2188 if (const Expr *size = vat->getSizeExpr()) {
2216 type = vat->getElementType();
CGStmtOpenMP.cpp 307 while (const VariableArrayType *VAT = C.getAsVariableArrayType(Ty)) {
308 VlaSizePair VlaSize = getVLASize(VAT);
330 const VariableArrayType *VAT = CurField->getCapturedVLAType();
331 llvm::Value *Val = VLASizeMap[VAT->getSizeExpr()];
555 const VariableArrayType *VAT = FD->getCapturedVLAType();
556 VLASizes.try_emplace(Args[Cnt], VAT->getSizeExpr(), ExprArg);
CGOpenMPRuntime.cpp 8057 auto *VAT = Context.getAsVariableArrayType(Ty);
8060 assert((VAT || CAT || &Component == &*Components.begin()) &&
8069 else if (VAT)
8070 ElementType = VAT->getElementType().getTypePtr();
8073 "Only expect pointer (non CAT or VAT) when this is the "
8076 // (neither CAT nor VAT) and we'll attempt to get ElementType again
8095 else if (VAT)
8097 CGF.EmitScalarExpr(VAT->getSizeExpr()), CGF.Int64Ty,
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 3591 const auto *vat = cast<VariableArrayType>(ty); local
3593 getVariableArrayDecayedType(vat->getElementType()),
3596 vat->getIndexTypeCVRQualifiers(),
3597 vat->getBracketsRange());
5754 if (const auto *VAT = dyn_cast<VariableArrayType>(AT)) {
5756 VAT->getSizeExpr(),
5757 VAT->getSizeModifier(),
5758 VAT->getIndexTypeCVRQualifiers(),
5759 VAT->getBracketsRange());
6135 const auto *VAT = cast<VariableArrayType>(ATy)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 8063 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
8066 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
SemaExpr.cpp 4397 const VariableArrayType *VAT = cast<VariableArrayType>(Ty);
4401 auto Size = VAT->getSizeExpr();
4402 if (Size && !CSI->isVLATypeCaptured(VAT) &&
4404 CSI->addVLATypeCapture(Size->getExprLoc(), VAT, Context.getSizeType());
4406 T = VAT->getElementType();

Completed in 110 milliseconds