Home
last modified time | relevance | path

Searched refs:CompoundValData (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp32 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, in Profile()
125 const CompoundValData*
129 CompoundValData::Profile(ID, T, Vals); in getCompoundValData()
132 CompoundValData* D = CompoundValDataSet.FindNodeOrInsertPos(ID, InsertPos); in getCompoundValData()
135 D = (CompoundValData*) BPAlloc.Allocate<CompoundValData>(); in getCompoundValData()
136 new (D) CompoundValData(T, Vals); in getCompoundValData()
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h40 class CompoundValData : public llvm::FoldingSetNode {
45 CompoundValData(QualType t, llvm::ImmutableList<SVal> l) : T(t), L(l) { in CompoundValData() function
126 llvm::FoldingSet<CompoundValData> CompoundValDataSet;
238 const CompoundValData *getCompoundValData(QualType T,
H A DSVals.h43 class CompoundValData; variable
380 explicit CompoundVal(const CompoundValData *D) : NonLoc(CompoundValKind, D) { in CompoundVal()
386 const CompoundValData* getValue() const { in getValue()
387 return static_cast<const CompoundValData *>(Data); in getValue()