Files
swift-mirror/lib/SIL/IR/ApplySite.cpp
Erik Eckstein 9a10ec7d58 SILBuilder: add an API to insert _after_ an instruction.
... and use that API in FullApplySite::insertAfterInvocation.

Also change FullApplySite::insertAfterInvocation/insertAfterFullEvaluation to directly pass a SILBuilder instead of just an insertion point to the callback.
This makes more sense (given the function names) and simplifies the usages.

It's a NFC.
2020-10-16 17:25:08 +02:00

47 lines
1.5 KiB
C++

//===--- ApplySite.cpp - Wrapper around apply instructions ----------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2020 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 "swift/SIL/ApplySite.h"
#include "swift/SIL/SILBuilder.h"
using namespace swift;
void FullApplySite::insertAfterInvocation(function_ref<void(SILBuilder &)> func) const {
SILBuilderWithScope::insertAfter(getInstruction(), func);
}
void FullApplySite::insertAfterFullEvaluation(
function_ref<void(SILBuilder &)> func) const {
switch (getKind()) {
case FullApplySiteKind::ApplyInst:
case FullApplySiteKind::TryApplyInst:
return insertAfterInvocation(func);
case FullApplySiteKind::BeginApplyInst:
SmallVector<EndApplyInst *, 2> endApplies;
SmallVector<AbortApplyInst *, 2> abortApplies;
auto *bai = cast<BeginApplyInst>(getInstruction());
bai->getCoroutineEndPoints(endApplies, abortApplies);
for (auto *eai : endApplies) {
SILBuilderWithScope builder(std::next(eai->getIterator()));
func(builder);
}
for (auto *aai : abortApplies) {
SILBuilderWithScope builder(std::next(aai->getIterator()));
func(builder);
}
return;
}
llvm_unreachable("covered switch isn't covered");
}