[AST] [analyzer] NFC: Reuse code in stable ID dumping methods.

Use the new fancy method introduced in r348197 to simplify some code.

Differential Revision: https://reviews.llvm.org/D54488

llvm-svn: 348199
This commit is contained in:
Artem Dergachev 2018-12-03 22:19:05 +00:00
parent d3942beb46
commit 057647d878
5 changed files with 6 additions and 21 deletions

View File

@ -955,10 +955,7 @@ static Decl::Kind getKind(const Decl *D) { return D->getKind(); }
static Decl::Kind getKind(const DeclContext *DC) { return DC->getDeclKind(); }
int64_t Decl::getID() const {
Optional<int64_t> Out = getASTContext().getAllocator().identifyObject(this);
assert(Out && "Wrong allocator used");
assert(*Out % alignof(Decl) == 0 && "Wrong alignment information");
return *Out / alignof(Decl);
return getASTContext().getAllocator().identifyKnownAlignedObject<Decl>(this);
}
const FunctionType *Decl::getFunctionType(bool BlocksToo) const {

View File

@ -2247,11 +2247,8 @@ CXXCtorInitializer::CXXCtorInitializer(ASTContext &Context,
IsDelegating(true), IsVirtual(false), IsWritten(false), SourceOrder(0) {}
int64_t CXXCtorInitializer::getID(const ASTContext &Context) const {
Optional<int64_t> Out = Context.getAllocator().identifyObject(this);
assert(Out && "Wrong allocator used");
assert(*Out % alignof(CXXCtorInitializer) == 0 &&
"Wrong alignment information");
return *Out / alignof(CXXCtorInitializer);
return Context.getAllocator()
.identifyKnownAlignedObject<CXXCtorInitializer>(this);
}
TypeLoc CXXCtorInitializer::getBaseClassLoc() const {

View File

@ -303,10 +303,7 @@ SourceLocation Stmt::getEndLoc() const {
}
int64_t Stmt::getID(const ASTContext &Context) const {
Optional<int64_t> Out = Context.getAllocator().identifyObject(this);
assert(Out && "Wrong allocator used");
assert(*Out % alignof(Stmt) == 0 && "Wrong alignment information");
return *Out / alignof(Stmt);
return Context.getAllocator().identifyKnownAlignedObject<Stmt>(this);
}
CompoundStmt::CompoundStmt(ArrayRef<Stmt *> Stmts, SourceLocation LB,

View File

@ -284,10 +284,7 @@ ExplodedNode * const *ExplodedNode::NodeGroup::end() const {
}
int64_t ExplodedNode::getID(ExplodedGraph *G) const {
Optional<int64_t> Out = G->getAllocator().identifyObject(this);
assert(Out && "Wrong allocator used");
assert(*Out % alignof(ExplodedNode) == 0 && "Wrong alignment information");
return *Out / alignof(ExplodedNode);
return G->getAllocator().identifyKnownAlignedObject<ExplodedNode>(this);
}
bool ExplodedNode::isTrivial() const {

View File

@ -70,10 +70,7 @@ ProgramState::~ProgramState() {
}
int64_t ProgramState::getID() const {
Optional<int64_t> Out = getStateManager().Alloc.identifyObject(this);
assert(Out && "Wrong allocator used");
assert(*Out % alignof(ProgramState) == 0 && "Wrong alignment information");
return *Out / alignof(ProgramState);
return getStateManager().Alloc.identifyKnownAlignedObject<ProgramState>(this);
}
ProgramStateManager::ProgramStateManager(ASTContext &Ctx,