]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h
Merge clang 7.0.1 and several follow-up changes
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / AST / BaseSubobject.h
1 //===- BaseSubobject.h - BaseSubobject class --------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file provides a definition of the BaseSubobject class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CLANG_AST_BASESUBOBJECT_H
15 #define LLVM_CLANG_AST_BASESUBOBJECT_H
16
17 #include "clang/AST/CharUnits.h"
18 #include "llvm/ADT/DenseMapInfo.h"
19 #include "llvm/Support/type_traits.h"
20 #include <cstdint>
21 #include <utility>
22
23 namespace clang {
24
25 class CXXRecordDecl;
26
27 // BaseSubobject - Uniquely identifies a direct or indirect base class.
28 // Stores both the base class decl and the offset from the most derived class to
29 // the base class. Used for vtable and VTT generation.
30 class BaseSubobject {
31   /// Base - The base class declaration.
32   const CXXRecordDecl *Base;
33
34   /// BaseOffset - The offset from the most derived class to the base class.
35   CharUnits BaseOffset;
36
37 public:
38   BaseSubobject() = default;
39   BaseSubobject(const CXXRecordDecl *Base, CharUnits BaseOffset)
40       : Base(Base), BaseOffset(BaseOffset) {}
41
42   /// getBase - Returns the base class declaration.
43   const CXXRecordDecl *getBase() const { return Base; }
44
45   /// getBaseOffset - Returns the base class offset.
46   CharUnits getBaseOffset() const { return BaseOffset; }
47
48   friend bool operator==(const BaseSubobject &LHS, const BaseSubobject &RHS) {
49     return LHS.Base == RHS.Base && LHS.BaseOffset == RHS.BaseOffset;
50  }
51 };
52
53 } // namespace clang
54
55 namespace llvm {
56
57 template<> struct DenseMapInfo<clang::BaseSubobject> {
58   static clang::BaseSubobject getEmptyKey() {
59     return clang::BaseSubobject(
60       DenseMapInfo<const clang::CXXRecordDecl *>::getEmptyKey(),
61       clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getEmptyKey()));
62   }
63
64   static clang::BaseSubobject getTombstoneKey() {
65     return clang::BaseSubobject(
66       DenseMapInfo<const clang::CXXRecordDecl *>::getTombstoneKey(),
67       clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getTombstoneKey()));
68   }
69
70   static unsigned getHashValue(const clang::BaseSubobject &Base) {
71     using PairTy = std::pair<const clang::CXXRecordDecl *, clang::CharUnits>;
72
73     return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
74                                                      Base.getBaseOffset()));
75   }
76
77   static bool isEqual(const clang::BaseSubobject &LHS,
78                       const clang::BaseSubobject &RHS) {
79     return LHS == RHS;
80   }
81 };
82
83 // It's OK to treat BaseSubobject as a POD type.
84 template <> struct isPodLike<clang::BaseSubobject> {
85   static const bool value = true;
86 };
87
88 } // namespace llvm
89
90 #endif // LLVM_CLANG_AST_BASESUBOBJECT_H