26#include <clang/AST/Expr.h>
27#include <clang/AST/RecursiveASTVisitor.h>
28#include <clang/Basic/SourceManager.h>
35using common::model::template_parameter;
37std::string to_string(
const clang::FunctionTemplateDecl *decl);
50 :
public clang::RecursiveASTVisitor<translation_unit_visitor>,
137 clang::ClassTemplateSpecializationDecl *declaration);
146 clang::FunctionTemplateDecl *function_declaration);
149 clang::ObjCInterfaceDecl *interface_declaration);
199 template <
typename T = model::participant>
202 assert(decl !=
nullptr);
205 if (!unique_participant_id.has_value())
208 return get_participant<T>(unique_participant_id.value());
218 template <
typename T = model::participant>
221 assert(decl !=
nullptr);
224 if (!unique_participant_id.has_value())
227 return get_participant<T>(unique_participant_id.value());
237 template <
typename T = model::participant>
240 if (
diagram().participants().find(
id) ==
diagram().participants().end())
244 *(
static_cast<T *
>(
diagram().participants().at(
id).get())));
254 template <
typename T = model::participant>
257 if (
diagram().participants().find(
id) ==
diagram().participants().end())
261 *(
static_cast<T *
>(
diagram().participants().at(
id).get())));
289 const clang::NamedDecl *decl)
const;
356 bool should_include(
const clang::FunctionTemplateDecl *decl)
const;
366 std::unique_ptr<clanguml::sequence_diagram::model::class_>
369 std::unique_ptr<clanguml::sequence_diagram::model::class_>
372 std::unique_ptr<clanguml::sequence_diagram::model::class_>
375 std::unique_ptr<clanguml::sequence_diagram::model::method>
378 std::unique_ptr<clanguml::sequence_diagram::model::objc_method>
381 std::unique_ptr<clanguml::sequence_diagram::model::method>
384 std::unique_ptr<model::function_template>
388 const clang::FunctionDecl &declaration);
391 const clang::FunctionTemplateDecl &declaration);
394 clang::ClassTemplateSpecializationDecl *cls);
423 const clang::SourceLocation &source_location)
const;
440 const clang::CXXDependentScopeMemberExpr *dependent_member_expr)
const;
443 bool generated_message_from_comment);
453 model::message &m,
const clang::CXXConstructExpr *construct_expr);
463 const clang::CXXOperatorCallExpr *operator_call_expr);
466 model::message &m,
const clang::CUDAKernelCallExpr *cuda_call_expr);
476 model::message &m,
const clang::CXXMemberCallExpr *method_call_expr);
549 const clang::SourceManager &sm,
const clang::ASTContext &
context,
550 eid_t caller_id,
const clang::Stmt *stmt);
581 std::map<clang::CallExpr *, std::deque<model::message>>
588 std::map<clang::CXXConstructExpr *, model::message>
592 std::map<eid_t, std::unique_ptr<clanguml::sequence_diagram::model::class_>>
603 mutable std::set<const clang::Expr *>
606 mutable std::set<std::pair<int64_t, const clang::RawComment *>>