Files
swift-mirror/include/swift/SILOptimizer/Utils/SILOptFunctionBuilder.h
Dario Rexin 406fe3eed2 [SILOpt] Allow pre-specializations for _Trivial of known size (#70256)
* [SILOpt] Allow pre-specializations for _Trivial of known size

rdar://119224542

This allows pre-specializations to be generated and applied for trivial types of a shared size.
2023-12-08 19:42:49 -08:00

78 lines
2.2 KiB
C++

//===--- SILOptFunctionBuilder.h --------------------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2018 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_SILOPTFUNCTIONBUILDER_H
#define SWIFT_SILOPTIMIZER_UTILS_SILOPTFUNCTIONBUILDER_H
#include "swift/SIL/SILFunctionBuilder.h"
#include "swift/SILOptimizer/PassManager/PassManager.h"
#include "swift/SILOptimizer/PassManager/Transforms.h"
namespace swift {
class SILOptFunctionBuilder {
SILTransform &transform;
SILFunctionBuilder builder;
public:
SILOptFunctionBuilder(SILTransform &transform)
: transform(transform),
builder(*transform.getPassManager()->getModule()) {}
template <class... ArgTys>
SILFunction *getOrCreateSharedFunction(ArgTys &&... args) {
SILFunction *f =
builder.getOrCreateSharedFunction(std::forward<ArgTys>(args)...);
notifyAddFunction(f);
return f;
}
template <class... ArgTys>
SILFunction *getOrCreateFunction(ArgTys &&... args) {
SILFunction *f = builder.getOrCreateFunction(std::forward<ArgTys>(args)...);
notifyAddFunction(f);
return f;
}
template <class... ArgTys> SILFunction *createFunction(ArgTys &&... args) {
SILFunction *f = builder.createFunction(std::forward<ArgTys>(args)...);
notifyAddFunction(f);
return f;
}
void eraseFunction(SILFunction *f) {
auto &pm = getPassManager();
pm.notifyWillDeleteFunction(f);
pm.getModule()->eraseFunction(f);
}
SILModule &getModule() const { return *getPassManager().getModule(); }
irgen::IRGenModule *getIRGenModule() const {
return transform.getIRGenModule();
}
private:
SILPassManager &getPassManager() const {
return *transform.getPassManager();
}
void notifyAddFunction(SILFunction *f) {
auto &pm = getPassManager();
pm.notifyOfNewFunction(f, &transform);
pm.notifyAnalysisOfFunction(f);
}
};
} // namespace swift
#endif