Chris Lattner | aa4c91f | 2003-12-28 07:59:53 +0000 | [diff] [blame] | 1 | //===-- Passes.cpp - Target independent code generation passes ------------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Alkis Evlogimenos | 7237ece | 2003-10-02 16:57:49 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file defines interfaces to access the target independent code |
| 11 | // generation passes provided by the LLVM backend. |
| 12 | // |
| 13 | //===---------------------------------------------------------------------===// |
| 14 | |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/Passes.h" |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/Passes.h" |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/GCStrategy.h" |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineFunctionPass.h" |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/RegAllocRegistry.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 20 | #include "llvm/IR/IRPrintingPasses.h" |
| 21 | #include "llvm/IR/Verifier.h" |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 22 | #include "llvm/MC/MCAsmInfo.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 23 | #include "llvm/PassManager.h" |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 24 | #include "llvm/Support/CommandLine.h" |
| 25 | #include "llvm/Support/Debug.h" |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 26 | #include "llvm/Support/ErrorHandling.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetLowering.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 28 | #include "llvm/Target/TargetSubtargetInfo.h" |
| 29 | #include "llvm/Transforms/Scalar.h" |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 30 | |
Chris Lattner | aa4c91f | 2003-12-28 07:59:53 +0000 | [diff] [blame] | 31 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 32 | |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 33 | static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden, |
| 34 | cl::desc("Disable Post Regalloc")); |
| 35 | static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden, |
| 36 | cl::desc("Disable branch folding")); |
| 37 | static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden, |
| 38 | cl::desc("Disable tail duplication")); |
| 39 | static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden, |
| 40 | cl::desc("Disable pre-register allocation tail duplication")); |
Chandler Carruth | 9e67db4 | 2012-04-16 13:49:17 +0000 | [diff] [blame] | 41 | static cl::opt<bool> DisableBlockPlacement("disable-block-placement", |
Benjamin Kramer | 74a4533 | 2013-03-29 17:14:24 +0000 | [diff] [blame] | 42 | cl::Hidden, cl::desc("Disable probability-driven block placement")); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 43 | static cl::opt<bool> EnableBlockPlacementStats("enable-block-placement-stats", |
| 44 | cl::Hidden, cl::desc("Collect probability-driven block placement stats")); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 45 | static cl::opt<bool> DisableSSC("disable-ssc", cl::Hidden, |
| 46 | cl::desc("Disable Stack Slot Coloring")); |
| 47 | static cl::opt<bool> DisableMachineDCE("disable-machine-dce", cl::Hidden, |
| 48 | cl::desc("Disable Machine Dead Code Elimination")); |
Jakob Stoklund Olesen | 0d141f8 | 2012-10-03 00:51:32 +0000 | [diff] [blame] | 49 | static cl::opt<bool> DisableEarlyIfConversion("disable-early-ifcvt", cl::Hidden, |
| 50 | cl::desc("Disable Early If-conversion")); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 51 | static cl::opt<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden, |
| 52 | cl::desc("Disable Machine LICM")); |
| 53 | static cl::opt<bool> DisableMachineCSE("disable-machine-cse", cl::Hidden, |
| 54 | cl::desc("Disable Machine Common Subexpression Elimination")); |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 55 | static cl::opt<cl::boolOrDefault> |
| 56 | OptimizeRegAlloc("optimize-regalloc", cl::Hidden, |
| 57 | cl::desc("Enable optimized register allocation compilation path.")); |
Andrew Trick | 746f24b | 2012-02-11 07:11:32 +0000 | [diff] [blame] | 58 | static cl::opt<cl::boolOrDefault> |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 59 | EnableMachineSched("enable-misched", |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 60 | cl::desc("Enable the machine instruction scheduling pass.")); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 61 | static cl::opt<bool> DisablePostRAMachineLICM("disable-postra-machine-licm", |
| 62 | cl::Hidden, |
| 63 | cl::desc("Disable Machine LICM")); |
| 64 | static cl::opt<bool> DisableMachineSink("disable-machine-sink", cl::Hidden, |
| 65 | cl::desc("Disable Machine Sinking")); |
| 66 | static cl::opt<bool> DisableLSR("disable-lsr", cl::Hidden, |
| 67 | cl::desc("Disable Loop Strength Reduction Pass")); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 68 | static cl::opt<bool> DisableConstantHoisting("disable-constant-hoisting", |
| 69 | cl::Hidden, cl::desc("Disable ConstantHoisting")); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 70 | static cl::opt<bool> DisableCGP("disable-cgp", cl::Hidden, |
| 71 | cl::desc("Disable Codegen Prepare")); |
| 72 | static cl::opt<bool> DisableCopyProp("disable-copyprop", cl::Hidden, |
Evan Cheng | 01b623c | 2012-02-20 23:28:17 +0000 | [diff] [blame] | 73 | cl::desc("Disable Copy Propagation pass")); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 74 | static cl::opt<bool> PrintLSR("print-lsr-output", cl::Hidden, |
| 75 | cl::desc("Print LLVM IR produced by the loop-reduce pass")); |
| 76 | static cl::opt<bool> PrintISelInput("print-isel-input", cl::Hidden, |
| 77 | cl::desc("Print LLVM IR input to isel pass")); |
| 78 | static cl::opt<bool> PrintGCInfo("print-gc", cl::Hidden, |
| 79 | cl::desc("Dump garbage collector data")); |
| 80 | static cl::opt<bool> VerifyMachineCode("verify-machineinstrs", cl::Hidden, |
| 81 | cl::desc("Verify generated machine code"), |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 82 | cl::init(getenv("LLVM_VERIFY_MACHINEINSTRS")!=nullptr)); |
Bob Wilson | 6e1b812 | 2012-05-30 00:17:12 +0000 | [diff] [blame] | 83 | static cl::opt<std::string> |
| 84 | PrintMachineInstrs("print-machineinstrs", cl::ValueOptional, |
| 85 | cl::desc("Print machine instrs"), |
| 86 | cl::value_desc("pass-name"), cl::init("option-unspecified")); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 87 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 88 | // Temporary option to allow experimenting with MachineScheduler as a post-RA |
| 89 | // scheduler. Targets can "properly" enable this with |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 90 | // substitutePass(&PostRASchedulerID, &PostMachineSchedulerID); Ideally it |
| 91 | // wouldn't be part of the standard pass pipeline, and the target would just add |
| 92 | // a PostRA scheduling pass wherever it wants. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 93 | static cl::opt<bool> MISchedPostRA("misched-postra", cl::Hidden, |
| 94 | cl::desc("Run MachineScheduler post regalloc (independent of preRA sched)")); |
| 95 | |
Cameron Zwarich | d7c7a68 | 2013-02-10 06:42:34 +0000 | [diff] [blame] | 96 | // Experimental option to run live interval analysis early. |
Jakob Stoklund Olesen | dcc4436 | 2012-08-03 22:12:54 +0000 | [diff] [blame] | 97 | static cl::opt<bool> EarlyLiveIntervals("early-live-intervals", cl::Hidden, |
| 98 | cl::desc("Run live interval analysis earlier in the pipeline")); |
| 99 | |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 100 | /// Allow standard passes to be disabled by command line options. This supports |
| 101 | /// simple binary flags that either suppress the pass or do nothing. |
| 102 | /// i.e. -disable-mypass=false has no effect. |
| 103 | /// These should be converted to boolOrDefault in order to use applyOverride. |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 104 | static IdentifyingPassPtr applyDisable(IdentifyingPassPtr PassID, |
| 105 | bool Override) { |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 106 | if (Override) |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 107 | return IdentifyingPassPtr(); |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 108 | return PassID; |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | /// Allow Pass selection to be overriden by command line options. This supports |
| 112 | /// flags with ternary conditions. TargetID is passed through by default. The |
| 113 | /// pass is suppressed when the option is false. When the option is true, the |
| 114 | /// StandardID is selected if the target provides no default. |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 115 | static IdentifyingPassPtr applyOverride(IdentifyingPassPtr TargetID, |
| 116 | cl::boolOrDefault Override, |
| 117 | AnalysisID StandardID) { |
Andrew Trick | 746f24b | 2012-02-11 07:11:32 +0000 | [diff] [blame] | 118 | switch (Override) { |
| 119 | case cl::BOU_UNSET: |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 120 | return TargetID; |
Andrew Trick | 746f24b | 2012-02-11 07:11:32 +0000 | [diff] [blame] | 121 | case cl::BOU_TRUE: |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 122 | if (TargetID.isValid()) |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 123 | return TargetID; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 124 | if (StandardID == nullptr) |
Andrew Trick | 746f24b | 2012-02-11 07:11:32 +0000 | [diff] [blame] | 125 | report_fatal_error("Target cannot enable pass"); |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 126 | return StandardID; |
Andrew Trick | 746f24b | 2012-02-11 07:11:32 +0000 | [diff] [blame] | 127 | case cl::BOU_FALSE: |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 128 | return IdentifyingPassPtr(); |
Andrew Trick | 746f24b | 2012-02-11 07:11:32 +0000 | [diff] [blame] | 129 | } |
| 130 | llvm_unreachable("Invalid command line option state"); |
| 131 | } |
| 132 | |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 133 | /// Allow standard passes to be disabled by the command line, regardless of who |
| 134 | /// is adding the pass. |
| 135 | /// |
| 136 | /// StandardID is the pass identified in the standard pass pipeline and provided |
| 137 | /// to addPass(). It may be a target-specific ID in the case that the target |
| 138 | /// directly adds its own pass, but in that case we harmlessly fall through. |
| 139 | /// |
| 140 | /// TargetID is the pass that the target has configured to override StandardID. |
| 141 | /// |
| 142 | /// StandardID may be a pseudo ID. In that case TargetID is the name of the real |
| 143 | /// pass to run. This allows multiple options to control a single pass depending |
| 144 | /// on where in the pipeline that pass is added. |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 145 | static IdentifyingPassPtr overridePass(AnalysisID StandardID, |
| 146 | IdentifyingPassPtr TargetID) { |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 147 | if (StandardID == &PostRASchedulerID) |
| 148 | return applyDisable(TargetID, DisablePostRA); |
| 149 | |
| 150 | if (StandardID == &BranchFolderPassID) |
| 151 | return applyDisable(TargetID, DisableBranchFold); |
| 152 | |
| 153 | if (StandardID == &TailDuplicateID) |
| 154 | return applyDisable(TargetID, DisableTailDuplicate); |
| 155 | |
| 156 | if (StandardID == &TargetPassConfig::EarlyTailDuplicateID) |
| 157 | return applyDisable(TargetID, DisableEarlyTailDup); |
| 158 | |
| 159 | if (StandardID == &MachineBlockPlacementID) |
Benjamin Kramer | 74a4533 | 2013-03-29 17:14:24 +0000 | [diff] [blame] | 160 | return applyDisable(TargetID, DisableBlockPlacement); |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 161 | |
| 162 | if (StandardID == &StackSlotColoringID) |
| 163 | return applyDisable(TargetID, DisableSSC); |
| 164 | |
| 165 | if (StandardID == &DeadMachineInstructionElimID) |
| 166 | return applyDisable(TargetID, DisableMachineDCE); |
| 167 | |
Jakob Stoklund Olesen | 33242fd | 2012-07-04 00:09:54 +0000 | [diff] [blame] | 168 | if (StandardID == &EarlyIfConverterID) |
Jakob Stoklund Olesen | 0d141f8 | 2012-10-03 00:51:32 +0000 | [diff] [blame] | 169 | return applyDisable(TargetID, DisableEarlyIfConversion); |
Jakob Stoklund Olesen | 33242fd | 2012-07-04 00:09:54 +0000 | [diff] [blame] | 170 | |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 171 | if (StandardID == &MachineLICMID) |
| 172 | return applyDisable(TargetID, DisableMachineLICM); |
| 173 | |
| 174 | if (StandardID == &MachineCSEID) |
| 175 | return applyDisable(TargetID, DisableMachineCSE); |
| 176 | |
| 177 | if (StandardID == &MachineSchedulerID) |
| 178 | return applyOverride(TargetID, EnableMachineSched, StandardID); |
| 179 | |
| 180 | if (StandardID == &TargetPassConfig::PostRAMachineLICMID) |
| 181 | return applyDisable(TargetID, DisablePostRAMachineLICM); |
| 182 | |
| 183 | if (StandardID == &MachineSinkingID) |
| 184 | return applyDisable(TargetID, DisableMachineSink); |
| 185 | |
| 186 | if (StandardID == &MachineCopyPropagationID) |
| 187 | return applyDisable(TargetID, DisableCopyProp); |
| 188 | |
| 189 | return TargetID; |
| 190 | } |
| 191 | |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 192 | //===---------------------------------------------------------------------===// |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 193 | /// TargetPassConfig |
| 194 | //===---------------------------------------------------------------------===// |
| 195 | |
| 196 | INITIALIZE_PASS(TargetPassConfig, "targetpassconfig", |
| 197 | "Target Pass Configuration", false, false) |
| 198 | char TargetPassConfig::ID = 0; |
| 199 | |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 200 | // Pseudo Pass IDs. |
| 201 | char TargetPassConfig::EarlyTailDuplicateID = 0; |
| 202 | char TargetPassConfig::PostRAMachineLICMID = 0; |
| 203 | |
Andrew Trick | 5e108ee | 2012-02-15 03:21:47 +0000 | [diff] [blame] | 204 | namespace llvm { |
| 205 | class PassConfigImpl { |
| 206 | public: |
| 207 | // List of passes explicitly substituted by this target. Normally this is |
| 208 | // empty, but it is a convenient way to suppress or replace specific passes |
| 209 | // that are part of a standard pass pipeline without overridding the entire |
| 210 | // pipeline. This mechanism allows target options to inherit a standard pass's |
| 211 | // user interface. For example, a target may disable a standard pass by |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 212 | // default by substituting a pass ID of zero, and the user may still enable |
| 213 | // that standard pass with an explicit command line option. |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 214 | DenseMap<AnalysisID,IdentifyingPassPtr> TargetPasses; |
Bob Wilson | 6e1b812 | 2012-05-30 00:17:12 +0000 | [diff] [blame] | 215 | |
| 216 | /// Store the pairs of <AnalysisID, AnalysisID> of which the second pass |
| 217 | /// is inserted after each instance of the first one. |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 218 | SmallVector<std::pair<AnalysisID, IdentifyingPassPtr>, 4> InsertedPasses; |
Andrew Trick | 5e108ee | 2012-02-15 03:21:47 +0000 | [diff] [blame] | 219 | }; |
| 220 | } // namespace llvm |
| 221 | |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 222 | // Out of line virtual method. |
Andrew Trick | 5e108ee | 2012-02-15 03:21:47 +0000 | [diff] [blame] | 223 | TargetPassConfig::~TargetPassConfig() { |
| 224 | delete Impl; |
| 225 | } |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 226 | |
Andrew Trick | 61f1e3d | 2012-02-08 21:22:48 +0000 | [diff] [blame] | 227 | // Out of line constructor provides default values for pass options and |
| 228 | // registers all common codegen passes. |
Andrew Trick | 061efcf | 2012-02-04 02:56:59 +0000 | [diff] [blame] | 229 | TargetPassConfig::TargetPassConfig(TargetMachine *tm, PassManagerBase &pm) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 230 | : ImmutablePass(ID), PM(&pm), StartAfter(nullptr), StopAfter(nullptr), |
| 231 | Started(true), Stopped(false), TM(tm), Impl(nullptr), Initialized(false), |
Andrew Trick | ffea03f | 2012-02-08 21:22:39 +0000 | [diff] [blame] | 232 | DisableVerify(false), |
| 233 | EnableTailMerge(true) { |
| 234 | |
Andrew Trick | 5e108ee | 2012-02-15 03:21:47 +0000 | [diff] [blame] | 235 | Impl = new PassConfigImpl(); |
| 236 | |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 237 | // Register all target independent codegen passes to activate their PassIDs, |
| 238 | // including this pass itself. |
| 239 | initializeCodeGen(*PassRegistry::getPassRegistry()); |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 240 | |
| 241 | // Substitute Pseudo Pass IDs for real ones. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 242 | substitutePass(&EarlyTailDuplicateID, &TailDuplicateID); |
| 243 | substitutePass(&PostRAMachineLICMID, &MachineLICMID); |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 244 | |
| 245 | // Temporarily disable experimental passes. |
Andrew Trick | ad1cc1d | 2012-11-13 08:47:29 +0000 | [diff] [blame] | 246 | const TargetSubtargetInfo &ST = TM->getSubtarget<TargetSubtargetInfo>(); |
Andrew Trick | b6ac11c | 2013-09-26 05:53:35 +0000 | [diff] [blame] | 247 | if (!ST.useMachineScheduler()) |
Andrew Trick | ad1cc1d | 2012-11-13 08:47:29 +0000 | [diff] [blame] | 248 | disablePass(&MachineSchedulerID); |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 249 | } |
| 250 | |
Bob Wilson | 6e1b812 | 2012-05-30 00:17:12 +0000 | [diff] [blame] | 251 | /// Insert InsertedPassID pass after TargetPassID. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 252 | void TargetPassConfig::insertPass(AnalysisID TargetPassID, |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 253 | IdentifyingPassPtr InsertedPassID) { |
Benjamin Kramer | fdca221 | 2013-04-11 11:57:01 +0000 | [diff] [blame] | 254 | assert(((!InsertedPassID.isInstance() && |
| 255 | TargetPassID != InsertedPassID.getID()) || |
| 256 | (InsertedPassID.isInstance() && |
| 257 | TargetPassID != InsertedPassID.getInstance()->getPassID())) && |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 258 | "Insert a pass after itself!"); |
| 259 | std::pair<AnalysisID, IdentifyingPassPtr> P(TargetPassID, InsertedPassID); |
Bob Wilson | 6e1b812 | 2012-05-30 00:17:12 +0000 | [diff] [blame] | 260 | Impl->InsertedPasses.push_back(P); |
| 261 | } |
| 262 | |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 263 | /// createPassConfig - Create a pass configuration object to be used by |
| 264 | /// addPassToEmitX methods for generating a pipeline of CodeGen passes. |
| 265 | /// |
| 266 | /// Targets may override this to extend TargetPassConfig. |
Andrew Trick | 061efcf | 2012-02-04 02:56:59 +0000 | [diff] [blame] | 267 | TargetPassConfig *LLVMTargetMachine::createPassConfig(PassManagerBase &PM) { |
| 268 | return new TargetPassConfig(this, PM); |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | TargetPassConfig::TargetPassConfig() |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 272 | : ImmutablePass(ID), PM(nullptr) { |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 273 | llvm_unreachable("TargetPassConfig should not be constructed on-the-fly"); |
| 274 | } |
| 275 | |
Andrew Trick | ffea03f | 2012-02-08 21:22:39 +0000 | [diff] [blame] | 276 | // Helper to verify the analysis is really immutable. |
| 277 | void TargetPassConfig::setOpt(bool &Opt, bool Val) { |
| 278 | assert(!Initialized && "PassConfig is immutable"); |
| 279 | Opt = Val; |
| 280 | } |
| 281 | |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 282 | void TargetPassConfig::substitutePass(AnalysisID StandardID, |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 283 | IdentifyingPassPtr TargetID) { |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 284 | Impl->TargetPasses[StandardID] = TargetID; |
Andrew Trick | 5e108ee | 2012-02-15 03:21:47 +0000 | [diff] [blame] | 285 | } |
Andrew Trick | 746f24b | 2012-02-11 07:11:32 +0000 | [diff] [blame] | 286 | |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 287 | IdentifyingPassPtr TargetPassConfig::getPassSubstitution(AnalysisID ID) const { |
| 288 | DenseMap<AnalysisID, IdentifyingPassPtr>::const_iterator |
Andrew Trick | 5e108ee | 2012-02-15 03:21:47 +0000 | [diff] [blame] | 289 | I = Impl->TargetPasses.find(ID); |
| 290 | if (I == Impl->TargetPasses.end()) |
| 291 | return ID; |
| 292 | return I->second; |
| 293 | } |
| 294 | |
Bob Wilson | 30a507a | 2012-07-02 19:48:45 +0000 | [diff] [blame] | 295 | /// Add a pass to the PassManager if that pass is supposed to be run. If the |
| 296 | /// Started/Stopped flags indicate either that the compilation should start at |
| 297 | /// a later pass or that it should stop after an earlier pass, then do not add |
| 298 | /// the pass. Finally, compare the current pass against the StartAfter |
| 299 | /// and StopAfter options and change the Started/Stopped flags accordingly. |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 300 | void TargetPassConfig::addPass(Pass *P) { |
Bob Wilson | 6b2bb15 | 2012-07-02 19:48:39 +0000 | [diff] [blame] | 301 | assert(!Initialized && "PassConfig is immutable"); |
| 302 | |
Chandler Carruth | 6068c48 | 2012-07-02 22:56:41 +0000 | [diff] [blame] | 303 | // Cache the Pass ID here in case the pass manager finds this pass is |
| 304 | // redundant with ones already scheduled / available, and deletes it. |
| 305 | // Fundamentally, once we add the pass to the manager, we no longer own it |
| 306 | // and shouldn't reference it. |
| 307 | AnalysisID PassID = P->getPassID(); |
| 308 | |
Bob Wilson | 30a507a | 2012-07-02 19:48:45 +0000 | [diff] [blame] | 309 | if (Started && !Stopped) |
| 310 | PM->add(P); |
Benjamin Kramer | f8e16c6 | 2013-08-05 11:11:11 +0000 | [diff] [blame] | 311 | else |
| 312 | delete P; |
Chandler Carruth | 6068c48 | 2012-07-02 22:56:41 +0000 | [diff] [blame] | 313 | if (StopAfter == PassID) |
Bob Wilson | 30a507a | 2012-07-02 19:48:45 +0000 | [diff] [blame] | 314 | Stopped = true; |
Chandler Carruth | 6068c48 | 2012-07-02 22:56:41 +0000 | [diff] [blame] | 315 | if (StartAfter == PassID) |
Bob Wilson | 30a507a | 2012-07-02 19:48:45 +0000 | [diff] [blame] | 316 | Started = true; |
| 317 | if (Stopped && !Started) |
| 318 | report_fatal_error("Cannot stop compilation after pass that is not run"); |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Andrew Trick | 5e108ee | 2012-02-15 03:21:47 +0000 | [diff] [blame] | 321 | /// Add a CodeGen pass at this point in the pipeline after checking for target |
| 322 | /// and command line overrides. |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 323 | /// |
| 324 | /// addPass cannot return a pointer to the pass instance because is internal the |
| 325 | /// PassManager and the instance we create here may already be freed. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 326 | AnalysisID TargetPassConfig::addPass(AnalysisID PassID) { |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 327 | IdentifyingPassPtr TargetID = getPassSubstitution(PassID); |
| 328 | IdentifyingPassPtr FinalPtr = overridePass(PassID, TargetID); |
| 329 | if (!FinalPtr.isValid()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 330 | return nullptr; |
Andrew Trick | 5e108ee | 2012-02-15 03:21:47 +0000 | [diff] [blame] | 331 | |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 332 | Pass *P; |
| 333 | if (FinalPtr.isInstance()) |
| 334 | P = FinalPtr.getInstance(); |
| 335 | else { |
| 336 | P = Pass::createPass(FinalPtr.getID()); |
| 337 | if (!P) |
| 338 | llvm_unreachable("Pass ID not registered"); |
| 339 | } |
| 340 | AnalysisID FinalID = P->getPassID(); |
| 341 | addPass(P); // Ends the lifetime of P. |
| 342 | |
Bob Wilson | 6e1b812 | 2012-05-30 00:17:12 +0000 | [diff] [blame] | 343 | // Add the passes after the pass P if there is any. |
Craig Topper | f22fd3f | 2013-07-03 05:11:49 +0000 | [diff] [blame] | 344 | for (SmallVectorImpl<std::pair<AnalysisID, IdentifyingPassPtr> >::iterator |
Bob Wilson | 6e1b812 | 2012-05-30 00:17:12 +0000 | [diff] [blame] | 345 | I = Impl->InsertedPasses.begin(), E = Impl->InsertedPasses.end(); |
| 346 | I != E; ++I) { |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 347 | if ((*I).first == PassID) { |
Andrew Trick | 5ed0283 | 2013-04-10 01:06:56 +0000 | [diff] [blame] | 348 | assert((*I).second.isValid() && "Illegal Pass ID!"); |
| 349 | Pass *NP; |
| 350 | if ((*I).second.isInstance()) |
| 351 | NP = (*I).second.getInstance(); |
| 352 | else { |
| 353 | NP = Pass::createPass((*I).second.getID()); |
| 354 | assert(NP && "Pass ID not registered"); |
| 355 | } |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 356 | addPass(NP); |
Bob Wilson | 6e1b812 | 2012-05-30 00:17:12 +0000 | [diff] [blame] | 357 | } |
| 358 | } |
Andrew Trick | 5e108ee | 2012-02-15 03:21:47 +0000 | [diff] [blame] | 359 | return FinalID; |
Andrew Trick | 061efcf | 2012-02-04 02:56:59 +0000 | [diff] [blame] | 360 | } |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 361 | |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 362 | void TargetPassConfig::printAndVerify(const char *Banner) { |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 363 | if (TM->shouldPrintMachineCode()) |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 364 | addPass(createMachineFunctionPrinterPass(dbgs(), Banner)); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 365 | |
| 366 | if (VerifyMachineCode) |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 367 | addPass(createMachineVerifierPass(Banner)); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Andrew Trick | 061efcf | 2012-02-04 02:56:59 +0000 | [diff] [blame] | 370 | /// Add common target configurable passes that perform LLVM IR to IR transforms |
| 371 | /// following machine independent optimization. |
| 372 | void TargetPassConfig::addIRPasses() { |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 373 | // Basic AliasAnalysis support. |
| 374 | // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that |
| 375 | // BasicAliasAnalysis wins if they disagree. This is intended to help |
| 376 | // support "obvious" type-punning idioms. |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 377 | addPass(createTypeBasedAliasAnalysisPass()); |
| 378 | addPass(createBasicAliasAnalysisPass()); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 379 | |
| 380 | // Before running any passes, run the verifier to determine if the input |
| 381 | // coming from the front-end and/or optimizer is valid. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 382 | if (!DisableVerify) { |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 383 | addPass(createVerifierPass()); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 384 | addPass(createDebugInfoVerifierPass()); |
| 385 | } |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 386 | |
| 387 | // Run loop strength reduction before anything else. |
| 388 | if (getOptLevel() != CodeGenOpt::None && !DisableLSR) { |
Chandler Carruth | e4ba75f | 2013-01-07 14:41:08 +0000 | [diff] [blame] | 389 | addPass(createLoopStrengthReducePass()); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 390 | if (PrintLSR) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 391 | addPass(createPrintFunctionPass(dbgs(), "\n\n*** Code after LSR ***\n")); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 394 | addPass(createGCLoweringPass()); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 395 | |
| 396 | // Make sure that no unreachable blocks are instruction selected. |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 397 | addPass(createUnreachableBlockEliminationPass()); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 398 | |
| 399 | // Prepare expensive constants for SelectionDAG. |
| 400 | if (getOptLevel() != CodeGenOpt::None && !DisableConstantHoisting) |
| 401 | addPass(createConstantHoistingPass()); |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | /// Turn exception handling constructs into something the code generators can |
| 405 | /// handle. |
| 406 | void TargetPassConfig::addPassesToHandleExceptions() { |
| 407 | switch (TM->getMCAsmInfo()->getExceptionHandlingType()) { |
| 408 | case ExceptionHandling::SjLj: |
| 409 | // SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both |
| 410 | // Dwarf EH prepare needs to be run after SjLj prepare. Otherwise, |
| 411 | // catch info can get misplaced when a selector ends up more than one block |
| 412 | // removed from the parent invoke(s). This could happen when a landing |
| 413 | // pad is shared by multiple invokes and is also a target of a normal |
| 414 | // edge from elsewhere. |
Bill Wendling | ea44281 | 2013-06-19 20:51:24 +0000 | [diff] [blame] | 415 | addPass(createSjLjEHPreparePass(TM)); |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 416 | // FALLTHROUGH |
| 417 | case ExceptionHandling::DwarfCFI: |
| 418 | case ExceptionHandling::ARM: |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 419 | case ExceptionHandling::WinEH: |
Bill Wendling | ea44281 | 2013-06-19 20:51:24 +0000 | [diff] [blame] | 420 | addPass(createDwarfEHPass(TM)); |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 421 | break; |
| 422 | case ExceptionHandling::None: |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 423 | addPass(createLowerInvokePass()); |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 424 | |
| 425 | // The lower invoke pass may create unreachable code. Remove it. |
| 426 | addPass(createUnreachableBlockEliminationPass()); |
| 427 | break; |
| 428 | } |
Andrew Trick | 061efcf | 2012-02-04 02:56:59 +0000 | [diff] [blame] | 429 | } |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 430 | |
Bill Wendling | 08510b1 | 2012-11-30 22:08:55 +0000 | [diff] [blame] | 431 | /// Add pass to prepare the LLVM IR for code generation. This should be done |
| 432 | /// before exception handling preparation passes. |
| 433 | void TargetPassConfig::addCodeGenPrepare() { |
| 434 | if (getOptLevel() != CodeGenOpt::None && !DisableCGP) |
Bill Wendling | f9fd58a | 2013-06-19 21:07:11 +0000 | [diff] [blame] | 435 | addPass(createCodeGenPreparePass(TM)); |
Bill Wendling | 08510b1 | 2012-11-30 22:08:55 +0000 | [diff] [blame] | 436 | } |
| 437 | |
Andrew Trick | 061efcf | 2012-02-04 02:56:59 +0000 | [diff] [blame] | 438 | /// Add common passes that perform LLVM IR to IR transforms in preparation for |
| 439 | /// instruction selection. |
| 440 | void TargetPassConfig::addISelPrepare() { |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 441 | addPreISel(); |
| 442 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 443 | // Need to verify DebugInfo *before* creating the stack protector analysis. |
| 444 | // It's a function pass, and verifying between it and its users causes a |
| 445 | // crash. |
| 446 | if (!DisableVerify) |
| 447 | addPass(createDebugInfoVerifierPass()); |
| 448 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 449 | addPass(createStackProtectorPass(TM)); |
| 450 | |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 451 | if (PrintISelInput) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 452 | addPass(createPrintFunctionPass( |
| 453 | dbgs(), "\n\n*** Final LLVM Code input to ISel ***\n")); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 454 | |
| 455 | // All passes which modify the LLVM IR are now complete; run the verifier |
| 456 | // to ensure that the IR is valid. |
| 457 | if (!DisableVerify) |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 458 | addPass(createVerifierPass()); |
Andrew Trick | 061efcf | 2012-02-04 02:56:59 +0000 | [diff] [blame] | 459 | } |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 460 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 461 | /// Add the complete set of target-independent postISel code generator passes. |
| 462 | /// |
| 463 | /// This can be read as the standard order of major LLVM CodeGen stages. Stages |
| 464 | /// with nontrivial configuration or multiple passes are broken out below in |
| 465 | /// add%Stage routines. |
| 466 | /// |
| 467 | /// Any TargetPassConfig::addXX routine may be overriden by the Target. The |
| 468 | /// addPre/Post methods with empty header implementations allow injecting |
| 469 | /// target-specific fixups just before or after major stages. Additionally, |
| 470 | /// targets have the flexibility to change pass order within a stage by |
| 471 | /// overriding default implementation of add%Stage routines below. Each |
| 472 | /// technique has maintainability tradeoffs because alternate pass orders are |
| 473 | /// not well supported. addPre/Post works better if the target pass is easily |
| 474 | /// tied to a common pass. But if it has subtle dependencies on multiple passes, |
Andrew Trick | 06efdd2 | 2012-02-10 07:08:25 +0000 | [diff] [blame] | 475 | /// the target should override the stage instead. |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 476 | /// |
| 477 | /// TODO: We could use a single addPre/Post(ID) hook to allow pass injection |
| 478 | /// before/after any target-independent pass. But it's currently overkill. |
Andrew Trick | 061efcf | 2012-02-04 02:56:59 +0000 | [diff] [blame] | 479 | void TargetPassConfig::addMachinePasses() { |
Bob Wilson | 6e1b812 | 2012-05-30 00:17:12 +0000 | [diff] [blame] | 480 | // Insert a machine instr printer pass after the specified pass. |
| 481 | // If -print-machineinstrs specified, print machineinstrs after all passes. |
| 482 | if (StringRef(PrintMachineInstrs.getValue()).equals("")) |
| 483 | TM->Options.PrintMachineCode = true; |
| 484 | else if (!StringRef(PrintMachineInstrs.getValue()) |
| 485 | .equals("option-unspecified")) { |
| 486 | const PassRegistry *PR = PassRegistry::getPassRegistry(); |
| 487 | const PassInfo *TPI = PR->getPassInfo(PrintMachineInstrs.getValue()); |
| 488 | const PassInfo *IPI = PR->getPassInfo(StringRef("print-machineinstrs")); |
| 489 | assert (TPI && IPI && "Pass ID not registered!"); |
Roman Divacky | 5932429 | 2012-09-05 22:26:57 +0000 | [diff] [blame] | 490 | const char *TID = (const char *)(TPI->getTypeInfo()); |
| 491 | const char *IID = (const char *)(IPI->getTypeInfo()); |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 492 | insertPass(TID, IID); |
Bob Wilson | 6e1b812 | 2012-05-30 00:17:12 +0000 | [diff] [blame] | 493 | } |
| 494 | |
Jakob Stoklund Olesen | f86c00f | 2012-07-04 19:28:27 +0000 | [diff] [blame] | 495 | // Print the instruction selected machine code... |
| 496 | printAndVerify("After Instruction Selection"); |
| 497 | |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 498 | // Expand pseudo-instructions emitted by ISel. |
Jakob Stoklund Olesen | 228e3f5 | 2012-08-20 20:52:08 +0000 | [diff] [blame] | 499 | if (addPass(&ExpandISelPseudosID)) |
| 500 | printAndVerify("After ExpandISelPseudos"); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 501 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 502 | // Add passes that optimize machine instructions in SSA form. |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 503 | if (getOptLevel() != CodeGenOpt::None) { |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 504 | addMachineSSAOptimization(); |
Craig Topper | 8f54a53 | 2012-11-19 00:11:50 +0000 | [diff] [blame] | 505 | } else { |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 506 | // If the target requests it, assign local variables to stack slots relative |
| 507 | // to one another and simplify frame index references where possible. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 508 | addPass(&LocalStackSlotAllocationID); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | // Run pre-ra passes. |
| 512 | if (addPreRegAlloc()) |
| 513 | printAndVerify("After PreRegAlloc passes"); |
| 514 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 515 | // Run register allocation and passes that are tightly coupled with it, |
| 516 | // including phi elimination and scheduling. |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 517 | if (getOptimizeRegAlloc()) |
| 518 | addOptimizedRegAlloc(createRegAllocPass(true)); |
| 519 | else |
| 520 | addFastRegAlloc(createRegAllocPass(false)); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 521 | |
| 522 | // Run post-ra passes. |
| 523 | if (addPostRegAlloc()) |
| 524 | printAndVerify("After PostRegAlloc passes"); |
| 525 | |
| 526 | // Insert prolog/epilog code. Eliminate abstract frame index references... |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 527 | addPass(&PrologEpilogCodeInserterID); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 528 | printAndVerify("After PrologEpilogCodeInserter"); |
| 529 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 530 | /// Add passes that optimize machine instructions after register allocation. |
| 531 | if (getOptLevel() != CodeGenOpt::None) |
| 532 | addMachineLateOptimization(); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 533 | |
| 534 | // Expand pseudo instructions before second scheduling pass. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 535 | addPass(&ExpandPostRAPseudosID); |
Jakob Stoklund Olesen | 2ef5bf6 | 2012-03-28 20:49:30 +0000 | [diff] [blame] | 536 | printAndVerify("After ExpandPostRAPseudos"); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 537 | |
| 538 | // Run pre-sched2 passes. |
| 539 | if (addPreSched2()) |
Jakob Stoklund Olesen | 7881166 | 2012-03-28 23:31:15 +0000 | [diff] [blame] | 540 | printAndVerify("After PreSched2 passes"); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 541 | |
| 542 | // Second pass scheduler. |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 543 | if (getOptLevel() != CodeGenOpt::None) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 544 | if (MISchedPostRA) |
| 545 | addPass(&PostMachineSchedulerID); |
| 546 | else |
| 547 | addPass(&PostRASchedulerID); |
Jakob Stoklund Olesen | 8b4c502 | 2012-03-28 23:54:28 +0000 | [diff] [blame] | 548 | printAndVerify("After PostRAScheduler"); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 549 | } |
| 550 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 551 | // GC |
Evan Cheng | ab37b2c | 2012-12-21 02:57:04 +0000 | [diff] [blame] | 552 | if (addGCPasses()) { |
| 553 | if (PrintGCInfo) |
| 554 | addPass(createGCInfoPrinter(dbgs())); |
| 555 | } |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 556 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 557 | // Basic block placement. |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 558 | if (getOptLevel() != CodeGenOpt::None) |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 559 | addBlockPlacement(); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 560 | |
| 561 | if (addPreEmitPass()) |
Jakob Stoklund Olesen | 8b4c502 | 2012-03-28 23:54:28 +0000 | [diff] [blame] | 562 | printAndVerify("After PreEmit passes"); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 563 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 564 | addPass(&StackMapLivenessID); |
Andrew Trick | d542265 | 2012-02-04 02:56:48 +0000 | [diff] [blame] | 565 | } |
| 566 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 567 | /// Add passes that optimize machine instructions in SSA form. |
| 568 | void TargetPassConfig::addMachineSSAOptimization() { |
| 569 | // Pre-ra tail duplication. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 570 | if (addPass(&EarlyTailDuplicateID)) |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 571 | printAndVerify("After Pre-RegAlloc TailDuplicate"); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 572 | |
| 573 | // Optimize PHIs before DCE: removing dead PHI cycles may make more |
| 574 | // instructions dead. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 575 | addPass(&OptimizePHIsID); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 576 | |
Nadav Rotem | c05d306 | 2012-09-06 09:17:37 +0000 | [diff] [blame] | 577 | // This pass merges large allocas. StackSlotColoring is a different pass |
| 578 | // which merges spill slots. |
| 579 | addPass(&StackColoringID); |
| 580 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 581 | // If the target requests it, assign local variables to stack slots relative |
| 582 | // to one another and simplify frame index references where possible. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 583 | addPass(&LocalStackSlotAllocationID); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 584 | |
| 585 | // With optimization, dead code should already be eliminated. However |
| 586 | // there is one known exception: lowered code for arguments that are only |
| 587 | // used by tail calls, where the tail calls reuse the incoming stack |
| 588 | // arguments directly (see t11 in test/CodeGen/X86/sibcall.ll). |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 589 | addPass(&DeadMachineInstructionElimID); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 590 | printAndVerify("After codegen DCE pass"); |
| 591 | |
Jakob Stoklund Olesen | 02c6325 | 2013-01-17 00:58:38 +0000 | [diff] [blame] | 592 | // Allow targets to insert passes that improve instruction level parallelism, |
| 593 | // like if-conversion. Such passes will typically need dominator trees and |
| 594 | // loop info, just like LICM and CSE below. |
| 595 | if (addILPOpts()) |
| 596 | printAndVerify("After ILP optimizations"); |
| 597 | |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 598 | addPass(&MachineLICMID); |
| 599 | addPass(&MachineCSEID); |
| 600 | addPass(&MachineSinkingID); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 601 | printAndVerify("After Machine LICM, CSE and Sinking passes"); |
| 602 | |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 603 | addPass(&PeepholeOptimizerID); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 604 | printAndVerify("After codegen peephole optimization pass"); |
| 605 | } |
| 606 | |
Andrew Trick | 7461334 | 2012-02-04 02:56:45 +0000 | [diff] [blame] | 607 | //===---------------------------------------------------------------------===// |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 608 | /// Register Allocation Pass Configuration |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 609 | //===---------------------------------------------------------------------===// |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 610 | |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 611 | bool TargetPassConfig::getOptimizeRegAlloc() const { |
| 612 | switch (OptimizeRegAlloc) { |
| 613 | case cl::BOU_UNSET: return getOptLevel() != CodeGenOpt::None; |
| 614 | case cl::BOU_TRUE: return true; |
| 615 | case cl::BOU_FALSE: return false; |
| 616 | } |
| 617 | llvm_unreachable("Invalid optimize-regalloc state"); |
| 618 | } |
| 619 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 620 | /// RegisterRegAlloc's global Registry tracks allocator registration. |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 621 | MachinePassRegistry RegisterRegAlloc::Registry; |
| 622 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 623 | /// A dummy default pass factory indicates whether the register allocator is |
| 624 | /// overridden on the command line. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 625 | static FunctionPass *useDefaultRegisterAllocator() { return nullptr; } |
Jakob Stoklund Olesen | 700bfad | 2010-05-27 23:57:25 +0000 | [diff] [blame] | 626 | static RegisterRegAlloc |
| 627 | defaultRegAlloc("default", |
| 628 | "pick register allocator based on -O option", |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 629 | useDefaultRegisterAllocator); |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 630 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 631 | /// -regalloc=... command line option. |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 632 | static cl::opt<RegisterRegAlloc::FunctionPassCtor, false, |
| 633 | RegisterPassParser<RegisterRegAlloc> > |
| 634 | RegAlloc("regalloc", |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 635 | cl::init(&useDefaultRegisterAllocator), |
Jakob Stoklund Olesen | 700bfad | 2010-05-27 23:57:25 +0000 | [diff] [blame] | 636 | cl::desc("Register allocator to use")); |
Alkis Evlogimenos | 7237ece | 2003-10-02 16:57:49 +0000 | [diff] [blame] | 637 | |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 638 | |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 639 | /// Instantiate the default register allocator pass for this target for either |
| 640 | /// the optimized or unoptimized allocation path. This will be added to the pass |
| 641 | /// manager by addFastRegAlloc in the unoptimized case or addOptimizedRegAlloc |
| 642 | /// in the optimized case. |
| 643 | /// |
| 644 | /// A target that uses the standard regalloc pass order for fast or optimized |
| 645 | /// allocation may still override this for per-target regalloc |
| 646 | /// selection. But -regalloc=... always takes precedence. |
| 647 | FunctionPass *TargetPassConfig::createTargetRegisterAllocator(bool Optimized) { |
| 648 | if (Optimized) |
| 649 | return createGreedyRegisterAllocator(); |
| 650 | else |
| 651 | return createFastRegisterAllocator(); |
| 652 | } |
| 653 | |
| 654 | /// Find and instantiate the register allocation pass requested by this target |
| 655 | /// at the current optimization level. Different register allocators are |
| 656 | /// defined as separate passes because they may require different analysis. |
| 657 | /// |
| 658 | /// This helper ensures that the regalloc= option is always available, |
| 659 | /// even for targets that override the default allocator. |
| 660 | /// |
| 661 | /// FIXME: When MachinePassRegistry register pass IDs instead of function ptrs, |
| 662 | /// this can be folded into addPass. |
| 663 | FunctionPass *TargetPassConfig::createRegAllocPass(bool Optimized) { |
Jim Laskey | 9ff542f | 2006-08-01 18:29:48 +0000 | [diff] [blame] | 664 | RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault(); |
Jakob Stoklund Olesen | 700bfad | 2010-05-27 23:57:25 +0000 | [diff] [blame] | 665 | |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 666 | // Initialize the global default. |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 667 | if (!Ctor) { |
Jim Laskey | eb577ba | 2006-08-02 12:30:23 +0000 | [diff] [blame] | 668 | Ctor = RegAlloc; |
| 669 | RegisterRegAlloc::setDefault(RegAlloc); |
Jim Laskey | 13ec702 | 2006-08-01 14:21:23 +0000 | [diff] [blame] | 670 | } |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 671 | if (Ctor != useDefaultRegisterAllocator) |
Jakob Stoklund Olesen | 700bfad | 2010-05-27 23:57:25 +0000 | [diff] [blame] | 672 | return Ctor(); |
| 673 | |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 674 | // With no -regalloc= override, ask the target for a regalloc pass. |
| 675 | return createTargetRegisterAllocator(Optimized); |
| 676 | } |
| 677 | |
| 678 | /// Add the minimum set of target-independent passes that are required for |
| 679 | /// register allocation. No coalescing or scheduling. |
| 680 | void TargetPassConfig::addFastRegAlloc(FunctionPass *RegAllocPass) { |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 681 | addPass(&PHIEliminationID); |
| 682 | addPass(&TwoAddressInstructionPassID); |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 683 | |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 684 | addPass(RegAllocPass); |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 685 | printAndVerify("After Register Allocation"); |
Jim Laskey | 33a0a6d | 2006-07-27 20:05:00 +0000 | [diff] [blame] | 686 | } |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 687 | |
| 688 | /// Add standard target-independent passes that are tightly coupled with |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 689 | /// optimized register allocation, including coalescing, machine instruction |
| 690 | /// scheduling, and register allocation itself. |
| 691 | void TargetPassConfig::addOptimizedRegAlloc(FunctionPass *RegAllocPass) { |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 692 | addPass(&ProcessImplicitDefsID); |
Jakob Stoklund Olesen | 5984d2b | 2012-06-25 18:12:18 +0000 | [diff] [blame] | 693 | |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 694 | // LiveVariables currently requires pure SSA form. |
| 695 | // |
| 696 | // FIXME: Once TwoAddressInstruction pass no longer uses kill flags, |
| 697 | // LiveVariables can be removed completely, and LiveIntervals can be directly |
| 698 | // computed. (We still either need to regenerate kill flags after regalloc, or |
| 699 | // preferably fix the scavenger to not depend on them). |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 700 | addPass(&LiveVariablesID); |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 701 | |
Rafael Espindola | 67b2882 | 2013-10-14 16:39:04 +0000 | [diff] [blame] | 702 | // Edge splitting is smarter with machine loop info. |
| 703 | addPass(&MachineLoopInfoID); |
| 704 | addPass(&PHIEliminationID); |
Jakob Stoklund Olesen | dcc4436 | 2012-08-03 22:12:54 +0000 | [diff] [blame] | 705 | |
| 706 | // Eventually, we want to run LiveIntervals before PHI elimination. |
| 707 | if (EarlyLiveIntervals) |
| 708 | addPass(&LiveIntervalsID); |
| 709 | |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 710 | addPass(&TwoAddressInstructionPassID); |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 711 | addPass(&RegisterCoalescerID); |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 712 | |
| 713 | // PreRA instruction scheduling. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 714 | if (addPass(&MachineSchedulerID)) |
Andrew Trick | 17d35e5 | 2012-03-14 04:00:41 +0000 | [diff] [blame] | 715 | printAndVerify("After Machine Scheduling"); |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 716 | |
| 717 | // Add the selected register allocation pass. |
Bob Wilson | 564fbf6 | 2012-07-02 19:48:31 +0000 | [diff] [blame] | 718 | addPass(RegAllocPass); |
Jakob Stoklund Olesen | 34f5a2b | 2012-06-26 17:09:29 +0000 | [diff] [blame] | 719 | printAndVerify("After Register Allocation, before rewriter"); |
| 720 | |
| 721 | // Allow targets to change the register assignments before rewriting. |
| 722 | if (addPreRewrite()) |
| 723 | printAndVerify("After pre-rewrite passes"); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 724 | |
Jakob Stoklund Olesen | 05ec712 | 2012-06-08 23:44:45 +0000 | [diff] [blame] | 725 | // Finally rewrite virtual registers. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 726 | addPass(&VirtRegRewriterID); |
Jakob Stoklund Olesen | 05ec712 | 2012-06-08 23:44:45 +0000 | [diff] [blame] | 727 | printAndVerify("After Virtual Register Rewriter"); |
| 728 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 729 | // Perform stack slot coloring and post-ra machine LICM. |
Andrew Trick | 8dd2625 | 2012-02-10 04:10:36 +0000 | [diff] [blame] | 730 | // |
| 731 | // FIXME: Re-enable coloring with register when it's capable of adding |
| 732 | // kill markers. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 733 | addPass(&StackSlotColoringID); |
Andrew Trick | 900d7b7 | 2012-02-15 07:57:03 +0000 | [diff] [blame] | 734 | |
| 735 | // Run post-ra machine LICM to hoist reloads / remats. |
| 736 | // |
| 737 | // FIXME: can this move into MachineLateOptimization? |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 738 | addPass(&PostRAMachineLICMID); |
Andrew Trick | 900d7b7 | 2012-02-15 07:57:03 +0000 | [diff] [blame] | 739 | |
| 740 | printAndVerify("After StackSlotColoring and postra Machine LICM"); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 741 | } |
| 742 | |
| 743 | //===---------------------------------------------------------------------===// |
| 744 | /// Post RegAlloc Pass Configuration |
| 745 | //===---------------------------------------------------------------------===// |
| 746 | |
| 747 | /// Add passes that optimize machine instructions after register allocation. |
| 748 | void TargetPassConfig::addMachineLateOptimization() { |
| 749 | // Branch folding must be run after regalloc and prolog/epilog insertion. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 750 | if (addPass(&BranchFolderPassID)) |
Jakob Stoklund Olesen | 663ee20 | 2012-03-28 20:47:37 +0000 | [diff] [blame] | 751 | printAndVerify("After BranchFolding"); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 752 | |
| 753 | // Tail duplication. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 754 | // Note that duplicating tail just increases code size and degrades |
| 755 | // performance for targets that require Structured Control Flow. |
| 756 | // In addition it can also make CFG irreducible. Thus we disable it. |
| 757 | if (!TM->requiresStructuredCFG() && addPass(&TailDuplicateID)) |
Jakob Stoklund Olesen | 663ee20 | 2012-03-28 20:47:37 +0000 | [diff] [blame] | 758 | printAndVerify("After TailDuplicate"); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 759 | |
| 760 | // Copy propagation. |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 761 | if (addPass(&MachineCopyPropagationID)) |
Jakob Stoklund Olesen | 663ee20 | 2012-03-28 20:47:37 +0000 | [diff] [blame] | 762 | printAndVerify("After copy propagation pass"); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 763 | } |
| 764 | |
Evan Cheng | ab37b2c | 2012-12-21 02:57:04 +0000 | [diff] [blame] | 765 | /// Add standard GC passes. |
| 766 | bool TargetPassConfig::addGCPasses() { |
| 767 | addPass(&GCMachineCodeAnalysisID); |
| 768 | return true; |
| 769 | } |
| 770 | |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 771 | /// Add standard basic block placement passes. |
| 772 | void TargetPassConfig::addBlockPlacement() { |
Benjamin Kramer | 74a4533 | 2013-03-29 17:14:24 +0000 | [diff] [blame] | 773 | if (addPass(&MachineBlockPlacementID)) { |
Andrew Trick | 79bf288 | 2012-02-15 03:21:51 +0000 | [diff] [blame] | 774 | // Run a separate pass to collect block placement statistics. |
| 775 | if (EnableBlockPlacementStats) |
Bob Wilson | 3fb99a7 | 2012-07-02 19:48:37 +0000 | [diff] [blame] | 776 | addPass(&MachineBlockPlacementStatsID); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 777 | |
Jakob Stoklund Olesen | 8b4c502 | 2012-03-28 23:54:28 +0000 | [diff] [blame] | 778 | printAndVerify("After machine block placement."); |
Andrew Trick | f7b9631 | 2012-02-09 00:40:55 +0000 | [diff] [blame] | 779 | } |
| 780 | } |