forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDebugTypeInfo.h
127 lines (109 loc) · 4.1 KB
/
DebugTypeInfo.h
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
//===--- DebugTypeInfo.h - Type Info for Debugging --------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file defines the data structure that holds all the debug info
// we want to emit for types.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_IRGEN_DEBUGTYPEINFO_H
#define SWIFT_IRGEN_DEBUGTYPEINFO_H
#include "IRGen.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Types.h"
namespace llvm {
class Type;
}
namespace swift {
class SILDebugScope;
namespace irgen {
class TypeInfo;
/// This data structure holds everything needed to emit debug info
/// for a type.
class DebugTypeInfo {
public:
/// The Decl holds the DeclContext, location, but also allows to
/// look up struct members. If there is no Decl, generic types
/// mandate there be at least a DeclContext.
PointerUnion<ValueDecl *, DeclContext *> DeclOrContext;
/// The type we need to emit may be different from the type
/// mentioned in the Decl, for example, stripped of qualifiers.
TypeBase *Type;
/// Needed to determine the size of basic types and to determine
/// the storage type for undefined variables.
llvm::Type *StorageType;
Size size;
Alignment align;
// FIXME: feels like there might be too many constructors here
DebugTypeInfo() : Type(nullptr), StorageType(nullptr), size(0), align(1) {}
DebugTypeInfo(swift::Type Ty, llvm::Type *StorageTy, uint64_t SizeInBytes,
uint32_t AlignInBytes, DeclContext *DC);
DebugTypeInfo(swift::Type Ty, llvm::Type *StorageTy, Size size,
Alignment align, DeclContext *DC);
DebugTypeInfo(swift::Type Ty, const TypeInfo &Info, DeclContext *DC);
DebugTypeInfo(ValueDecl *Decl, const TypeInfo &Info);
DebugTypeInfo(ValueDecl *Decl, llvm::Type *StorageType, Size size,
Alignment align);
DebugTypeInfo(ValueDecl *Decl, swift::Type Ty, const TypeInfo &Info,
bool Unwrap);
DebugTypeInfo(ValueDecl *Decl, swift::Type Ty,
llvm::Type *StorageType, Size size,
Alignment align);
TypeBase *getType() const { return Type; }
ValueDecl *getDecl() const { return DeclOrContext.dyn_cast<ValueDecl *>(); }
DeclContext *getDeclContext() const {
if (ValueDecl *D = getDecl())
return D->getDeclContext();
else
return DeclOrContext.get<DeclContext *>();
}
void unwrapLValueOrInOutType() {
Type = Type->getLValueOrInOutObjectType().getPointer();
}
// Determine whether this type is an Archetype itself.
bool isArchetype() const {
return Type->getLValueOrInOutObjectType()->getDesugaredType()->getKind() ==
TypeKind::Archetype;
}
/// LValues, inout args, and Archetypes are implicitly indirect by
/// virtue of their DWARF type.
bool isImplicitlyIndirect() const {
return Type->isLValueType() || isArchetype() ||
(Type->getKind() == TypeKind::InOut);
}
bool isNull() const { return Type == nullptr; }
bool operator==(DebugTypeInfo T) const;
bool operator!=(DebugTypeInfo T) const;
void dump() const;
};
}
}
namespace llvm {
// Dense map specialization.
template <> struct DenseMapInfo<swift::irgen::DebugTypeInfo> {
static swift::irgen::DebugTypeInfo getEmptyKey() {
return swift::irgen::DebugTypeInfo();
}
static swift::irgen::DebugTypeInfo getTombstoneKey() {
return swift::irgen::DebugTypeInfo(
llvm::DenseMapInfo<swift::TypeBase *>::getTombstoneKey(), nullptr, 0, 0,
0);
}
static unsigned getHashValue(swift::irgen::DebugTypeInfo Val) {
return DenseMapInfo<swift::CanType>::getHashValue(Val.getType());
}
static bool isEqual(swift::irgen::DebugTypeInfo LHS,
swift::irgen::DebugTypeInfo RHS) {
return LHS == RHS;
}
};
}
#endif