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
/
SelectionDAG
/
LegalizeDAG.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Allow the lowering of ISD::GLOBAL_OFFSET_TABLE.
Lauro Ramos Venancio
2007-04-20
1
-1
/
+1
*
Implement "general dynamic", "initial exec" and "local exec" TLS models for
Lauro Ramos Venancio
2007-04-20
1
-0
/
+2
*
1. Insert custom lowering hooks for ISD::ROTR and ISD::ROTL.
Scott Michel
2007-04-02
1
-3
/
+17
*
don't rely on ADL
Chris Lattner
2007-03-24
1
-1
/
+1
*
Refactoring of formal parameter flags. Enable properly use of
Anton Korobeynikov
2007-03-07
1
-7
/
+4
*
big endian 32-bit systems (e.g. ppc32) want to return the high reg first, not
Chris Lattner
2007-03-06
1
-0
/
+5
*
Fix CodeGen/Generic/fpowi-promote.ll and PR1239
Chris Lattner
2007-03-03
1
-0
/
+12
*
Add an expand action for ISD label which just deletes the label.
Chris Lattner
2007-03-03
1
-0
/
+3
*
Chain is on second operand.
Jim Laskey
2007-02-28
1
-4
/
+23
*
Drop unused operand.
Jim Laskey
2007-02-24
1
-2
/
+0
*
Simplify lowering and selection of exception ops.
Jim Laskey
2007-02-22
1
-2
/
+26
*
Selection and lowering for exception handling.
Jim Laskey
2007-02-21
1
-0
/
+2
*
For PR1195:
Reid Spencer
2007-02-15
1
-8
/
+8
*
For PR1195:
Reid Spencer
2007-02-15
1
-1
/
+1
*
Generalize TargetData strings, to support more interesting forms of data.
Chris Lattner
2007-02-14
1
-3
/
+3
*
implement expand of truncate. This allows truncates from i128 to i64 to
Chris Lattner
2007-02-13
1
-0
/
+13
*
Make use of TLI.SimplifySetCC() in LegalizeSetCCOperands().
Evan Cheng
2007-02-08
1
-8
/
+36
*
swtich vector-> smallvector, speeding up selectiondag stuff 1%
Chris Lattner
2007-02-04
1
-2
/
+2
*
Switch promoted/expanded ops over to using a DenseMap. Vector related maps
Chris Lattner
2007-02-04
1
-8
/
+7
*
switch LegalizedNodes from std::map to a DenseMap. This speeds up isel
Chris Lattner
2007-02-04
1
-3
/
+15
*
Eliminate some malloc traffic from LegalizeAllNodesNotLeadingTo, speeding
Chris Lattner
2007-02-04
1
-4
/
+5
*
Switch ComputeTopDownOrdering over to using a densemap. This speeds up
Chris Lattner
2007-02-03
1
-2
/
+3
*
Pasto
Evan Cheng
2007-02-03
1
-1
/
+1
*
Fixed uninitialized stuff inside LegalizeDAG. Fortunately, the only
Anton Korobeynikov
2007-02-01
1
-4
/
+5
*
Fit in 80 columns
Chris Lattner
2007-02-01
1
-4
/
+4
*
Allow the target to override the ISD::CondCode that's to be used to test the
Evan Cheng
2007-01-31
1
-18
/
+4
*
Finish off bug 680, allowing targets to custom lower frame and return
Nate Begeman
2007-01-29
1
-0
/
+10
*
More cleanup
Anton Korobeynikov
2007-01-28
1
-2
/
+2
*
Propagate changes from my local tree. This patch includes:
Anton Korobeynikov
2007-01-28
1
-2
/
+4
*
Change the MachineDebugInfo to MachineModuleInfo to better reflect usage
Jim Laskey
2007-01-26
1
-4
/
+4
*
Make LABEL a builtin opcode.
Jim Laskey
2007-01-26
1
-6
/
+6
*
Teach TargetData to handle 'preferred' alignment for each target, and use
Chris Lattner
2007-01-20
1
-4
/
+9
*
For PR1043:
Reid Spencer
2007-01-19
1
-0
/
+1
*
Store default libgcc routine names and allow them to be redefined by target.
Evan Cheng
2007-01-12
1
-82
/
+128
*
Expand fcopysign to the bitwise sequence if select is marked as expensive.
Evan Cheng
2007-01-05
1
-4
/
+6
*
Bug in ExpandFCOPYSIGNToBitwiseOps(). Clear the old sign bit of operand 0
Evan Cheng
2007-01-05
1
-4
/
+14
*
Expand fcopysign to a series of bitwise of operations when it's profitable to
Evan Cheng
2007-01-04
1
-19
/
+46
*
Clean up from recent changes. Comment the new parameter to ExpandLibCall.
Reid Spencer
2007-01-03
1
-24
/
+20
*
For PR950:
Reid Spencer
2006-12-31
1
-44
/
+64
*
May need to promote the operand (either sign_extend_inreg or and) before
Evan Cheng
2006-12-19
1
-18
/
+29
*
LegalizeSetCCOperands() may end up inserting libcalls. They need to be
Evan Cheng
2006-12-18
1
-3
/
+2
*
Expand FP undef
Evan Cheng
2006-12-16
1
-0
/
+1
*
Allow promoted FP_TO_UINT / FP_TO_SINT to expand operand.
Evan Cheng
2006-12-16
1
-2
/
+1
*
Expand fabs / fneg to and / xor.
Evan Cheng
2006-12-16
1
-3
/
+22
*
Fix select_cc, select expansion to soft-fp bugs.
Evan Cheng
2006-12-15
1
-3
/
+11
*
silence a bogus warning
Chris Lattner
2006-12-15
1
-1
/
+1
*
Expand FP compares to soft-fp call(s)
Evan Cheng
2006-12-15
1
-7
/
+102
*
1. Tidy up jump table info.
Jim Laskey
2006-12-14
1
-5
/
+12
*
More soft-fp work.
Evan Cheng
2006-12-13
1
-4
/
+9
*
Expand (f64 extload f32) to (f64 fp_ext (load f32)) if f64 type action is exp...
Evan Cheng
2006-12-13
1
-0
/
+10
[next]