-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathGenRecord.h
601 lines (510 loc) · 21.2 KB
/
GenRecord.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
//===--- GenRecord.h - IR generation for record types -----------*- 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 provides some common code for emitting record types.
// A record type is something like a tuple or a struct.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_IRGEN_GENRECORD_H
#define SWIFT_IRGEN_GENRECORD_H
#include "IRGenFunction.h"
#include "IRGenModule.h"
#include "Explosion.h"
#include "GenEnum.h"
#include "LoadableTypeInfo.h"
#include "TypeInfo.h"
#include "StructLayout.h"
#include "llvm/Support/TrailingObjects.h"
namespace swift {
namespace irgen {
template <class, class, class> class RecordTypeBuilder;
/// A field of a record type.
template <class FieldImpl> class RecordField {
ElementLayout Layout;
template <class, class, class> friend class RecordTypeBuilder;
/// Begin/End - the range of explosion indexes for this element
unsigned Begin : 16;
unsigned End : 16;
protected:
explicit RecordField(const TypeInfo &elementTI)
: Layout(ElementLayout::getIncomplete(elementTI)) {}
explicit RecordField(const ElementLayout &layout,
unsigned begin, unsigned end)
: Layout(layout), Begin(begin), End(end) {}
const FieldImpl *asImpl() const {
return static_cast<const FieldImpl*>(this);
}
public:
const TypeInfo &getTypeInfo() const { return Layout.getType(); }
void completeFrom(const ElementLayout &layout) {
Layout.completeFrom(layout);
}
bool isEmpty() const {
return Layout.isEmpty();
}
IsPOD_t isPOD() const {
return Layout.isPOD();
}
Address projectAddress(IRGenFunction &IGF, Address seq,
NonFixedOffsets offsets) const {
return Layout.project(IGF, seq, offsets, "." + asImpl()->getFieldName());
}
ElementLayout::Kind getKind() const {
return Layout.getKind();
}
Size getFixedByteOffset() const {
return Layout.getByteOffset();
}
unsigned getNonFixedElementIndex() const {
return Layout.getNonFixedElementIndex();
}
std::pair<unsigned, unsigned> getProjectionRange() const {
return {Begin, End};
}
};
/// A metaprogrammed TypeInfo implementation for record types.
template <class Impl, class Base, class FieldImpl_,
bool IsLoadable = std::is_base_of<LoadableTypeInfo, Base>::value>
class RecordTypeInfoImpl : public Base,
private llvm::TrailingObjects<Impl, FieldImpl_> {
friend class llvm::TrailingObjects<Impl, FieldImpl_>;
public:
typedef FieldImpl_ FieldImpl;
private:
const unsigned NumFields;
protected:
const Impl &asImpl() const { return *static_cast<const Impl*>(this); }
template <class... As>
RecordTypeInfoImpl(ArrayRef<FieldImpl> fields, As&&...args)
: Base(std::forward<As>(args)...), NumFields(fields.size()) {
std::uninitialized_copy(fields.begin(), fields.end(),
this->template getTrailingObjects<FieldImpl>());
}
public:
/// Allocate and initialize a type info of this type.
template <class... As>
static Impl *create(ArrayRef<FieldImpl> fields, As &&...args) {
size_t size = Impl::template totalSizeToAlloc<FieldImpl>(fields.size());
void *buffer = ::operator new(size);
return new(buffer) Impl(fields, std::forward<As>(args)...);
}
ArrayRef<FieldImpl> getFields() const {
return {this->template getTrailingObjects<FieldImpl>(), NumFields};
}
/// The standard schema is just all the fields jumbled together.
void getSchema(ExplosionSchema &schema) const override {
for (auto &field : getFields()) {
field.getTypeInfo().getSchema(schema);
}
}
void assignWithCopy(IRGenFunction &IGF, Address dest,
Address src, SILType T) const override {
auto offsets = asImpl().getNonFixedOffsets(IGF, T);
for (auto &field : getFields()) {
if (field.isEmpty()) continue;
Address destField = field.projectAddress(IGF, dest, offsets);
Address srcField = field.projectAddress(IGF, src, offsets);
field.getTypeInfo().assignWithCopy(IGF, destField, srcField,
field.getType(IGF.IGM, T));
}
}
void assignWithTake(IRGenFunction &IGF, Address dest,
Address src, SILType T) const override {
auto offsets = asImpl().getNonFixedOffsets(IGF, T);
for (auto &field : getFields()) {
if (field.isEmpty()) continue;
Address destField = field.projectAddress(IGF, dest, offsets);
Address srcField = field.projectAddress(IGF, src, offsets);
field.getTypeInfo().assignWithTake(IGF, destField, srcField,
field.getType(IGF.IGM, T));
}
}
void initializeWithCopy(IRGenFunction &IGF,
Address dest, Address src,
SILType T) const override {
// If we're POD, use the generic routine.
if (this->isPOD(ResilienceExpansion::Maximal) &&
isa<LoadableTypeInfo>(this)) {
return cast<LoadableTypeInfo>(this)->
LoadableTypeInfo::initializeWithCopy(IGF, dest, src, T);
}
auto offsets = asImpl().getNonFixedOffsets(IGF, T);
for (auto &field : getFields()) {
if (field.isEmpty()) continue;
Address destField = field.projectAddress(IGF, dest, offsets);
Address srcField = field.projectAddress(IGF, src, offsets);
field.getTypeInfo().initializeWithCopy(IGF, destField, srcField,
field.getType(IGF.IGM, T));
}
}
void initializeWithTake(IRGenFunction &IGF,
Address dest, Address src,
SILType T) const override {
// If we're bitwise-takable, use memcpy.
if (this->isBitwiseTakable(ResilienceExpansion::Maximal)) {
IGF.Builder.CreateMemCpy(dest.getAddress(), src.getAddress(),
asImpl().Impl::getSize(IGF, T),
std::min(dest.getAlignment(), src.getAlignment()).getValue());
return;
}
auto offsets = asImpl().getNonFixedOffsets(IGF, T);
for (auto &field : getFields()) {
if (field.isEmpty()) continue;
Address destField = field.projectAddress(IGF, dest, offsets);
Address srcField = field.projectAddress(IGF, src, offsets);
field.getTypeInfo().initializeWithTake(IGF, destField, srcField,
field.getType(IGF.IGM, T));
}
}
void destroy(IRGenFunction &IGF, Address addr, SILType T) const override {
auto offsets = asImpl().getNonFixedOffsets(IGF, T);
for (auto &field : getFields()) {
if (field.isPOD()) continue;
field.getTypeInfo().destroy(IGF, field.projectAddress(IGF, addr, offsets),
field.getType(IGF.IGM, T));
}
}
};
template <class Impl, class Base, class FieldImpl_,
bool IsFixedSize = std::is_base_of<FixedTypeInfo, Base>::value,
bool IsLoadable = std::is_base_of<LoadableTypeInfo, Base>::value>
class RecordTypeInfo;
/// An implementation of RecordTypeInfo for non-fixed-size types
/// (but not resilient ones where we don't know the complete set of
/// stored properties).
///
/// Override the buffer operations to just delegate to the unique
/// non-empty field, if there is one.
template <class Impl, class Base, class FieldImpl>
class RecordTypeInfo<Impl, Base, FieldImpl,
/*IsFixedSize*/ false, /*IsLoadable*/ false>
: public RecordTypeInfoImpl<Impl, Base, FieldImpl> {
typedef RecordTypeInfoImpl<Impl, Base, FieldImpl> super;
/// The index+1 of the unique non-empty field, or zero if there is none.
unsigned UniqueNonEmptyFieldIndexPlusOne;
protected:
template <class... As>
RecordTypeInfo(ArrayRef<FieldImpl> fields, As&&...args)
: super(fields, std::forward<As>(args)...) {
// Look for a unique non-empty field.
UniqueNonEmptyFieldIndexPlusOne = findUniqueNonEmptyField(fields);
}
public:
using super::getStorageType;
Address allocateBuffer(IRGenFunction &IGF, Address buffer,
SILType type) const override {
if (auto field = getUniqueNonEmptyField()) {
Address address =
field->getTypeInfo().allocateBuffer(IGF, buffer,
field->getType(IGF.IGM, type));
return IGF.Builder.CreateElementBitCast(address, getStorageType());
} else {
return super::allocateBuffer(IGF, buffer, type);
}
}
Address projectBuffer(IRGenFunction &IGF, Address buffer,
SILType type) const override {
if (auto field = getUniqueNonEmptyField()) {
Address address =
field->getTypeInfo().projectBuffer(IGF, buffer,
field->getType(IGF.IGM, type));
return IGF.Builder.CreateElementBitCast(address, getStorageType());
} else {
return super::projectBuffer(IGF, buffer, type);
}
}
void destroyBuffer(IRGenFunction &IGF, Address buffer,
SILType type) const override {
if (auto field = getUniqueNonEmptyField()) {
field->getTypeInfo().destroyBuffer(IGF, buffer,
field->getType(IGF.IGM, type));
} else {
super::destroyBuffer(IGF, buffer, type);
}
}
void deallocateBuffer(IRGenFunction &IGF, Address buffer,
SILType type) const override {
if (auto field = getUniqueNonEmptyField()) {
field->getTypeInfo().deallocateBuffer(IGF, buffer,
field->getType(IGF.IGM, type));
} else {
super::deallocateBuffer(IGF, buffer, type);
}
}
Address initializeBufferWithTake(IRGenFunction &IGF,
Address destBuffer,
Address srcAddr,
SILType type) const override {
if (auto field = getUniqueNonEmptyField()) {
auto &fieldTI = field->getTypeInfo();
Address srcFieldAddr =
IGF.Builder.CreateElementBitCast(srcAddr, fieldTI.getStorageType());
Address fieldResult =
fieldTI.initializeBufferWithTake(IGF, destBuffer, srcFieldAddr,
field->getType(IGF.IGM, type));
return IGF.Builder.CreateElementBitCast(fieldResult, getStorageType());
} else {
return super::initializeBufferWithTake(IGF, destBuffer, srcAddr, type);
}
}
Address initializeBufferWithCopy(IRGenFunction &IGF,
Address destBuffer,
Address srcAddr,
SILType type) const override {
if (auto field = getUniqueNonEmptyField()) {
auto &fieldTI = field->getTypeInfo();
Address srcFieldAddr =
IGF.Builder.CreateElementBitCast(srcAddr, fieldTI.getStorageType());
Address fieldResult =
fieldTI.initializeBufferWithCopy(IGF, destBuffer, srcFieldAddr,
field->getType(IGF.IGM, type));
return IGF.Builder.CreateElementBitCast(fieldResult, getStorageType());
} else {
return super::initializeBufferWithCopy(IGF, destBuffer, srcAddr, type);
}
}
Address initializeBufferWithTakeOfBuffer(IRGenFunction &IGF,
Address destBuffer,
Address srcBuffer,
SILType type) const override {
if (auto field = getUniqueNonEmptyField()) {
auto &fieldTI = field->getTypeInfo();
Address fieldResult =
fieldTI.initializeBufferWithTakeOfBuffer(IGF, destBuffer, srcBuffer,
field->getType(IGF.IGM, type));
return IGF.Builder.CreateElementBitCast(fieldResult, getStorageType());
} else {
return super::initializeBufferWithTakeOfBuffer(IGF, destBuffer,
srcBuffer, type);
}
}
Address initializeBufferWithCopyOfBuffer(IRGenFunction &IGF,
Address destBuffer,
Address srcBuffer,
SILType type) const override {
if (auto field = getUniqueNonEmptyField()) {
auto &fieldTI = field->getTypeInfo();
Address fieldResult =
fieldTI.initializeBufferWithCopyOfBuffer(IGF, destBuffer, srcBuffer,
field->getType(IGF.IGM, type));
return IGF.Builder.CreateElementBitCast(fieldResult, getStorageType());
} else {
return super::initializeBufferWithCopyOfBuffer(IGF, destBuffer,
srcBuffer, type);
}
}
private:
/// Scan the given field info
static unsigned findUniqueNonEmptyField(ArrayRef<FieldImpl> fields) {
unsigned result = 0;
for (auto &field : fields) {
// Ignore empty fields.
if (field.isEmpty()) continue;
// If we've already found an index, then there isn't a
// unique non-empty field.
if (result) return 0;
result = (&field - fields.data()) + 1;
}
return result;
}
const FieldImpl *getUniqueNonEmptyField() const {
if (UniqueNonEmptyFieldIndexPlusOne) {
return &this->getFields()[UniqueNonEmptyFieldIndexPlusOne - 1];
} else {
return nullptr;
}
}
};
/// An implementation of RecordTypeInfo for non-loadable types.
template <class Impl, class Base, class FieldImpl>
class RecordTypeInfo<Impl, Base, FieldImpl,
/*IsFixedSize*/ true, /*IsLoadable*/ false>
: public RecordTypeInfoImpl<Impl, Base, FieldImpl> {
typedef RecordTypeInfoImpl<Impl, Base, FieldImpl> super;
protected:
template <class... As>
RecordTypeInfo(As&&...args) : super(std::forward<As>(args)...) {}
};
/// An implementation of RecordTypeInfo for loadable types.
template <class Impl, class Base, class FieldImpl>
class RecordTypeInfo<Impl, Base, FieldImpl,
/*IsFixedSize*/ true, /*IsLoadable*/ true>
: public RecordTypeInfoImpl<Impl, Base, FieldImpl> {
typedef RecordTypeInfoImpl<Impl, Base, FieldImpl> super;
unsigned ExplosionSize : 16;
protected:
using super::asImpl;
template <class... As>
RecordTypeInfo(ArrayRef<FieldImpl> fields, unsigned explosionSize,
As &&...args)
: super(fields, std::forward<As>(args)...),
ExplosionSize(explosionSize) {}
private:
template <void (LoadableTypeInfo::*Op)(IRGenFunction &IGF,
Address addr,
Explosion &out) const>
void forAllFields(IRGenFunction &IGF, Address addr, Explosion &out) const {
auto offsets = asImpl().getNonFixedOffsets(IGF);
for (auto &field : getFields()) {
if (field.isEmpty()) continue;
Address fieldAddr = field.projectAddress(IGF, addr, offsets);
(cast<LoadableTypeInfo>(field.getTypeInfo()).*Op)(IGF, fieldAddr, out);
}
}
template <void (LoadableTypeInfo::*Op)(IRGenFunction &IGF, Address addr,
Explosion &out, Atomicity atomicity) const>
void forAllFields(IRGenFunction &IGF, Address addr, Explosion &out,
Atomicity atomicity) const {
auto offsets = asImpl().getNonFixedOffsets(IGF);
for (auto &field : getFields()) {
if (field.isEmpty()) continue;
Address fieldAddr = field.projectAddress(IGF, addr, offsets);
(cast<LoadableTypeInfo>(field.getTypeInfo()).*Op)(IGF, fieldAddr, out,
atomicity);
}
}
template <void (LoadableTypeInfo::*Op)(IRGenFunction &IGF,
Explosion &in,
Address addr) const>
void forAllFields(IRGenFunction &IGF, Explosion &in, Address addr) const {
auto offsets = asImpl().getNonFixedOffsets(IGF);
for (auto &field : getFields()) {
if (field.isEmpty()) continue;
Address fieldAddr = field.projectAddress(IGF, addr, offsets);
(cast<LoadableTypeInfo>(field.getTypeInfo()).*Op)(IGF, in, fieldAddr);
}
}
public:
using super::getFields;
void loadAsCopy(IRGenFunction &IGF, Address addr,
Explosion &out) const override {
forAllFields<&LoadableTypeInfo::loadAsCopy>(IGF, addr, out);
}
void loadAsTake(IRGenFunction &IGF, Address addr,
Explosion &out) const override {
forAllFields<&LoadableTypeInfo::loadAsTake>(IGF, addr, out);
}
void assign(IRGenFunction &IGF, Explosion &e, Address addr) const override {
forAllFields<&LoadableTypeInfo::assign>(IGF, e, addr);
}
void initialize(IRGenFunction &IGF, Explosion &e,
Address addr) const override {
forAllFields<&LoadableTypeInfo::initialize>(IGF, e, addr);
}
unsigned getExplosionSize() const override {
return ExplosionSize;
}
void reexplode(IRGenFunction &IGF, Explosion &src,
Explosion &dest) const override {
for (auto &field : getFields())
cast<LoadableTypeInfo>(field.getTypeInfo()).reexplode(IGF, src, dest);
}
void copy(IRGenFunction &IGF, Explosion &src,
Explosion &dest, Atomicity atomicity) const override {
for (auto &field : getFields())
cast<LoadableTypeInfo>(field.getTypeInfo())
.copy(IGF, src, dest, Atomicity::Atomic);
}
void consume(IRGenFunction &IGF, Explosion &src,
Atomicity atomicity) const override {
for (auto &field : getFields())
cast<LoadableTypeInfo>(field.getTypeInfo())
.consume(IGF, src, Atomicity::Atomic);
}
void fixLifetime(IRGenFunction &IGF, Explosion &src) const override {
for (auto &field : getFields())
cast<LoadableTypeInfo>(field.getTypeInfo()).fixLifetime(IGF, src);
}
void packIntoEnumPayload(IRGenFunction &IGF,
EnumPayload &payload,
Explosion &src,
unsigned startOffset) const override {
for (auto &field : getFields()) {
if (field.getKind() != ElementLayout::Kind::Empty) {
unsigned offset = field.getFixedByteOffset().getValueInBits()
+ startOffset;
cast<LoadableTypeInfo>(field.getTypeInfo())
.packIntoEnumPayload(IGF, payload, src, offset);
}
}
}
void unpackFromEnumPayload(IRGenFunction &IGF, const EnumPayload &payload,
Explosion &dest, unsigned startOffset)
const override {
for (auto &field : getFields()) {
if (field.getKind() != ElementLayout::Kind::Empty) {
unsigned offset = field.getFixedByteOffset().getValueInBits()
+ startOffset;
cast<LoadableTypeInfo>(field.getTypeInfo())
.unpackFromEnumPayload(IGF, payload, dest, offset);
}
}
}
};
/// A builder of record types.
///
/// Required for a full implementation:
/// TypeInfoImpl *construct(void *buffer, ArrayRef<ASTField> fields);
/// FieldImpl getFieldInfo(const ASTField &field, const TypeInfo &fieldTI);
/// Type getType(const ASTField &field);
/// void performLayout(ArrayRef<const TypeInfo *> fieldTypes);
/// - should call recordLayout with the layout
template <class BuilderImpl, class FieldImpl, class ASTField>
class RecordTypeBuilder {
protected:
IRGenModule &IGM;
RecordTypeBuilder(IRGenModule &IGM) : IGM(IGM) {}
BuilderImpl *asImpl() { return static_cast<BuilderImpl*>(this); }
public:
TypeInfo *layout(ArrayRef<ASTField> astFields) {
SmallVector<FieldImpl, 8> fields;
SmallVector<const TypeInfo *, 8> fieldTypesForLayout;
fields.reserve(astFields.size());
fieldTypesForLayout.reserve(astFields.size());
bool loadable = true;
unsigned explosionSize = 0;
for (unsigned i : indices(astFields)) {
auto &astField = astFields[i];
// Compute the field's type info.
auto &fieldTI = IGM.getTypeInfo(asImpl()->getType(astField));
assert(fieldTI.isComplete());
fieldTypesForLayout.push_back(&fieldTI);
fields.push_back(FieldImpl(asImpl()->getFieldInfo(i, astField, fieldTI)));
auto loadableFieldTI = dyn_cast<LoadableTypeInfo>(&fieldTI);
if (!loadableFieldTI) {
loadable = false;
continue;
}
auto &fieldInfo = fields.back();
fieldInfo.Begin = explosionSize;
explosionSize += loadableFieldTI->getExplosionSize();
fieldInfo.End = explosionSize;
}
// Perform layout and fill in the fields.
StructLayout layout = asImpl()->performLayout(fieldTypesForLayout);
for (unsigned i = 0, e = fields.size(); i != e; ++i) {
fields[i].completeFrom(layout.getElements()[i]);
}
// Create the type info.
if (loadable) {
assert(layout.isFixedLayout());
return asImpl()->createLoadable(fields, std::move(layout), explosionSize);
} else if (layout.isFixedLayout()) {
return asImpl()->createFixed(fields, std::move(layout));
} else {
return asImpl()->createNonFixed(fields, std::move(layout));
}
}
};
} // end namespace irgen
} // end namespace swift
#endif