Files
swift-mirror/include/swift/SILOptimizer/PassManager/PassPipeline.h
Andrew Trick be1881aa1f Remove redundant Transform.getName() definitions.
At some point, pass definitions were heavily macro-ized. Pass
descriptive names were added in two places. This is not only redundant
but a source of confusion. You could waste a lot of time grepping for
the wrong string. I removed all the getName() overrides which, at
around 90 passes, was a fairly significant amount of code bloat.

Any pass that we want to be able to invoke by name from a tool
(sil-opt) or pipeline plan *should* have unique type name, enum value,
commend-line string, and name string. I removed a comment about the
various inliner passes that contradicted that.

Side note: We should be consistent with the policy that a pass is
identified by its type. We have a couple passes, LICM and CSE, which
currently violate that convention.
2017-04-09 15:20:28 -07:00

128 lines
4.5 KiB
C++

//===--- PassPipeline.h -----------------------------------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
///
/// This file defines the SILPassPipelinePlan and SILPassPipeline
/// classes. These are higher level representations of sequences of SILPasses
/// and the run behavior of these sequences (i.e. run one, until fixed point,
/// etc). This makes it easy to serialize and deserialize pipelines without work
/// on the part of the user. Eventually this will be paired with a gyb based
/// representation of Passes.def that will able to be used to generate a python
/// based script builder.
///
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SILOPTIMIZER_PASSMANAGER_PASSPIPELINE_H
#define SWIFT_SILOPTIMIZER_PASSMANAGER_PASSPIPELINE_H
#include "swift/Basic/LLVM.h"
#include "swift/SILOptimizer/PassManager/PassPipeline.h"
#include "swift/SILOptimizer/PassManager/Passes.h"
#include <vector>
namespace swift {
class SILPassPipelinePlan;
struct SILPassPipeline;
enum class PassPipelineKind {
#define PASSPIPELINE(NAME, DESCRIPTION) NAME,
#include "swift/SILOptimizer/PassManager/PassPipeline.def"
};
class SILPassPipelinePlan final {
std::vector<PassKind> Kinds;
std::vector<SILPassPipeline> PipelineStages;
public:
SILPassPipelinePlan() = default;
~SILPassPipelinePlan() = default;
SILPassPipelinePlan(const SILPassPipelinePlan &) = default;
// Each pass gets its own add-function.
#define PASS(ID, TAG, NAME) \
void add##ID() { \
assert(!PipelineStages.empty() && "startPipeline before adding passes."); \
Kinds.push_back(PassKind::ID); \
}
#include "swift/SILOptimizer/PassManager/Passes.def"
void addPasses(ArrayRef<PassKind> PassKinds);
#define PASSPIPELINE(NAME, DESCRIPTION) \
static SILPassPipelinePlan get##NAME##PassPipeline();
#define PASSPIPELINE_WITH_OPTIONS(NAME, DESCRIPTION) \
static SILPassPipelinePlan get##NAME##PassPipeline(const SILOptions &Options);
#include "swift/SILOptimizer/PassManager/PassPipeline.def"
static SILPassPipelinePlan getPassPipelineForKinds(ArrayRef<PassKind> Kinds);
static SILPassPipelinePlan getPassPipelineFromFile(StringRef Filename);
/// Our general format is as follows:
///
/// [
/// [
/// "PASS_MANAGER_ID",
/// "one_iteration"|"until_fix_point",
/// "PASS1", "PASS2", ...
/// ],
/// ...
/// ]
void dump();
void print(llvm::raw_ostream &os);
void startPipeline(StringRef Name = "");
using PipelineKindIterator = decltype(Kinds)::const_iterator;
using PipelineKindRange = iterator_range<PipelineKindIterator>;
iterator_range<PipelineKindIterator>
getPipelinePasses(const SILPassPipeline &P) const;
using PipelineIterator = decltype(PipelineStages)::const_iterator;
using PipelineRange = iterator_range<PipelineIterator>;
PipelineRange getPipelines() const {
return {PipelineStages.begin(), PipelineStages.end()};
}
};
struct SILPassPipeline final {
unsigned ID;
StringRef Name;
unsigned KindOffset;
};
inline void SILPassPipelinePlan::startPipeline(StringRef Name) {
PipelineStages.push_back(SILPassPipeline{
unsigned(PipelineStages.size()), Name, unsigned(Kinds.size())});
}
inline SILPassPipelinePlan::PipelineKindRange
SILPassPipelinePlan::getPipelinePasses(const SILPassPipeline &P) const {
unsigned ID = P.ID;
assert(PipelineStages.size() > ID && "Pipeline with ID greater than the "
"size of its container?!");
// In this case, we are the last pipeline. Return end and the kind offset.
if ((PipelineStages.size() - 1) == ID) {
return {std::next(Kinds.begin(), P.KindOffset), Kinds.end()};
}
// Otherwise, end is the beginning of the next PipelineStage.
return {std::next(Kinds.begin(), P.KindOffset),
std::next(Kinds.begin(), PipelineStages[ID + 1].KindOffset)};
}
} // end namespace swift
#endif