mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This initial implementation just delegates from SILGenFunctionBuilder to SILFunctionBuilder. I was going to start transforming verbose uses of SILFunctionBuilder into higher level APIs on SILGenFunctionBuilder, but I have run out of time. This is a good incremental step forward that will let me hide the constructor of SILFunctionBuilder after I update the optimizer and thus ensure that SILFunctionBuilder is only used through appropriate composition APIs. rdar://42301529
47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
//===--- 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 <class... ArgTys>
|
|
SILFunction *getOrCreateSharedFunction(ArgTys &&... args) {
|
|
return builder.getOrCreateSharedFunction(std::forward<ArgTys>(args)...);
|
|
}
|
|
|
|
template <class... ArgTys>
|
|
SILFunction *getOrCreateFunction(ArgTys &&... args) {
|
|
return builder.getOrCreateFunction(std::forward<ArgTys>(args)...);
|
|
}
|
|
|
|
template <class... ArgTys> SILFunction *createFunction(ArgTys &&... args) {
|
|
return builder.createFunction(std::forward<ArgTys>(args)...);
|
|
}
|
|
};
|
|
|
|
} // namespace Lowering
|
|
} // namespace swift
|
|
|
|
#endif
|