mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
Fix GCMetadaPrinter::finishAssembly not executed, patch by Yiannis Tsiouris.
Due to the execution order of doFinalization functions, the GC information were deleted before AsmPrinter::doFinalization was executed. Thus, the GCMetadataPrinter::finishAssembly was never called. The patch fixes that by moving the code of the GCInfoDeleter::doFinalization to Printer::doFinalization. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175528 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -33,25 +33,13 @@ namespace {
|
||||
explicit Printer(raw_ostream &OS) : FunctionPass(ID), OS(OS) {}
|
||||
|
||||
|
||||
const char *getPassName() const;
|
||||
void getAnalysisUsage(AnalysisUsage &AU) const;
|
||||
|
||||
bool runOnFunction(Function &F);
|
||||
};
|
||||
|
||||
class Deleter : public FunctionPass {
|
||||
static char ID;
|
||||
|
||||
public:
|
||||
Deleter();
|
||||
|
||||
const char *getPassName() const;
|
||||
void getAnalysisUsage(AnalysisUsage &AU) const;
|
||||
|
||||
bool runOnFunction(Function &F);
|
||||
bool doFinalization(Module &M);
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
||||
INITIALIZE_PASS(GCModuleInfo, "collector-metadata",
|
||||
@@ -182,32 +170,9 @@ bool Printer::runOnFunction(Function &F) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
char Deleter::ID = 0;
|
||||
|
||||
FunctionPass *llvm::createGCInfoDeleter() {
|
||||
return new Deleter();
|
||||
}
|
||||
|
||||
Deleter::Deleter() : FunctionPass(ID) {}
|
||||
|
||||
const char *Deleter::getPassName() const {
|
||||
return "Delete Garbage Collector Information";
|
||||
}
|
||||
|
||||
void Deleter::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
AU.setPreservesAll();
|
||||
AU.addRequired<GCModuleInfo>();
|
||||
}
|
||||
|
||||
bool Deleter::runOnFunction(Function &MF) {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Deleter::doFinalization(Module &M) {
|
||||
bool Printer::doFinalization(Module &M) {
|
||||
GCModuleInfo *GMI = getAnalysisIfAvailable<GCModuleInfo>();
|
||||
assert(GMI && "Deleter didn't require GCModuleInfo?!");
|
||||
assert(GMI && "Printer didn't require GCModuleInfo?!");
|
||||
GMI->clear();
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user