clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
//===- StmtGraphTraits.h - Graph Traits for the class Stmt ------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines a template specialization of llvm::GraphTraits to
|
|
// treat ASTs (Stmt*) as graphs
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_AST_STMTGRAPHTRAITS_H
|
|
#define LLVM_CLANG_AST_STMTGRAPHTRAITS_H
|
|
|
|
#include "clang/AST/Stmt.h"
|
|
#include "llvm/ADT/DepthFirstIterator.h"
|
|
#include "llvm/ADT/GraphTraits.h"
|
|
|
|
namespace llvm {
|
|
|
|
template <> struct GraphTraits<clang::Stmt *> {
|
|
using NodeRef = clang::Stmt *;
|
|
using ChildIteratorType = clang::Stmt::child_iterator;
|
|
using nodes_iterator = llvm::df_iterator<clang::Stmt *>;
|
|
|
|
static NodeRef getEntryNode(clang::Stmt *S) { return S; }
|
|
|
|
static ChildIteratorType child_begin(NodeRef N) {
|
|
if (N) return N->child_begin();
|
|
else return ChildIteratorType();
|
|
}
|
|
|
|
static ChildIteratorType child_end(NodeRef N) {
|
|
if (N) return N->child_end();
|
|
else return ChildIteratorType();
|
|
}
|
|
|
|
static nodes_iterator nodes_begin(clang::Stmt* S) {
|
|
return df_begin(S);
|
|
}
|
|
|
|
static nodes_iterator nodes_end(clang::Stmt* S) {
|
|
return df_end(S);
|
|
}
|
|
};
|
|
|
|
template <> struct GraphTraits<const clang::Stmt *> {
|
|
using NodeRef = const clang::Stmt *;
|
|
using ChildIteratorType = clang::Stmt::const_child_iterator;
|
|
using nodes_iterator = llvm::df_iterator<const clang::Stmt *>;
|
|
|
|
static NodeRef getEntryNode(const clang::Stmt *S) { return S; }
|
|
|
|
static ChildIteratorType child_begin(NodeRef N) {
|
|
if (N) return N->child_begin();
|
|
else return ChildIteratorType();
|
|
}
|
|
|
|
static ChildIteratorType child_end(NodeRef N) {
|
|
if (N) return N->child_end();
|
|
else return ChildIteratorType();
|
|
}
|
|
|
|
static nodes_iterator nodes_begin(const clang::Stmt* S) {
|
|
return df_begin(S);
|
|
}
|
|
|
|
static nodes_iterator nodes_end(const clang::Stmt* S) {
|
|
return df_end(S);
|
|
}
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
#endif // LLVM_CLANG_AST_STMTGRAPHTRAITS_H
|