2006-09-04 06:16:09 +02:00
|
|
|
//===-- LLVMTargetMachine.cpp - Implement the LLVMTargetMachine class -----===//
|
|
|
|
//
|
|
|
|
// 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.
|
2006-09-04 06:16:09 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the LLVMTargetMachine class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/PassManager.h"
|
|
|
|
#include "llvm/Pass.h"
|
2007-03-31 02:24:43 +02:00
|
|
|
#include "llvm/Assembly/PrintModulePass.h"
|
2009-08-14 01:48:47 +02:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
2006-09-04 06:16:09 +02:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2008-08-17 14:56:54 +02:00
|
|
|
#include "llvm/CodeGen/GCStrategy.h"
|
2009-07-31 20:16:33 +02:00
|
|
|
#include "llvm/CodeGen/MachineFunctionAnalysis.h"
|
2006-09-04 06:16:09 +02:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2009-08-22 22:48:53 +02:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-07-16 01:48:37 +02:00
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
2006-09-04 06:16:09 +02:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2007-03-31 02:24:43 +02:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2009-07-14 22:18:05 +02:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2006-09-04 06:16:09 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2008-09-25 03:14:49 +02:00
|
|
|
namespace llvm {
|
|
|
|
bool EnableFastISel;
|
|
|
|
}
|
|
|
|
|
2009-11-04 20:57:50 +01:00
|
|
|
static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden,
|
|
|
|
cl::desc("Disable Post Regalloc"));
|
|
|
|
static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
|
|
|
|
cl::desc("Disable branch folding"));
|
|
|
|
static cl::opt<bool> DisableCodePlace("disable-code-place", cl::Hidden,
|
|
|
|
cl::desc("Disable code placement"));
|
|
|
|
static cl::opt<bool> DisableSSC("disable-ssc", cl::Hidden,
|
|
|
|
cl::desc("Disable Stack Slot Coloring"));
|
|
|
|
static cl::opt<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden,
|
|
|
|
cl::desc("Disable Machine LICM"));
|
|
|
|
static cl::opt<bool> DisableMachineSink("disable-machine-sink", cl::Hidden,
|
|
|
|
cl::desc("Disable Machine Sinking"));
|
|
|
|
static cl::opt<bool> DisableLSR("disable-lsr", cl::Hidden,
|
|
|
|
cl::desc("Disable Loop Strength Reduction Pass"));
|
|
|
|
static cl::opt<bool> DisableCGP("disable-cgp", cl::Hidden,
|
|
|
|
cl::desc("Disable Codegen Prepare"));
|
2007-06-19 07:47:49 +02:00
|
|
|
static cl::opt<bool> PrintLSR("print-lsr-output", cl::Hidden,
|
|
|
|
cl::desc("Print LLVM IR produced by the loop-reduce pass"));
|
|
|
|
static cl::opt<bool> PrintISelInput("print-isel-input", cl::Hidden,
|
|
|
|
cl::desc("Print LLVM IR input to isel pass"));
|
2007-07-20 23:56:13 +02:00
|
|
|
static cl::opt<bool> PrintEmittedAsm("print-emitted-asm", cl::Hidden,
|
|
|
|
cl::desc("Dump emitter generated instructions as assembly"));
|
2008-01-07 02:33:09 +01:00
|
|
|
static cl::opt<bool> PrintGCInfo("print-gc", cl::Hidden,
|
|
|
|
cl::desc("Dump garbage collector data"));
|
2009-05-16 02:33:53 +02:00
|
|
|
static cl::opt<bool> VerifyMachineCode("verify-machineinstrs", cl::Hidden,
|
|
|
|
cl::desc("Verify generated machine code"),
|
|
|
|
cl::init(getenv("LLVM_VERIFY_MACHINEINSTRS")!=NULL));
|
2007-06-19 07:47:49 +02:00
|
|
|
|
2008-10-01 22:39:19 +02:00
|
|
|
// Enable or disable FastISel. Both options are needed, because
|
|
|
|
// FastISel is enabled by default with -fast, and we wish to be
|
2009-08-26 17:57:57 +02:00
|
|
|
// able to enable or disable fast-isel independently from -O0.
|
2008-10-08 01:00:56 +02:00
|
|
|
static cl::opt<cl::boolOrDefault>
|
2008-10-01 22:39:19 +02:00
|
|
|
EnableFastISelOption("fast-isel", cl::Hidden,
|
2009-08-26 17:57:57 +02:00
|
|
|
cl::desc("Enable the \"fast\" instruction selector"));
|
2008-09-25 03:14:49 +02:00
|
|
|
|
2009-08-12 09:22:17 +02:00
|
|
|
|
|
|
|
LLVMTargetMachine::LLVMTargetMachine(const Target &T,
|
|
|
|
const std::string &TargetTriple)
|
|
|
|
: TargetMachine(T) {
|
|
|
|
AsmInfo = T.createAsmInfo(TargetTriple);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-02-08 02:36:53 +01:00
|
|
|
FileModel::Model
|
2008-03-11 23:29:46 +01:00
|
|
|
LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
|
2009-07-14 22:18:05 +02:00
|
|
|
formatted_raw_ostream &Out,
|
2007-02-08 02:36:53 +01:00
|
|
|
CodeGenFileType FileType,
|
2009-04-30 01:29:43 +02:00
|
|
|
CodeGenOpt::Level OptLevel) {
|
2008-09-25 02:37:07 +02:00
|
|
|
// Add common CodeGen passes.
|
2009-04-29 02:15:41 +02:00
|
|
|
if (addCommonCodeGenPasses(PM, OptLevel))
|
2007-02-08 02:36:53 +01:00
|
|
|
return FileModel::Error;
|
|
|
|
|
2006-09-04 06:16:09 +02:00
|
|
|
switch (FileType) {
|
2007-02-08 02:36:53 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case TargetMachine::AssemblyFile:
|
2009-04-29 02:15:41 +02:00
|
|
|
if (addAssemblyEmitter(PM, OptLevel, getAsmVerbosityDefault(), Out))
|
2007-02-08 02:36:53 +01:00
|
|
|
return FileModel::Error;
|
|
|
|
return FileModel::AsmFile;
|
|
|
|
case TargetMachine::ObjectFile:
|
|
|
|
if (getMachOWriterInfo())
|
|
|
|
return FileModel::MachOFile;
|
|
|
|
else if (getELFWriterInfo())
|
|
|
|
return FileModel::ElfFile;
|
2006-09-04 06:16:09 +02:00
|
|
|
}
|
2007-02-08 02:36:53 +01:00
|
|
|
|
|
|
|
return FileModel::Error;
|
|
|
|
}
|
2008-09-25 02:37:07 +02:00
|
|
|
|
2009-07-16 01:34:19 +02:00
|
|
|
bool LLVMTargetMachine::addAssemblyEmitter(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
bool Verbose,
|
|
|
|
formatted_raw_ostream &Out) {
|
2009-08-13 21:38:51 +02:00
|
|
|
FunctionPass *Printer =
|
2009-08-22 22:48:53 +02:00
|
|
|
getTarget().createAsmPrinter(Out, *this, getMCAsmInfo(), Verbose);
|
2009-07-16 01:34:19 +02:00
|
|
|
if (!Printer)
|
2009-07-16 01:54:01 +02:00
|
|
|
return true;
|
|
|
|
|
2009-07-16 01:34:19 +02:00
|
|
|
PM.add(Printer);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-02-08 02:36:53 +01:00
|
|
|
/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
|
|
|
|
/// be split up (e.g., to add an object writer pass), this method can be used to
|
|
|
|
/// finish up adding passes to emit the file, if necessary.
|
2008-03-11 23:29:46 +01:00
|
|
|
bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase &PM,
|
2007-02-08 02:36:53 +01:00
|
|
|
MachineCodeEmitter *MCE,
|
2009-04-30 01:29:43 +02:00
|
|
|
CodeGenOpt::Level OptLevel) {
|
2007-02-08 02:36:53 +01:00
|
|
|
if (MCE)
|
2009-07-16 00:33:19 +02:00
|
|
|
addSimpleCodeEmitter(PM, OptLevel, *MCE);
|
|
|
|
if (PrintEmittedAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2008-09-25 02:37:07 +02:00
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
PM.add(createGCInfoDeleter());
|
2007-02-08 02:36:53 +01:00
|
|
|
|
2006-09-04 06:16:09 +02:00
|
|
|
return false; // success!
|
|
|
|
}
|
|
|
|
|
2009-05-30 22:51:52 +02:00
|
|
|
/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
|
|
|
|
/// be split up (e.g., to add an object writer pass), this method can be used to
|
|
|
|
/// finish up adding passes to emit the file, if necessary.
|
|
|
|
bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase &PM,
|
|
|
|
JITCodeEmitter *JCE,
|
|
|
|
CodeGenOpt::Level OptLevel) {
|
|
|
|
if (JCE)
|
2009-07-16 00:33:19 +02:00
|
|
|
addSimpleCodeEmitter(PM, OptLevel, *JCE);
|
|
|
|
if (PrintEmittedAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2009-05-30 22:51:52 +02:00
|
|
|
|
|
|
|
PM.add(createGCInfoDeleter());
|
|
|
|
|
|
|
|
return false; // success!
|
|
|
|
}
|
|
|
|
|
2009-07-06 07:09:34 +02:00
|
|
|
/// addPassesToEmitFileFinish - If the passes to emit the specified file had to
|
|
|
|
/// be split up (e.g., to add an object writer pass), this method can be used to
|
|
|
|
/// finish up adding passes to emit the file, if necessary.
|
|
|
|
bool LLVMTargetMachine::addPassesToEmitFileFinish(PassManagerBase &PM,
|
|
|
|
ObjectCodeEmitter *OCE,
|
|
|
|
CodeGenOpt::Level OptLevel) {
|
|
|
|
if (OCE)
|
2009-07-16 00:33:19 +02:00
|
|
|
addSimpleCodeEmitter(PM, OptLevel, *OCE);
|
|
|
|
if (PrintEmittedAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2009-07-06 07:09:34 +02:00
|
|
|
|
|
|
|
PM.add(createGCInfoDeleter());
|
|
|
|
|
|
|
|
return false; // success!
|
|
|
|
}
|
|
|
|
|
2006-09-04 06:16:09 +02:00
|
|
|
/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
|
|
|
|
/// get machine code emitted. This uses a MachineCodeEmitter object to handle
|
|
|
|
/// actually outputting the machine code and resolving things like the address
|
|
|
|
/// of functions. This method should returns true if machine code emission is
|
|
|
|
/// not supported.
|
|
|
|
///
|
2008-03-11 23:29:46 +01:00
|
|
|
bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
|
2006-09-04 06:16:09 +02:00
|
|
|
MachineCodeEmitter &MCE,
|
2009-04-30 01:29:43 +02:00
|
|
|
CodeGenOpt::Level OptLevel) {
|
2008-09-25 02:37:07 +02:00
|
|
|
// Add common CodeGen passes.
|
2009-04-29 02:15:41 +02:00
|
|
|
if (addCommonCodeGenPasses(PM, OptLevel))
|
2008-09-25 02:37:07 +02:00
|
|
|
return true;
|
|
|
|
|
2009-07-16 00:33:19 +02:00
|
|
|
addCodeEmitter(PM, OptLevel, MCE);
|
|
|
|
if (PrintEmittedAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2008-09-25 02:37:07 +02:00
|
|
|
|
|
|
|
PM.add(createGCInfoDeleter());
|
|
|
|
|
|
|
|
return false; // success!
|
|
|
|
}
|
|
|
|
|
2009-05-30 22:51:52 +02:00
|
|
|
/// addPassesToEmitMachineCode - Add passes to the specified pass manager to
|
|
|
|
/// get machine code emitted. This uses a MachineCodeEmitter object to handle
|
|
|
|
/// actually outputting the machine code and resolving things like the address
|
|
|
|
/// of functions. This method should returns true if machine code emission is
|
|
|
|
/// not supported.
|
|
|
|
///
|
|
|
|
bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
|
|
|
|
JITCodeEmitter &JCE,
|
|
|
|
CodeGenOpt::Level OptLevel) {
|
|
|
|
// Add common CodeGen passes.
|
|
|
|
if (addCommonCodeGenPasses(PM, OptLevel))
|
|
|
|
return true;
|
|
|
|
|
2009-07-16 00:33:19 +02:00
|
|
|
addCodeEmitter(PM, OptLevel, JCE);
|
|
|
|
if (PrintEmittedAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2009-05-30 22:51:52 +02:00
|
|
|
|
|
|
|
PM.add(createGCInfoDeleter());
|
|
|
|
|
|
|
|
return false; // success!
|
|
|
|
}
|
|
|
|
|
2009-05-16 02:33:53 +02:00
|
|
|
static void printAndVerify(PassManagerBase &PM,
|
2009-10-31 21:17:39 +01:00
|
|
|
const char *Banner,
|
2009-05-16 02:33:53 +02:00
|
|
|
bool allowDoubleDefs = false) {
|
|
|
|
if (PrintMachineCode)
|
2009-10-31 21:17:39 +01:00
|
|
|
PM.add(createMachineFunctionPrinterPass(errs(), Banner));
|
2009-05-16 02:33:53 +02:00
|
|
|
|
|
|
|
if (VerifyMachineCode)
|
|
|
|
PM.add(createMachineVerifierPass(allowDoubleDefs));
|
|
|
|
}
|
|
|
|
|
2009-04-30 01:29:43 +02:00
|
|
|
/// addCommonCodeGenPasses - Add standard LLVM codegen passes used for both
|
|
|
|
/// emitting to assembly files or machine code output.
|
2008-09-25 02:37:07 +02:00
|
|
|
///
|
2009-04-29 02:15:41 +02:00
|
|
|
bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM,
|
2009-04-30 01:29:43 +02:00
|
|
|
CodeGenOpt::Level OptLevel) {
|
2006-09-04 06:16:09 +02:00
|
|
|
// Standard LLVM-Level Passes.
|
2008-09-25 02:37:07 +02:00
|
|
|
|
2006-09-04 06:16:09 +02:00
|
|
|
// Run loop strength reduction before anything else.
|
2009-11-04 20:57:50 +01:00
|
|
|
if (OptLevel != CodeGenOpt::None && !DisableLSR) {
|
2007-03-31 06:18:03 +02:00
|
|
|
PM.add(createLoopStrengthReducePass(getTargetLowering()));
|
|
|
|
if (PrintLSR)
|
2008-10-22 05:25:22 +02:00
|
|
|
PM.add(createPrintFunctionPass("\n\n*** Code after LSR ***\n", &errs()));
|
2007-03-31 06:18:03 +02:00
|
|
|
}
|
2008-09-25 02:37:07 +02:00
|
|
|
|
2009-05-22 22:36:31 +02:00
|
|
|
// Turn exception handling constructs into something the code generators can
|
|
|
|
// handle.
|
2009-08-22 22:48:53 +02:00
|
|
|
switch (getMCAsmInfo()->getExceptionHandlingType())
|
2009-08-11 02:09:57 +02:00
|
|
|
{
|
|
|
|
case ExceptionHandling::SjLj:
|
2009-08-17 18:41:22 +02:00
|
|
|
// SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both
|
2009-10-29 01:37:35 +01:00
|
|
|
PM.add(createDwarfEHPass(getTargetLowering(), OptLevel==CodeGenOpt::None));
|
2009-08-17 18:41:22 +02:00
|
|
|
PM.add(createSjLjEHPass(getTargetLowering()));
|
|
|
|
break;
|
2009-08-11 02:09:57 +02:00
|
|
|
case ExceptionHandling::Dwarf:
|
2009-10-29 01:37:35 +01:00
|
|
|
PM.add(createDwarfEHPass(getTargetLowering(), OptLevel==CodeGenOpt::None));
|
2009-08-11 02:09:57 +02:00
|
|
|
break;
|
|
|
|
case ExceptionHandling::None:
|
|
|
|
PM.add(createLowerInvokePass(getTargetLowering()));
|
|
|
|
break;
|
|
|
|
}
|
2009-05-22 22:36:31 +02:00
|
|
|
|
|
|
|
PM.add(createGCLoweringPass());
|
2008-09-25 02:37:07 +02:00
|
|
|
|
2006-09-04 06:16:09 +02:00
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
2007-02-08 02:36:53 +01:00
|
|
|
|
2009-11-04 20:57:50 +01:00
|
|
|
if (OptLevel != CodeGenOpt::None && !DisableCGP)
|
2007-03-31 06:18:03 +02:00
|
|
|
PM.add(createCodeGenPreparePass(getTargetLowering()));
|
|
|
|
|
2008-11-13 02:02:14 +01:00
|
|
|
PM.add(createStackProtectorPass(getTargetLowering()));
|
2008-11-04 03:10:20 +01:00
|
|
|
|
2007-03-31 06:18:03 +02:00
|
|
|
if (PrintISelInput)
|
2008-10-22 01:33:38 +02:00
|
|
|
PM.add(createPrintFunctionPass("\n\n"
|
|
|
|
"*** Final LLVM Code input to ISel ***\n",
|
2008-10-22 05:25:22 +02:00
|
|
|
&errs()));
|
2007-03-31 06:18:03 +02:00
|
|
|
|
2008-09-25 02:37:07 +02:00
|
|
|
// Standard Lower-Level Passes.
|
|
|
|
|
2009-07-31 20:16:33 +02:00
|
|
|
// Set up a MachineFunction for the rest of CodeGen to work on.
|
|
|
|
PM.add(new MachineFunctionAnalysis(*this, OptLevel));
|
|
|
|
|
2008-10-01 22:39:19 +02:00
|
|
|
// Enable FastISel with -fast, but allow that to be overridden.
|
2008-10-08 01:00:56 +02:00
|
|
|
if (EnableFastISelOption == cl::BOU_TRUE ||
|
2009-04-30 01:29:43 +02:00
|
|
|
(OptLevel == CodeGenOpt::None && EnableFastISelOption != cl::BOU_FALSE))
|
2008-10-01 22:39:19 +02:00
|
|
|
EnableFastISel = true;
|
|
|
|
|
2006-09-04 06:16:09 +02:00
|
|
|
// Ask the target for an isel.
|
2009-04-29 02:15:41 +02:00
|
|
|
if (addInstSelector(PM, OptLevel))
|
2006-09-04 06:16:09 +02:00
|
|
|
return true;
|
2007-02-08 02:36:53 +01:00
|
|
|
|
2006-09-04 06:16:09 +02:00
|
|
|
// Print the instruction selected machine code...
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After Instruction Selection",
|
|
|
|
/* allowDoubleDefs= */ true);
|
Initial commit of the machine code LICM pass. It successfully hoists this:
_foo:
li r2, 0
LBB1_1: ; bb
li r5, 0
stw r5, 0(r3)
addi r2, r2, 1
addi r3, r3, 4
cmplw cr0, r2, r4
bne cr0, LBB1_1 ; bb
LBB1_2: ; return
blr
to:
_foo:
li r2, 0
li r5, 0
LBB1_1: ; bb
stw r5, 0(r3)
addi r2, r2, 1
addi r3, r3, 4
cmplw cr0, r2, r4
bne cr0, LBB1_1 ; bb
LBB1_2: ; return
blr
ZOMG!! :-)
Moar to come...
llvm-svn: 44687
2007-12-07 22:42:31 +01:00
|
|
|
|
2009-04-30 01:29:43 +02:00
|
|
|
if (OptLevel != CodeGenOpt::None) {
|
2009-11-04 20:57:50 +01:00
|
|
|
if (!DisableMachineLICM)
|
|
|
|
PM.add(createMachineLICMPass());
|
|
|
|
if (!DisableMachineSink)
|
|
|
|
PM.add(createMachineSinkingPass());
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After MachineLICM and MachineSinking",
|
|
|
|
/* allowDoubleDefs= */ true);
|
2009-02-09 09:45:39 +01:00
|
|
|
}
|
Initial commit of the machine code LICM pass. It successfully hoists this:
_foo:
li r2, 0
LBB1_1: ; bb
li r5, 0
stw r5, 0(r3)
addi r2, r2, 1
addi r3, r3, 4
cmplw cr0, r2, r4
bne cr0, LBB1_1 ; bb
LBB1_2: ; return
blr
to:
_foo:
li r2, 0
li r5, 0
LBB1_1: ; bb
stw r5, 0(r3)
addi r2, r2, 1
addi r3, r3, 4
cmplw cr0, r2, r4
bne cr0, LBB1_1 ; bb
LBB1_2: ; return
blr
ZOMG!! :-)
Moar to come...
llvm-svn: 44687
2007-12-07 22:42:31 +01:00
|
|
|
|
2008-04-23 20:26:03 +02:00
|
|
|
// Run pre-ra passes.
|
2009-05-16 02:33:53 +02:00
|
|
|
if (addPreRegAlloc(PM, OptLevel))
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After PreRegAlloc passes",
|
|
|
|
/* allowDoubleDefs= */ true);
|
2008-04-23 20:26:03 +02:00
|
|
|
|
2008-06-04 11:18:41 +02:00
|
|
|
// Perform register allocation.
|
2006-09-04 06:16:09 +02:00
|
|
|
PM.add(createRegisterAllocator());
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After Register Allocation");
|
2008-06-04 11:18:41 +02:00
|
|
|
|
|
|
|
// Perform stack slot coloring.
|
2009-11-04 20:57:50 +01:00
|
|
|
if (OptLevel != CodeGenOpt::None && !DisableSSC) {
|
2009-08-05 09:26:17 +02:00
|
|
|
// FIXME: Re-enable coloring with register when it's capable of adding
|
|
|
|
// kill markers.
|
|
|
|
PM.add(createStackSlotColoringPass(false));
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After StackSlotColoring");
|
|
|
|
}
|
2008-09-25 02:37:07 +02:00
|
|
|
|
2008-06-04 11:18:41 +02:00
|
|
|
// Run post-ra passes.
|
2009-05-16 02:33:53 +02:00
|
|
|
if (addPostRegAlloc(PM, OptLevel))
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After PostRegAlloc passes");
|
2008-09-25 02:37:07 +02:00
|
|
|
|
2007-07-27 09:36:14 +02:00
|
|
|
PM.add(createLowerSubregsPass());
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After LowerSubregs");
|
2007-02-08 02:36:53 +01:00
|
|
|
|
2006-09-04 06:16:09 +02:00
|
|
|
// Insert prolog/epilog code. Eliminate abstract frame index references...
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After PrologEpilogCodeInserter");
|
2008-09-25 02:37:07 +02:00
|
|
|
|
2009-09-30 10:49:50 +02:00
|
|
|
// Run pre-sched2 passes.
|
|
|
|
if (addPreSched2(PM, OptLevel))
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After PreSched2 passes");
|
2009-09-30 10:49:50 +02:00
|
|
|
|
2007-07-13 19:13:54 +02:00
|
|
|
// Second pass scheduler.
|
2009-11-04 20:57:50 +01:00
|
|
|
if (OptLevel != CodeGenOpt::None && !DisablePostRA) {
|
2009-10-16 23:06:15 +02:00
|
|
|
PM.add(createPostRAScheduler(OptLevel));
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After PostRAScheduler");
|
2008-11-20 20:54:21 +01:00
|
|
|
}
|
|
|
|
|
2008-12-18 02:36:42 +01:00
|
|
|
// Branch folding must be run after regalloc and prolog/epilog insertion.
|
2009-11-04 20:57:50 +01:00
|
|
|
if (OptLevel != CodeGenOpt::None && !DisableBranchFold) {
|
2009-10-28 21:46:46 +01:00
|
|
|
PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
|
2009-10-31 21:17:39 +01:00
|
|
|
printAndVerify(PM, "After BranchFolding");
|
2009-05-16 02:33:53 +02:00
|
|
|
}
|
2008-12-18 02:36:42 +01:00
|
|
|
|
2008-01-07 02:33:09 +01:00
|
|
|
PM.add(createGCMachineCodeAnalysisPass());
|
2008-09-25 02:37:07 +02:00
|
|
|
|
2008-01-07 02:33:09 +01:00
|
|
|
if (PrintGCInfo)
|
2009-08-23 05:13:20 +02:00
|
|
|
PM.add(createGCInfoPrinter(errs()));
|
2007-02-08 02:36:53 +01:00
|
|
|
|
2009-10-31 21:17:39 +01:00
|
|
|
// Fold redundant debug labels.
|
|
|
|
PM.add(createDebugLabelFoldingPass());
|
|
|
|
printAndVerify(PM, "After DebugLabelFolding");
|
|
|
|
|
2009-11-04 20:57:50 +01:00
|
|
|
if (OptLevel != CodeGenOpt::None && !DisableCodePlace) {
|
2009-10-31 21:17:39 +01:00
|
|
|
PM.add(createCodePlacementOptPass());
|
|
|
|
printAndVerify(PM, "After CodePlacementOpt");
|
|
|
|
}
|
|
|
|
|
2009-11-05 02:16:59 +01:00
|
|
|
if (addPreEmitPass(PM, OptLevel))
|
|
|
|
printAndVerify(PM, "After PreEmit passes");
|
|
|
|
|
2008-09-25 02:37:07 +02:00
|
|
|
return false;
|
2006-09-04 06:16:09 +02:00
|
|
|
}
|