index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
Passes.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add braces around || in && to pacify GCC.
Benjamin Kramer
2013-04-11
1
-4
/
+4
*
Generalize the PassConfig API and remove addFinalizeRegAlloc().
Andrew Trick
2013-04-10
1
-36
/
+50
*
Remove the old CodePlacementOpt pass.
Benjamin Kramer
2013-03-29
1
-18
/
+3
*
Remove unused #includes.
Bill Wendling
2013-03-05
1
-1
/
+0
*
Fix a typo.
Cameron Zwarich
2013-02-10
1
-1
/
+1
*
Provide a place for targets to insert ILP optimization passes.
Jakob Stoklund Olesen
2013-01-17
1
-4
/
+6
*
Switch the SCEV expander and LoopStrengthReduce to use
Chandler Carruth
2013-01-07
1
-1
/
+1
*
Add targets to skip running the GC passes.
Evan Cheng
2012-12-21
1
-3
/
+10
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-7
/
+7
*
Replace r168930 with a more reasonable patch.
Bill Wendling
2012-11-30
1
-3
/
+7
*
Move else onto line with preceding closing brace.
Craig Topper
2012-11-19
1
-2
/
+1
*
misched: Allow subtargets to enable misched and dependent options.
Andrew Trick
2012-11-13
1
-1
/
+4
*
revert r166264 because the LTO build is still failing
Nadav Rotem
2012-10-19
1
-2
/
+2
*
recommit the patch that makes LSR and LowerInvoke use the TargetTransform int...
Nadav Rotem
2012-10-19
1
-2
/
+2
*
Temporarily revert the TargetTransform changes.
Bob Wilson
2012-10-18
1
-2
/
+2
*
Add a new interface to allow IR-level passes to access codegen-specific infor...
Nadav Rotem
2012-10-10
1
-2
/
+2
*
The early if conversion pass is ready to be used as an opt-in.
Jakob Stoklund Olesen
2012-10-03
1
-3
/
+3
*
Add a new optimization pass: Stack Coloring, that merges disjoint static allo...
Nadav Rotem
2012-09-06
1
-0
/
+4
*
Stop casting away const qualifier needlessly.
Roman Divacky
2012-09-05
1
-2
/
+2
*
Add a verification pass after ExpandISelPseudos.
Jakob Stoklund Olesen
2012-08-20
1
-1
/
+2
*
Add an experimental -early-live-intervals option.
Jakob Stoklund Olesen
2012-08-03
1
-0
/
+9
*
Make sure -print-machineinstrs applies to the first pass as well.
Jakob Stoklund Olesen
2012-07-04
1
-3
/
+3
*
Add an experimental early if-conversion pass, off by default.
Jakob Stoklund Olesen
2012-07-04
1
-0
/
+9
*
All glory to address sanitizer. ;]
Chandler Carruth
2012-07-02
1
-2
/
+8
*
Extend TargetPassConfig to allow running only a subset of the normal passes.
Bob Wilson
2012-07-02
1
-3
/
+15
*
Move assertion with TargetPassConfig's Initialized flag.
Bob Wilson
2012-07-02
1
-2
/
+2
*
Consistently use AnalysisID types in TargetPassConfig.
Bob Wilson
2012-07-02
1
-61
/
+59
*
Add all codegen passes to the PassManager via TargetPassConfig.
Bob Wilson
2012-07-02
1
-20
/
+53
*
Allow targets to inject passes before the virtual register rewriter.
Jakob Stoklund Olesen
2012-06-26
1
-1
/
+5
*
Run ProcessImplicitDefs on SSA form where it can be much simpler.
Jakob Stoklund Olesen
2012-06-25
1
-6
/
+2
*
Reintroduce VirtRegRewriter.
Jakob Stoklund Olesen
2012-06-08
1
-0
/
+4
*
Add an insertPass API to TargetPassConfig. <rdar://problem/11498613>
Bob Wilson
2012-05-30
1
-0
/
+42
*
Change the PassManager from a reference to a pointer.
Bill Wendling
2012-05-01
1
-21
/
+21
*
Flip the new block-placement pass to be on by default.
Chandler Carruth
2012-04-16
1
-6
/
+7
*
Enable machine code verification in the entire code generator.
Jakob Stoklund Olesen
2012-03-28
1
-8
/
+3
*
Enable machine code verification after PreSched2 passes.
Jakob Stoklund Olesen
2012-03-28
1
-1
/
+1
*
Also verify after ExpandPostRAPseudos.
Jakob Stoklund Olesen
2012-03-28
1
-1
/
+1
*
Enable machine code verification after the late machine optimization passes.
Jakob Stoklund Olesen
2012-03-28
1
-3
/
+3
*
misched: implemented a framework for top-down or bottom-up scheduling.
Andrew Trick
2012-03-14
1
-1
/
+2
*
Fix machine-cp by having it to check sub-register indicies. e.g.
Evan Cheng
2012-02-20
1
-1
/
+1
*
Disable machine copy propagation for now. It's known to be buggy (PR11940) an...
Benjamin Kramer
2012-02-16
1
-1
/
+1
*
Revert r150565 again. Appears to be a stage2 failure with dragonegg.
Andrew Trick
2012-02-15
1
-6
/
+8
*
Reapply r150565 with the typo fix properly merged.
Andrew Trick
2012-02-15
1
-8
/
+6
*
reverting r150565. Premature push.
Andrew Trick
2012-02-15
1
-6
/
+8
*
Move PostRAMachineLICM into MachineLateOptimization. It now runs after PEI!
Andrew Trick
2012-02-15
1
-8
/
+6
*
Allow CodeGen (llc) command line options to work as expected.
Andrew Trick
2012-02-15
1
-52
/
+114
*
Added TargetPassConfig::disablePass/substitutePass as a general mechanism to ...
Andrew Trick
2012-02-15
1
-6
/
+42
*
Add TargetPassConfig hooks for scheduling/bundling.
Andrew Trick
2012-02-11
1
-3
/
+41
*
comment grammar
Andrew Trick
2012-02-10
1
-1
/
+1
*
RegAlloc superpass: includes phi elimination, coalescing, and scheduling.
Andrew Trick
2012-02-10
1
-36
/
+113
[next]