index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
CodeGen
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use the new APInt-enabled form of getConstant instead of converting
Dan Gohman
2008-02-29
1
-1
/
+1
*
Added option -align-loops=<true/false> to disable loop aligner pass.
Evan Cheng
2008-02-28
2
-0
/
+7
*
Interface of getByValTypeAlignment differed between
Dale Johannesen
2008-02-28
1
-2
/
+3
*
Fix an assertion message.
Dale Johannesen
2008-02-28
1
-1
/
+1
*
Keep track how many commutes are performed by the scheduler.
Evan Cheng
2008-02-28
1
-0
/
+4
*
implement expand for ISD::DECLARE by just deleting it.
Chris Lattner
2008-02-28
1
-0
/
+3
*
Add a quick and dirty "loop aligner pass". x86 uses it to align its loops to ...
Evan Cheng
2008-02-28
6
-10
/
+92
*
Handle load/store of misaligned vectors that are the
Dale Johannesen
2008-02-27
1
-19
/
+30
*
Fix a bug in dead spill slot elimination.
Evan Cheng
2008-02-27
1
-0
/
+2
*
Remove the `else', at Evan's insistence.
Dan Gohman
2008-02-27
1
-2
/
+1
*
Add a FIXME about the VECTOR_SHUFFLE evil hack.
Duncan Sands
2008-02-27
1
-0
/
+2
*
LegalizeTypes support for EXTRACT_VECTOR_ELT. The
Duncan Sands
2008-02-27
6
-59
/
+363
*
LegalizeTypes support for legalizing the mask
Duncan Sands
2008-02-27
2
-0
/
+56
*
LegalizeTypes support for INSERT_VECTOR_ELT.
Duncan Sands
2008-02-27
3
-6
/
+47
*
Don't track max alignment during stack object allocations since they can be d...
Evan Cheng
2008-02-27
1
-2
/
+1
*
Support for legalizing MEMBARRIER.
Duncan Sands
2008-02-27
3
-2
/
+19
*
Final de-tabification.
Bill Wendling
2008-02-27
2
-2
/
+2
*
Spiller now remove unused spill slots.
Evan Cheng
2008-02-27
5
-22
/
+108
*
Teach Legalize how to expand an EXTRACT_ELEMENT.
Dan Gohman
2008-02-27
1
-0
/
+6
*
Convert the last remaining users of the non-APInt form of
Dan Gohman
2008-02-27
1
-35
/
+15
*
Convert SimplifyDemandedMask and ShrinkDemandedConstant to use APInt.
Dan Gohman
2008-02-27
2
-141
/
+153
*
Use a smallvector for inactiveCounts and initialize it lazily
Chris Lattner
2008-02-26
1
-4
/
+10
*
Rename PrintableName to Name.
Bill Wendling
2008-02-26
13
-40
/
+39
*
Change "Name" to "AsmName" in the target register info. Gee, a refactoring tool
Bill Wendling
2008-02-26
13
-41
/
+44
*
Enable -coalescer-commute-instrs by default.
Evan Cheng
2008-02-26
1
-1
/
+1
*
Avoid aborting on invalid shift counts.
Dan Gohman
2008-02-26
1
-4
/
+18
*
Fix PR2096, a regression introduced with my patch last night. This
Chris Lattner
2008-02-26
1
-1
/
+1
*
Fix a nasty bug in LegalizeTypes (spotted in
Duncan Sands
2008-02-26
6
-60
/
+70
*
De-tabify.
Bill Wendling
2008-02-26
1
-1
/
+1
*
This is possible:
Evan Cheng
2008-02-26
1
-2
/
+8
*
Fix isNegatibleForFree to not return true for ConstantFP nodes
Chris Lattner
2008-02-26
1
-33
/
+47
*
Refactor inline asm constraint matching code out of SDIsel into TargetLowering.
Evan Cheng
2008-02-26
2
-93
/
+17
*
Make some static variables const.
Dan Gohman
2008-02-25
1
-3
/
+3
*
Convert MaskedValueIsZero and all its users to use APInt. Also add
Dan Gohman
2008-02-25
7
-68
/
+97
*
All remat'ed loads cannot be folded into two-address code. Not just argument ...
Evan Cheng
2008-02-25
1
-4
/
+4
*
In debug builds check that the key property holds: all
Duncan Sands
2008-02-25
1
-12
/
+30
*
Correctly determine whether a argument load can be folded into its uses.
Evan Cheng
2008-02-25
1
-45
/
+52
*
Add support to LegalizeTypes for building legal vectors
Duncan Sands
2008-02-24
3
-1
/
+103
*
Some platforms use the same name for 32-bit and 64-bit registers (like
Bill Wendling
2008-02-24
1
-4
/
+4
*
Rematerialization logic was overly conservative when it comes to loads from f...
Evan Cheng
2008-02-23
1
-20
/
+6
*
If remating a machine instr with virtual register operand, make sure the vr i...
Evan Cheng
2008-02-23
1
-2
/
+1
*
Recognize loads of arguments as re-materializable first. Therefore if isReall...
Evan Cheng
2008-02-23
1
-24
/
+26
*
Fix spill weight updating bug.
Evan Cheng
2008-02-23
1
-15
/
+27
*
Same isPhysRegAvailable bug as local register allocator.
Evan Cheng
2008-02-22
1
-1
/
+1
*
Really really bad local register allocator bug. On X86, it was never using ES...
Evan Cheng
2008-02-22
1
-1
/
+1
*
Add debugging printfs.
Evan Cheng
2008-02-22
1
-0
/
+2
*
Make sure reload of implicit uses are issued before remat's.
Evan Cheng
2008-02-22
1
-3
/
+15
*
Pass alignment on ByVal parameters, from FE, all
Dale Johannesen
2008-02-22
1
-0
/
+9
*
Enable re-materialization of instructions which have virtual register operand...
Evan Cheng
2008-02-22
2
-39
/
+187
*
Fix compiler warning.
Evan Cheng
2008-02-22
1
-1
/
+1
[next]