//===--- 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 SILFunction *getOrCreateSharedFunction(ArgTys &&... args) { SILFunction *f = builder.getOrCreateSharedFunction(std::forward(args)...); notifyAddFunction(f); return f; } template SILFunction *getOrCreateFunction(ArgTys &&... args) { SILFunction *f = builder.getOrCreateFunction(std::forward(args)...); notifyAddFunction(f); return f; } template SILFunction *createFunction(ArgTys &&... args) { SILFunction *f = builder.createFunction(std::forward(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