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
/
Transforms
/
Scalar
/
CodeGenPrepare.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
CodeGenPrep: turn lookup tables into switches for some targets.
Hans Wennborg
2012-09-19
1
-4
/
+114
*
Stylistic and 80-col fixes
Evan Cheng
2012-09-14
1
-7
/
+3
*
Fix Doxygen issues:
Dmitri Gribenko
2012-09-13
1
-1
/
+4
*
Generic Bypass Slow Div
Preston Gurd
2012-09-04
1
-1
/
+14
*
Not all targets have efficient ISel code generation for select instructions.
Nadav Rotem
2012-09-02
1
-7
/
+22
*
Make MemoryBuiltins aware of TargetLibraryInfo.
Benjamin Kramer
2012-08-29
1
-1
/
+1
*
revise debug output to avoid dangling pointer
Michael Liao
2012-08-21
1
-1
/
+1
*
Remove dead flag.
Bill Wendling
2012-08-15
1
-9
/
+3
*
During the CodeGenPrepare we often lower intrinsics (such as objsize)
Nadav Rotem
2012-08-14
1
-0
/
+39
*
Teach CodeGenPrep to look past bitcast when it's duplicating return instruction
Evan Cheng
2012-07-27
1
-3
/
+14
*
make all Emit*() functions consult the TargetLibraryInfo information before c...
Nuno Lopes
2012-07-25
1
-1
/
+1
*
Clean whitespaces.
Nadav Rotem
2012-07-24
1
-29
/
+29
*
CodeGenPrepare: Don't crash when TLI is not available.
Benjamin Kramer
2012-06-29
1
-1
/
+2
*
Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.h
Chandler Carruth
2012-06-29
1
-12
/
+12
*
Switch the select to branch transformation on by default.
Benjamin Kramer
2012-05-06
1
-3
/
+4
*
CodeGenPrepare: Add a transform to turn selects into branches in some cases.
Benjamin Kramer
2012-05-05
1
-0
/
+84
*
Refactor the interface to recursively simplifying instructions to be tad
Chandler Carruth
2012-03-24
1
-2
/
+2
*
Target override to allow CodeGenPrepare to sink address operands to intrinsic...
Pete Cooper
2012-03-13
1
-0
/
+9
*
Do trivial CSE of dead BBs during codegen preparation.
Bill Wendling
2012-03-04
1
-1
/
+20
*
Extend Attributes to 64 bits
Kostya Serebryany
2012-01-20
1
-2
/
+2
*
Propagate TargetLibraryInfo throughout ConstantFolding.cpp and
Chad Rosier
2011-12-01
1
-2
/
+9
*
Fold two identical set lookups into one. No functionality change.
Nick Lewycky
2011-09-29
1
-4
/
+2
*
Stop emitting instructions with the name "tmp" they eat up memory and have to...
Benjamin Kramer
2011-09-27
1
-1
/
+1
*
Use IRBuilder.
Devang Patel
2011-09-06
1
-17
/
+14
*
Dramatically speedup codegen prepare by a) avoiding use of dominator tree and...
Devang Patel
2011-08-18
1
-16
/
+38
*
Use the getFirstInsertionPt() method instead of getFirstNonPHI + an 'isa<>'
Bill Wendling
2011-08-16
1
-13
/
+6
*
In places where it's using "getFirstNonPHI", skip the landingpad instruction ...
Bill Wendling
2011-08-15
1
-5
/
+8
*
Skip the insertion iterator past the landingpad instruction if there.
Bill Wendling
2011-08-15
1
-0
/
+1
*
land David Blaikie's patch to de-constify Type, with a few tweaks.
Chris Lattner
2011-07-18
1
-4
/
+4
*
Fix warnings due to 132263; Thanks rdivacky.
Nadav Rotem
2011-05-29
1
-2
/
+4
*
Refactor getActionType and getTypeToTransformTo ; place all of the 'decision'
Nadav Rotem
2011-05-27
1
-2
/
+2
*
Fix warning about || and && without explicit grouping.
Chandler Carruth
2011-05-26
1
-2
/
+2
*
Do not insert anything after terminator.
Devang Patel
2011-05-26
1
-1
/
+2
*
Do not move DBG_VALUE in middle of PHI nodes.
Devang Patel
2011-05-26
1
-1
/
+4
*
If llvm.dbg.value and the value instruction it refers to are far apart then i...
Devang Patel
2011-05-26
1
-1
/
+13
*
Add a parameter to ConstantFoldTerminator() that callers can use to ask it to...
Frits van Bommel
2011-05-22
1
-1
/
+1
*
Revert commit 131534 since it seems to have broken several buildbots.
Duncan Sands
2011-05-18
1
-2
/
+2
*
Refactor getActionType and getTypeToTransformTo ; place all of the 'decision'
Nadav Rotem
2011-05-18
1
-2
/
+2
*
Fix a bug where RecursivelyDeleteTriviallyDeadInstructions could
Chris Lattner
2011-04-09
1
-3
/
+18
*
Debug intrinsics must be skipped at the beginning and ends of blocks, lest they
Cameron Zwarich
2011-03-24
1
-2
/
+6
*
It is enough for the CallInst to have no uses to be made a tail call with a ret
Cameron Zwarich
2011-03-24
1
-1
/
+1
*
s/UpdateDT/ModifiedDT/g
Devang Patel
2011-03-24
1
-8
/
+8
*
Do early taildup of ret in CodeGenPrepare for potential tail calls that have a
Cameron Zwarich
2011-03-24
1
-17
/
+37
*
Use an early return instead of a long if block.
Cameron Zwarich
2011-03-24
1
-51
/
+51
*
When UpdateDT is set, DT is invalid, which could cause problems when trying to
Cameron Zwarich
2011-03-24
1
-2
/
+3
*
Check for TLI so that -codegenprepare can be used from opt.
Cameron Zwarich
2011-03-24
1
-0
/
+3
*
Re-apply r127953 with fixes: eliminate empty return block if it has no predec...
Evan Cheng
2011-03-21
1
-10
/
+122
*
Revert r127953, "SimplifyCFG has stopped duplicating returns into predecessors
Daniel Dunbar
2011-03-19
1
-99
/
+4
*
SimplifyCFG has stopped duplicating returns into predecessors to canonicalize IR
Evan Cheng
2011-03-19
1
-4
/
+99
*
Roll r127459 back in:
Cameron Zwarich
2011-03-11
1
-0
/
+14
[next]