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
/
InstCombine
/
InstCombineCalls.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[InstSimplify] Move masked.gather w/no active lanes handling to InstSimplify ...
Philip Reames
2019-04-22
1
-5
/
+0
*
[InstCombine] Factor out unreachable inst idiom creation [NFC]
Philip Reames
2019-04-17
1
-10
/
+3
*
[InstCombine] Prune fshl/fshr with masked operands
Nikita Popov
2019-04-16
1
-0
/
+4
*
[PGO] Profile guided code size optimization.
Hiroshi Yamauchi
2019-04-15
1
-1
/
+1
*
[InstCombine] ssubo X, C -> saddo X, -C
Nikita Popov
2019-04-10
1
-0
/
+21
*
[InstCombine][X86] Expand MOVMSK to generic IR (PR39927)
Simon Pilgrim
2019-04-08
1
-40
/
+14
*
[InstCombine] Simplify ctpop with bitreverse/bswap
David Bolvansky
2019-04-03
1
-0
/
+8
*
[InstCombine] Simplify ctlz/cttz with bitreverse
David Bolvansky
2019-04-02
1
-1
/
+9
*
[instcombine] Add some todos, and arrange code for readibility
Philip Reames
2019-03-21
1
-32
/
+34
*
Simplify operands of masked stores and scatters based on demanded elements
Philip Reames
2019-03-20
1
-8
/
+49
*
[InstCombine] Fold add nuw + uadd.with.overflow
Nikita Popov
2019-03-20
1
-6
/
+9
*
[instcombine] Add todos describing missing transforms for masked.* intrinsics
Philip Reames
2019-03-20
1
-0
/
+17
*
[InstCombine] allow general vector constants for funnel shift to shift transf...
Sanjay Patel
2019-03-18
1
-20
/
+13
*
[InstCombine] extend rotate-left-by-constant canonicalization to funnel shift
Sanjay Patel
2019-03-18
1
-9
/
+10
*
[InstCombine] canonicalize rotate right by constant to rotate left
Sanjay Patel
2019-03-17
1
-7
/
+20
*
[SimplifyDemandedVec] Strengthen handling all undef lanes (particularly GEPs)
Philip Reames
2019-03-15
1
-2
/
+1
*
[InstCombine] canonicalize funnel shift constant shift amount to be modulo bi...
Sanjay Patel
2019-03-14
1
-2
/
+13
*
IR: Add immarg attribute
Matt Arsenault
2019-03-12
1
-13
/
+6
*
[InstCombine] Fold add nsw + sadd.with.overflow
Nikita Popov
2019-03-06
1
-10
/
+40
*
[InstCombine] Fix an unused variable warning.
Craig Topper
2019-02-10
1
-1
/
+1
*
Implementation of asm-goto support in LLVM
Craig Topper
2019-02-08
1
-18
/
+39
*
[opaque pointer types] Pass function type for CallBase::setCalledFunction.
James Y Knight
2019-02-01
1
-8
/
+7
*
[opaque pointer types] Pass value type to LoadInst creation.
James Y Knight
2019-02-01
1
-7
/
+8
*
[opaque pointer types] Pass function types to CallInst creation.
James Y Knight
2019-02-01
1
-12
/
+16
*
[InstCombine] reduce duplicate code; NFC
Sanjay Patel
2019-02-01
1
-2
/
+1
*
[InstCombine] Fix -Wunused-variable when -DLLVM_ENABLE_ASSERTIONS=off
Fangrui Song
2019-02-01
1
-0
/
+1
*
[InstCombine] try to reduce x86 addcarry to generic uaddo intrinsic
Sanjay Patel
2019-02-01
1
-0
/
+33
*
[CallSite removal] Remove CallSite uses from InstCombine.
Craig Topper
2019-01-31
1
-87
/
+81
*
Add a 'dynamic' parameter to the objectsize intrinsic
Erik Pilkington
2019-01-30
1
-3
/
+2
*
SimplifyDemandedVectorElts for all intrinsics
Philip Reames
2019-01-30
1
-32
/
+15
*
[X86] Auto upgrade VPCOM/VPCOMU intrinsics to generic integer comparisons
Simon Pilgrim
2019-01-20
1
-55
/
+0
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[InstCombine]Avoid introduction of unaligned mem access
Serguei Katkov
2019-01-16
1
-3
/
+20
*
AMDGPU: Add a fast path for icmp.i1(src, false, NE)
Marek Olsak
2019-01-15
1
-0
/
+5
*
[X86][SSE] Auto upgrade PADDS/PSUBS intrinsics to SADD_SAT/SSUB_SAT generic i...
Simon Pilgrim
2018-12-21
1
-78
/
+0
*
Introduce llvm.loop.parallel_accesses and llvm.access.group metadata.
Michael Kruse
2018-12-20
1
-0
/
+5
*
[InstCombine] try to convert x86 movmsk intrinsic to generic IR (PR39927)
Sanjay Patel
2018-12-11
1
-20
/
+38
*
[InstCombine] Support ssub.sat canonicalization for non-splats
Nikita Popov
2018-12-01
1
-5
/
+4
*
[InstCombine] Combine saturating add/sub with constant operands
Nikita Popov
2018-11-28
1
-0
/
+34
*
[InstCombine] Canonicalize ssub.sat to sadd.sat
Nikita Popov
2018-11-28
1
-0
/
+11
*
[InstCombine] Use known overflow information for saturating add/sub
Nikita Popov
2018-11-28
1
-0
/
+38
*
[InstCombine] Canonicalize const arg for saturating adds
Nikita Popov
2018-11-28
1
-0
/
+6
*
[InstCombine] add helper function to reduce code duplication; NFC
Sanjay Patel
2018-11-26
1
-24
/
+19
*
[InstCombine] Simplify funnel shift with zero/undef operand to shift
Nikita Popov
2018-11-23
1
-0
/
+23
*
[InstCombine] fold funnel shift amount based on demanded bits
Sanjay Patel
2018-11-13
1
-0
/
+14
*
[GC][InstCombine] Fix a potential iteration issue
Philip Reames
2018-11-12
1
-1
/
+4
*
InstCombine: Avoid introducing poison values when lowering llvm.amdgcn.[us]bfe
Tom Stellard
2018-11-08
1
-13
/
+5
*
[InstCombine] Combine nested min/max intrinsics with constants
Volkan Keles
2018-10-31
1
-1
/
+35
*
[InstCombine] InstCombine and InstSimplify for minimum and maximum
Thomas Lively
2018-10-19
1
-5
/
+22
*
[TI removal] Make variables declared as `TerminatorInst` and initialized
Chandler Carruth
2018-10-15
1
-1
/
+1
[prev]
[next]