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
/
Analysis
/
ValueTracking.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Handle non-constant shifts in computeKnownBits, and use computeKnownBits for ...
Hal Finkel
2015-10-23
1
-34
/
+111
*
[ValueTracking] Add a new predicate: isKnownNonEqual()
James Molloy
2015-10-22
1
-0
/
+56
*
Silencing a -Wtype-limits warning; an unsigned value will always be >= 0; NFC.
Aaron Ballman
2015-10-15
1
-1
/
+1
*
Tighten known bits for ctpop based on zero input bits
Philip Reames
2015-10-14
1
-2
/
+12
*
[asan] Disabling speculative loads under asan. Patch by Mike Aizatsky
Kostya Serebryany
2015-10-14
1
-1
/
+5
*
Analysis: Remove implicit ilist iterator conversions
Duncan P. N. Exon Smith
2015-10-10
1
-9
/
+10
*
ValueTracking: use getAlignment in isAligned
Artur Pilipenko
2015-10-09
1
-14
/
+1
*
[ValueTracking] teach computeKnownBits that a fabs() clears sign bits
Sanjay Patel
2015-10-08
1
-2
/
+10
*
Teach computeKnownBits to use new align attribute/metadata
Artur Pilipenko
2015-10-07
1
-3
/
+12
*
Extend known bits to understand @llvm.bswap
Philip Reames
2015-10-06
1
-0
/
+6
*
Refactor computeKnownBits alignment handling code
Artur Pilipenko
2015-09-30
1
-53
/
+38
*
[ValueTracking] Lower dom-conditions-dom-blocks and dom-conditions-max-uses t...
Igor Laevsky
2015-09-29
1
-2
/
+2
*
[ValueTracking] Teach isKnownNonZero about monotonically increasing PHIs
James Molloy
2015-09-29
1
-0
/
+20
*
Introduce !align metadata for load instruction
Artur Pilipenko
2015-09-28
1
-0
/
+5
*
more space; NFC
Sanjay Patel
2015-09-25
1
-0
/
+1
*
[ValueTracking] Teach isKnownNonZero a new trick
James Molloy
2015-09-24
1
-0
/
+17
*
Fix for pr24866
Philip Reames
2015-09-21
1
-1
/
+8
*
Support align attribute for return values
Artur Pilipenko
2015-09-18
1
-0
/
+2
*
fix typo; NFC
Sanjay Patel
2015-09-17
1
-1
/
+1
*
[InstCombineCalls] Use isKnownNonNullAt() to check nullness of passing argume...
Chen Li
2015-09-14
1
-0
/
+4
*
[WinEH] Add cleanupendpad instruction
Joseph Tremoulet
2015-09-03
1
-0
/
+1
*
[ValueTracking] Look through casts when both operands are casts.
James Molloy
2015-09-02
1
-5
/
+17
*
Revert r246232 and r246304.
David Majnemer
2015-08-28
1
-4
/
+39
*
[CodeGen] isInTailCallPosition didn't consider readnone tailcalls
David Majnemer
2015-08-28
1
-1
/
+2
*
[ValueTracking] readnone CallInsts are fair game for speculation
David Majnemer
2015-08-27
1
-39
/
+3
*
isKnownNonNull needs to consider globals in non-zero address spaces.
Pete Cooper
2015-08-27
1
-2
/
+5
*
[ValueTracking] computeOverflowForSignedAdd and isKnownNonNegative
Jingyue Wu
2015-08-20
1
-0
/
+69
*
Take alignment into account in isSafeToSpeculativelyExecute and isSafeToLoadU...
Artur Pilipenko
2015-08-17
1
-35
/
+79
*
[ValueTracking] Tweak a comment slightly
James Molloy
2015-08-12
1
-2
/
+2
*
Add support for floating-point minnum and maxnum
James Molloy
2015-08-11
1
-33
/
+130
*
Fix some comment typos.
Benjamin Kramer
2015-08-08
1
-3
/
+3
*
[Reassociation] Fix miscompile for va_arg arguments.
Quentin Colombet
2015-08-06
1
-0
/
+4
*
New EH representation for MSVC compatibility
David Majnemer
2015-07-31
1
-1
/
+7
*
[SCEV] Apply NSW and NUW flags via poison value analysis
Jingyue Wu
2015-07-28
1
-0
/
+161
*
IR: Do not consider available_externally linkage to be linker-weak.
Peter Collingbourne
2015-07-05
1
-1
/
+1
*
[ValueTracking] do not overwrite analysis results already computed
Jingyue Wu
2015-06-15
1
-146
/
+160
*
Minor refactoring of GEP handling in isDereferenceablePointer
Artur Pilipenko
2015-06-08
1
-28
/
+15
*
Reapply r237539 with a fix for the Chromium build.
James Molloy
2015-05-20
1
-2
/
+9
*
Dereferenceable, dereferenceable_or_null metadata for loads
Sanjoy Das
2015-05-19
1
-0
/
+13
*
Exploit dereferenceable_or_null attribute in LICM pass
Sanjoy Das
2015-05-18
1
-17
/
+99
*
Allow min/max detection to see through casts.
James Molloy
2015-05-15
1
-14
/
+56
*
[ValueTracking] refactor: extract method haveNoCommonBitsSet
Jingyue Wu
2015-05-14
1
-0
/
+15
*
Convert PHI getIncomingValue() to foreach over incoming_values(). NFC.
Pete Cooper
2015-05-12
1
-7
/
+7
*
Rip min/max pattern matching out of InstCombine and into
James Molloy
2015-05-11
1
-0
/
+81
*
[Statepoint] Clean up Statepoint.h: accessor names.
Sanjoy Das
2015-05-06
1
-1
/
+2
*
[getUnderlyingOjbects] Analyze loop PHIs further to remove false positives
Adam Nemet
2015-04-23
1
-3
/
+43
*
Move Value.isDereferenceablePointer to ValueTracking [NFC]
Philip Reames
2015-04-23
1
-1
/
+141
*
[CallSite] Make construction from Value* (or Instruction*) explicit.
Benjamin Kramer
2015-04-10
1
-1
/
+1
*
Reduce dyn_cast<> to isa<> or cast<> where possible.
Benjamin Kramer
2015-04-10
1
-3
/
+2
*
[ValueTracking] Fix PR23011.
Sanjoy Das
2015-03-25
1
-7
/
+16
[prev]
[next]