Searched refs:ConstructionContextLayer (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | ConstructionContext.cpp | 21 const ConstructionContextLayer * 22 ConstructionContextLayer::create(BumpVectorContext &C, in create() 24 const ConstructionContextLayer *Parent) { in create() 25 ConstructionContextLayer *CC = in create() 26 C.getAllocator().Allocate<ConstructionContextLayer>(); in create() 27 return new (CC) ConstructionContextLayer(Item, Parent); in create() 30 bool ConstructionContextLayer::isStrictlyMoreSpecificThan( in isStrictlyMoreSpecificThan() 31 const ConstructionContextLayer *Other) const { in isStrictlyMoreSpecificThan() 32 const ConstructionContextLayer *Self = this; in isStrictlyMoreSpecificThan() 48 const ConstructionContextLayer *ParentLayer) { in createMaterializedTemporaryFromLayers() [all …]
|
| H A D | CFG.cpp | 509 llvm::DenseMap<Expr *, const ConstructionContextLayer *> 710 void consumeConstructionContext(const ConstructionContextLayer *Layer, 718 void findConstructionContexts(const ConstructionContextLayer *Layer, 734 ConstructionContextLayer::create(cfg->getBumpVectorContext(), in findConstructionContextsForArguments() 1345 const ConstructionContextLayer *Layer, Expr *E) { in consumeConstructionContext() 1348 if (const ConstructionContextLayer *PreviouslyStoredLayer = in consumeConstructionContext() 1361 const ConstructionContextLayer *Layer, Stmt *Child) { in findConstructionContexts() 1667 ConstructionContextLayer::create(cfg->getBumpVectorContext(), I), in addInitializer() 2957 ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS), in VisitDeclSubExpr() 3375 findConstructionContexts(ConstructionContextLayer::create( in VisitLambdaExpr() [all …]
|
| /llvm-project-15.0.7/clang/include/clang/Analysis/ |
| H A D | ConstructionContext.h | 213 class ConstructionContextLayer { 214 const ConstructionContextLayer *Parent = nullptr; 217 ConstructionContextLayer(ConstructionContextItem Item, in ConstructionContextLayer() function 218 const ConstructionContextLayer *Parent) in ConstructionContextLayer() 222 static const ConstructionContextLayer * 224 const ConstructionContextLayer *Parent = nullptr); 227 const ConstructionContextLayer *getParent() const { return Parent; } in getParent() 235 bool isStrictlyMoreSpecificThan(const ConstructionContextLayer *Other) const; 288 const ConstructionContextLayer *ParentLayer); 297 const ConstructionContextLayer *ParentLayer); [all …]
|