- Nov 12, 2016
-
-
Craig Topper authored
llvm-svn: 286710
-
Craig Topper authored
Summary: VALIGND and VALIGNQ are similar to PALIGNR but instead of working on a 128-bit lane they work on the entire vector register. This change leverages the shuffle rotate detection code used for PALIGNR to detect these cases. Reviewers: delena, RKSimon Subscribers: Farhana, llvm-commits Differential Revision: https://reviews.llvm.org/D26297 llvm-svn: 286709
-
Saleem Abdulrasool authored
Since we now have tests for llvm-strings, add a dependency on the tool. llvm-svn: 286707
-
Saleem Abdulrasool authored
We would ignore the last string that appeared if the file ended with a printable character. Ensure that we get the last string. llvm-svn: 286706
-
whitequark authored
llvm-svn: 286705
-
whitequark authored
llvm-svn: 286704
-
Kostya Serebryany authored
llvm-svn: 286703
-
Kostya Serebryany authored
llvm-svn: 286702
-
Lang Hames authored
return types. This class allows user provided handlers to return either error-wrapped types or plain types. In the latter case, the plain type is wrapped with a success value of Error or Expected<T> type to fit it into the rest of the serialization machinery. This patch allows us to remove the RPC unit-test workaround added in r286646. llvm-svn: 286701
-
Mehdi Amini authored
Differential Revision: https://reviews.llvm.org/D26565 llvm-svn: 286695
-
Zachary Turner authored
llvm-svn: 286692
-
Zachary Turner authored
llvm-svn: 286691
-
Zachary Turner authored
llvm-svn: 286690
-
Kostya Serebryany authored
llvm-svn: 286689
-
Rui Ueyama authored
llvm-svn: 286688
-
Tom Stellard authored
Summary: This fixes a regression caused by r286464. Reviewers: arsenm Subscribers: kzhuravl, wdng, nhaehnle, yaxunl, llvm-commits, tony-tye Differential Revision: https://reviews.llvm.org/D26570 llvm-svn: 286687
-
Zachary Turner authored
llvm-svn: 286686
-
Zachary Turner authored
llvm-svn: 286683
-
Zachary Turner authored
This introduces a new type-safe general purpose formatting library. It provides compile-time type safety, does not require a format specifier (since the type is deduced), and provides mechanisms for extending the format capability to user defined types, and overriding the formatting behavior for existing types. This patch additionally adds documentation for the API to the LLVM programmer's manual. Mailing List Thread: http://lists.llvm.org/pipermail/llvm-dev/2016-October/105836.html Differential Revision: https://reviews.llvm.org/D25587 llvm-svn: 286682
-
Rui Ueyama authored
This patch defines a new function to add a SectionContribs stream to a PDB file. Unlike SectionMap, SectionContribs contains a list of input sections as opposed to output sections. Note that this patch needs improving because currently we do not set Module field in SectionContribs entries. In a follow-up patch, I'll add Modules and then fix it after that. Differential Revision: https://reviews.llvm.org/D26210 llvm-svn: 286677
-
Tom Stellard authored
Summary: This pass was assuming that when a PHI instruction defined a register used by another PHI instruction that the defining insstruction would be legalized before the using instruction. This assumption was causing the pass to not legalize some PHI nodes within divergent flow-control. This fixes a bug that was uncovered by r285762. Reviewers: nhaehnle, arsenm Subscribers: kzhuravl, wdng, nhaehnle, yaxunl, tony-tye, llvm-commits Differential Revision: https://reviews.llvm.org/D26303 llvm-svn: 286676
-
Richard Trieu authored
When providing the project directory to the merge script, print it out in the commit instructions instead of the default project directory. llvm-svn: 286675
-
Sanjay Patel authored
Follow-up to r286664 cleanup as suggested by Eli. Thanks! llvm-svn: 286671
-
Sanjay Patel authored
llvm-svn: 286668
-
Kostya Serebryany authored
[libFuzzer] do not initialize parts of TracePC -- let them be initialized by the linker. Add no-msan attribute to the memcmp hook. llvm-svn: 286665
-
Sanjay Patel authored
llvm-svn: 286664
-
Anna Zaks authored
This implements a function annotation that disables TSan checking for the function at run time. The benefit over attribute((no_sanitize("thread"))) is that the accesses within the callees will also be suppressed. The motivation for this attribute is a guarantee given by the objective C language that the calls to the reference count decrement and object deallocation will be synchronized. To model this properly, we would need to intercept all ref count decrement calls (which are very common in ObjC due to use of ARC) and also every single message send. Instead, we propose to just ignore all accesses made from within dealloc at run time. The main downside is that this still does not introduce any synchronization, which means we might still report false positives if the code that relies on this synchronization is not executed from within dealloc. However, we have not seen this in practice so far and think these cases will be very rare. Differential Revision: https://reviews.llvm.org/D25858 llvm-svn: 286663
-
- Nov 11, 2016
-
-
Adam Nemet authored
This is PR28376. Unfortunately given the current structure of optimization diagnostics we lack the capability to tell whether the user has passed -Rpass-analysis=loop-vectorize since this is local to the front-end (BackendConsumer::OptimizationRemarkHandler). So rather than printing this even if the user has already passed -Rpass-analysis, this patch just punts and stops recommending this option. I don't think that getting this right is worth the complexity. Differential Revision: https://reviews.llvm.org/D26563 llvm-svn: 286662
-
Lang Hames authored
This is a temporary fix: The right solution is to make sure addHandler can support mutable lambdas. I'll add that in a follow-up patch. llvm-svn: 286661
-
Rui Ueyama authored
llvm-svn: 286657
-
Matthias Braun authored
Revert accidentally committed change. This reverts commit r286655. llvm-svn: 286656
-
Matthias Braun authored
The DAG mutators in the scheduler cannot really remove DAG nodes as additional anlysis information such as ScheduleDAGToplogicalSort are already computed at this point and rely on a fixed number of DAG nodes. Alleviate the missing removal with a new flag: Setting the new skip flag on a node ignores it during scheduling. llvm-svn: 286655
-
Matthias Braun authored
Push VRegUses/collectVRegUses() down the class hierarchy towards its only user ScheduleDAGMILive. NFCI: The initialization of the map happens at a later point but that should not matter. This is in preparation to allow DAG mutators to merge nodes, which relies on this map getting computed later. llvm-svn: 286654
-
Matthias Braun authored
llvm-svn: 286653
-
Matthias Braun authored
llvm-svn: 286652
-
Erik Eckstein authored
This is a follow-up on the recent refactoring of the FunctionMerge pass. It should fix a fail of the new FunctionComparator unittest whe compiling with MSVC. llvm-svn: 286648
-
Mehdi Amini authored
Reported by Kostya on llvm-dev, uncovered by an ASAN bot llvm-svn: 286647
-
Lang Hames authored
return type. This should be fixed permanently by having the RPCUtils header recognize the ErrorSuccess type. I'll commit that in a follow up patch. llvm-svn: 286646
-
Piotr Padlewski authored
llvm-svn: 286645
-
Adrian Prantl authored
llvm-svn: 286644
-