mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
156 lines
6.0 KiB
C++
156 lines
6.0 KiB
C++
|
//===- PassManager.h - Infrastructure for managing & running IR passes ----===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "llvm/IR/PassManager.h"
|
||
|
#include "llvm/ADT/STLExtras.h"
|
||
|
|
||
|
using namespace llvm;
|
||
|
|
||
|
void ModulePassManager::run() {
|
||
|
for (unsigned Idx = 0, Size = Passes.size(); Idx != Size; ++Idx)
|
||
|
if (Passes[Idx]->run(M))
|
||
|
if (AM) AM->invalidateAll(M);
|
||
|
}
|
||
|
|
||
|
bool FunctionPassManager::run(Module *M) {
|
||
|
bool Changed = false;
|
||
|
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
||
|
for (unsigned Idx = 0, Size = Passes.size(); Idx != Size; ++Idx)
|
||
|
if (Passes[Idx]->run(I)) {
|
||
|
Changed = true;
|
||
|
if (AM) AM->invalidateAll(I);
|
||
|
}
|
||
|
return Changed;
|
||
|
}
|
||
|
|
||
|
void AnalysisManager::invalidateAll(Function *F) {
|
||
|
assert(F->getParent() == M && "Invalidating a function from another module!");
|
||
|
|
||
|
// First invalidate any module results we still have laying about.
|
||
|
// FIXME: This is a total hack based on the fact that erasure doesn't
|
||
|
// invalidate iteration for DenseMap.
|
||
|
for (ModuleAnalysisResultMapT::iterator I = ModuleAnalysisResults.begin(),
|
||
|
E = ModuleAnalysisResults.end();
|
||
|
I != E; ++I)
|
||
|
if (I->second->invalidate(M))
|
||
|
ModuleAnalysisResults.erase(I);
|
||
|
|
||
|
// Now clear all the invalidated results associated specifically with this
|
||
|
// function.
|
||
|
SmallVector<void *, 8> InvalidatedPassIDs;
|
||
|
FunctionAnalysisResultListT &ResultsList = FunctionAnalysisResultLists[F];
|
||
|
for (FunctionAnalysisResultListT::iterator I = ResultsList.begin(),
|
||
|
E = ResultsList.end();
|
||
|
I != E; ++I)
|
||
|
if (I->second->invalidate(F)) {
|
||
|
FunctionAnalysisResultListT::iterator Old = I--;
|
||
|
InvalidatedPassIDs.push_back(Old->first);
|
||
|
ResultsList.erase(Old);
|
||
|
}
|
||
|
while (!InvalidatedPassIDs.empty())
|
||
|
FunctionAnalysisResults.erase(
|
||
|
std::make_pair(InvalidatedPassIDs.pop_back_val(), F));
|
||
|
}
|
||
|
|
||
|
void AnalysisManager::invalidateAll(Module *M) {
|
||
|
// First invalidate any module results we still have laying about.
|
||
|
// FIXME: This is a total hack based on the fact that erasure doesn't
|
||
|
// invalidate iteration for DenseMap.
|
||
|
for (ModuleAnalysisResultMapT::iterator I = ModuleAnalysisResults.begin(),
|
||
|
E = ModuleAnalysisResults.end();
|
||
|
I != E; ++I)
|
||
|
if (I->second->invalidate(M))
|
||
|
ModuleAnalysisResults.erase(I);
|
||
|
|
||
|
// Now walk all of the functions for which there are cached results, and
|
||
|
// attempt to invalidate each of those as the entire module may have changed.
|
||
|
// FIXME: How do we handle functions which have been deleted or RAUWed?
|
||
|
SmallVector<void *, 8> InvalidatedPassIDs;
|
||
|
for (FunctionAnalysisResultListMapT::iterator
|
||
|
FI = FunctionAnalysisResultLists.begin(),
|
||
|
FE = FunctionAnalysisResultLists.end();
|
||
|
FI != FE; ++FI) {
|
||
|
Function *F = FI->first;
|
||
|
FunctionAnalysisResultListT &ResultsList = FI->second;
|
||
|
for (FunctionAnalysisResultListT::iterator I = ResultsList.begin(),
|
||
|
E = ResultsList.end();
|
||
|
I != E; ++I)
|
||
|
if (I->second->invalidate(F)) {
|
||
|
FunctionAnalysisResultListT::iterator Old = I--;
|
||
|
InvalidatedPassIDs.push_back(Old->first);
|
||
|
ResultsList.erase(Old);
|
||
|
}
|
||
|
while (!InvalidatedPassIDs.empty())
|
||
|
FunctionAnalysisResults.erase(
|
||
|
std::make_pair(InvalidatedPassIDs.pop_back_val(), F));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const AnalysisManager::AnalysisResultConcept<Module> &
|
||
|
AnalysisManager::getResultImpl(void *PassID, Module *M) {
|
||
|
assert(M == this->M && "Wrong module used when querying the AnalysisManager");
|
||
|
ModuleAnalysisResultMapT::iterator RI;
|
||
|
bool Inserted;
|
||
|
llvm::tie(RI, Inserted) = ModuleAnalysisResults.insert(std::make_pair(
|
||
|
PassID, polymorphic_ptr<AnalysisResultConcept<Module> >()));
|
||
|
|
||
|
if (Inserted) {
|
||
|
// We don't have a cached result for this result. Look up the pass and run
|
||
|
// it to produce a result, which we then add to the cache.
|
||
|
ModuleAnalysisPassMapT::const_iterator PI =
|
||
|
ModuleAnalysisPasses.find(PassID);
|
||
|
assert(PI != ModuleAnalysisPasses.end() &&
|
||
|
"Analysis passes must be registered prior to being queried!");
|
||
|
RI->second = PI->second->run(M);
|
||
|
}
|
||
|
|
||
|
return *RI->second;
|
||
|
}
|
||
|
|
||
|
const AnalysisManager::AnalysisResultConcept<Function> &
|
||
|
AnalysisManager::getResultImpl(void *PassID, Function *F) {
|
||
|
assert(F->getParent() == M && "Analyzing a function from another module!");
|
||
|
|
||
|
FunctionAnalysisResultMapT::iterator RI;
|
||
|
bool Inserted;
|
||
|
llvm::tie(RI, Inserted) = FunctionAnalysisResults.insert(std::make_pair(
|
||
|
std::make_pair(PassID, F), FunctionAnalysisResultListT::iterator()));
|
||
|
|
||
|
if (Inserted) {
|
||
|
// We don't have a cached result for this result. Look up the pass and run
|
||
|
// it to produce a result, which we then add to the cache.
|
||
|
FunctionAnalysisPassMapT::const_iterator PI =
|
||
|
FunctionAnalysisPasses.find(PassID);
|
||
|
assert(PI != FunctionAnalysisPasses.end() &&
|
||
|
"Analysis passes must be registered prior to being queried!");
|
||
|
FunctionAnalysisResultListT &ResultList = FunctionAnalysisResultLists[F];
|
||
|
ResultList.push_back(std::make_pair(PassID, PI->second->run(F)));
|
||
|
RI->second = llvm::prior(ResultList.end());
|
||
|
}
|
||
|
|
||
|
return *RI->second->second;
|
||
|
}
|
||
|
|
||
|
void AnalysisManager::invalidateImpl(void *PassID, Module *M) {
|
||
|
assert(M == this->M && "Invalidating a pass over a different module!");
|
||
|
ModuleAnalysisResults.erase(PassID);
|
||
|
}
|
||
|
|
||
|
void AnalysisManager::invalidateImpl(void *PassID, Function *F) {
|
||
|
assert(F->getParent() == M &&
|
||
|
"Invalidating a pass over a function from another module!");
|
||
|
|
||
|
FunctionAnalysisResultMapT::iterator RI = FunctionAnalysisResults.find(std::make_pair(PassID, F));
|
||
|
if (RI == FunctionAnalysisResults.end())
|
||
|
return;
|
||
|
|
||
|
FunctionAnalysisResultLists[F].erase(RI->second);
|
||
|
}
|
||
|
|