| #
9832a3d1 |
| 10-Apr-2014 |
David Majnemer <[email protected]> |
CodeGen: Clean up CommonLinkage calculation
No functionality change.
llvm-svn: 205972
|
| #
54e3ba5a |
| 02-Apr-2014 |
David Majnemer <[email protected]> |
CodeGen: Emit some functions as weak_odr under -fms-compatibility
Summary: MSVC always emits inline functions marked with the extern storage class specifier. The result is something similar to the
CodeGen: Emit some functions as weak_odr under -fms-compatibility
Summary: MSVC always emits inline functions marked with the extern storage class specifier. The result is something similar to the opposite of __attribute__((gnu_inline)).
This extension is also available in C.
This fixes PR19264.
Reviewers: rnk, rsmith
CC: cfe-commits
Differential Revision: http://llvm-reviews.chandlerc.com/D3207
llvm-svn: 205485
show more ...
|
| #
fc6297f3 |
| 01-Apr-2014 |
Bob Wilson <[email protected]> |
Disable this-return optimizations when targeting iOS 5 and earlier.
Clang implements the part of the ARM ABI saying that certain functions (e.g., constructors and destructors) return "this", but App
Disable this-return optimizations when targeting iOS 5 and earlier.
Clang implements the part of the ARM ABI saying that certain functions (e.g., constructors and destructors) return "this", but Apple's version of gcc and llvm-gcc did not. The libstdc++ dylib on iOS 5 was built with llvm-gcc, which means that clang cannot safely assume that code from the C++ runtime will correctly follow the ABI. It is also possible to run into this problem when linking with other libraries built with gcc or llvm-gcc. Even though there is no way to reliably detect that situation, it is most likely to come up when targeting older versions of iOS. Disabling the optimization for any code targeting iOS 5 solves the libstdc++ problem and has a reasonably good chance of fixing the issue for other older libraries as well. <rdar://problem/16377159>
llvm-svn: 205272
show more ...
|
| #
f0674350 |
| 31-Mar-2014 |
Paul Robinson <[email protected]> |
Implement the 'optnone' attribute, which suppresses most optimizations on a function.
llvm-svn: 205255
|
| #
a2ee433c |
| 29-Mar-2014 |
Tim Northover <[email protected]> |
ARM64: initial clang support commit.
This adds Clang support for the ARM64 backend. There are definitely still some rough edges, so please bring up any issues you see with this patch.
As with the L
ARM64: initial clang support commit.
This adds Clang support for the ARM64 backend. There are definitely still some rough edges, so please bring up any issues you see with this patch.
As with the LLVM commit though, we think it'll be more useful for merging with AArch64 from within the tree.
llvm-svn: 205100
show more ...
|
| #
af369806 |
| 29-Mar-2014 |
David Majnemer <[email protected]> |
CodeGen: Don't crash when replacing functions
The peculiarities of C99 create scenario where an LLVM IR function declaration may need to be replaced with a definition baring a different type because
CodeGen: Don't crash when replacing functions
The peculiarities of C99 create scenario where an LLVM IR function declaration may need to be replaced with a definition baring a different type because the prototype and definition are not required to agree.
However, we were not properly deferring this when it occurred.
This fixes PR19280.
llvm-svn: 205099
show more ...
|
| #
a39fc6dd |
| 27-Mar-2014 |
Rafael Espindola <[email protected]> |
Handle and warn on aliases to weak aliases.
This produces valid IR now that llvm rejects aliases to weak aliases and warns the user that the resolution is not changed if the weak alias is overridden
Handle and warn on aliases to weak aliases.
This produces valid IR now that llvm rejects aliases to weak aliases and warns the user that the resolution is not changed if the weak alias is overridden.
llvm-svn: 204935
show more ...
|
| #
2f8d0104 |
| 26-Mar-2014 |
Rafael Espindola <[email protected]> |
Revert "Update for llvm api change."
This reverts commit r204783.
llvm-svn: 204785
|
| #
02633f63 |
| 26-Mar-2014 |
Rafael Espindola <[email protected]> |
Update for llvm api change.
llvm-svn: 204783
|
| #
58e5bee1 |
| 24-Mar-2014 |
David Majnemer <[email protected]> |
MS ABI: Eliminate Duplicate Strings
COFF doesn't have mergeable sections so LLVM/clang's normal tactics for string deduplication will not have any effect.
To remedy this we place each string inside
MS ABI: Eliminate Duplicate Strings
COFF doesn't have mergeable sections so LLVM/clang's normal tactics for string deduplication will not have any effect.
To remedy this we place each string inside it's own section and mark the section as IMAGE_COMDAT_SELECT_ANY. However, we can only do this if the string has an external name that we can generate from it's contents.
To be compatible with MSVC, we must use their scheme. Otherwise identical strings in translation units from clang may not be deduplicated with translation units in MSVC.
This fixes PR18248.
N.B. We will not attempt to do anything with a string literal which is not of type 'char' or 'wchar_t' because their compiler does not support unicode string literals as of this date. Further, we avoid doing this if either -fwritable-strings or -fsanitize=address are present.
This reverts commit r204596.
llvm-svn: 204675
show more ...
|
| #
89f588ff |
| 24-Mar-2014 |
Timur Iskhodzhanov <[email protected]> |
Revert r204562,204566,204586,204587 as they broke ASan on Windows
llvm-svn: 204596
|
| #
96bc4b03 |
| 24-Mar-2014 |
David Majnemer <[email protected]> |
MS ABI: Add tests, other cleanups for r204562
This commit cleans up a few accidents: - Do not rely on the order in which StringLiteral lays out bytes. - Use a more efficient mechanism for handling s
MS ABI: Add tests, other cleanups for r204562
This commit cleans up a few accidents: - Do not rely on the order in which StringLiteral lays out bytes. - Use a more efficient mechanism for handling so-called "special-mappings" when mangling string literals. - There is no need to allocate a copy of the mangled name. - Add the test written for r204562.
Thanks to Richard Smith for pointing these out!
llvm-svn: 204586
show more ...
|
| #
3843a05e |
| 23-Mar-2014 |
David Majnemer <[email protected]> |
MS ABI: Eliminate Duplicate Strings
COFF doesn't have mergeable sections so LLVM/clang's normal tactics for string deduplication will not have any effect.
To remedy this we place each string inside
MS ABI: Eliminate Duplicate Strings
COFF doesn't have mergeable sections so LLVM/clang's normal tactics for string deduplication will not have any effect.
To remedy this we place each string inside it's own section and mark the section as IMAGE_COMDAT_SELECT_ANY. However, we can only do this if the string has an external name that we can generate from it's contents.
To be compatible with MSVC, we must use their scheme. Otherwise identical strings in translation units from clang may not be deduplicated with translation units in MSVC.
This fixes PR18248.
N.B. We will not attempt to do anything with a string literal which is not of type 'char' or 'wchar_t' because their compiler does not support unicode string literals as of this date.
llvm-svn: 204562
show more ...
|
| #
d85eff49 |
| 14-Mar-2014 |
Aaron Ballman <[email protected]> |
[C++11] Replacing ObjCCategoryDecl iterators propimpl_begin() and propimpl_end() with iterator_range property_impls(). Updating all of the usages of the iterators with range-based for loops.
llvm-sv
[C++11] Replacing ObjCCategoryDecl iterators propimpl_begin() and propimpl_end() with iterator_range property_impls(). Updating all of the usages of the iterators with range-based for loops.
llvm-svn: 203930
show more ...
|
| #
aff18c04 |
| 13-Mar-2014 |
Aaron Ballman <[email protected]> |
[C++11] Replacing ObjCContainerDecl iterators meth_begin() and meth_end() with iterator_range methods(). Updating all of the usages of the iterators with range-based for loops.
llvm-svn: 203832
|
| #
93c7a653 |
| 13-Mar-2014 |
Rafael Espindola <[email protected]> |
Simplify code. No functionality change.
llvm-svn: 203804
|
| #
d66a17d0 |
| 12-Mar-2014 |
Justin Bogner <[email protected]> |
Revert "CodeGen: Use a binary format for instrumentation based profiling"
I've clearly done something wrong with how to get this to link correctly. Reverting for now.
This reverts commit r203711.
Revert "CodeGen: Use a binary format for instrumentation based profiling"
I've clearly done something wrong with how to get this to link correctly. Reverting for now.
This reverts commit r203711.
llvm-svn: 203712
show more ...
|
| #
ff9a0582 |
| 12-Mar-2014 |
Justin Bogner <[email protected]> |
CodeGen: Use a binary format for instrumentation based profiling
This updates CodeGenPGO to use the ProfileDataReader introduced to llvm in r203703 and the new API for writing out the profile introd
CodeGen: Use a binary format for instrumentation based profiling
This updates CodeGenPGO to use the ProfileDataReader introduced to llvm in r203703 and the new API for writing out the profile introduced to compiler-rt in r203710.
llvm-svn: 203711
show more ...
|
| #
be22bcb1 |
| 10-Mar-2014 |
Aaron Ballman <[email protected]> |
[C++11] Replacing DeclBase iterators specific_attr_begin() and specific_attr_end() with iterator_range specific_attrs(). Updating all of the usages of the iterators with range-based for loops.
llvm-
[C++11] Replacing DeclBase iterators specific_attr_begin() and specific_attr_end() with iterator_range specific_attrs(). Updating all of the usages of the iterators with range-based for loops.
llvm-svn: 203474
show more ...
|
| #
4d01fff4 |
| 09-Mar-2014 |
Chandler Carruth <[email protected]> |
[C++11] Update Clang for the change to LLVM's Use-Def chain iterators in r203364: what was use_iterator is now user_iterator, and there is a use_iterator for directly iterating over the uses.
This a
[C++11] Update Clang for the change to LLVM's Use-Def chain iterators in r203364: what was use_iterator is now user_iterator, and there is a use_iterator for directly iterating over the uses.
This also switches to use the range-based APIs where appropriate.
llvm-svn: 203365
show more ...
|
| #
629afaef |
| 07-Mar-2014 |
Aaron Ballman <[email protected]> |
[C++11] Replacing DeclBase iterators decls_begin() and decls_end() with iterator_range decls(). The same is true for the noload versions of these APIs. Updating all of the usages of the iterators wit
[C++11] Replacing DeclBase iterators decls_begin() and decls_end() with iterator_range decls(). The same is true for the noload versions of these APIs. Updating all of the usages of the iterators with range-based for loops.
llvm-svn: 203278
show more ...
|
| #
060062a4 |
| 06-Mar-2014 |
Rafael Espindola <[email protected]> |
Use llvm.compiler.used instead of llvm.used for objc symbols.
LLVM currently has a hack (shouldEmitUsedDirectiveFor) that causes it to not print no_dead_strip for symbols starting with 'l' or 'L'. T
Use llvm.compiler.used instead of llvm.used for objc symbols.
LLVM currently has a hack (shouldEmitUsedDirectiveFor) that causes it to not print no_dead_strip for symbols starting with 'l' or 'L'. These are exactly the ones that the clang's objc codegen is producing. The net result, is that it is equivalent to llvm.compiler.used.
The need for putting the private symbol in llvm.compiler.used should be clear (the objc runtime uses them). The reason for also putting the weak symbols in it is for LTO: ld64 will not ask us to preserve the it.
llvm-svn: 203172
show more ...
|
| #
c80ceea9 |
| 04-Mar-2014 |
Chandler Carruth <[email protected]> |
[Modules] Update to reflect the move of CallSite into the IR library in LLVM r202816.
llvm-svn: 202817
|
| #
0e716b42 |
| 03-Mar-2014 |
David Blaikie <[email protected]> |
DebugInfo: Emit only the declaration of a class template that has an explicit instantiation declaration (& always emit such a type when there's an explicit instantiation definition)
We should only h
DebugInfo: Emit only the declaration of a class template that has an explicit instantiation declaration (& always emit such a type when there's an explicit instantiation definition)
We should only have this optimization fire when the explicit instantiation definition would cause at least one member function to be emitted, thus ensuring that even a compiler not performing this optimization would still emit the full type information elsewhere.
But we should also pessimize output still by always emitting the definition when the explicit instantiation definition appears so that at some point in the future we can depend on that information even when no code had to be emitted in that TU. (this shouldn't happen very often, since people mostly use explicit spec decl/defs to reduce code size - but perhaps one day they could use it to explicitly reduce debug info size too)
This was worth about 2% for Clang and LLVM - so not a huge win, but a win. It looks really great for simple STL programs (include <string> and just declare a string - 14k -> 1.4k of .dwo)
llvm-svn: 202769
show more ...
|
| #
67e541e1 |
| 25-Feb-2014 |
David Majnemer <[email protected]> |
Attr: Remove ForceInline
The __forceinline keyword's semantics are now recast as AlwaysInline and the kw___forceinline token has its language mode set for KEYMS.
This preserves the semantics of the
Attr: Remove ForceInline
The __forceinline keyword's semantics are now recast as AlwaysInline and the kw___forceinline token has its language mode set for KEYMS.
This preserves the semantics of the previous implementation but with less duplication of code.
llvm-svn: 202131
show more ...
|