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
/
Transforms
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add control of function merging to the PMBuilder.
Nick Lewycky
2014-09-13
1
-0
/
+10
*
Simplify code. No functionality change.
Benjamin Kramer
2014-09-13
1
-15
/
+3
*
[C API] Make the 'lower switch' pass available via the C API.
Juergen Ributzka
2014-09-11
1
-0
/
+4
*
[AlignmentFromAssumptions] Don't crash just because the target is 32-bit
Hal Finkel
2014-09-11
1
-0
/
+4
*
Add doInitialization/doFinalization to DataLayoutPass.
Rafael Espindola
2014-09-10
1
-2
/
+1
*
[AlignmentFromAssumptions] Don't divide by zero for unknown starting alignment
Hal Finkel
2014-09-10
1
-2
/
+4
*
[PassManager] Adding Hidden attribute to EnableMLSM option
Gerolf Hoflehner
2014-09-10
1
-2
/
+2
*
[MergedLoadStoreMotion] Move pass enabling option to PassManagerBuilder
Gerolf Hoflehner
2014-09-10
2
-7
/
+8
*
Rename getMaximumUnrollFactor -> getMaxInterleaveFactor; also rename option n...
Sanjay Patel
2014-09-10
1
-39
/
+39
*
Removed misleading comment.
Gerolf Hoflehner
2014-09-10
1
-1
/
+0
*
MergeFunctions: FunctionPtr has been renamed to FunctionNode.
Stepan Dyatkovskiy
2014-09-10
1
-7
/
+7
*
SampleProfile.cpp: Prune a stray \param added in r217437. [-Wdocumentation]
NAKAMURA Takumi
2014-09-09
1
-1
/
+0
*
ScalarOpts/LLVMBuild.txt: Prune unused dependency to IPA.
NAKAMURA Takumi
2014-09-09
1
-1
/
+1
*
ScalarOpts/LLVMBuild.txt: Reorder.
NAKAMURA Takumi
2014-09-09
1
-1
/
+1
*
Re-factor sample profile reader into lib/ProfileData.
Diego Novillo
2014-09-09
2
-394
/
+67
*
Add a comment to getNewAlignmentDiff.
Andrew Trick
2014-09-07
1
-2
/
+4
*
Check for all known bits on ret in InstCombine
Hal Finkel
2014-09-07
2
-0
/
+19
*
Make use of @llvm.assume from LazyValueInfo
Hal Finkel
2014-09-07
2
-32
/
+56
*
Add an AlignmentFromAssumptions Pass
Hal Finkel
2014-09-07
4
-0
/
+434
*
Add additional patterns for @llvm.assume in ValueTracking
Hal Finkel
2014-09-07
1
-0
/
+24
*
Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.)
Hal Finkel
2014-09-07
30
-250
/
+391
*
Add functions for finding ephemeral values
Hal Finkel
2014-09-07
3
-8
/
+26
*
Add an Assumption-Tracking Pass
Hal Finkel
2014-09-07
10
-7
/
+59
*
InstCombine: Remove a special case pattern
David Majnemer
2014-09-05
1
-15
/
+18
*
Enable noalias metadata by default and swap the order of the SLP and Loop vec...
James Molloy
2014-09-04
2
-2
/
+2
*
[GVN] Format variable name.
Tilmann Scheller
2014-09-04
1
-2
/
+2
*
IndVarSimplify: Address review comments for r217102
David Majnemer
2014-09-04
1
-4
/
+7
*
[asan] fix debug info produced for asan-coverage=2
Kostya Serebryany
2014-09-03
1
-1
/
+3
*
IndVarSimplify: Don't let LFTR compare against a poison value
David Majnemer
2014-09-03
1
-6
/
+18
*
[asan] add -asan-coverage=3: instrument all blocks and critical edges.
Kostya Serebryany
2014-09-03
1
-2
/
+11
*
Make some helpers static or move into the llvm namespace.
Benjamin Kramer
2014-09-03
1
-1
/
+1
*
Preserve IR flags (nsw, nuw, exact, fast-math) in SLP vectorizer (PR20802).
Sanjay Patel
2014-09-03
1
-5
/
+30
*
Change name of copyFlags() to copyIRFlags(). Add convenience method for logic...
Sanjay Patel
2014-09-03
1
-1
/
+1
*
Add pass-manager flags to use CFL AA
Hal Finkel
2014-09-02
1
-0
/
+5
*
[asan] Assign a low branch weight to ASan's slow path, patch by Jonas Wagner...
Kostya Serebryany
2014-09-02
2
-2
/
+5
*
Generate extract for in-tree uses if the use is scalar operand in vectorized ...
Yi Jiang
2014-09-02
1
-18
/
+69
*
unique_ptrify the result of SpecialCaseList::create
David Blaikie
2014-09-02
1
-1
/
+1
*
LICM: Don't crash when an instruction is used by an unreachable BB
David Majnemer
2014-09-02
1
-1
/
+6
*
SROA: Don't insert instructions before a PHI
David Majnemer
2014-09-01
1
-1
/
+4
*
Revert "Revert two GEP-related InstCombine commits"
David Majnemer
2014-09-01
1
-11
/
+42
*
Add a convenience method to copy wrapping, exact, and fast-math flags (NFC).
Sanjay Patel
2014-09-01
1
-13
/
+3
*
Fix a really bad miscompile introduced in r216865 - the else-if logic
Chandler Carruth
2014-09-01
1
-10
/
+14
*
Small refactor on VectorizerHint for deduplication
Renato Golin
2014-09-01
1
-93
/
+160
*
Feed AA to the inliner and use AA->getModRefBehavior in AddAliasScopeMetadata
Hal Finkel
2014-09-01
4
-12
/
+25
*
Ignore lifetime intrinsics in use list for MemCpyOptimizer. Patch by Luqman A...
Nick Lewycky
2014-09-01
1
-0
/
+4
*
Fix AddAliasScopeMetadata again - alias.scope must be a complete description
Hal Finkel
2014-09-01
1
-15
/
+37
*
Fix some cases where StringRef was being passed by const reference. Remove co...
Craig Topper
2014-08-30
1
-3
/
+3
*
Fix AddAliasScopeMetadata to not add scopes when deriving from unknown pointers
Hal Finkel
2014-08-30
1
-25
/
+51
*
InstCombine: Respect recursion depth in visitUDivOperand
David Majnemer
2014-08-30
1
-4
/
+4
*
InstCombine: Try harder to combine icmp instructions
David Majnemer
2014-08-30
1
-3
/
+25
[next]