-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathManagedValue.h
185 lines (152 loc) · 6.74 KB
/
ManagedValue.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
//===--- RValue.h - Exploded RValue Representation --------------*- 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
//
//===----------------------------------------------------------------------===//
//
// A storage structure for holding a destructured rvalue with an optional
// cleanup(s).
// Ownership of the rvalue can be "forwarded" to disable the associated
// cleanup(s).
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_LOWERING_MANAGEDVALUE_H
#define SWIFT_LOWERING_MANAGEDVALUE_H
#include "Cleanup.h"
#include "llvm/ADT/PointerIntPair.h"
#include "swift/SIL/SILValue.h"
namespace swift {
namespace Lowering {
/// ManagedValue - represents a singular SIL value and an optional cleanup.
/// Ownership of the ManagedValue can be "forwarded" to disable its cleanup when
/// the rvalue is consumed. A ManagedValue can also represent an LValue used as
/// a value, such as an inout function argument, and can be null.
///
/// Interesting relevant cases include:
/// LValue: the SILValue will always have an isAddress() SILType. LValues
/// never have an associated cleanup.
/// RValue, isAddress() type: an address-only RValue.
/// RValue, !isAddress() type: a loadable RValue.
/// "InContext": Represented with the lvalue flag set but with no SILValue,
/// this represents a value that was emitted directly into an
/// initialization stored by an SGFContext.
///
/// The RValue cases may or may not have a cleanup associated with the value.
/// A cleanup is associated with +1 values of non-trivial type.
///
class ManagedValue {
/// The value (or address of an address-only value) being managed, and
/// whether it represents an lvalue. InContext is represented with the lvalue
/// flag set but with a null SILValue.
llvm::PointerIntPair<SILValue, 1, bool> valueAndFlag;
/// A handle to the cleanup that destroys this value, or
/// CleanupHandle::invalid() if the value has no cleanup.
CleanupHandle cleanup;
explicit ManagedValue(SILValue value, bool isLValue, CleanupHandle cleanup)
: valueAndFlag(value, isLValue), cleanup(cleanup) {
}
public:
ManagedValue() = default;
/// Create a managed value for a +1 rvalue.
ManagedValue(SILValue value, CleanupHandle cleanup)
: valueAndFlag(value, false), cleanup(cleanup) {
assert(value && "No value specified");
}
/// Create a managed value for a +0 rvalue.
static ManagedValue forUnmanaged(SILValue value) {
assert(value && "No value specified");
return ManagedValue(value, false, CleanupHandle::invalid());
}
/// Create a managed value for an l-value.
static ManagedValue forLValue(SILValue value) {
assert(value && "No value specified");
assert(value.getType().isAddress() &&
"lvalues always have isAddress() type");
return ManagedValue(value, true, CleanupHandle::invalid());
}
/// Create a managed value that indicates that the value you're looking for
/// got stored into an initialization specified by an SGFContext, instead of
/// being represented by this ManagedValue.
static ManagedValue forInContext() {
return ManagedValue(SILValue(), true, CleanupHandle::invalid());
}
bool isLValue() const {
return valueAndFlag.getInt() && valueAndFlag.getPointer();
}
bool isInContext() const {
return valueAndFlag.getInt() && !valueAndFlag.getPointer();
}
/// Return true if this is an +0 rvalue, or has trivial type.
bool isPlusZeroRValueOrTrivial() const {
// If this is an lvalue or isInContext() then it is not an RValue.
if (isLValue() || isInContext()) return false;
// If this has a cleanup attached, then it is +1 rvalue. If not, it is
// either +0 or trivial (in which case +0 vs +1 doesn't matter).
return !hasCleanup();
}
SILValue getLValueAddress() const {
assert(isLValue() && "This isn't an lvalue");
return getValue();
}
SILValue getUnmanagedValue() const {
assert(!hasCleanup());
return getValue();
}
SILValue getValue() const { return valueAndFlag.getPointer(); }
SILType getType() const { return getValue().getType(); }
CanType getSwiftType() const {
return isLValue()
? getType().getSwiftType()
: getType().getSwiftRValueType();
}
/// Emit a copy of this value with independent ownership.
ManagedValue copy(SILGenFunction &gen, SILLocation l);
/// Store a copy of this value with independent ownership into the given
/// uninitialized address.
void copyInto(SILGenFunction &gen, SILValue dest, SILLocation L);
/// This is the same operation as 'copy', but works on +0 values that don't
/// have cleanups. It returns a +1 value with one.
ManagedValue copyUnmanaged(SILGenFunction &gen, SILLocation loc);
bool hasCleanup() const { return cleanup.isValid(); }
CleanupHandle getCleanup() const { return cleanup; }
/// Disable the cleanup for this value.
void forwardCleanup(SILGenFunction &gen) const;
/// Forward this value, deactivating the cleanup and returning the
/// underlying value.
SILValue forward(SILGenFunction &gen) const;
/// Forward this value as an argument.
SILValue forwardArgument(SILGenFunction &gen, SILLocation loc,
AbstractCC cc, CanType origNativeTy,
CanType substNativeTy, CanType bridgedTy);
/// Get this value as an argument without consuming it.
SILValue getArgumentValue(SILGenFunction &gen, SILLocation loc,
AbstractCC cc,
CanType origNativeTy, CanType substNativeTy,
CanType bridgedTy);
/// Forward this value into memory by storing it to the given address.
///
/// \param gen - The SILGenFunction.
/// \param loc - the AST location to associate with emitted instructions.
/// \param address - the address to assign to.
void forwardInto(SILGenFunction &gen, SILLocation loc, SILValue address);
/// Assign this value into memory, destroying the existing
/// value at the destination address.
///
/// \param gen - The SILGenFunction.
/// \param loc - the AST location to associate with emitted instructions.
/// \param address - the address to assign to.
void assignInto(SILGenFunction &gen, SILLocation loc, SILValue address);
explicit operator bool() const {
// "InContext" is not considered false.
return bool(getValue()) || valueAndFlag.getInt();
}
};
} // end namespace Lowering
} // end namespace swift
#endif