- Mar 06, 2017
-
-
Rafael Espindola authored
llvm-svn: 297077
-
Gor Nishanov authored
Summary: Added co_return statement emission. Tweaked coro-alloc.cpp test to use co_return to trigger coroutine processing instead of co_await, since this change starts emitting the body of the coroutine and await expression handling has not been upstreamed yet. Reviewers: rsmith, majnemer, EricWF, aaron.ballman Reviewed By: rsmith Subscribers: majnemer, llvm-commits, mehdi_amini Differential Revision: https://reviews.llvm.org/D29979 llvm-svn: 297076
-
Hans Wennborg authored
llvm-svn: 297075
-
Eric Fiselier authored
llvm-svn: 297074
-
Eric Fiselier authored
llvm-svn: 297073
-
Adrian Prantl authored
This error can be recovered from by stripping debug info. This is NFC for +asserts builds. llvm-svn: 297072
-
Eric Fiselier authored
llvm-svn: 297071
-
Paul Osmialowski authored
This adds AArch64 support to recently added part of the runtime responsible for offloading to target. This piece of code allows offloading-to-self on AArch64 machines. Differential Revision: https://reviews.llvm.org/D30644 llvm-svn: 297070
-
Eric Fiselier authored
llvm-svn: 297069
-
Chris Bieneman authored
Summary: This patch refactors the DWARFYAML code for dumping compile units to use a visitor pattern. Using this design will, in the future, enable the DWARF YAML code to perform analysis and mutations of the DWARF DIEs. An example of such mutations would be calculating the length of a compile unit and updating the CU's Length field before writing the DIE. This support will make it easier to craft or modify DWARF tests by hand. Reviewers: lhames Subscribers: mgorny, fhahn, jgosnell, aprantl, llvm-commits Differential Revision: https://reviews.llvm.org/D30357 llvm-svn: 297067
-
Eric Fiselier authored
llvm-svn: 297066
-
Michael Park authored
llvm-svn: 297065
-
Jessica Paquette authored
llvm-svn: 297064
-
Evgeniy Stepanov authored
tools/lld/ELF/Symbols.cpp:215:13: error: unused variable 'S' [-Werror,-Wunused-variable] if (auto *S = dyn_cast<SharedSymbol>(this) llvm-svn: 297063
-
Krzysztof Parzyszek authored
llvm-svn: 297062
-
Rafael Espindola authored
llvm-svn: 297061
-
Jan Vesely authored
also exit early on kill instead of redefinition. Differential Revision: https://reviews.llvm.org/D30230 llvm-svn: 297060
-
Rafael Espindola authored
llvm-svn: 297059
-
Daniel Berlin authored
NewGVN: We were not really failing this testcase, because the instructions it was looking for are unused. GVN value numbers unused instructions, NewGVN does not. Fix the instructions to be used, so we eliminate the redundancies it's checking for, and un-XFAIL it llvm-svn: 297058
-
Reid Kleckner authored
This was requested in PR31958 and elsewhere. llvm-svn: 297057
-
Chris Bieneman authored
David Blaikie pointed out that the `setForceChildren` API is no longer needed and should be removed from the DWARF Generator APIs. Also the DWARFDebugInfoTest file had some copy pasted comments that are not relevant. I've removed them. llvm-svn: 297056
-
Adam Nemet authored
llvm-svn: 297055
-
Krzysztof Parzyszek authored
If a block has non-analyzable branches, the listed successors don't need to add up to one. For example, if a block has a conditional tail call, that tail call will not have a corresponding successor in the successor list, but will still be a possible branch. Differential Revision: https://reviews.llvm.org/D30556 llvm-svn: 297054
-
Pavel Labath authored
it was accessing the details of the Log class directly. Let it go through the channel class instead. This also discovered a bug when we were setting but not clearing the log options when enabling a channel. llvm-svn: 297053
-
Sanjay Patel authored
llvm-svn: 297052
-
Tim Northover authored
Before, we were producing G_INSERT instructions that were actually closer to a cast or even a COPY when both input and output sizes are the same. This doesn't really make sense and means that everything interpreting a G_INSERT also has to handle all these kinds of casts. So now we detect these degenerate cases and emit real casts instead. llvm-svn: 297051
-
John McCall authored
llvm-svn: 297050
-
Rafael Espindola authored
This puts us at parity with bfd, which could already gc this case. I noticed the sections not being gced when linking a modified freebsd kernel. A section that was not gced and not mentioned in the linker script would end up breaking the expected layout. Since fixing the gc is relatively simple and an improvement, that seems better than trying to hack the orphan placement code. There are 173 input section in the entire link whose names are valid C identifiers, so this is probably not too performance critical. llvm-svn: 297049
-
Sanjay Patel authored
llvm-svn: 297048
-
Daniel Berlin authored
llvm-svn: 297047
-
Daniel Berlin authored
llvm-svn: 297046
-
Reid Kleckner authored
Use the store size of the argument type, which will be a byte-sized quantity, rather than dividing the size in bits by 8. Fixes PR32136 and re-enables copy elision from i64 arguments. Reverts the workaround in from r296950. llvm-svn: 297045
-
Tim Northover authored
llvm-svn: 297044
-
Zachary Turner authored
llvm-svn: 297043
-
Tim Northover authored
Now that G_INSERT instructions can only insert one register, this code was overly general. In another direction it didn't handle registers that crossed split boundaries properly, which needed to be fixed. llvm-svn: 297042
-
Sanjay Patel authored
llvm-svn: 297040
-
Krzysztof Parzyszek authored
llvm-svn: 297039
-
Dehao Chen authored
Summary: We do not need that special handling because the debug info is more accurate now. Performance testing shows no regression on google internal benchmarks. Reviewers: davidxl, aprantl Reviewed By: aprantl Subscribers: llvm-commits, aprantl Differential Revision: https://reviews.llvm.org/D30658 llvm-svn: 297038
-
Vassil Vassilev authored
llvm-svn: 297037
-
Zachary Turner authored
1) Looks in Plugins and clang 2) Adds a mode to display the deps sorted by the number of times the deps occurs in a particular project llvm-svn: 297036
-