mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
8b2da15c18
Add a new key to a Step, named Artifacts. If present, it indicates that the step has a "default" Kind and Container that can be easily retrieved without explicitly specifying either when producing an artifact.
192 lines
5.7 KiB
C++
192 lines
5.7 KiB
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <set>
|
|
#include <string>
|
|
#include <type_traits>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/ADT/iterator_range.h"
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include "revng/ADT/STLExtras.h"
|
|
#include "revng/Pipeline/ContainerSet.h"
|
|
#include "revng/Pipeline/Context.h"
|
|
#include "revng/Pipeline/Contract.h"
|
|
#include "revng/Pipeline/Pipe.h"
|
|
#include "revng/Support/Assert.h"
|
|
#include "revng/Support/Debug.h"
|
|
|
|
namespace pipeline {
|
|
|
|
/// A step is a list of pipes that must be exectuted entirely or not at all.
|
|
/// Furthermore a step has a set of containers associated to it as well that
|
|
/// will contain the element used for perform the computations.
|
|
class Step {
|
|
private:
|
|
struct ArtifactsInfo {
|
|
std::string Container;
|
|
const Kind *Kind;
|
|
|
|
ArtifactsInfo() : Container(""), Kind(nullptr) {}
|
|
ArtifactsInfo(std::string Container, const pipeline::Kind *Kind) :
|
|
Container(std::move(Container)), Kind(Kind) {}
|
|
|
|
bool isValid() { return !Container.empty() && Kind != nullptr; }
|
|
};
|
|
|
|
std::string Name;
|
|
ContainerSet Containers;
|
|
std::vector<PipeWrapper> Pipes;
|
|
Step *PreviousStep;
|
|
ArtifactsInfo Artifacts;
|
|
|
|
public:
|
|
template<typename... PipeWrapperTypes>
|
|
Step(std::string Name,
|
|
ContainerSet Containers,
|
|
PipeWrapperTypes &&...PipeWrappers) :
|
|
Name(std::move(Name)),
|
|
Containers(std::move(Containers)),
|
|
Pipes({ std::forward<PipeWrapperTypes>(PipeWrappers)... }),
|
|
PreviousStep(nullptr) {}
|
|
|
|
template<typename... PipeWrapperTypes>
|
|
Step(std::string Name,
|
|
ContainerSet Containers,
|
|
Step &PreviousStep,
|
|
PipeWrapperTypes &&...PipeWrappers) :
|
|
Name(std::move(Name)),
|
|
Containers(std::move(Containers)),
|
|
Pipes({ std::forward<PipeWrapperTypes>(PipeWrappers)... }),
|
|
PreviousStep(&PreviousStep) {}
|
|
|
|
public:
|
|
llvm::StringRef getName() const { return Name; }
|
|
const ContainerSet &containers() const { return Containers; }
|
|
ContainerSet &containers() { return Containers; }
|
|
|
|
llvm::Error
|
|
setArtifacts(std::string ContainerName, const Kind *ArtifactsKind) {
|
|
if (Containers.find(ContainerName) == Containers.end()) {
|
|
return llvm::createStringError(llvm::inconvertibleErrorCode(),
|
|
"Artifact Container does not exist");
|
|
}
|
|
Artifacts = ArtifactsInfo(std::move(ContainerName), ArtifactsKind);
|
|
return llvm::Error::success();
|
|
}
|
|
|
|
const Kind *getArtifactsKind() {
|
|
if (Artifacts.isValid()) {
|
|
return Artifacts.Kind;
|
|
} else {
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
ContainerSet::value_type *getArtifactsContainer() {
|
|
if (!Artifacts.isValid()) {
|
|
return nullptr;
|
|
}
|
|
|
|
auto &ContainerName = Artifacts.Container;
|
|
if (Containers.isContainerRegistered(ContainerName)) {
|
|
Containers[ContainerName];
|
|
return &*Containers.find(ContainerName);
|
|
} else {
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
public:
|
|
bool hasPredecessor() const { return PreviousStep != nullptr; }
|
|
|
|
const Step &getPredecessor() const {
|
|
revng_assert(PreviousStep != nullptr);
|
|
return *PreviousStep;
|
|
}
|
|
|
|
Step &getPredecessor() {
|
|
revng_assert(PreviousStep != nullptr);
|
|
return *PreviousStep;
|
|
}
|
|
|
|
public:
|
|
/// Clones the Targets from the backing containers of this step
|
|
/// and excutes all the pipes in sequence contained by this step
|
|
/// and returns the transformed containers.
|
|
///
|
|
/// The contained values stays unchanged.
|
|
ContainerSet cloneAndRun(Context &Ctx,
|
|
ContainerSet &&Targets,
|
|
llvm::raw_ostream *OS = nullptr);
|
|
|
|
/// Returns the set of goals that are already contained in the backing
|
|
/// containers of this step, futhermore adds to the container ToLoad those
|
|
/// that were not present.
|
|
ContainerToTargetsMap
|
|
analyzeGoals(const ContainerToTargetsMap &RequiredGoals,
|
|
ContainerToTargetsMap &AlreadyAvbiable) const;
|
|
|
|
/// Returns the predicted state of the Input containers status after the
|
|
/// execution of all the pipes in this step.
|
|
ContainerToTargetsMap deduceResults(ContainerToTargetsMap Input) const;
|
|
|
|
public:
|
|
void addPipe(PipeWrapper Wrapper) { Pipes.push_back(std::move(Wrapper)); }
|
|
|
|
/// Drops from the backing containers all the targets presents in containers
|
|
/// status
|
|
llvm::Error invalidate(const ContainerToTargetsMap &ToRemove);
|
|
|
|
public:
|
|
llvm::Error storeToDisk(llvm::StringRef DirPath) const;
|
|
llvm::Error loadFromDisk(llvm::StringRef DirPath);
|
|
|
|
public:
|
|
template<typename OStream>
|
|
void dump(OStream &OS, size_t Indentation = 0) const {
|
|
indent(OS, Indentation);
|
|
OS << "Step " << Name << ":\n";
|
|
|
|
indent(OS, Indentation + 1);
|
|
OS << "Pipes: \n";
|
|
for (const auto &Pipe : Pipes)
|
|
Pipe.dump(OS, Indentation + 2);
|
|
|
|
indent(OS, Indentation + 1);
|
|
OS << " containers: \n";
|
|
Containers.dump(OS, Indentation + 2);
|
|
}
|
|
|
|
void dump() const debug_function { dump(dbg); }
|
|
|
|
private:
|
|
static void removeSatisfiedGoals(TargetsList &RequiredInputs,
|
|
const ContainerBase &CachedSymbols,
|
|
TargetsList &ToLoad);
|
|
|
|
private:
|
|
void removeSatisfiedGoals(ContainerToTargetsMap &Targets,
|
|
ContainerToTargetsMap &ToLoad) const;
|
|
|
|
void explainExecutedPipe(const Context &Ctx,
|
|
const PipeWrapper &Wrapper,
|
|
llvm::raw_ostream *OS,
|
|
size_t Indentation = 0) const;
|
|
void explainStartStep(const ContainerToTargetsMap &Wrapper,
|
|
llvm::raw_ostream *OS,
|
|
size_t Indentation = 0) const;
|
|
};
|
|
|
|
} // namespace pipeline
|