forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMetadataPath.h
253 lines (212 loc) · 8.2 KB
/
MetadataPath.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
//===--- MetadataPath.h - Path for lazily finding type metadata -*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file defines the MetadataPath type, which efficiently records the
// path to a metadata object.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_IRGEN_METADATAPATH_H
#define SWIFT_IRGEN_METADATAPATH_H
#include "swift/Basic/EncodedSequence.h"
#include "swift/Reflection/MetadataSource.h"
#include "WitnessIndex.h"
#include "IRGen.h"
namespace llvm {
class Value;
}
namespace swift {
class ProtocolDecl;
class CanType;
class Decl;
enum class MetadataState : size_t;
namespace irgen {
class DynamicMetadataRequest;
class IRGenFunction;
class LocalTypeDataKey;
class MetadataResponse;
/// A path from one source metadata --- either Swift type metadata or a Swift
/// protocol conformance --- to another.
class MetadataPath {
class Component {
public:
enum class Kind {
// Some components carry indices.
// P means the primary index.
/// Associated conformance of a protocol. P is the WitnessIndex.
AssociatedConformance,
/// Base protocol of a protocol. P is the WitnessIndex.
OutOfLineBaseProtocol,
/// Witness table at requirement index P of a generic nominal type.
NominalTypeArgumentConformance,
/// Type metadata at requirement index P of a generic nominal type.
NominalTypeArgument,
/// Conditional conformance at index P (i.e. the P'th element) of a
/// conformance.
ConditionalConformance,
LastWithPrimaryIndex = ConditionalConformance,
// Everything past this point has no index.
/// An impossible path.
Impossible,
};
private:
unsigned Primary;
enum {
KindMask = 0xF,
IndexShift = 4,
};
static bool hasPrimaryIndex(Kind kind) {
return kind <= Kind::LastWithPrimaryIndex;
}
explicit Component(unsigned primary)
: Primary(primary) {}
public:
explicit Component(Kind kind)
: Primary(unsigned(kind)) {
assert(!hasPrimaryIndex(kind));
}
explicit Component(Kind kind, unsigned primaryIndex)
: Primary(unsigned(kind) | (primaryIndex << IndexShift)) {
assert(hasPrimaryIndex(kind));
}
Kind getKind() const { return Kind(Primary & KindMask); }
unsigned getPrimaryIndex() const {
assert(hasPrimaryIndex(getKind()));
return (Primary >> IndexShift);
}
/// Return an abstract measurement of the cost of this component.
OperationCost cost() const {
switch (getKind()) {
case Kind::OutOfLineBaseProtocol:
case Kind::NominalTypeArgumentConformance:
case Kind::NominalTypeArgument:
case Kind::ConditionalConformance:
return OperationCost::Load;
case Kind::AssociatedConformance:
return OperationCost::Call;
case Kind::Impossible:
llvm_unreachable("cannot compute cost of an impossible path");
}
llvm_unreachable("bad path component");
}
static Component decode(const EncodedSequenceBase::Chunk *&ptr) {
unsigned primary = EncodedSequenceBase::decodeIndex(ptr);
return Component(primary);
}
void encode(EncodedSequenceBase::Chunk *&ptr) const {
EncodedSequenceBase::encodeIndex(Primary, ptr);
}
unsigned getEncodedSize() const {
auto size = EncodedSequenceBase::getEncodedIndexSize(Primary);
return size;
}
};
EncodedSequence<Component> Path;
public:
MetadataPath() {}
using iterator = EncodedSequence<Component>::iterator;
template <class ValueType>
using Map = EncodedSequence<Component>::Map<ValueType>;
/// Add a step to this path which will cause a dynamic assertion if
/// it's followed.
void addImpossibleComponent() {
Path.push_back(Component(Component::Kind::Impossible));
}
/// Add a step to this path which gets the type metadata stored at
/// requirement index n in a generic type metadata.
void addNominalTypeArgumentComponent(unsigned index) {
Path.push_back(Component(Component::Kind::NominalTypeArgument, index));
}
/// Add a step to this path which gets the protocol witness table
/// stored at requirement index n in a generic type metadata.
void addNominalTypeArgumentConformanceComponent(unsigned index) {
Path.push_back(Component(Component::Kind::NominalTypeArgumentConformance,
index));
}
/// Add a step to this path which gets the inherited protocol at
/// a particular witness index.
void addInheritedProtocolComponent(WitnessIndex index) {
assert(!index.isPrefix());
Path.push_back(Component(Component::Kind::OutOfLineBaseProtocol,
index.getValue()));
}
/// Add a step to this path which gets the associated conformance at
/// a particular witness index.
void addAssociatedConformanceComponent(WitnessIndex index) {
assert(!index.isPrefix());
Path.push_back(Component(Component::Kind::AssociatedConformance,
index.getValue()));
}
void addConditionalConformanceComponent(unsigned index) {
Path.push_back(Component(Component::Kind::ConditionalConformance, index));
}
/// Return an abstract measurement of the cost of this path.
OperationCost cost() const {
auto cost = OperationCost::Free;
for (const Component &component : Path)
cost += component.cost();
return cost;
}
/// Given a pointer to type metadata, follow a path from it.
MetadataResponse followFromTypeMetadata(IRGenFunction &IGF,
CanType sourceType,
MetadataResponse source,
DynamicMetadataRequest request,
Map<MetadataResponse> *cache) const;
/// Given a pointer to a protocol witness table, follow a path from it.
MetadataResponse followFromWitnessTable(IRGenFunction &IGF,
CanType conformingType,
ProtocolConformanceRef conformance,
MetadataResponse source,
DynamicMetadataRequest request,
Map<MetadataResponse> *cache) const;
template <typename Allocator>
const reflection::MetadataSource *
getMetadataSource(Allocator &A,
const reflection::MetadataSource *Root) const {
if (Root == nullptr)
return nullptr;
for (auto C : Path) {
switch (C.getKind()) {
case Component::Kind::NominalTypeArgument:
Root = A.createGenericArgument(C.getPrimaryIndex(), Root);
continue;
default:
return nullptr;
}
}
return Root;
}
void dump() const;
void print(llvm::raw_ostream &out) const;
friend llvm::raw_ostream &operator<<(llvm::raw_ostream &out,
const MetadataPath &path) {
path.print(out);
return out;
}
private:
static MetadataResponse follow(IRGenFunction &IGF,
LocalTypeDataKey key,
MetadataResponse source,
MetadataPath::iterator begin,
MetadataPath::iterator end,
DynamicMetadataRequest request,
Map<MetadataResponse> *cache);
/// Follow a single component of a metadata path.
static MetadataResponse followComponent(IRGenFunction &IGF,
LocalTypeDataKey &key,
MetadataResponse source,
Component component,
DynamicMetadataRequest request);
};
} // end namespace irgen
} // end namespace swift
#endif