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
/
LLVMTargetMachine.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Stop using the dom frontier in DwarfEHPrepare by not promoting alloca's
Duncan Sands
2010-08-31
1
-1
/
+1
*
Move enabling the local stack allocation pass into the target where it belongs.
Jim Grosbach
2010-08-24
1
-15
/
+3
*
Add a local stack object block allocation pass. This is still an
Jim Grosbach
2010-08-14
1
-0
/
+16
*
tidy up whitespace a bit
Jim Grosbach
2010-08-13
1
-7
/
+6
*
Merge the OptimizeExts and OptimizeCmps passes into one PeepholeOptimizer
Bill Wendling
2010-08-09
1
-2
/
+1
*
Add the Optimize Compares pass (disabled by default).
Bill Wendling
2010-08-06
1
-0
/
+1
*
Remove double-def checking from MachineVerifier, so a register does not have to
Jakob Stoklund Olesen
2010-08-05
1
-13
/
+7
*
The lower invoke pass needs to have unreachable code elimination run after it
Bill Wendling
2010-08-04
1
-2
/
+4
*
The EH prepare passes really want to be the last passes run before code-gen.
Bill Wendling
2010-08-04
1
-5
/
+5
*
Plug the remaining MC leaks by giving MCObjectStreamer/MCAsmStreamer ownershi...
Benjamin Kramer
2010-07-29
1
-4
/
+0
*
Add hook to insert late LLVM=>LLVM passes just before isel
Anton Korobeynikov
2010-07-24
1
-0
/
+2
*
Initial modifications to MCAssembler and TargetMachine for the MCJIT.
Reid Kleckner
2010-07-22
1
-0
/
+18
*
Reapply bottom-up fast-isel, with several fixes for x86-32:
Dan Gohman
2010-07-10
1
-12
/
+8
*
--- Reverse-merging r107947 into '.':
Bob Wilson
2010-07-09
1
-8
/
+12
*
Re-apply bottom-up fast-isel, with fixes. Be very careful to avoid emitting
Dan Gohman
2010-07-09
1
-12
/
+8
*
Revert 107840 107839 107813 107804 107800 107797 107791.
Dan Gohman
2010-07-08
1
-8
/
+12
*
Implement bottom-up fast-isel. This has the advantage of not requiring
Dan Gohman
2010-07-07
1
-12
/
+8
*
Temporarily disable on-demand fast-isel.
Dan Gohman
2010-07-01
1
-8
/
+12
*
Fast isel no longer needs DeadMachineInstrElim to clean up after it.
Dan Gohman
2010-07-01
1
-12
/
+8
*
Add some comments.
Dan Gohman
2010-06-24
1
-0
/
+7
*
Add a -regalloc=default option that chooses a register allocator based on the -O
Jakob Stoklund Olesen
2010-05-27
1
-1
/
+1
*
MC: Add TargetMachine support for setting the value of MCRelaxAll with
Daniel Dunbar
2010-05-26
1
-2
/
+4
*
MC: Add an MCLoggingStreamer, for use in debugging integrated-as mismatches.
Daniel Dunbar
2010-05-23
1
-1
/
+6
*
llc (et al): Add support for --show-encoding and --show-inst.
Daniel Dunbar
2010-05-18
1
-1
/
+13
*
XFAIL the test I added with vg_leak, apparently it is the first and only llc
Daniel Dunbar
2010-05-14
1
-0
/
+2
*
Code that needs a TargetMachine should have access to one directly, rather
Dan Gohman
2010-04-19
1
-2
/
+2
*
Fix codegen passes. -disable-ssc shouldn't disable postra machine licm.
Evan Cheng
2010-04-17
1
-5
/
+11
*
Enable post regalloc machine licm by default.
Evan Cheng
2010-04-12
1
-5
/
+1
*
Remove late ARM codegen optimization pass committed by accident.
Anton Korobeynikov
2010-04-07
1
-2
/
+0
*
Add hook to insert late LLVM=>LLVM passes just before isel
Anton Korobeynikov
2010-04-07
1
-0
/
+2
*
Post regalloc LICM. Work in progress.
Evan Cheng
2010-04-07
1
-0
/
+7
*
Momentous day: remove the "O" member from AsmPrinter. Now all
Chris Lattner
2010-04-04
1
-16
/
+1
*
fix an ugly wart in the MCInstPrinter api where the
Chris Lattner
2010-04-04
1
-1
/
+1
*
rearrange MCContext ownership. Before LLVMTargetMachine created it
Chris Lattner
2010-03-13
1
-18
/
+23
*
make the mangler take an MCContext instead of an MAI.
Chris Lattner
2010-03-12
1
-4
/
+2
*
remove MAI argument from createAsmStreamer since it
Chris Lattner
2010-03-12
1
-1
/
+1
*
change MCContext to always have an MCAsmInfo.
Chris Lattner
2010-03-11
1
-2
/
+2
*
MC: Provide MCAssembler with a TargetAsmBackend.
Daniel Dunbar
2010-03-11
1
-4
/
+5
*
Enable machine cse pass.
Evan Cheng
2010-03-10
1
-5
/
+1
*
Revert accidental commit.
Evan Cheng
2010-03-09
1
-1
/
+1
*
- Make the machine cse dumb coalescer (as opposed to the more awesome simple
Evan Cheng
2010-03-09
1
-2
/
+2
*
We don't really care about correct register liveness information after the
Jakob Stoklund Olesen
2010-03-05
1
-4
/
+10
*
Run machine licm before machine cse to avoid messing up licm opportunities.
Evan Cheng
2010-03-04
1
-2
/
+2
*
Rename -machine-cse to -enable-machine-cse.
Evan Cheng
2010-03-04
1
-1
/
+1
*
Add an option to enable machine cse (it's not doing anything yet.
Evan Cheng
2010-03-03
1
-0
/
+5
*
Add a flag to addPassesToEmit* to disable the Verifier pass run
Dan Gohman
2010-02-28
1
-8
/
+18
*
Remove unused "NoPRE" parameter in GVN and createGVNPass().
Bob Wilson
2010-02-26
1
-1
/
+1
*
Besides removing phi cycles that reduce to a single value, also remove dead
Bob Wilson
2010-02-13
1
-1
/
+4
*
give MCCodeEmitters access to the current MCContext.
Chris Lattner
2010-02-12
1
-1
/
+1
*
Reapply the new LoopStrengthReduction code, with compile time and
Dan Gohman
2010-02-12
1
-0
/
+4
[next]