mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
Enabling the target-independent garbage collection infrastructure by hooking it
up to the various compiler pipelines. This doesn't actually add support for any GC algorithms, which means it temporarily breaks a few tests. To be fixed shortly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45669 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7e40ad5106
commit
ce2247755e
@ -118,6 +118,10 @@ namespace llvm {
|
|||||||
std::string getCurrentFunctionEHName(const MachineFunction *MF);
|
std::string getCurrentFunctionEHName(const MachineFunction *MF);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
/// getAnalysisUsage - Record analysis usage.
|
||||||
|
///
|
||||||
|
void getAnalysisUsage(AnalysisUsage &AU) const;
|
||||||
|
|
||||||
/// doInitialization - Set up the AsmPrinter when we are working on a new
|
/// doInitialization - Set up the AsmPrinter when we are working on a new
|
||||||
/// module. If your pass overrides this, it must make sure to explicitly
|
/// module. If your pass overrides this, it must make sure to explicitly
|
||||||
/// call this implementation.
|
/// call this implementation.
|
||||||
|
@ -30,6 +30,7 @@ namespace llvm {
|
|||||||
class TargetLowering;
|
class TargetLowering;
|
||||||
class FunctionLoweringInfo;
|
class FunctionLoweringInfo;
|
||||||
class HazardRecognizer;
|
class HazardRecognizer;
|
||||||
|
class CollectorMetadata;
|
||||||
|
|
||||||
/// SelectionDAGISel - This is the common base class used for SelectionDAG-based
|
/// SelectionDAGISel - This is the common base class used for SelectionDAG-based
|
||||||
/// pattern-matching instruction selectors.
|
/// pattern-matching instruction selectors.
|
||||||
@ -42,10 +43,11 @@ public:
|
|||||||
AliasAnalysis *AA;
|
AliasAnalysis *AA;
|
||||||
std::vector<SDNode*> TopOrder;
|
std::vector<SDNode*> TopOrder;
|
||||||
unsigned DAGSize;
|
unsigned DAGSize;
|
||||||
|
CollectorMetadata *GCI;
|
||||||
static char ID;
|
static char ID;
|
||||||
|
|
||||||
explicit SelectionDAGISel(TargetLowering &tli) :
|
explicit SelectionDAGISel(TargetLowering &tli) :
|
||||||
FunctionPass((intptr_t)&ID), TLI(tli), DAGSize(0) {}
|
FunctionPass((intptr_t)&ID), TLI(tli), DAGSize(0), GCI(0) {}
|
||||||
|
|
||||||
TargetLowering &getTargetLowering() { return TLI; }
|
TargetLowering &getTargetLowering() { return TLI; }
|
||||||
|
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
#include "llvm/DerivedTypes.h"
|
#include "llvm/DerivedTypes.h"
|
||||||
#include "llvm/Constants.h"
|
#include "llvm/Constants.h"
|
||||||
#include "llvm/Module.h"
|
#include "llvm/Module.h"
|
||||||
|
#include "llvm/CodeGen/Collector.h"
|
||||||
|
#include "llvm/CodeGen/CollectorMetadata.h"
|
||||||
#include "llvm/CodeGen/MachineConstantPool.h"
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
||||||
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
||||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||||
@ -94,9 +96,20 @@ void AsmPrinter::SwitchToDataSection(const char *NewSection,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||||
|
MachineFunctionPass::getAnalysisUsage(AU);
|
||||||
|
AU.addRequired<CollectorModuleMetadata>();
|
||||||
|
}
|
||||||
|
|
||||||
bool AsmPrinter::doInitialization(Module &M) {
|
bool AsmPrinter::doInitialization(Module &M) {
|
||||||
Mang = new Mangler(M, TAI->getGlobalPrefix());
|
Mang = new Mangler(M, TAI->getGlobalPrefix());
|
||||||
|
|
||||||
|
CollectorModuleMetadata *CMM = getAnalysisToUpdate<CollectorModuleMetadata>();
|
||||||
|
assert(CMM && "AsmPrinter didn't require CollectorModuleMetadata?");
|
||||||
|
for (CollectorModuleMetadata::iterator I = CMM->begin(),
|
||||||
|
E = CMM->end(); I != E; ++I)
|
||||||
|
(*I)->beginAssembly(O, *this, *TAI);
|
||||||
|
|
||||||
if (!M.getModuleInlineAsm().empty())
|
if (!M.getModuleInlineAsm().empty())
|
||||||
O << TAI->getCommentString() << " Start of file scope inline assembly\n"
|
O << TAI->getCommentString() << " Start of file scope inline assembly\n"
|
||||||
<< M.getModuleInlineAsm()
|
<< M.getModuleInlineAsm()
|
||||||
@ -158,6 +171,12 @@ bool AsmPrinter::doFinalization(Module &M) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CollectorModuleMetadata *CMM = getAnalysisToUpdate<CollectorModuleMetadata>();
|
||||||
|
assert(CMM && "AsmPrinter didn't require CollectorModuleMetadata?");
|
||||||
|
for (CollectorModuleMetadata::iterator I = CMM->end(),
|
||||||
|
E = CMM->begin(); I != E; )
|
||||||
|
(*--I)->finishAssembly(O, *this, *TAI);
|
||||||
|
|
||||||
delete Mang; Mang = 0;
|
delete Mang; Mang = 0;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -187,3 +187,8 @@ revisited. The check is there to work around a misuse of directives in inline
|
|||||||
assembly.
|
assembly.
|
||||||
|
|
||||||
//===---------------------------------------------------------------------===//
|
//===---------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
It would be good to detect collector/target compatibility instead of silently
|
||||||
|
doing the wrong thing.
|
||||||
|
|
||||||
|
//===---------------------------------------------------------------------===//
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "llvm/Intrinsics.h"
|
#include "llvm/Intrinsics.h"
|
||||||
#include "llvm/IntrinsicInst.h"
|
#include "llvm/IntrinsicInst.h"
|
||||||
#include "llvm/ParameterAttributes.h"
|
#include "llvm/ParameterAttributes.h"
|
||||||
|
#include "llvm/CodeGen/Collector.h"
|
||||||
#include "llvm/CodeGen/MachineFunction.h"
|
#include "llvm/CodeGen/MachineFunction.h"
|
||||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||||
@ -426,12 +427,16 @@ public:
|
|||||||
/// FuncInfo - Information about the function as a whole.
|
/// FuncInfo - Information about the function as a whole.
|
||||||
///
|
///
|
||||||
FunctionLoweringInfo &FuncInfo;
|
FunctionLoweringInfo &FuncInfo;
|
||||||
|
|
||||||
|
/// GCI - Garbage collection metadata for the function.
|
||||||
|
CollectorMetadata *GCI;
|
||||||
|
|
||||||
SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
|
SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
|
||||||
AliasAnalysis &aa,
|
AliasAnalysis &aa,
|
||||||
FunctionLoweringInfo &funcinfo)
|
FunctionLoweringInfo &funcinfo,
|
||||||
|
CollectorMetadata *gci)
|
||||||
: TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
|
: TLI(tli), DAG(dag), TD(DAG.getTarget().getTargetData()), AA(aa),
|
||||||
FuncInfo(funcinfo) {
|
FuncInfo(funcinfo), GCI(gci) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getRoot - Return the current virtual root of the Selection DAG.
|
/// getRoot - Return the current virtual root of the Selection DAG.
|
||||||
@ -2907,6 +2912,22 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
|
|||||||
DAG.setRoot(Tmp.getValue(1));
|
DAG.setRoot(Tmp.getValue(1));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case Intrinsic::gcroot:
|
||||||
|
if (GCI) {
|
||||||
|
Value *Alloca = I.getOperand(1);
|
||||||
|
Constant *TypeMap = cast<Constant>(I.getOperand(2));
|
||||||
|
|
||||||
|
FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).Val);
|
||||||
|
GCI->addStackRoot(FI->getIndex(), TypeMap);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
case Intrinsic::gcread:
|
||||||
|
case Intrinsic::gcwrite:
|
||||||
|
assert(0 && "Collector failed to lower gcread/gcwrite intrinsics!");
|
||||||
|
return 0;
|
||||||
|
|
||||||
case Intrinsic::flt_rounds: {
|
case Intrinsic::flt_rounds: {
|
||||||
setValue(&I, DAG.getNode(ISD::FLT_ROUNDS, MVT::i32));
|
setValue(&I, DAG.getNode(ISD::FLT_ROUNDS, MVT::i32));
|
||||||
return 0;
|
return 0;
|
||||||
@ -4368,6 +4389,7 @@ unsigned SelectionDAGISel::MakeReg(MVT::ValueType VT) {
|
|||||||
|
|
||||||
void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
|
void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||||
AU.addRequired<AliasAnalysis>();
|
AU.addRequired<AliasAnalysis>();
|
||||||
|
AU.addRequired<CollectorModuleMetadata>();
|
||||||
AU.setPreservesAll();
|
AU.setPreservesAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4378,6 +4400,10 @@ bool SelectionDAGISel::runOnFunction(Function &Fn) {
|
|||||||
AA = &getAnalysis<AliasAnalysis>();
|
AA = &getAnalysis<AliasAnalysis>();
|
||||||
|
|
||||||
MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
|
MachineFunction &MF = MachineFunction::construct(&Fn, TLI.getTargetMachine());
|
||||||
|
if (MF.getFunction()->hasCollector())
|
||||||
|
GCI = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
|
||||||
|
else
|
||||||
|
GCI = 0;
|
||||||
RegInfo = &MF.getRegInfo();
|
RegInfo = &MF.getRegInfo();
|
||||||
DOUT << "\n\n\n=== " << Fn.getName() << "\n";
|
DOUT << "\n\n\n=== " << Fn.getName() << "\n";
|
||||||
|
|
||||||
@ -4515,7 +4541,7 @@ static void CheckDAGForTailCallsAndFixThem(SelectionDAG &DAG,
|
|||||||
void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
|
void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
|
||||||
std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
|
std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
|
||||||
FunctionLoweringInfo &FuncInfo) {
|
FunctionLoweringInfo &FuncInfo) {
|
||||||
SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo);
|
SelectionDAGLowering SDL(DAG, TLI, *AA, FuncInfo, GCI);
|
||||||
|
|
||||||
std::vector<SDOperand> UnorderedChains;
|
std::vector<SDOperand> UnorderedChains;
|
||||||
|
|
||||||
@ -4774,7 +4800,7 @@ void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
|
|||||||
if (!BitTestCases[i].Emitted) {
|
if (!BitTestCases[i].Emitted) {
|
||||||
SelectionDAG HSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
SelectionDAG HSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
||||||
CurDAG = &HSDAG;
|
CurDAG = &HSDAG;
|
||||||
SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo);
|
SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
|
||||||
// Set the current basic block to the mbb we wish to insert the code into
|
// Set the current basic block to the mbb we wish to insert the code into
|
||||||
BB = BitTestCases[i].Parent;
|
BB = BitTestCases[i].Parent;
|
||||||
HSDL.setCurrentBasicBlock(BB);
|
HSDL.setCurrentBasicBlock(BB);
|
||||||
@ -4787,7 +4813,7 @@ void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
|
|||||||
for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
|
for (unsigned j = 0, ej = BitTestCases[i].Cases.size(); j != ej; ++j) {
|
||||||
SelectionDAG BSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
SelectionDAG BSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
||||||
CurDAG = &BSDAG;
|
CurDAG = &BSDAG;
|
||||||
SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo);
|
SelectionDAGLowering BSDL(BSDAG, TLI, *AA, FuncInfo, GCI);
|
||||||
// Set the current basic block to the mbb we wish to insert the code into
|
// Set the current basic block to the mbb we wish to insert the code into
|
||||||
BB = BitTestCases[i].Cases[j].ThisBB;
|
BB = BitTestCases[i].Cases[j].ThisBB;
|
||||||
BSDL.setCurrentBasicBlock(BB);
|
BSDL.setCurrentBasicBlock(BB);
|
||||||
@ -4844,7 +4870,7 @@ void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
|
|||||||
if (!JTCases[i].first.Emitted) {
|
if (!JTCases[i].first.Emitted) {
|
||||||
SelectionDAG HSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
SelectionDAG HSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
||||||
CurDAG = &HSDAG;
|
CurDAG = &HSDAG;
|
||||||
SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo);
|
SelectionDAGLowering HSDL(HSDAG, TLI, *AA, FuncInfo, GCI);
|
||||||
// Set the current basic block to the mbb we wish to insert the code into
|
// Set the current basic block to the mbb we wish to insert the code into
|
||||||
BB = JTCases[i].first.HeaderBB;
|
BB = JTCases[i].first.HeaderBB;
|
||||||
HSDL.setCurrentBasicBlock(BB);
|
HSDL.setCurrentBasicBlock(BB);
|
||||||
@ -4856,7 +4882,7 @@ void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
|
|||||||
|
|
||||||
SelectionDAG JSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
SelectionDAG JSDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
||||||
CurDAG = &JSDAG;
|
CurDAG = &JSDAG;
|
||||||
SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo);
|
SelectionDAGLowering JSDL(JSDAG, TLI, *AA, FuncInfo, GCI);
|
||||||
// Set the current basic block to the mbb we wish to insert the code into
|
// Set the current basic block to the mbb we wish to insert the code into
|
||||||
BB = JTCases[i].second.MBB;
|
BB = JTCases[i].second.MBB;
|
||||||
JSDL.setCurrentBasicBlock(BB);
|
JSDL.setCurrentBasicBlock(BB);
|
||||||
@ -4904,7 +4930,7 @@ void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF,
|
|||||||
for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
|
for (unsigned i = 0, e = SwitchCases.size(); i != e; ++i) {
|
||||||
SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
SelectionDAG SDAG(TLI, MF, getAnalysisToUpdate<MachineModuleInfo>());
|
||||||
CurDAG = &SDAG;
|
CurDAG = &SDAG;
|
||||||
SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo);
|
SelectionDAGLowering SDL(SDAG, TLI, *AA, FuncInfo, GCI);
|
||||||
|
|
||||||
// Set the current basic block to the mbb we wish to insert the code into
|
// Set the current basic block to the mbb we wish to insert the code into
|
||||||
BB = SwitchCases[i].ThisBB;
|
BB = SwitchCases[i].ThisBB;
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
#include "llvm/Analysis/ConstantsScanner.h"
|
#include "llvm/Analysis/ConstantsScanner.h"
|
||||||
#include "llvm/Analysis/FindUsedTypes.h"
|
#include "llvm/Analysis/FindUsedTypes.h"
|
||||||
#include "llvm/Analysis/LoopInfo.h"
|
#include "llvm/Analysis/LoopInfo.h"
|
||||||
|
#include "llvm/CodeGen/Passes.h"
|
||||||
#include "llvm/CodeGen/IntrinsicLowering.h"
|
#include "llvm/CodeGen/IntrinsicLowering.h"
|
||||||
#include "llvm/Transforms/Scalar.h"
|
#include "llvm/Transforms/Scalar.h"
|
||||||
#include "llvm/Target/TargetMachineRegistry.h"
|
#include "llvm/Target/TargetMachineRegistry.h"
|
||||||
@ -2946,11 +2947,12 @@ bool CTargetMachine::addPassesToEmitWholeFile(PassManager &PM,
|
|||||||
bool Fast) {
|
bool Fast) {
|
||||||
if (FileType != TargetMachine::AssemblyFile) return true;
|
if (FileType != TargetMachine::AssemblyFile) return true;
|
||||||
|
|
||||||
PM.add(createLowerGCPass());
|
PM.add(createGCLoweringPass());
|
||||||
PM.add(createLowerAllocationsPass(true));
|
PM.add(createLowerAllocationsPass(true));
|
||||||
PM.add(createLowerInvokePass());
|
PM.add(createLowerInvokePass());
|
||||||
PM.add(createCFGSimplificationPass()); // clean up after lower invoke.
|
PM.add(createCFGSimplificationPass()); // clean up after lower invoke.
|
||||||
PM.add(new CBackendNameAllUsedStructsAndMergeFunctions());
|
PM.add(new CBackendNameAllUsedStructsAndMergeFunctions());
|
||||||
PM.add(new CWriter(o));
|
PM.add(new CWriter(o));
|
||||||
|
PM.add(createCollectorMetadataDeleter());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
#include "llvm/Support/MathExtras.h"
|
#include "llvm/Support/MathExtras.h"
|
||||||
#include "llvm/Transforms/Scalar.h"
|
#include "llvm/Transforms/Scalar.h"
|
||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
|
#include "llvm/CodeGen/Passes.h"
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
// TargetMachine for the MSIL
|
// TargetMachine for the MSIL
|
||||||
@ -1647,12 +1648,13 @@ bool MSILTarget::addPassesToEmitWholeFile(PassManager &PM, std::ostream &o,
|
|||||||
{
|
{
|
||||||
if (FileType != TargetMachine::AssemblyFile) return true;
|
if (FileType != TargetMachine::AssemblyFile) return true;
|
||||||
MSILWriter* Writer = new MSILWriter(o);
|
MSILWriter* Writer = new MSILWriter(o);
|
||||||
PM.add(createLowerGCPass());
|
PM.add(createGCLoweringPass());
|
||||||
PM.add(createLowerAllocationsPass(true));
|
PM.add(createLowerAllocationsPass(true));
|
||||||
// FIXME: Handle switch trougth native IL instruction "switch"
|
// FIXME: Handle switch trougth native IL instruction "switch"
|
||||||
PM.add(createLowerSwitchPass());
|
PM.add(createLowerSwitchPass());
|
||||||
PM.add(createCFGSimplificationPass());
|
PM.add(createCFGSimplificationPass());
|
||||||
PM.add(new MSILModule(Writer->UsedTypes,Writer->TD));
|
PM.add(new MSILModule(Writer->UsedTypes,Writer->TD));
|
||||||
PM.add(Writer);
|
PM.add(Writer);
|
||||||
|
PM.add(createCollectorMetadataDeleter());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user