Home
last modified time | relevance | path

Searched refs:StorageKind (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp316 ConstantExprBits.ResultKind = llvm::to_underlying(StorageKind); in ConstantExpr()
323 if (StorageKind == ConstantResultStorageKind::APValue) in ConstantExpr()
331 AssertResultStorageKind(StorageKind); in Create()
334 StorageKind == ConstantResultStorageKind::APValue, in Create()
335 StorageKind == ConstantResultStorageKind::Int64); in Create()
343 ConstantExpr *Self = Create(Context, E, StorageKind); in Create()
353 if (StorageKind == ConstantResultStorageKind::APValue) in ConstantExpr()
359 AssertResultStorageKind(StorageKind); in CreateEmpty()
362 StorageKind == ConstantResultStorageKind::APValue, in CreateEmpty()
363 StorageKind == ConstantResultStorageKind::Int64); in CreateEmpty()
[all …]
H A DDecl.cpp4622 assert(StorageKind == ISK_NoInit && !BitField && in setCapturedVLAType()
4625 StorageKind = ISK_CapturedVLAType; in setCapturedVLAType()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3046 unsigned StorageKind : 2;
3082 Mutable(Mutable), StorageKind((InitStorageKind)InitStyle), in FieldDecl()
3173 return (StorageKind == ISK_CapturedVLAType ? ICIS_NoInit in getInClassInitStyle()
3174 : (InClassInitStyle)StorageKind); in getInClassInitStyle()
3203 StorageKind = ISK_NoInit; in removeInClassInitializer()
3214 return StorageKind == ISK_CapturedVLAType; in hasCapturedVLAType()
H A DExpr.h1092 ConstantExpr(Expr *SubExpr, ConstantResultStorageKind StorageKind,
1094 ConstantExpr(EmptyShell Empty, ConstantResultStorageKind StorageKind);
1104 ConstantResultStorageKind StorageKind);
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp549 auto StorageKind = static_cast<ConstantResultStorageKind>(Record.readInt()); in VisitConstantExpr() local
550 assert(E->getResultStorageKind() == StorageKind && "Wrong ResultKind!"); in VisitConstantExpr()
558 switch (StorageKind) { in VisitConstantExpr()
H A DASTWriterDecl.cpp997 Record.push_back((D->StorageKind << 1) | D->BitField); in VisitFieldDecl()
998 if (D->StorageKind == FieldDecl::ISK_CapturedVLAType) in VisitFieldDecl()
H A DASTReaderDecl.cpp1537 FD->StorageKind = Bits >> 1; in VisitFieldDecl()
1538 if (FD->StorageKind == FieldDecl::ISK_CapturedVLAType) in VisitFieldDecl()