blob: 130ca387d5f42dc2f42550f83b1f88f4c144de6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
//===--- DeclReferenceMap.h - Map Decls to their references -----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// DeclReferenceMap creates a mapping from Decls to the ASTLocations that
// reference them.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_INDEX_DECLREFERENCEMAP_H
#define LLVM_CLANG_INDEX_DECLREFERENCEMAP_H
#include "clang/Index/ASTLocation.h"
#include <map>
namespace clang {
class ASTContext;
class NamedDecl;
namespace idx {
/// \brief Maps NamedDecls with the ASTLocations that reference them.
///
/// References are mapped and retrieved using the primary decls
/// (see Decl::getPrimaryDecl()).
class DeclReferenceMap {
public:
explicit DeclReferenceMap(ASTContext &Ctx);
typedef std::multimap<NamedDecl*, ASTLocation> MapTy;
class astlocation_iterator {
MapTy::iterator I;
astlocation_iterator(MapTy::iterator i) : I(i) { }
friend class DeclReferenceMap;
public:
typedef ASTLocation value_type;
typedef ASTLocation& reference;
typedef ASTLocation* pointer;
typedef MapTy::iterator::iterator_category iterator_category;
typedef MapTy::iterator::difference_type difference_type;
astlocation_iterator() { }
reference operator*() const { return I->second; }
pointer operator->() const { return &I->second; }
astlocation_iterator& operator++() {
++I;
return *this;
}
astlocation_iterator operator++(int) {
astlocation_iterator tmp(*this);
++(*this);
return tmp;
}
friend bool operator==(astlocation_iterator L, astlocation_iterator R) {
return L.I == R.I;
}
friend bool operator!=(astlocation_iterator L, astlocation_iterator R) {
return L.I != R.I;
}
};
astlocation_iterator refs_begin(NamedDecl *D) const;
astlocation_iterator refs_end(NamedDecl *D) const;
bool refs_empty(NamedDecl *D) const;
private:
mutable MapTy Map;
};
} // end idx namespace
} // end clang namespace
#endif
|