- Jan 12, 2017
-
-
Petr Hosek authored
This reverts commit 8c91834411b322ab360eb1f193f489327e719652. llvm-svn: 291726
-
Davide Italiano authored
It was always zero. When we move a store from `initial` to its own congruency class, we end up with a negative store count, which is obviously wrong. Also, while here, change StoreCount to be signed so that the assertions actually fire. Ack'ed by Daniel Berlin. llvm-svn: 291725
-
Zachary Turner authored
Previously the type dumper itself was passed around to a lot of different places and manipulated in ways that were more appropriate on the type database. For example, the entire TypeDumper was passed into the symbol dumper, when all the symbol dumper wanted to do was lookup the name of a TypeIndex so it could print it. That's what the TypeDatabase is for -- mapping type indices to names. Another example is how if the user runs llvm-pdbdump with the option to dump symbols but not types, we still have to visit all types so that we can print minimal information about the type of a symbol, but just without dumping full symbol records. The way we did this before is by hacking it up so that we run everything through the type dumper with a null printer, so that the output goes to /dev/null. But really, we don't need to dump anything, all we want to do is build the type database. Since TypeDatabaseVisitor now exists independently of TypeDumper, we can do this. We just build a custom visitor callback pipeline that includes a database visitor but not a dumper. All the hackery around printers etc goes away. After this patch, we could probably even delete the entire CVTypeDumper class since really all it is at this point is a thin wrapper that hides the details of how to build a useful visitation pipeline. It's not a priority though, so CVTypeDumper remains for now. After this patch we will be able to easily plug in a different style of type dumper by only implementing the proper visitation methods to dump one-line output and then sticking it on the pipeline. Differential Revision: https://reviews.llvm.org/D28524 llvm-svn: 291724
-
Petr Hosek authored
When doing standalone build, check that we actually have libcxxabi before attempting to use it. Differential Revision: https://reviews.llvm.org/D28580 llvm-svn: 291723
-
Petr Hosek authored
This is to ensure that the libcxx build is properly configured. Differential Revision: https://reviews.llvm.org/D28579 llvm-svn: 291722
-
Peter Collingbourne authored
llvm-svn: 291721
-
- Jan 11, 2017
-
-
Matt Arsenault authored
To shrink to VOP2 the input carry must also be VCC. llvm-svn: 291720
-
Rui Ueyama authored
Differential Revision: https://reviews.llvm.org/D28046 llvm-svn: 291719
-
Tobias Grosser authored
LLVM's range analysis became a little tighter, which means Polly can derive tighter bounds as well. llvm-svn: 291718
-
Matt Arsenault authored
This produces worse code when i16 is legal, mostly due to combines getting confused by conversions inserted for uniform 16-bit operations. llvm-svn: 291717
-
Matt Arsenault authored
This was shrinking the instruction even though the carry output register was a virtual register, not known VCC. llvm-svn: 291716
-
Kuba Mracek authored
When using profiling and ASan together (-fprofile-instr-generate -fcoverage-mapping -fsanitize=address), at least on Darwin, the section of globals that ASan emits (__asan_globals) is misaligned and starts at an odd offset. This really doesn't have anything to do with profiling, but it triggers the issue because profiling emits a string section, which can have arbitrary size. This patch changes the alignment to sizeof(GlobalStruct). Differential Revision: https://reviews.llvm.org/D28573 llvm-svn: 291715
-
Alex Shlyapnikov authored
Summary: Repoisoning just the minimal redzones might leave an unpoisoned gap of the size of the actual redzone minus minimal redzone size. After ASan activation the actual redzone might be bigger than the minimal size and ASan allocator assumes that the chunk returned by the common allocator is either entirely poisoned or entirely not poisoned (it's too expensive to check the entire chunk or always poison one). Reviewers: eugenis Subscribers: kubabrecka, llvm-commits Differential Revision: https://reviews.llvm.org/D28577 llvm-svn: 291714
-
Rui Ueyama authored
llvm-svn: 291713
-
Davide Italiano authored
It's breaking some bots. Will investigate and recommit. llvm-svn: 291712
-
Matt Arsenault authored
Whether it is legal or not needs to check for the instruction it will be replaced with. llvm-svn: 291711
-
Davide Italiano authored
Format an assertion message while I'm here. llvm-svn: 291710
-
Davide Italiano authored
StoreCount >= 0 on `unsigned` is always true, otherwise. llvm-svn: 291709
-
Michael Kuperstein authored
llvm-svn: 291708
-
Argyrios Kyrtzidis authored
llvm-svn: 291707
-
Peter Collingbourne authored
This means that we can use a shorter instruction sequence in the case where the size is a power of two and on the boundary between two representations. Differential Revision: https://reviews.llvm.org/D28421 llvm-svn: 291706
-
Argyrios Kyrtzidis authored
We currently are unable to get a USR for those and it doesn't seem useful to try to index them. llvm-svn: 291705
-
Eli Friedman authored
Refines max backedge-taken count if a loop like "for (int i = 0; i != n; ++i) { /* body */ }" is rotated. Differential Revision: https://reviews.llvm.org/D28536 llvm-svn: 291704
-
Argyrios Kyrtzidis authored
[index] Add 'IBTypeOf' relation for ObjC methods marked with IBAction and properties with IBOutletCollection. llvm-svn: 291703
-
Tony Jiang authored
llvm-svn: 291702
-
Eli Friedman authored
This is both easier to understand, and produces a tighter bound in certain cases. Differential Revision: https://reviews.llvm.org/D28393 llvm-svn: 291701
-
Argyrios Kyrtzidis authored
llvm-svn: 291700
-
Peter Collingbourne authored
Re-apply r291205, "LowerTypeTests: Split the pass in two: a resolution phase and a lowering phase.", with a fix for an off-by-one error. llvm-svn: 291699
-
Daniel Berlin authored
classes, and updating checking to allow for equivalence through reachability. (Sadly, the checking here is not perfect, and can't be made perfect, so we'll have to disable it after we are satisfied with correctness. Right now it is just "very unlikely" to happen.) llvm-svn: 291698
-
Daniel Berlin authored
llvm-svn: 291697
-
Rong Xu authored
This patch resubmits the changes in r291588. llvm-svn: 291696
-
Kyle Butt authored
This reverts commit ada6595a526d71df04988eb0a4b4fe84df398ded. This needs a simple probability check because there are some cases where it is not profitable. llvm-svn: 291695
-
David Blaikie authored
There are a couple left in bool-like containers (BitVector, etc) where the implicit conversions seem more suitable - though it might be worth considering explicitifying those too. llvm-svn: 291694
-
Eli Friedman authored
The new matchers work after legalization to make them simpler, and to avoid blocking other optimizations. Differential Revision: https://reviews.llvm.org/D27779 llvm-svn: 291693
-
Michael Kuperstein authored
The removed assert seems bogus - it's perfectly legal for the roots of the vectorized subtrees to be equal even if the original scalar values aren't, if the original scalars happen to be equivalent. This fixes PR31599. Differential Revision: https://reviews.llvm.org/D28539 llvm-svn: 291692
-
Davide Italiano authored
llvm-svn: 291691
-
Simon Pilgrim authored
llvm-svn: 291690
-
Manman Ren authored
a header of that same module. This fixes a regression caused by r280409. rdar://problem/29930553 This is an updated version for r291628 (which was reverted in r291688). llvm-svn: 291689
-
Manman Ren authored
filter out the implicilty imported modules at CodeGen instead of removing the implicit ImportDecl when an implementation TU of a module imports a header of that same module. llvm-svn: 291688
-
Greg Clayton authored
Remove all variants of DWARFDie::getAttributeValueAs...() that had parameters that specified default values. Now we only support returning Optional<> values and have changed all clients over to use Optional::getValueOr(). Differential Revision: https://reviews.llvm.org/D28569 llvm-svn: 291686
-