forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSILArgument.cpp
350 lines (294 loc) · 12.1 KB
/
SILArgument.cpp
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
//===--- SILArgument.cpp - Arguments for high-level SIL code --------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "llvm/ADT/STLExtras.h"
#include "swift/SIL/SILBasicBlock.h"
#include "swift/SIL/SILArgument.h"
#include "swift/SIL/SILFunction.h"
#include "swift/SIL/SILInstruction.h"
#include "swift/SIL/SILModule.h"
using namespace swift;
//===----------------------------------------------------------------------===//
// SILArgument Implementation
//===----------------------------------------------------------------------===//
SILArgument::SILArgument(ValueKind subClassKind,
SILBasicBlock *inputParentBlock, SILType type,
ValueOwnershipKind ownershipKind,
const ValueDecl *inputDecl)
: ValueBase(subClassKind, type),
parentBlock(inputParentBlock), decl(inputDecl) {
Bits.SILArgument.VOKind = static_cast<unsigned>(ownershipKind);
inputParentBlock->insertArgument(inputParentBlock->args_end(), this);
}
SILFunction *SILArgument::getFunction() {
return getParent()->getParent();
}
const SILFunction *SILArgument::getFunction() const {
return getParent()->getParent();
}
SILModule &SILArgument::getModule() const {
return getFunction()->getModule();
}
unsigned SILArgument::getIndex() const {
for (auto p : llvm::enumerate(getParent()->getArguments())) {
if (p.value() == this) {
return p.index();
}
}
llvm_unreachable("SILArgument not argument of its parent BB");
}
bool SILFunctionArgument::isIndirectResult() const {
auto numIndirectResults =
getFunction()->getConventions().getNumIndirectSILResults();
return getIndex() < numIndirectResults;
}
SILArgumentConvention SILFunctionArgument::getArgumentConvention() const {
return getFunction()->getConventions().getSILArgumentConvention(getIndex());
}
/// Given that this is an entry block argument, and given that it does
/// not correspond to an indirect result, return the corresponding
/// SILParameterInfo.
SILParameterInfo SILFunctionArgument::getKnownParameterInfo() const {
return getFunction()->getConventions().getParamInfoForSILArg(getIndex());
}
//===----------------------------------------------------------------------===//
// SILBlockArgument
//===----------------------------------------------------------------------===//
// FIXME: SILPhiArgument should only refer to branch arguments. They usually
// need to be distinguished from projections and casts. Actual phi block
// arguments are substitutable with their incoming values. It is also needlessly
// expensive to call this helper instead of simply specifying phis with an
// opcode. It results in repeated CFG traversals and repeated, unnecessary
// switching over terminator opcodes.
bool SILPhiArgument::isPhiArgument() const {
// No predecessors indicates an unreachable block.
if (getParent()->pred_empty())
return false;
// Multiple predecessors require phis.
auto *predBlock = getParent()->getSinglePredecessorBlock();
if (!predBlock)
return true;
auto *termInst = predBlock->getTerminator();
return isa<BranchInst>(termInst) || isa<CondBranchInst>(termInst);
}
static Operand *getIncomingPhiOperandForPred(const SILBasicBlock *parentBlock,
const SILBasicBlock *predBlock,
unsigned argIndex) {
auto *predBlockTermInst = predBlock->getTerminator();
if (auto *bi = dyn_cast<BranchInst>(predBlockTermInst)) {
return &const_cast<BranchInst *>(bi)->getAllOperands()[argIndex];
}
// FIXME: Disallowing critical edges in SIL would enormously simplify phi and
// branch handling and reduce expensive analysis invalidation. If that is
// done, then only BranchInst will participate in phi operands, eliminating
// the need to search for the appropriate CondBranchInst operand.
return cast<CondBranchInst>(predBlockTermInst)
->getOperandForDestBB(parentBlock, argIndex);
}
static SILValue getIncomingPhiValueForPred(const SILBasicBlock *parentBlock,
const SILBasicBlock *predBlock,
unsigned argIndex) {
const auto *predBlockTermInst = predBlock->getTerminator();
if (auto *bi = dyn_cast<BranchInst>(predBlockTermInst))
return bi->getArg(argIndex);
// FIXME: Disallowing critical edges in SIL would enormously simplify phi and
// branch handling and reduce expensive analysis invalidation. If that is
// done, then only BranchInst will participate in phi operands, eliminating
// the need to search for the appropriate CondBranchInst operand.
return cast<CondBranchInst>(predBlockTermInst)
->getArgForDestBB(parentBlock, argIndex);
}
SILValue SILPhiArgument::getIncomingPhiValue(SILBasicBlock *predBlock) const {
if (!isPhiArgument())
return SILValue();
const auto *parentBlock = getParent();
assert(!parentBlock->pred_empty());
unsigned argIndex = getIndex();
assert(parentBlock->pred_end() != std::find(parentBlock->pred_begin(),
parentBlock->pred_end(),
predBlock));
return getIncomingPhiValueForPred(parentBlock, predBlock, argIndex);
}
bool SILPhiArgument::getIncomingPhiValues(
SmallVectorImpl<SILValue> &returnedPhiValues) const {
if (!isPhiArgument())
return false;
const auto *parentBlock = getParent();
assert(!parentBlock->pred_empty());
unsigned argIndex = getIndex();
for (auto *predBlock : getParent()->getPredecessorBlocks()) {
SILValue incomingValue =
getIncomingPhiValueForPred(parentBlock, predBlock, argIndex);
assert(incomingValue);
returnedPhiValues.push_back(incomingValue);
}
return true;
}
Operand *SILPhiArgument::getIncomingPhiOperand(SILBasicBlock *predBlock) const {
if (!isPhiArgument())
return nullptr;
return getIncomingPhiOperandForPred(getParent(), predBlock, getIndex());
}
bool SILPhiArgument::getIncomingPhiOperands(
SmallVectorImpl<Operand *> &returnedPhiOperands) const {
if (!isPhiArgument())
return false;
const auto *parentBlock = getParent();
assert(!parentBlock->pred_empty());
unsigned argIndex = getIndex();
for (auto *predBlock : getParent()->getPredecessorBlocks()) {
Operand *incomingOperand =
getIncomingPhiOperandForPred(parentBlock, predBlock, argIndex);
assert(incomingOperand);
returnedPhiOperands.push_back(incomingOperand);
}
return true;
}
bool SILPhiArgument::visitIncomingPhiOperands(
function_ref<bool(Operand *)> visitor) const {
if (!isPhiArgument())
return false;
const auto *parentBlock = getParent();
assert(!parentBlock->pred_empty());
unsigned argIndex = getIndex();
for (auto *predBlock : getParent()->getPredecessorBlocks()) {
Operand *incomingOperand =
getIncomingPhiOperandForPred(parentBlock, predBlock, argIndex);
assert(incomingOperand);
// Call the visitor, bailing if the callee signals error.
if (!visitor(incomingOperand)) {
return false;
}
}
return true;
}
bool SILPhiArgument::getIncomingPhiValues(
SmallVectorImpl<std::pair<SILBasicBlock *, SILValue>>
&returnedPredBBAndPhiValuePairs) const {
if (!isPhiArgument())
return false;
const auto *parentBlock = getParent();
assert(!parentBlock->pred_empty());
unsigned argIndex = getIndex();
for (auto *predBlock : getParent()->getPredecessorBlocks()) {
SILValue incomingValue =
getIncomingPhiValueForPred(parentBlock, predBlock, argIndex);
assert(incomingValue);
returnedPredBBAndPhiValuePairs.push_back({predBlock, incomingValue});
}
return true;
}
static SILValue
getSingleTerminatorOperandForPred(const SILBasicBlock *parentBlock,
const SILBasicBlock *predBlock,
unsigned argIndex) {
const auto *predTermInst = predBlock->getTerminator();
switch (predTermInst->getTermKind()) {
case TermKind::UnreachableInst:
case TermKind::ReturnInst:
case TermKind::ThrowInst:
case TermKind::UnwindInst:
llvm_unreachable("Have terminator that implies no successors?!");
case TermKind::TryApplyInst:
case TermKind::SwitchValueInst:
case TermKind::SwitchEnumAddrInst:
case TermKind::CheckedCastAddrBranchInst:
case TermKind::DynamicMethodBranchInst:
case TermKind::YieldInst:
case TermKind::AwaitAsyncContinuationInst:
return SILValue();
case TermKind::BranchInst:
return cast<const BranchInst>(predTermInst)->getArg(argIndex);
case TermKind::CondBranchInst:
return cast<const CondBranchInst>(predTermInst)
->getArgForDestBB(parentBlock, argIndex);
case TermKind::CheckedCastBranchInst:
return cast<const CheckedCastBranchInst>(predTermInst)->getOperand();
case TermKind::CheckedCastValueBranchInst:
return cast<const CheckedCastValueBranchInst>(predTermInst)->getOperand();
case TermKind::SwitchEnumInst:
return cast<const SwitchEnumInst>(predTermInst)->getOperand();
}
llvm_unreachable("Unhandled TermKind?!");
}
bool SILPhiArgument::getSingleTerminatorOperands(
SmallVectorImpl<SILValue> &returnedSingleTermOperands) const {
const auto *parentBlock = getParent();
if (parentBlock->pred_empty())
return false;
unsigned argIndex = getIndex();
for (auto *predBlock : getParent()->getPredecessorBlocks()) {
SILValue incomingValue =
getSingleTerminatorOperandForPred(parentBlock, predBlock, argIndex);
if (!incomingValue)
return false;
returnedSingleTermOperands.push_back(incomingValue);
}
return true;
}
bool SILPhiArgument::getSingleTerminatorOperands(
SmallVectorImpl<std::pair<SILBasicBlock *, SILValue>>
&returnedSingleTermOperands) const {
const auto *parentBlock = getParent();
if (parentBlock->pred_empty())
return false;
unsigned argIndex = getIndex();
for (auto *predBlock : getParent()->getPredecessorBlocks()) {
SILValue incomingValue =
getSingleTerminatorOperandForPred(parentBlock, predBlock, argIndex);
if (!incomingValue)
return false;
returnedSingleTermOperands.push_back({predBlock, incomingValue});
}
return true;
}
SILValue SILPhiArgument::getSingleTerminatorOperand() const {
const auto *parentBlock = getParent();
const auto *predBlock = parentBlock->getSinglePredecessorBlock();
if (!predBlock)
return SILValue();
return getSingleTerminatorOperandForPred(parentBlock, predBlock, getIndex());
}
TermInst *SILPhiArgument::getSingleTerminator() const {
auto *parentBlock = getParent();
auto *predBlock = parentBlock->getSinglePredecessorBlock();
if (!predBlock)
return nullptr;
return const_cast<SILBasicBlock *>(predBlock)->getTerminator();
}
SILPhiArgument *BranchInst::getArgForOperand(const Operand *oper) {
assert(oper->getUser() == this);
return cast<SILPhiArgument>(
getDestBB()->getArgument(oper->getOperandNumber()));
}
const SILPhiArgument *
CondBranchInst::getArgForOperand(const Operand *oper) const {
assert(oper->getUser() == this);
unsigned operIdx = oper->getOperandNumber();
if (isTrueOperandIndex(operIdx)) {
return cast<SILPhiArgument>(getTrueBB()->getArgument(
operIdx - getTrueOperands().front().getOperandNumber()));
}
if (isFalseOperandIndex(operIdx)) {
return cast<SILPhiArgument>(getFalseBB()->getArgument(
operIdx - getFalseOperands().front().getOperandNumber()));
}
return nullptr;
}
//===----------------------------------------------------------------------===//
// SILFunctionArgument
//===----------------------------------------------------------------------===//
bool SILFunctionArgument::isSelf() const {
// Return true if we are the last argument of our BB and that our parent
// function has a call signature with self.
return getFunction()->hasSelfParam() &&
getParent()->getArguments().back() == this;
}