| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
As part of the unification of the debug format and the MIR format, print
MBB references as '%bb.5'.
The MIR printer prints the IR name of a MBB only for block definitions.
* find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)->getNumber\(\)/" << printMBBReference(*\1)/g'
* find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)\.getNumber\(\)/" << printMBBReference(\1)/g'
* find . \( -name "*.txt" -o -name "*.s" -o -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#([0-9]+)/%bb.\1/g'
* grep -nr 'BB#' and fix
Differential Revision: https://reviews.llvm.org/D40422
llvm-svn: 319665
|
| |
|
|
| |
llvm-svn: 316933
|
| |
|
|
|
|
| |
support
llvm-svn: 316932
|
| |
|
|
| |
llvm-svn: 316875
|
| |
|
|
|
|
| |
Max depth was being exceeded which could prevent some combines working
llvm-svn: 316871
|
| |
|
|
|
|
| |
demandedelts support
llvm-svn: 316868
|
| |
|
|
|
|
| |
Introduce a isConstOrDemandedConstSplat helper function that can recognise a constant splat build vector for at least the demanded elts we care about.
llvm-svn: 316866
|
| |
|
|
|
|
| |
support
llvm-svn: 316865
|
| |
|
|
|
|
| |
Differential Revision: https://reviews.llvm.org/D39135
llvm-svn: 316274
|
| |
|
|
|
|
| |
constant splats for vXi64 shifts.
llvm-svn: 303009
|
| |
|
|
|
|
| |
demandedelts in ComputeNumSignBits
llvm-svn: 302997
|
| |
|
|
|
|
| |
demandedelts support in ComputeNumSignBits
llvm-svn: 302994
|
| |
|
|
| |
llvm-svn: 302993
|
| |
|
|
| |
llvm-svn: 302992
|
| |
|
|
|
|
|
|
| |
ASHR and INSERT_VECTOR_ELT (reapplied)
Reapplied r299221 after fix for nondeterminism in ThinLTO builder (rL301599), with extra check for implicit truncation of inserted element.
llvm-svn: 301644
|
| |
|
|
| |
llvm-svn: 300783
|
| |
|
|
|
|
|
|
| |
ASHR and INSERT_VECTOR_ELT
Followup to D31311
llvm-svn: 299221
|
| |
|
|
| |
llvm-svn: 298774
|
| |
|
|
|
|
| |
Add support for widening narrow shuffle masks so we can directly extract from the relevant input vector of the shuffle.
llvm-svn: 298616
|
| |
|
|
|
|
| |
extracted element
llvm-svn: 298592
|
| |
|
|
|
|
| |
This only requires a 64-bit memory source, not the whole 128-bits. But the 128-bit case is still supported via X86InstrInfo::foldMemoryOperandImpl
llvm-svn: 297523
|
| |
|
|
| |
llvm-svn: 297492
|
|
|
SelectionDAG::ComputeNumSignBits is poor at build_vector handling, meaning that we can't see that all the vXi64 sources are in fact sign extended i32 or smaller.
llvm-svn: 297486
|