Home
last modified time | relevance | path

Searched refs:createStorageLocation (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.cpp62 StorageLocation &DataflowAnalysisContext::createStorageLocation(QualType Type) { in createStorageLocation() function in clang::dataflow::DataflowAnalysisContext
69 FieldLocs.insert({Field, &createStorageLocation( in createStorageLocation()
76 &createStorageLocation(Entry.getValue().getNonReferenceType())}); in createStorageLocation()
107 auto &Loc = createStorageLocation(D.getType().getNonReferenceType()); in getStableStorageLocation()
118 auto &Loc = createStorageLocation(CanonE.getType()); in getStableStorageLocation()
129 auto &PointeeLoc = createStorageLocation(CanonicalPointeeType); in getOrCreateNullPointerValue()
H A DDataflowEnvironment.cpp470 auto &Loc = createStorageLocation(FD->getType()); in initFieldsGlobalsAndFuncs()
688 StorageLocation &Environment::createStorageLocation(QualType Type) { in createStorageLocation() function in clang::dataflow::Environment
689 return DACtx->createStorageLocation(Type); in createStorageLocation()
692 StorageLocation &Environment::createStorageLocation(const ValueDecl &D) { in createStorageLocation() function in clang::dataflow::Environment
699 StorageLocation &Environment::createStorageLocation(const Expr &E) { in createStorageLocation() function in clang::dataflow::Environment
931 return createStorageLocation(Ty.getNonReferenceType()); in createLocAndMaybeValue()
939 return createStorageLocation(Ty); in createLocAndMaybeValue()
944 StorageLocation &Loc = createStorageLocation(Ty); in createLocAndMaybeValue()
991 D ? createStorageLocation(*D) : createStorageLocation(Ty); in createObjectInternal()
H A DTransfer.cpp606 StorageLocation &Loc = Env.createStorageLocation(*S); in VisitMaterializeTemporaryExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowEnvironment.h250 StorageLocation &createStorageLocation(QualType Type);
255 StorageLocation &createStorageLocation(const ValueDecl &D);
260 StorageLocation &createStorageLocation(const Expr &E);
H A DDataflowAnalysisContext.h117 StorageLocation &createStorageLocation(QualType Type);
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
H A DUncheckedOptionalAccessModel.cpp411 Loc = &cast<RecordStorageLocation>(State.Env.createStorageLocation(*E)); in transferCallReturningOptional()