Home
last modified time | relevance | path

Searched refs:PointeeLoc (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/llvm/clang/include/clang/Analysis/FlowSensitive/
H A DValue.h271 explicit PointerValue(StorageLocation &PointeeLoc) in PointerValue() argument
272 : Value(Kind::Pointer), PointeeLoc(PointeeLoc) {} in PointerValue()
278 StorageLocation &getPointeeLoc() const { return PointeeLoc; } in getPointeeLoc()
281 StorageLocation &PointeeLoc;
/openbsd/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp706 auto &PointeeLoc = createStorageLocation(PointeeType); in createValueUnlessSelfReferential() local
714 setValue(PointeeLoc, *PointeeVal); in createValueUnlessSelfReferential()
717 return &takeOwnership(std::make_unique<ReferenceValue>(PointeeLoc)); in createValueUnlessSelfReferential()
723 auto &PointeeLoc = createStorageLocation(PointeeType); in createValueUnlessSelfReferential() local
731 setValue(PointeeLoc, *PointeeVal); in createValueUnlessSelfReferential()
734 return &takeOwnership(std::make_unique<PointerValue>(PointeeLoc)); in createValueUnlessSelfReferential()
H A DDataflowAnalysisContext.cpp85 auto &PointeeLoc = createStorageLocation(CanonicalPointeeType); in getOrCreateNullPointerValue() local
87 &takeOwnership(std::make_unique<PointerValue>(PointeeLoc)); in getOrCreateNullPointerValue()
H A DTransfer.cpp393 StorageLocation *PointeeLoc = in VisitUnaryOperator() local
395 if (PointeeLoc == nullptr) in VisitUnaryOperator()
400 Env.takeOwnership(std::make_unique<PointerValue>(*PointeeLoc)); in VisitUnaryOperator()