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
/
include
/
llvm
/
Transforms
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix parameter ordering bug in createDebugIRPass()
Daniel Malea
2013-07-30
1
-3
/
+3
*
Update comments for SSAUpdater to use the modern doxygen comment
Chandler Carruth
2013-07-28
1
-47
/
+57
*
Thread DataLayout through the callers and into mem2reg. This will be
Chandler Carruth
2013-07-28
1
-2
/
+3
*
Reimplement isPotentiallyReachable to make nocapture deduction much stronger.
Nick Lewycky
2013-07-27
1
-22
/
+0
*
SimplifyCFG: Use parallel-and and parallel-or mode to consolidate branch cond...
Tom Stellard
2013-07-27
2
-2
/
+3
*
Respect llvm.used in Internalize.
Rafael Espindola
2013-07-25
1
-0
/
+8
*
Make the mem2reg interface use an ArrayRef as it keeps a copy of these
Chandler Carruth
2013-07-21
1
-3
/
+3
*
Update mem2reg's comments to conform to the new doxygen standards. No
Chandler Carruth
2013-07-20
1
-7
/
+11
*
Implement categories for special case lists.
Peter Collingbourne
2013-07-09
1
-18
/
+56
*
Introduce a SpecialCaseList ctor which takes a MemoryBuffer to make
Peter Collingbourne
2013-07-09
1
-0
/
+4
*
Rename BlackList class to SpecialCaseList and move it to Transforms/Utils.
Peter Collingbourne
2013-07-09
1
-3
/
+3
*
Remove limitation on DebugIR that made it require existing debug metadata.
Daniel Malea
2013-06-28
1
-5
/
+30
*
Add a flag to defer vectorization into a phase after the inliner and its
Chandler Carruth
2013-06-24
1
-0
/
+1
*
Remove the simplify-libcalls pass (finally)
Meador Inge
2013-06-20
2
-7
/
+0
*
Access the TargetLoweringInfo from the TargetMachine object instead of cachin...
Bill Wendling
2013-06-19
1
-5
/
+5
*
Move StructurizeCFG out of R600 to generic Transforms.
Matt Arsenault
2013-06-19
1
-0
/
+6
*
Extend RemapInstruction and friends to take an optional new parameter, a Valu...
James Molloy
2013-05-28
2
-7
/
+27
*
Re-implement DebugIR in a way that does not subclass AssemblyWriter:
Daniel Malea
2013-05-23
1
-1
/
+3
*
Rename LoopSimplify.h to LoopUtils.h
Hal Finkel
2013-05-20
1
-3
/
+3
*
Expose InsertPreheaderForLoop from LoopSimplify to other passes
Hal Finkel
2013-05-20
1
-0
/
+26
*
Add DebugIR pass -- emits IR file and replace source lines with IR lines in MD
Daniel Malea
2013-05-08
1
-0
/
+4
*
fix a typo that due to cu&paste quadrupled itself
Adrian Prantl
2013-04-26
1
-2
/
+2
*
Bugfix for the debug intrinsic handling in InstCombiner:
Adrian Prantl
2013-04-26
1
-2
/
+2
*
Add an option -vectorize-slp-aggressive for running the BB vectorizer. Make -...
Nadav Rotem
2013-04-15
1
-0
/
+1
*
Rename the slp-vectorizer clang/llvm flags. No functionality change.
Nadav Rotem
2013-04-15
1
-1
/
+1
*
[ASan] Allow disabling init-order checks for globals by source file name.
Alexey Samsonov
2013-04-11
1
-0
/
+1
*
Add support for bottom-up SLP vectorization infrastructure.
Nadav Rotem
2013-04-09
1
-0
/
+6
*
[ASan] emit instrumentation for initialization order checking by default
Alexey Samsonov
2013-03-14
1
-2
/
+2
*
Refactor GCOV's six constructor arguments into a struct with a getter that
Nick Lewycky
2013-03-14
1
-7
/
+26
*
Fix typo in comment.
Nick Lewycky
2013-03-14
1
-1
/
+1
*
Switch from a version 4.2/4.4 switch to a four-byte version string to be put
Nick Lewycky
2013-03-07
1
-1
/
+2
*
In GCC 4.7, function names are now forbidden from .gcda files. Support this by
Nick Lewycky
2013-02-27
1
-1
/
+2
*
Enhance integer division emulation support to handle types smaller than 32 bits,
Pedro Artigas
2013-02-26
1
-0
/
+14
*
BBVectorize: Cap the number of candidate pairs in each instruction group
Hal Finkel
2013-02-15
1
-0
/
+3
*
Remove unneeded #includes.
Jakub Staszak
2013-02-09
1
-1
/
+0
*
Extracted ObjCARC.cpp into its own library libLLVMObjCARCOpts in preparation ...
Michael Gottesman
2013-01-28
2
-24
/
+49
*
Move Blacklist.h to include/ to enable use from clang.
Will Dietz
2013-01-18
1
-0
/
+58
*
ASan: add optional 'zero-based shadow' option to ASan passes. Always tell the...
Alexey Samsonov
2013-01-17
1
-2
/
+4
*
Fix include guards so they exactly match file names.
Jakub Staszak
2013-01-10
7
-15
/
+15
*
Move CallGraphSCCPass.h into the Analysis tree; that's where the
Chandler Carruth
2013-01-07
1
-1
/
+1
*
Switch the SCEV expander and LoopStrengthReduce to use
Chandler Carruth
2013-01-07
1
-4
/
+2
*
Make SimplifyCFG simply depend upon TargetTransformInfo and pass it
Chandler Carruth
2013-01-07
1
-2
/
+2
*
Sink the AddressingModeMatcher helper class into an anonymous namespace
Chandler Carruth
2013-01-05
1
-109
/
+0
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
5
-7
/
+7
*
Add proper support for -fsanitize-blacklist= flag for TSan and MSan. LLVM part.
Alexey Samsonov
2012-12-28
1
-2
/
+3
*
[msan] Remove unreachable blocks before instrumenting a function.
Evgeniy Stepanov
2012-12-21
1
-0
/
+5
*
[msan] Add track-origins argument to the pass constructor.
Evgeniy Stepanov
2012-12-19
1
-1
/
+1
*
LoopVectorizer: Use the "optsize" attribute to decide if we are allowed to in...
Nadav Rotem
2012-12-12
1
-1
/
+1
*
Improve debug info generated with enabled AddressSanitizer.
Alexey Samsonov
2012-12-12
1
-0
/
+5
*
LoopVectorizer: When -Os is used, vectorize only loops that dont require a ta...
Nadav Rotem
2012-12-12
1
-1
/
+1
[next]