//===--- SILGenFunctionBuilder.h ------------------------------------------===// // // 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_SILGEN_SILGENFUNCTIONBUILDER_H #define SWIFT_SILGEN_SILGENFUNCTIONBUILDER_H #include "swift/SIL/SILFunctionBuilder.h" namespace swift { namespace Lowering { class LLVM_LIBRARY_VISIBILITY SILGenFunctionBuilder { SILFunctionBuilder builder; public: SILGenFunctionBuilder(SILGenModule &SGM) : builder(SGM.M) {} SILGenFunctionBuilder(SILGenFunction &SGF) : builder(SGF.SGM.M) {} template SILFunction *getOrCreateSharedFunction(ArgTys &&... args) { return builder.getOrCreateSharedFunction(std::forward(args)...); } template SILFunction *getOrCreateFunction(ArgTys &&... args) { return builder.getOrCreateFunction(std::forward(args)...); } template SILFunction *createFunction(ArgTys &&... args) { return builder.createFunction(std::forward(args)...); } }; } // namespace Lowering } // namespace swift #endif