forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ResilientTypeInfo.h
151 lines (131 loc) · 6.02 KB
/
ResilientTypeInfo.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
//===--- ResilientTypeInfo.h - Resilient-layout types -----------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 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 a class used for implementing non-class-bound
// archetypes, and resilient structs and enums. Values of these types are
// opaque and must be manipulated through value witness function calls.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_IRGEN_RESILIENTTYPEINFO_H
#define SWIFT_IRGEN_RESILIENTTYPEINFO_H
#include "NonFixedTypeInfo.h"
namespace swift {
namespace irgen {
/// An abstract CRTP class designed for types whose values are manipulated
/// indirectly through value witness functions.
///
/// We build upon WitnessSizedTypeInfo, adding the additional structure
/// that the opaque value has the same size as the underlying type with
/// no additional metadata, distinguishing this case from other uses of
/// WitnessSizedTypeInfo, which are existentials (these add conformance
/// tables) and fragile enums with generic payloads (these add tag bits).
///
/// This allows us to make use of array value witness functions, and
/// more importantly, to forward extra inhabitant information from the
/// concrete type. This ensures that enums have the correct layout
/// when accessed at different abstraction levels or from different
/// resilience scopes.
///
template <class Impl>
class ResilientTypeInfo : public WitnessSizedTypeInfo<Impl> {
protected:
ResilientTypeInfo(llvm::Type *type)
: WitnessSizedTypeInfo<Impl>(type, Alignment(1),
IsNotPOD, IsNotBitwiseTakable) {}
public:
void assignWithCopy(IRGenFunction &IGF, Address dest, Address src,
SILType T) const override {
emitAssignWithCopyCall(IGF, T,
dest.getAddress(), src.getAddress());
}
void assignWithTake(IRGenFunction &IGF, Address dest, Address src,
SILType T) const override {
emitAssignWithTakeCall(IGF, T,
dest.getAddress(), src.getAddress());
}
Address initializeBufferWithCopy(IRGenFunction &IGF,
Address dest, Address src,
SILType T) const override {
auto addr = emitInitializeBufferWithCopyCall(IGF, T,
dest.getAddress(), src.getAddress());
return this->getAddressForPointer(addr);
}
Address initializeBufferWithTake(IRGenFunction &IGF,
Address dest, Address src,
SILType T) const override {
auto addr = emitInitializeBufferWithTakeCall(IGF, T,
dest.getAddress(), src.getAddress());
return this->getAddressForPointer(addr);
}
void initializeWithCopy(IRGenFunction &IGF,
Address dest, Address src, SILType T) const override {
emitInitializeWithCopyCall(IGF, T,
dest.getAddress(), src.getAddress());
}
void initializeArrayWithCopy(IRGenFunction &IGF,
Address dest, Address src, llvm::Value *count,
SILType T) const override {
emitInitializeArrayWithCopyCall(IGF, T,
dest.getAddress(), src.getAddress(), count);
}
void initializeWithTake(IRGenFunction &IGF,
Address dest, Address src, SILType T) const override {
emitInitializeWithTakeCall(IGF, T,
dest.getAddress(), src.getAddress());
}
void initializeArrayWithTakeFrontToBack(IRGenFunction &IGF,
Address dest, Address src,
llvm::Value *count,
SILType T) const override {
emitInitializeArrayWithTakeFrontToBackCall(IGF, T,
dest.getAddress(), src.getAddress(), count);
}
void initializeArrayWithTakeBackToFront(IRGenFunction &IGF,
Address dest, Address src,
llvm::Value *count,
SILType T) const override {
emitInitializeArrayWithTakeBackToFrontCall(IGF, T,
dest.getAddress(), src.getAddress(), count);
}
void destroy(IRGenFunction &IGF, Address addr, SILType T) const override {
emitDestroyCall(IGF, T, addr.getAddress());
}
void destroyArray(IRGenFunction &IGF, Address addr, llvm::Value *count,
SILType T) const override {
emitDestroyArrayCall(IGF, T, addr.getAddress(), count);
}
bool mayHaveExtraInhabitants(IRGenModule &IGM) const override {
return true;
}
llvm::Value *getExtraInhabitantIndex(IRGenFunction &IGF,
Address src,
SILType T) const override {
return emitGetExtraInhabitantIndexCall(IGF, T, src.getAddress());
}
void storeExtraInhabitant(IRGenFunction &IGF,
llvm::Value *index,
Address dest,
SILType T) const override {
emitStoreExtraInhabitantCall(IGF, T, index, dest.getAddress());
}
void initializeMetadata(IRGenFunction &IGF,
llvm::Value *metadata,
llvm::Value *vwtable,
SILType T) const override {
// Resilient value types and archetypes always refer to an existing type.
// A witness table should never be independently initialized for one.
llvm_unreachable("initializing value witness table for opaque type?!");
}
};
}
}
#endif