blob: f131988c6e2f560a780ea6e4217673c69adeefc8 [file] [log] [blame]
//===--- PostOrderAnalysis.h - SIL POT and RPOT Analysis --------*- 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
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SILOPTIMIZER_ANALYSIS_POSTORDERANALYSIS_H
#define SWIFT_SILOPTIMIZER_ANALYSIS_POSTORDERANALYSIS_H
#include "swift/Basic/Range.h"
#include "swift/SIL/CFG.h"
#include "swift/SIL/PostOrder.h"
#include "swift/SIL/SILBasicBlock.h"
#include "swift/SIL/SILFunction.h"
#include "swift/SILOptimizer/Analysis/Analysis.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/PostOrderIterator.h"
#include "llvm/ADT/iterator_range.h"
#include <vector>
namespace swift {
class SILBasicBlock;
class SILFunction;
/// This class is a simple wrapper around the POT iterator provided by LLVM. It
/// lazily re-evaluates the post order when it is invalidated so that we do not
/// reform the post order over and over again (it can be expensive).
class PostOrderAnalysis : public FunctionAnalysisBase<PostOrderFunctionInfo> {
protected:
virtual std::unique_ptr<PostOrderFunctionInfo>
newFunctionAnalysis(SILFunction *F) override {
return llvm::make_unique<PostOrderFunctionInfo>(F);
}
virtual bool shouldInvalidate(SILAnalysis::InvalidationKind K) override {
return K & InvalidationKind::Branches;
}
public:
PostOrderAnalysis()
: FunctionAnalysisBase<PostOrderFunctionInfo>(
SILAnalysisKind::PostOrder) {}
// This is a cache and shouldn't be copied around.
PostOrderAnalysis(const PostOrderAnalysis &) = delete;
PostOrderAnalysis &operator=(const PostOrderAnalysis &) = delete;
static bool classof(const SILAnalysis *S) {
return S->getKind() == SILAnalysisKind::PostOrder;
}
};
} // end namespace swift
#endif