mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This re-instates commit cc9e53bb08 with a fix for LLDB (rdar://124228107)
rdar://123772098
108 lines
3.7 KiB
C++
108 lines
3.7 KiB
C++
//===--- Link.cpp - Link in transparent SILFunctions from module ----------===//
|
|
//
|
|
// 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 "swift/SILOptimizer/PassManager/Passes.h"
|
|
#include "swift/SILOptimizer/PassManager/Transforms.h"
|
|
#include "swift/SIL/SILModule.h"
|
|
#include "swift/Serialization/SerializedSILLoader.h"
|
|
|
|
using namespace swift;
|
|
|
|
static llvm::cl::opt<bool> LinkEmbeddedRuntime("link-embedded-runtime",
|
|
llvm::cl::init(true));
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Top Level Driver
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
namespace {
|
|
|
|
/// Copies code from the standard library into the user program to enable
|
|
/// optimizations.
|
|
class SILLinker : public SILModuleTransform {
|
|
SILModule::LinkingMode LinkMode;
|
|
|
|
public:
|
|
explicit SILLinker(SILModule::LinkingMode LinkMode) : LinkMode(LinkMode) {}
|
|
|
|
void run() override {
|
|
SILModule &M = *getModule();
|
|
for (auto &Fn : M)
|
|
if (M.linkFunction(&Fn, LinkMode))
|
|
invalidateAnalysis(&Fn, SILAnalysis::InvalidationKind::Everything);
|
|
|
|
// In embedded Swift, the stdlib contains all the runtime functions needed
|
|
// (swift_retain, etc.). Link them in so they can be referenced in IRGen.
|
|
if (M.getOptions().EmbeddedSwift && LinkEmbeddedRuntime) {
|
|
linkEmbeddedRuntimeFromStdlib();
|
|
}
|
|
}
|
|
|
|
void linkEmbeddedRuntimeFromStdlib() {
|
|
using namespace RuntimeConstants;
|
|
#define FUNCTION(ID, NAME, CC, AVAILABILITY, RETURNS, ARGS, ATTRS, EFFECT, \
|
|
MEMORY_EFFECTS) \
|
|
linkEmbeddedRuntimeFunctionByName(#NAME, EFFECT);
|
|
|
|
#define RETURNS(...)
|
|
#define ARGS(...)
|
|
#define NO_ARGS
|
|
#define ATTRS(...)
|
|
#define NO_ATTRS
|
|
#define EFFECT(...) { __VA_ARGS__ }
|
|
#define MEMORY_EFFECTS(...)
|
|
#define UNKNOWN_MEMEFFECTS
|
|
|
|
#include "swift/Runtime/RuntimeFunctions.def"
|
|
}
|
|
|
|
void linkEmbeddedRuntimeFunctionByName(StringRef name,
|
|
ArrayRef<RuntimeEffect> effects) {
|
|
SILModule &M = *getModule();
|
|
|
|
bool allocating = false;
|
|
for (RuntimeEffect rt : effects)
|
|
if (rt == RuntimeEffect::Allocating || rt == RuntimeEffect::Deallocating)
|
|
allocating = true;
|
|
|
|
// Don't link allocating runtime functions in -no-allocations mode.
|
|
if (M.getOptions().NoAllocations && allocating) return;
|
|
|
|
// Bail if runtime function is already loaded.
|
|
if (M.lookUpFunction(name)) return;
|
|
|
|
SILFunction *Fn =
|
|
M.getSILLoader()->lookupSILFunction(name, SILLinkage::PublicExternal);
|
|
if (!Fn) return;
|
|
|
|
if (M.linkFunction(Fn, LinkMode))
|
|
invalidateAnalysis(Fn, SILAnalysis::InvalidationKind::Everything);
|
|
|
|
// Make sure that dead-function-elimination doesn't remove runtime functions.
|
|
// TODO: lazily emit runtime functions in IRGen so that we don't have to
|
|
// rely on dead-stripping in the linker to remove unused runtime
|
|
// functions.
|
|
if (Fn->isDefinition())
|
|
Fn->setLinkage(SILLinkage::Public);
|
|
}
|
|
};
|
|
} // end anonymous namespace
|
|
|
|
|
|
SILTransform *swift::createMandatorySILLinker() {
|
|
return new SILLinker(SILModule::LinkingMode::LinkNormal);
|
|
}
|
|
|
|
SILTransform *swift::createPerformanceSILLinker() {
|
|
return new SILLinker(SILModule::LinkingMode::LinkAll);
|
|
}
|