mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This is phase-1 of switching from llvm::Optional to std::optional in the
next rebranch. llvm::Optional was removed from upstream LLVM, so we need
to migrate off rather soon. On Darwin, std::optional, and llvm::Optional
have the same layout, so we don't need to be as concerned about ABI
beyond the name mangling. `llvm::Optional` is only returned from one
function in
```
getStandardTypeSubst(StringRef TypeName,
bool allowConcurrencyManglings);
```
It's the return value, so it should not impact the mangling of the
function, and the layout is the same as `std::optional`, so it should be
mostly okay. This function doesn't appear to have users, and the ABI was
already broken 2 years ago for concurrency and no one seemed to notice
so this should be "okay".
I'm doing the migration incrementally so that folks working on main can
cherry-pick back to the release/5.9 branch. Once 5.9 is done and locked
away, then we can go through and finish the replacement. Since `None`
and `Optional` show up in contexts where they are not `llvm::None` and
`llvm::Optional`, I'm preparing the work now by going through and
removing the namespace unwrapping and making the `llvm` namespace
explicit. This should make it fairly mechanical to go through and
replace llvm::Optional with std::optional, and llvm::None with
std::nullopt. It's also a change that can be brought onto the
release/5.9 with minimal impact. This should be an NFC change.
186 lines
5.5 KiB
C++
186 lines
5.5 KiB
C++
//===--- StackNesting.h - Utility for stack nesting -------------*- C++ -*-===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_SILOPTIMIZER_UTILS_STACKNESTING_H
|
|
#define SWIFT_SILOPTIMIZER_UTILS_STACKNESTING_H
|
|
|
|
#include "swift/SIL/SILFunction.h"
|
|
#include "swift/SIL/BasicBlockData.h"
|
|
#include "llvm/ADT/SmallBitVector.h"
|
|
|
|
namespace swift {
|
|
|
|
/// A utility to correct the nesting of stack allocating/deallocating
|
|
/// instructions.
|
|
///
|
|
/// This utility is useful for optimizations which create stack allocations
|
|
/// without caring about correct nesting with existing allocations. This may
|
|
/// result in code like
|
|
/// \code
|
|
/// %1 = alloc_stack
|
|
/// ...
|
|
/// %2 = alloc_stack
|
|
/// ...
|
|
/// dealloc_stack %1
|
|
/// ...
|
|
/// dealloc_stack %2
|
|
/// \endcode
|
|
///
|
|
/// The StackNesting utility is able to correct the code:
|
|
/// \code
|
|
/// %1 = alloc_stack
|
|
/// ...
|
|
/// %2 = alloc_stack
|
|
/// ...
|
|
/// dealloc_stack %2
|
|
/// dealloc_stack %1
|
|
/// \endcode
|
|
///
|
|
class StackNesting {
|
|
|
|
public:
|
|
|
|
/// The possible return values of fixNesting().
|
|
enum class Changes {
|
|
/// No changes are made.
|
|
None,
|
|
|
|
/// Only instructions were inserted or deleted.
|
|
Instructions,
|
|
|
|
/// Instructions were inserted or deleted and new blocks were inserted.
|
|
CFG
|
|
};
|
|
|
|
private:
|
|
typedef SmallBitVector BitVector;
|
|
|
|
/// Data stored for each block (actually for each block which is not dead).
|
|
struct BlockInfo {
|
|
/// The list of stack allocating/deallocating instructions in the block.
|
|
llvm::SmallVector<SILInstruction *, 8> StackInsts;
|
|
|
|
/// The bit-set of alive stack locations at the block entry.
|
|
BitVector AliveStackLocsAtEntry;
|
|
|
|
/// The bit-set of alive stack locations at the block exit.
|
|
BitVector AliveStackLocsAtExit;
|
|
|
|
/// Used in the setup function to walk over the CFG.
|
|
bool visited = false;
|
|
|
|
/// True for dead-end blocks, i.e. blocks from which there is no path to
|
|
/// a function exit, e.g. blocks which end with `unreachable` or an
|
|
/// infinite loop.
|
|
bool isDeadEnd = false;
|
|
};
|
|
|
|
/// Data stored for each stack location (= allocation).
|
|
///
|
|
/// Each stack location is allocated by a single allocation instruction.
|
|
struct StackLoc {
|
|
StackLoc(SILInstruction *Alloc) : Alloc(Alloc) {}
|
|
|
|
/// Back-link to the allocation instruction.
|
|
SILInstruction *Alloc;
|
|
|
|
/// Bit-set which represents all alive locations at this allocation.
|
|
/// It obviously includes this location itself. And it includes all "outer"
|
|
/// locations which surround this location.
|
|
BitVector AliveLocs;
|
|
};
|
|
|
|
/// Mapping from stack allocations (= locations) to bit numbers.
|
|
llvm::DenseMap<SILInstruction *, unsigned> StackLoc2BitNumbers;
|
|
|
|
/// The list of stack locations. The index into this array is also the bit
|
|
/// number in the bit-sets.
|
|
llvm::SmallVector<StackLoc, 8> StackLocs;
|
|
|
|
BasicBlockData<BlockInfo> BlockInfos;
|
|
|
|
StackNesting(SILFunction *F) : BlockInfos(F) { }
|
|
|
|
/// Performs correction of stack nesting by moving stack-deallocation
|
|
/// instructions down the control flow.
|
|
///
|
|
/// Returns the status of what changes were made.
|
|
Changes run();
|
|
|
|
/// For debug dumping.
|
|
void dump() const;
|
|
|
|
static void dumpBits(const BitVector &Bits);
|
|
|
|
/// Initializes the data structures.
|
|
void setup();
|
|
|
|
/// Solves the dataflow problem.
|
|
///
|
|
/// Returns true if there is a nesting of locations in any way, which can
|
|
/// potentially in the wrong order.
|
|
bool solve();
|
|
|
|
bool analyze() {
|
|
setup();
|
|
return solve();
|
|
}
|
|
|
|
/// Insert deallocation instructions for all locations which are alive before
|
|
/// the InsertionPoint (AliveBefore) but not alive after the InsertionPoint
|
|
/// (AliveAfter).
|
|
///
|
|
/// Returns true if any deallocations were inserted.
|
|
bool insertDeallocs(const BitVector &AliveBefore, const BitVector &AliveAfter,
|
|
SILInstruction *InsertionPoint,
|
|
llvm::Optional<SILLocation> Location);
|
|
|
|
/// Returns the location bit number for a stack allocation instruction.
|
|
int bitNumberForAlloc(SILInstruction *AllocInst) {
|
|
assert(AllocInst->isAllocatingStack());
|
|
return StackLoc2BitNumbers[AllocInst];
|
|
}
|
|
|
|
/// Returns the location bit number for a stack deallocation instruction.
|
|
int bitNumberForDealloc(SILInstruction *DeallocInst) {
|
|
assert(DeallocInst->isDeallocatingStack());
|
|
auto *AllocInst = getAllocForDealloc(DeallocInst);
|
|
return bitNumberForAlloc(AllocInst);
|
|
}
|
|
|
|
/// Returns the stack allocation instruction for a stack deallocation
|
|
/// instruction.
|
|
SILInstruction *getAllocForDealloc(SILInstruction *Dealloc) const {
|
|
return Dealloc->getOperand(0)->getDefiningInstruction();
|
|
}
|
|
|
|
/// Insert deallocations at block boundaries.
|
|
Changes insertDeallocsAtBlockBoundaries();
|
|
|
|
/// Modifies the SIL to end up with a correct stack nesting.
|
|
///
|
|
/// Returns the status of what changes were made.
|
|
Changes adaptDeallocs();
|
|
|
|
public:
|
|
|
|
/// Performs correction of stack nesting by moving stack-deallocation
|
|
/// instructions down the control flow.
|
|
///
|
|
/// Returns the status of what changes were made.
|
|
static Changes fixNesting(SILFunction *F);
|
|
};
|
|
|
|
} // end namespace swift
|
|
|
|
#endif // SWIFT_SILOPTIMIZER_UTILS_STACKNESTING_H
|