2008-08-17 20:44:35 +02:00
|
|
|
//===-- GCMetadata.cpp - Garbage collector metadata -----------------------===//
|
2007-09-28 00:18:46 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-09-28 00:18:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-08-17 20:44:35 +02:00
|
|
|
// This file implements the GCFunctionInfo class and GCModuleInfo pass.
|
2007-09-28 00:18:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-08-17 14:56:54 +02:00
|
|
|
#include "llvm/CodeGen/GCMetadata.h"
|
|
|
|
#include "llvm/CodeGen/GCStrategy.h"
|
2007-09-28 00:18:46 +02:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2007-12-11 01:30:17 +01:00
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2007-09-28 00:18:46 +02:00
|
|
|
#include "llvm/Function.h"
|
2009-07-11 15:10:19 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-08-23 05:13:20 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2007-09-28 00:18:46 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2009-10-25 07:33:48 +01:00
|
|
|
class Printer : public FunctionPass {
|
2007-09-28 00:18:46 +02:00
|
|
|
static char ID;
|
2009-08-23 05:13:20 +02:00
|
|
|
raw_ostream &OS;
|
2007-09-28 00:18:46 +02:00
|
|
|
|
|
|
|
public:
|
2009-08-23 05:13:20 +02:00
|
|
|
Printer() : FunctionPass(&ID), OS(errs()) {}
|
|
|
|
explicit Printer(raw_ostream &OS) : FunctionPass(&ID), OS(OS) {}
|
|
|
|
|
2007-09-28 00:18:46 +02:00
|
|
|
|
|
|
|
const char *getPassName() const;
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const;
|
|
|
|
|
2007-12-11 01:30:17 +01:00
|
|
|
bool runOnFunction(Function &F);
|
2007-09-28 00:18:46 +02:00
|
|
|
};
|
|
|
|
|
2009-10-25 07:33:48 +01:00
|
|
|
class Deleter : public FunctionPass {
|
2007-09-28 00:18:46 +02:00
|
|
|
static char ID;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Deleter();
|
|
|
|
|
|
|
|
const char *getPassName() const;
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const;
|
|
|
|
|
2007-12-11 01:30:17 +01:00
|
|
|
bool runOnFunction(Function &F);
|
2007-09-28 00:18:46 +02:00
|
|
|
bool doFinalization(Module &M);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
static RegisterPass<GCModuleInfo>
|
2008-05-13 02:00:25 +02:00
|
|
|
X("collector-metadata", "Create Garbage Collector Module Metadata");
|
|
|
|
|
2007-09-28 00:18:46 +02:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
GCFunctionInfo::GCFunctionInfo(const Function &F, GCStrategy &S)
|
|
|
|
: F(F), S(S), FrameSize(~0LL) {}
|
2007-09-28 00:18:46 +02:00
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
GCFunctionInfo::~GCFunctionInfo() {}
|
2007-09-28 00:18:46 +02:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
char GCModuleInfo::ID = 0;
|
2007-09-28 00:18:46 +02:00
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
GCModuleInfo::GCModuleInfo()
|
2008-09-04 19:05:41 +02:00
|
|
|
: ImmutablePass(&ID) {}
|
2007-09-28 00:18:46 +02:00
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
GCModuleInfo::~GCModuleInfo() {
|
2007-09-28 00:18:46 +02:00
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
GCStrategy *GCModuleInfo::getOrCreateStrategy(const Module *M,
|
|
|
|
const std::string &Name) {
|
2009-07-23 20:17:34 +02:00
|
|
|
strategy_map_type::iterator NMI = StrategyMap.find(Name);
|
2008-08-17 20:44:35 +02:00
|
|
|
if (NMI != StrategyMap.end())
|
2007-12-11 01:30:17 +01:00
|
|
|
return NMI->getValue();
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
for (GCRegistry::iterator I = GCRegistry::begin(),
|
|
|
|
E = GCRegistry::end(); I != E; ++I) {
|
2009-07-23 20:17:34 +02:00
|
|
|
if (Name == I->getName()) {
|
2008-08-17 20:44:35 +02:00
|
|
|
GCStrategy *S = I->instantiate();
|
|
|
|
S->M = M;
|
|
|
|
S->Name = Name;
|
2009-07-23 20:17:34 +02:00
|
|
|
StrategyMap.GetOrCreateValue(Name).setValue(S);
|
2008-08-17 20:44:35 +02:00
|
|
|
StrategyList.push_back(S);
|
|
|
|
return S;
|
2007-12-11 01:30:17 +01:00
|
|
|
}
|
|
|
|
}
|
2009-07-11 15:10:19 +02:00
|
|
|
|
2009-08-23 08:03:38 +02:00
|
|
|
errs() << "unsupported GC: " << Name << "\n";
|
2009-07-14 18:55:14 +02:00
|
|
|
llvm_unreachable(0);
|
2007-09-28 00:18:46 +02:00
|
|
|
}
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
GCFunctionInfo &GCModuleInfo::getFunctionInfo(const Function &F) {
|
2008-08-17 18:18:50 +02:00
|
|
|
assert(!F.isDeclaration() && "Can only get GCFunctionInfo for a definition!");
|
2008-08-17 20:44:35 +02:00
|
|
|
assert(F.hasGC());
|
2008-08-17 18:18:50 +02:00
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
finfo_map_type::iterator I = FInfoMap.find(&F);
|
|
|
|
if (I != FInfoMap.end())
|
2007-12-11 01:30:17 +01:00
|
|
|
return *I->second;
|
2008-08-17 20:44:35 +02:00
|
|
|
|
|
|
|
GCStrategy *S = getOrCreateStrategy(F.getParent(), F.getGC());
|
|
|
|
GCFunctionInfo *GFI = S->insertFunctionInfo(F);
|
|
|
|
FInfoMap[&F] = GFI;
|
|
|
|
return *GFI;
|
2007-09-28 00:18:46 +02:00
|
|
|
}
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
void GCModuleInfo::clear() {
|
|
|
|
FInfoMap.clear();
|
|
|
|
StrategyMap.clear();
|
2007-12-11 01:30:17 +01:00
|
|
|
|
2007-09-28 00:18:46 +02:00
|
|
|
for (iterator I = begin(), E = end(); I != E; ++I)
|
|
|
|
delete *I;
|
2008-08-17 20:44:35 +02:00
|
|
|
StrategyList.clear();
|
2007-09-28 00:18:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
char Printer::ID = 0;
|
|
|
|
|
2009-08-23 05:13:20 +02:00
|
|
|
FunctionPass *llvm::createGCInfoPrinter(raw_ostream &OS) {
|
2007-09-28 00:18:46 +02:00
|
|
|
return new Printer(OS);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char *Printer::getPassName() const {
|
|
|
|
return "Print Garbage Collector Information";
|
|
|
|
}
|
|
|
|
|
|
|
|
void Printer::getAnalysisUsage(AnalysisUsage &AU) const {
|
2007-12-11 01:30:17 +01:00
|
|
|
FunctionPass::getAnalysisUsage(AU);
|
2007-09-28 00:18:46 +02:00
|
|
|
AU.setPreservesAll();
|
2008-08-17 20:44:35 +02:00
|
|
|
AU.addRequired<GCModuleInfo>();
|
2007-09-28 00:18:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *DescKind(GC::PointKind Kind) {
|
|
|
|
switch (Kind) {
|
2009-07-14 18:55:14 +02:00
|
|
|
default: llvm_unreachable("Unknown GC point kind");
|
2007-09-28 00:18:46 +02:00
|
|
|
case GC::Loop: return "loop";
|
|
|
|
case GC::Return: return "return";
|
|
|
|
case GC::PreCall: return "pre-call";
|
|
|
|
case GC::PostCall: return "post-call";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-11 01:30:17 +01:00
|
|
|
bool Printer::runOnFunction(Function &F) {
|
2008-08-17 20:44:35 +02:00
|
|
|
if (!F.hasGC()) {
|
|
|
|
GCFunctionInfo *FD = &getAnalysis<GCModuleInfo>().getFunctionInfo(F);
|
2007-09-28 00:18:46 +02:00
|
|
|
|
2009-07-26 11:48:23 +02:00
|
|
|
OS << "GC roots for " << FD->getFunction().getNameStr() << ":\n";
|
2008-08-17 20:44:35 +02:00
|
|
|
for (GCFunctionInfo::roots_iterator RI = FD->roots_begin(),
|
|
|
|
RE = FD->roots_end(); RI != RE; ++RI)
|
2007-09-28 00:18:46 +02:00
|
|
|
OS << "\t" << RI->Num << "\t" << RI->StackOffset << "[sp]\n";
|
|
|
|
|
2009-07-26 11:48:23 +02:00
|
|
|
OS << "GC safe points for " << FD->getFunction().getNameStr() << ":\n";
|
2008-08-17 20:44:35 +02:00
|
|
|
for (GCFunctionInfo::iterator PI = FD->begin(),
|
|
|
|
PE = FD->end(); PI != PE; ++PI) {
|
2007-09-28 00:18:46 +02:00
|
|
|
|
|
|
|
OS << "\tlabel " << PI->Num << ": " << DescKind(PI->Kind) << ", live = {";
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
for (GCFunctionInfo::live_iterator RI = FD->live_begin(PI),
|
|
|
|
RE = FD->live_end(PI);;) {
|
2007-09-28 00:18:46 +02:00
|
|
|
OS << " " << RI->Num;
|
|
|
|
if (++RI == RE)
|
|
|
|
break;
|
|
|
|
OS << ",";
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << " }\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
char Deleter::ID = 0;
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
FunctionPass *llvm::createGCInfoDeleter() {
|
2007-09-28 00:18:46 +02:00
|
|
|
return new Deleter();
|
|
|
|
}
|
|
|
|
|
2009-02-18 06:09:16 +01:00
|
|
|
Deleter::Deleter() : FunctionPass(&ID) {}
|
2007-09-28 00:18:46 +02:00
|
|
|
|
|
|
|
const char *Deleter::getPassName() const {
|
|
|
|
return "Delete Garbage Collector Information";
|
|
|
|
}
|
|
|
|
|
|
|
|
void Deleter::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
2008-08-17 20:44:35 +02:00
|
|
|
AU.addRequired<GCModuleInfo>();
|
2007-09-28 00:18:46 +02:00
|
|
|
}
|
|
|
|
|
2007-12-11 01:30:17 +01:00
|
|
|
bool Deleter::runOnFunction(Function &MF) {
|
2007-09-28 00:18:46 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Deleter::doFinalization(Module &M) {
|
2009-01-28 14:14:17 +01:00
|
|
|
GCModuleInfo *GMI = getAnalysisIfAvailable<GCModuleInfo>();
|
2008-08-17 20:44:35 +02:00
|
|
|
assert(GMI && "Deleter didn't require GCModuleInfo?!");
|
|
|
|
GMI->clear();
|
2007-09-28 00:18:46 +02:00
|
|
|
return false;
|
|
|
|
}
|