]> granicus.if.org Git - clang/log
clang
9 years agoReturn an ArrayRef instead of having two out parameters of a pointer and length. NFC
Craig Topper [Mon, 19 Oct 2015 03:05:12 +0000 (03:05 +0000)]
Return an ArrayRef instead of having two out parameters of a pointer and length. NFC

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250676 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoclang-format: Extend main header include sorting heuristic to Objective-C files.
Nico Weber [Mon, 19 Oct 2015 01:36:09 +0000 (01:36 +0000)]
clang-format: Extend main header include sorting heuristic to Objective-C files.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250675 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agodocs: remote stale refs
Saleem Abdulrasool [Mon, 19 Oct 2015 01:24:08 +0000 (01:24 +0000)]
docs: remote stale refs

Since the attribute documentation is now auto-generated, the previous references
are no longer valid.  This prevented the docs build from completing
successfully.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250674 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoUpdate `clang-format -help` output in clang-format docs.
Nico Weber [Mon, 19 Oct 2015 01:08:30 +0000 (01:08 +0000)]
Update `clang-format -help` output in clang-format docs.

-assume-filename, -fallback-style, and -sort-includes are new.  (They're also
longer than the previous options, so all descriptions shift over by some amount,
making this diff look larger than it is.)

It looks like someone renamed "General options" to "Generic Options" too.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250672 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoUpdate list of languages advertised in OVERVIEW: A tool to format C/C++/Java/JavaScri...
Nico Weber [Mon, 19 Oct 2015 01:03:19 +0000 (01:03 +0000)]
Update list of languages advertised in OVERVIEW: A tool to format C/C++/Java/JavaScript/Objective-C/Protobuf code.

If no arguments are specified, it formats the code from standard input
and writes the result to the standard output.
If <file>s are given, it reformats the files. If -i is specified
together with <file>s, the files are edited in-place. Otherwise, the
result is written to the standard output.

USAGE: clang-format [options] [<file> ...]

OPTIONS:
  -assume-filename=<string> - When reading from stdin, clang-format assumes this
                              filename to look for a style config file (with
                              -style=file) and to determine the language.
  -cursor=<uint>            - The position of the cursor when invoking
                              clang-format from an editor integration
  -dump-config              - Dump configuration options to stdout and exit.
                              Can be used with -style option.
  -fallback-style=<string>  - The name of the predefined style used as a
                              fallback in case clang-format is invoked with
                              -style=file, but can not find the .clang-format
                              file to use.
                              Use -fallback-style=none to skip formatting.
  -help                     - Display available options (-help-hidden for more)
  -i                        - Inplace edit <file>s, if specified.
  -length=<uint>            - Format a range of this length (in bytes).
                              Multiple ranges can be formatted by specifying
                              several -offset and -length pairs.
                              When only a single -offset is specified without
                              -length, clang-format will format up to the end
                              of the file.
                              Can only be used with one input file.
  -lines=<string>           - <start line>:<end line> - format a range of
                              lines (both 1-based).
                              Multiple ranges can be formatted by specifying
                              several -lines arguments.
                              Can't be used with -offset and -length.
                              Can only be used with one input file.
  -offset=<uint>            - Format a range starting at this byte offset.
                              Multiple ranges can be formatted by specifying
                              several -offset and -length pairs.
                              Can only be used with one input file.
  -output-replacements-xml  - Output replacements as XML.
  -sort-includes            - Sort touched include lines
  -style=<string>           - Coding style, currently supports:
                                LLVM, Google, Chromium, Mozilla, WebKit.
                              Use -style=file to load style configuration from
                              .clang-format file located in one of the parent
                              directories of the source file (or current
                              directory for stdin).
                              Use -style="{key: value, ...}" to set specific
                              parameters, e.g.:
                                -style="{BasedOnStyle: llvm, IndentWidth: 8}"
  -version                  - Display the version of this program output.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250671 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoNo functionality change, just fix whitespace, a typo and remove an unnecessary
Nick Lewycky [Sun, 18 Oct 2015 20:32:12 +0000 (20:32 +0000)]
No functionality change, just fix whitespace, a typo and remove an unnecessary
emacs mode marker. (Changes left behind from another patch that ended up not
working out.)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250666 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoCodeGen: simplify TargetOptions setup
Saleem Abdulrasool [Sun, 18 Oct 2015 20:24:53 +0000 (20:24 +0000)]
CodeGen: simplify TargetOptions setup

Do direct assignment of boolean values and regroup.  Use StringSwitch instead of
custom cases.  NFC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250665 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoSupport linking against OpenMP runtime on FreeBSD.
Dimitry Andric [Sun, 18 Oct 2015 13:32:20 +0000 (13:32 +0000)]
Support linking against OpenMP runtime on FreeBSD.

Summary:
Similar to rL248426 (which was a followup to rL248379 and rL248424), add the
required libraries for OpenMP on the linker command line, and update the test
case.

Reviewers: emaste, theraven, joerg

Subscribers: cfe-commits

Differential Revision: http://reviews.llvm.org/D13822

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250657 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoclang-format: [JS] Handle string literals spanning character classes.
Daniel Jasper [Sun, 18 Oct 2015 07:02:28 +0000 (07:02 +0000)]
clang-format: [JS] Handle string literals spanning character classes.

If a RegExp contains a character group with a quote (/["]/), the
trailing end of it is first tokenized as a string literal, which leads
to the merging code seeing an unbalanced bracket.

This change parses regex literals from the left hand side. That
simplifies the parsing code and also allows correctly handling escapes
and character classes, hopefully correctly parsing all regex literals.

Patch by Martin Probst, thank you.
Review: http://reviews.llvm.org/D13765

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250648 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoMake a bunch of static arrays const.
Craig Topper [Sun, 18 Oct 2015 05:29:26 +0000 (05:29 +0000)]
Make a bunch of static arrays const.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250647 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd an unnecessary makeArrayRef I add earlier. I didn't realize range-based for loops...
Craig Topper [Sun, 18 Oct 2015 05:29:23 +0000 (05:29 +0000)]
Add an unnecessary makeArrayRef I add earlier. I didn't realize range-based for loops worked with arrays.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250646 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoUse std::is_sorted instead of a manual loop.
Craig Topper [Sun, 18 Oct 2015 05:29:21 +0000 (05:29 +0000)]
Use std::is_sorted instead of a manual loop.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250645 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoclang/test/Driver/ps4-linker-non-win.c: Tweak for cygwin like ps4-linker-win.c@250403...
NAKAMURA Takumi [Sat, 17 Oct 2015 23:54:54 +0000 (23:54 +0000)]
clang/test/Driver/ps4-linker-non-win.c: Tweak for cygwin like ps4-linker-win.c@250403. Cygwin seeks dependent libs along $PATH.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250632 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoclang/test/Driver/ps4-linker-non-win.c: Make %T/ps4-ld executable, or the driver...
NAKAMURA Takumi [Sat, 17 Oct 2015 23:47:02 +0000 (23:47 +0000)]
clang/test/Driver/ps4-linker-non-win.c: Make %T/ps4-ld executable, or the driver wouldn't find it.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250631 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoclang/test/Driver/ps4-linker-non-win.c: Make sure that %T/ps4-ld would be used but...
NAKAMURA Takumi [Sat, 17 Oct 2015 23:15:16 +0000 (23:15 +0000)]
clang/test/Driver/ps4-linker-non-win.c: Make sure that %T/ps4-ld would be used but *fails*.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250630 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoclang-format: Add test for (properly escaped) XML output.
Daniel Jasper [Sat, 17 Oct 2015 22:44:19 +0000 (22:44 +0000)]
clang-format: Add test for (properly escaped) XML output.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250629 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoReplace a static compare function with a lambda. NFC
Craig Topper [Sat, 17 Oct 2015 20:18:46 +0000 (20:18 +0000)]
Replace a static compare function with a lambda. NFC

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250621 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoUse a range-based for loop. Use std::end instead of pointer+array_lengthof. NFC
Craig Topper [Sat, 17 Oct 2015 17:10:43 +0000 (17:10 +0000)]
Use a range-based for loop. Use std::end instead of pointer+array_lengthof. NFC

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250617 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[Frontend] Name variable correctly.
Davide Italiano [Sat, 17 Oct 2015 06:46:39 +0000 (06:46 +0000)]
[Frontend] Name variable correctly.

Reported by: Kim Grasman!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250605 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd an AST node matcher for TemplateTypeParmDecl objects.
Eric Fiselier [Sat, 17 Oct 2015 02:34:44 +0000 (02:34 +0000)]
Add an AST node matcher for TemplateTypeParmDecl objects.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250602 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoDiagnose UnresolvedLookupExprs that resolve to instance members in static methods
Reid Kleckner [Sat, 17 Oct 2015 00:19:04 +0000 (00:19 +0000)]
Diagnose UnresolvedLookupExprs that resolve to instance members in static methods

During the initial template parse for this code, 'member' is unresolved
and we don't know anything about it:

  struct A { int member };
  template <typename T>
  struct B : public T {
    using T::member;
    static void f() {
      (void)member; // Could be static or non-static.
    }
  };
  template class B<A>;

The pattern declaration contains an UnresolvedLookupExpr rather than an
UnresolvedMemberExpr because `f` is static, and `member` should never be
a field. However, if the code is invalid, it may become a field, in
which case we should diagnose it.

Reviewers: rjmccall, rsmith

Differential Revision: http://reviews.llvm.org/D6700

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250592 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[modules] Allow the error when explicitly loading an incompatible module file
Richard Smith [Fri, 16 Oct 2015 23:20:19 +0000 (23:20 +0000)]
[modules] Allow the error when explicitly loading an incompatible module file
via -fmodule-file= to be turned off; in that case, just include the relevant
files textually. This allows module files to be unconditionally passed to all
compile actions via CXXFLAGS, and to be ignored for rules that specify custom
incompatible flags.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250577 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[Frontend/CompilerInvocation] Use range-based loop. NFC.
Davide Italiano [Fri, 16 Oct 2015 22:13:53 +0000 (22:13 +0000)]
[Frontend/CompilerInvocation] Use range-based loop. NFC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250559 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoRefactor module lookup when looking up a header file, and wire through the requesting...
Richard Smith [Fri, 16 Oct 2015 21:42:56 +0000 (21:42 +0000)]
Refactor module lookup when looking up a header file, and wire through the requesting module. No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250554 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoOnce again fix this test to read from stdin rather than an input file
Richard Barton [Fri, 16 Oct 2015 20:15:33 +0000 (20:15 +0000)]
Once again fix this test to read from stdin rather than an input file

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250547 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoFurther increase helfulness of assert message
Richard Barton [Fri, 16 Oct 2015 20:15:29 +0000 (20:15 +0000)]
Further increase helfulness of assert message

If you increase the number of diags of a particular type by one more than the
number available you get the nice assert message. If you do it by two more
than available you get the old non-helpful message. Combining the two makes
sense I think.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250546 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoTeach MyriadToolchain how to find its C++ header paths.
James Y Knight [Fri, 16 Oct 2015 18:46:26 +0000 (18:46 +0000)]
Teach MyriadToolchain how to find its C++ header paths.

Also move the addLibStdCXXIncludePaths helper function from Linux to
Generic_GCC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250536 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[PS4] Add missing tests for -fsanitize=...
Filipe Cabecinhas [Fri, 16 Oct 2015 15:08:01 +0000 (15:08 +0000)]
[PS4] Add missing tests for -fsanitize=...

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250516 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoPS4: Add tests for rtti/vptr-sanitizer interaction
Filipe Cabecinhas [Fri, 16 Oct 2015 15:07:56 +0000 (15:07 +0000)]
PS4: Add tests for rtti/vptr-sanitizer interaction

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250515 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoPS4: Make sure to add the sanitizer runtime before any linker input
Filipe Cabecinhas [Fri, 16 Oct 2015 15:07:48 +0000 (15:07 +0000)]
PS4: Make sure to add the sanitizer runtime before any linker input

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250514 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[CMake] Reformat CLANG_TEST_DEPS.
NAKAMURA Takumi [Fri, 16 Oct 2015 09:38:42 +0000 (09:38 +0000)]
[CMake] Reformat CLANG_TEST_DEPS.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250503 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoTest commit
Sean Eveson [Fri, 16 Oct 2015 08:54:23 +0000 (08:54 +0000)]
Test commit

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250500 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[X86] Add fxsr feature name for fxsave/fxrestore builtins.
Craig Topper [Fri, 16 Oct 2015 06:22:36 +0000 (06:22 +0000)]
[X86] Add fxsr feature name for fxsave/fxrestore builtins.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250498 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[X86] Add sse4.2 feature name to CRC32 builtins.
Craig Topper [Fri, 16 Oct 2015 05:25:15 +0000 (05:25 +0000)]
[X86] Add sse4.2 feature name to CRC32 builtins.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250496 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[X86] Add proper feature name to some avx512dq builtins.
Craig Topper [Fri, 16 Oct 2015 05:25:04 +0000 (05:25 +0000)]
[X86] Add proper feature name to some avx512dq builtins.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250495 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoMake __builtin_object_size more conservative
George Burgess IV [Fri, 16 Oct 2015 01:49:01 +0000 (01:49 +0000)]
Make __builtin_object_size more conservative

r246877 made __builtin_object_size substantially more aggressive with
unknown bases if Type=1 or Type=3, which causes issues when we encounter
code like this:

struct Foo {
  int a;
  char str[1];
};

const char str[] = "Hello, World!";
struct Foo *f = (struct Foo *)malloc(sizeof(*f) + strlen(str));
strcpy(&f->str, str);

__builtin_object_size(&f->str, 1) would hand back 1, which is
technically correct given the type of Foo, but the type of Foo lies to
us about how many bytes are available in this case.

This patch adds support for this "writing off the end" idiom -- we now
answer conservatively when we're given the address of the very last
member in a struct.

Differential Revision: http://reviews.llvm.org/D12169

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250488 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[Sema] Fix address-of + enable_if overloading logic
George Burgess IV [Fri, 16 Oct 2015 01:17:38 +0000 (01:17 +0000)]
[Sema] Fix address-of + enable_if overloading logic

Previously, our logic when taking the address of an overloaded function
would not consider enable_if attributes, so long as all of the enable_if
conditions on a given candidate were true. So, two functions with
identical signatures (one with enable_if attributes, the other without),
would be considered equally good overloads. If we were calling the
function instead of taking its address, then the function with enable_if
attributes would be preferred.

This patch makes us prefer the candidate with enable_if regardless of if
we're calling or taking the address of an overloaded function.

Differential Revision: http://reviews.llvm.org/D13795

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250486 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd "-Wc++11-inline-namespace" so that libc++ can use -pedantic in C++03.
Eric Fiselier [Fri, 16 Oct 2015 00:31:36 +0000 (00:31 +0000)]
Add "-Wc++11-inline-namespace" so that libc++ can use -pedantic in C++03.

Summary: The title says it all.

Reviewers: rsmith

Subscribers: cfe-commits

Differential Revision: http://reviews.llvm.org/D13790

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250477 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoMark this test as requiring and x86 registered target.
Eric Christopher [Fri, 16 Oct 2015 00:14:36 +0000 (00:14 +0000)]
Mark this test as requiring and x86 registered target.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250475 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd an error when calling a builtin that requires features that don't
Eric Christopher [Thu, 15 Oct 2015 23:47:11 +0000 (23:47 +0000)]
Add an error when calling a builtin that requires features that don't
match the feature set of the function that they're being called from.

This ensures that we can effectively diagnose some[1] code that would
instead ICE in the backend with a failure to select message.

Example:

__m128d foo(__m128d a, __m128d b) {
  return __builtin_ia32_addsubps(b, a);
}

compiled for normal x86_64 via:

clang -target x86_64-linux-gnu -c

would fail to compile in the back end because the normal subtarget
features for x86_64 only include sse2 and the builtin requires sse3.

[1] We're still not erroring on:

__m128i bar(__m128i const *p) { return _mm_lddqu_si128(p); }

where we should fail and error on an always_inline function being
inlined into a function that doesn't support the subtarget features
required.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250473 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoFix the subtarget features required by some x86 builtins.
Eric Christopher [Thu, 15 Oct 2015 22:46:02 +0000 (22:46 +0000)]
Fix the subtarget features required by some x86 builtins.

Update the fma builtins to be fma/fma4 until some we can find some
documentation either way.

Update a couple of the avx intrinsics because they were in the wrong
category.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250470 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd llvm-bcanalyzer to list of clang test dependences
Teresa Johnson [Thu, 15 Oct 2015 21:06:53 +0000 (21:06 +0000)]
Add llvm-bcanalyzer to list of clang test dependences

This addresses a bot failure from r250455, since new Misc/thinlto.c
test uses it.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250460 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoRecommit "Clang support for -flto=thin."
Teresa Johnson [Thu, 15 Oct 2015 20:35:53 +0000 (20:35 +0000)]
Recommit "Clang support for -flto=thin."

This recommits r250398 with fixes to the tests for bot failures.

Add "-target x86_64-unknown-linux" to the clang invocations that
check for the gold plugin.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250455 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoThe target-feature command line option doesn't take a comma delimited
Eric Christopher [Thu, 15 Oct 2015 20:04:42 +0000 (20:04 +0000)]
The target-feature command line option doesn't take a comma delimited
string, so split them into multiple options.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250449 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd the minimum target features that these tests depend upon.
Eric Christopher [Thu, 15 Oct 2015 20:04:40 +0000 (20:04 +0000)]
Add the minimum target features that these tests depend upon.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250448 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoclang-format: Basic escaping when outputting XML.
Daniel Jasper [Thu, 15 Oct 2015 18:39:31 +0000 (18:39 +0000)]
clang-format: Basic escaping when outputting XML.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250440 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoPut back doxygen comment accidentally dropped in r250418.
Benjamin Kramer [Thu, 15 Oct 2015 16:46:25 +0000 (16:46 +0000)]
Put back doxygen comment accidentally dropped in r250418.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250428 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoclang-format/java: Break after annotations on fields in Chromium style.
Nico Weber [Thu, 15 Oct 2015 16:03:01 +0000 (16:03 +0000)]
clang-format/java: Break after annotations on fields in Chromium style.

Chromium follows the Android style guide for Java code, and that doesn't make
the distinction between fields and non-fields that the Google Java style guide
makes:

https://source.android.com/source/code-style.html#use-standard-java-annotations
https://google.github.io/styleguide/javaguide.html#s4.8.5-annotations

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250422 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[CodeGen] Remove dead code. NFC.
Benjamin Kramer [Thu, 15 Oct 2015 15:29:40 +0000 (15:29 +0000)]
[CodeGen] Remove dead code. NFC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250418 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd support for CloudABI/aarch64.
Ed Schouten [Thu, 15 Oct 2015 15:07:07 +0000 (15:07 +0000)]
Add support for CloudABI/aarch64.

The core C library has already been ported over to aarch64 successfully,
meaning there is no reason to hold this change back.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250416 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoTweak to make clang/test/Driver/ps4-linker-win.c less sinsitive of DLL path.
NAKAMURA Takumi [Thu, 15 Oct 2015 13:51:13 +0000 (13:51 +0000)]
Tweak to make clang/test/Driver/ps4-linker-win.c less sinsitive of DLL path.

  - On mingw-w64, libstdc++-6.dll is used for clang.exe. The DLL might not be in Windows' system directory.
  - With --enable-shared, DLLs might be in ${CMAKE_BINARY_DIR}/bin.

I understand this test confirms that appropriate name of executable can be found on %PATH%.
Therefore I added "Output\\" before each expression.

FIXME: The output directory %T is hardcoded like "Output\\ps4-ld.exe".

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250403 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoRevert "Clang support for -flto=thin." (bot failures)
Teresa Johnson [Thu, 15 Oct 2015 13:41:51 +0000 (13:41 +0000)]
Revert "Clang support for -flto=thin." (bot failures)

Rolling this back for now since there are a couple of bot failures on
the new tests I added, and I won't have a chance to look at them in detail
until later this afternoon. I think the new tests need some restrictions on
having the gold plugin available.

This reverts commit r250398.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250402 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoClang support for -flto=thin.
Teresa Johnson [Thu, 15 Oct 2015 13:08:13 +0000 (13:08 +0000)]
Clang support for -flto=thin.

Summary:
Add clang support for -flto=thin option, which is used to set the
EmitFunctionSummary code gen option on compiles.

Add -flto=full as an alias to the existing -flto.

Add tests to check for proper overriding of -flto variants on the
command line, and convert grep tests to FileCheck.

Reviewers: dexonsmith, joker.eph

Subscribers: davidxl, cfe-commits

Differential Revision: http://reviews.llvm.org/D11908

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250398 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoHeaders: Switch some headers to LF line endings for consistency.
Peter Collingbourne [Thu, 15 Oct 2015 10:33:27 +0000 (10:33 +0000)]
Headers: Switch some headers to LF line endings for consistency.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250388 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoUpdate clang for DIBuilder::createSubroutineType API change.
Eric Christopher [Thu, 15 Oct 2015 06:56:08 +0000 (06:56 +0000)]
Update clang for DIBuilder::createSubroutineType API change.

Patch by Amaury Sechet!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250373 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[X86] Add proper feature names to xsave builtins.
Craig Topper [Thu, 15 Oct 2015 05:23:46 +0000 (05:23 +0000)]
[X86] Add proper feature names to xsave builtins.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250369 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[X86] Add command line switches for xsave/xsaveopt/xsavec/xsaves. Macro defines for...
Craig Topper [Thu, 15 Oct 2015 05:23:38 +0000 (05:23 +0000)]
[X86] Add command line switches for xsave/xsaveopt/xsavec/xsaves. Macro defines for the same. And add the flags to correct CPU names.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250368 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoRemove unnecessary braces in single-line 'if'.
Douglas Katzman [Thu, 15 Oct 2015 04:10:40 +0000 (04:10 +0000)]
Remove unnecessary braces in single-line 'if'.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250363 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[X86] Use C+11 non-static data member initialization to initialize all the X86 featur...
Craig Topper [Wed, 14 Oct 2015 23:47:57 +0000 (23:47 +0000)]
[X86] Use C+11 non-static data member initialization to initialize all the X86 feature controls. NFC

This simplifies the constructor initialization list and makes it less likely a feature flag will be forgotten there.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250348 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoSample profiles - Update text profile documentation.
Diego Novillo [Wed, 14 Oct 2015 18:37:39 +0000 (18:37 +0000)]
Sample profiles - Update text profile documentation.

There's been some changes to the text encoding for sample profiles. This
updates the documentation and an example.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250310 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoIntrin.h: implement __emul and __emulu
Hans Wennborg [Wed, 14 Oct 2015 16:24:28 +0000 (16:24 +0000)]
Intrin.h: implement __emul and __emulu

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250301 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoTweak a -g related test for the PS4
Filipe Cabecinhas [Wed, 14 Oct 2015 14:45:36 +0000 (14:45 +0000)]
Tweak a -g related test for the PS4

Make sure we're matching what we want:
 - Always have -generate-arange-section (independent of -g)
 - Emit a -dwarf-version=... when -g is there.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250298 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoBring back r250262: PS4 toolchain
Filipe Cabecinhas [Wed, 14 Oct 2015 12:25:43 +0000 (12:25 +0000)]
Bring back r250262: PS4 toolchain

There was a minor problem with a test. Sorry for the noise yesterday.

This patch adds missing pieces to clang, including the PS4 toolchain
definition, added warnings, PS4 defaults, and Driver changes needed for
our compiler.

A patch by Filipe Cabecinhas, Pierre Gousseau and Katya Romanova!

Differential Revision: http://reviews.llvm.org/D13482

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250293 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[CMake] Add LLVM_VERSION_PATCH to the -current_version flag for libclang.
Chris Bieneman [Wed, 14 Oct 2015 07:50:47 +0000 (07:50 +0000)]
[CMake] Add LLVM_VERSION_PATCH to the -current_version flag for libclang.

This is to match autoconf where LLVM_SUBMIT_SUBVERSION is usually set to ${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250278 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoRevert-to-green r250262 (PS4 toolchain patch)
Sean Silva [Wed, 14 Oct 2015 06:45:07 +0000 (06:45 +0000)]
Revert-to-green r250262 (PS4 toolchain patch)

It is breaking llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast
e.g. http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/1362

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250273 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoCanonicalize some of the x86 builtin tests and either remove or comment
Eric Christopher [Wed, 14 Oct 2015 05:40:21 +0000 (05:40 +0000)]
Canonicalize some of the x86 builtin tests and either remove or comment
about optimization options.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250271 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoRemove the optimization option from this test as it is unnecessary
Eric Christopher [Wed, 14 Oct 2015 05:40:11 +0000 (05:40 +0000)]
Remove the optimization option from this test as it is unnecessary
and front end tests should avoid this if possible.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250270 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[MSVC] Fix for http://llvm.org/PR24132: __declspec(property): double invocations...
Alexey Bataev [Wed, 14 Oct 2015 04:05:42 +0000 (04:05 +0000)]
[MSVC] Fix for http://llvm.org/PR24132: __declspec(property): double invocations of foo() when compiling foo()->propertyName
Removes extra codegen for base expression of MS property call
Differential Revision: http://reviews.llvm.org/D13375

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250265 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoI took care of the build problem in the commit 250252.
Ekaterina Romanova [Wed, 14 Oct 2015 01:09:02 +0000 (01:09 +0000)]
I took care of the build problem in the commit 250252.
Resubmitting the patch.

This patch adds missing pieces to clang, including the PS4 toolchain
definition, added warnings, PS4 defaults, and Driver changes needed for
our compiler.

A patch by Filipe Cabecinhas, Pierre Gousseau and Katya Romanova!

Differential Revision: http://reviews.llvm.org/D13482

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250262 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoreverting my patch, cause build problems
Ekaterina Romanova [Wed, 14 Oct 2015 00:03:20 +0000 (00:03 +0000)]
reverting my patch, cause build problems

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250257 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoThis patch adds missing pieces to clang, including the PS4 toolchain
Ekaterina Romanova [Tue, 13 Oct 2015 23:40:02 +0000 (23:40 +0000)]
This patch adds missing pieces to clang, including the PS4 toolchain
definition, added warnings, PS4 defaults, and Driver changes needed for
our compiler.

A patch by Filipe Cabecinhas, Pierre Gousseau and Katya Romanova!

Differential Revision: http://reviews.llvm.org/D13482

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250252 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[Sema/objc] When checking for unimplemented methods treat methods from class extensio...
Argyrios Kyrtzidis [Tue, 13 Oct 2015 23:27:34 +0000 (23:27 +0000)]
[Sema/objc] When checking for unimplemented methods treat methods from class extensions as continuation of the class interface.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250250 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[CMake]Getting rid of references to LLVM_SUBMIT_VERSION and LLVM_SUBMIT_SUBVERSION...
Chris Bieneman [Tue, 13 Oct 2015 23:03:54 +0000 (23:03 +0000)]
[CMake]Getting rid of references to LLVM_SUBMIT_VERSION and LLVM_SUBMIT_SUBVERSION in favor of LLVM_VERSION_MAJOR and LLVM_VERSION_MINOR.

LLVM_SUBMIT_VERSION and LLVM_SUBMIT_SUBVERSION are commonly used variable names in the autoconf build system. They seem to have leeched into clang's CMake in a few places, and should just be replaced by the LLVM_VERSION_* variables where appropriate.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250246 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[analyzer] Don’t invalidate CXXThis when conservatively evaluating const methods...
Devin Coughlin [Tue, 13 Oct 2015 22:20:52 +0000 (22:20 +0000)]
[analyzer] Don’t invalidate CXXThis when conservatively evaluating const methods (PR 21606)

Prevent invalidation of `this' when a method is const; fixing PR 21606.

A patch by Sean Eveson!

Differential Revision: http://reviews.llvm.org/D13099

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250237 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoMove the adc-builtins test to the pattern of the other builtins
Eric Christopher [Tue, 13 Oct 2015 18:40:21 +0000 (18:40 +0000)]
Move the adc-builtins test to the pattern of the other builtins
tests by predefining _MM_MALLOC_H rather than use -ffreestanding.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250203 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd subtarget feature support for 3dnowa to the 3dnowa intrinsics.
Eric Christopher [Tue, 13 Oct 2015 18:40:17 +0000 (18:40 +0000)]
Add subtarget feature support for 3dnowa to the 3dnowa intrinsics.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250202 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[CMake] When building clang as an external project we should pass through all variabl...
Chris Bieneman [Tue, 13 Oct 2015 18:17:30 +0000 (18:17 +0000)]
[CMake] When building clang as an external project we should pass through all variables that start with COMPILER_RT

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250196 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAlways pass a -dwarf-version argument to integrated as.
Douglas Katzman [Tue, 13 Oct 2015 16:22:51 +0000 (16:22 +0000)]
Always pass a -dwarf-version argument to integrated as.

This removes the default of 3 hidden in the assembler previously.

Fixes breakage caused by r249655, reported by vsukharev.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250173 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[Driver] Use the parent_path of the clang executable as the default InstalledDir
Benjamin Kramer [Tue, 13 Oct 2015 15:19:32 +0000 (15:19 +0000)]
[Driver] Use the parent_path of the clang executable as the default InstalledDir

This is what most people want anyways. Clang -cc1's main() will override
this but for other tools this is the most sensible default and avoids
some work.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250164 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[X86] Add XSAVE intrinsic family
Amjad Aboud [Tue, 13 Oct 2015 12:29:35 +0000 (12:29 +0000)]
[X86] Add XSAVE intrinsic family

Add intrinsics for the
  XSAVE instructions (XSAVE/XSAVE64/XRSTOR/XRSTOR64)
  XSAVEOPT instructions (XSAVEOPT/XSAVEOPT64)
  XSAVEC instructions (XSAVEC/XSAVEC64)
  XSAVES instructions (XSAVES/XSAVES64/XRSTORS/XRSTORS64)

Differential Revision: http://reviews.llvm.org/D13014

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250158 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoRemove unused diagnostic. NFC.
Benjamin Kramer [Tue, 13 Oct 2015 10:10:03 +0000 (10:10 +0000)]
Remove unused diagnostic. NFC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250155 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[X86] LLVM now prints XOP immediates as unsigned after r250147. Fix expected check...
Craig Topper [Tue, 13 Oct 2015 05:15:17 +0000 (05:15 +0000)]
[X86] LLVM now prints XOP immediates as unsigned after r250147. Fix expected check string accordingly.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250149 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[modules] Improve error message on failed module load due to a missing file to
Richard Smith [Tue, 13 Oct 2015 01:26:26 +0000 (01:26 +0000)]
[modules] Improve error message on failed module load due to a missing file to
say which module file referenced the missing file.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250140 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[modules] Allow the error on importing a C++ module within an extern "C"
Richard Smith [Tue, 13 Oct 2015 00:39:40 +0000 (00:39 +0000)]
[modules] Allow the error on importing a C++ module within an extern "C"
context (but otherwise at the top level) to be disabled, to support use of C++
standard library implementations that (legitimately) mark their <blah.h>
headers as being C++ headers from C libraries that wrap things in 'extern "C"'
a bit too enthusiastically.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250137 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoTweak clang/test/CodeGen/debug-prefix-map.c to appease win32 hosts.
NAKAMURA Takumi [Tue, 13 Oct 2015 00:38:06 +0000 (00:38 +0000)]
Tweak clang/test/CodeGen/debug-prefix-map.c to appease win32 hosts.

  !1 = !DIFile(filename: "/var/empty\5C<stdin>", directory: "E:\5Cllvm\5Cbuild\5Ccmake-ninja\5Ctools\5Cclang\5Ctest\5CCodeGen")

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250136 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[modules] Fix merging of __va_list_tag's implicit special member functions.
Richard Smith [Tue, 13 Oct 2015 00:23:25 +0000 (00:23 +0000)]
[modules] Fix merging of __va_list_tag's implicit special member functions.

We model predefined declarations as not being from AST files, but in most ways
they act as if they come from some implicit prebuilt module file imported
before all others. Therefore, if we see an update to the predefined 'struct
__va_list_tag' declaration (and we've already loaded any modules), it needs a
corresponding update record, even though it didn't technically come from an AST
file.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250134 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[safestack] Driver link test for safestack on android.
Evgeniy Stepanov [Mon, 12 Oct 2015 23:50:19 +0000 (23:50 +0000)]
[safestack] Driver link test for safestack on android.

Safestack runtime should never be linked on Android targets because
it is implemented directly in libc. This is already the case, but
mostly by chance (collectSanitizerRuntimes would only link shared
sanitizer runtimes, and safestack has only a static one). Protect
this behavior with a test.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250128 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd decayedType and hasDecayedType AST matchers
Matthias Gehre [Mon, 12 Oct 2015 21:46:07 +0000 (21:46 +0000)]
Add decayedType and hasDecayedType AST matchers

Summary: Add decayedType and hasDecayedType AST matchers

Reviewers: klimek

Subscribers: klimek, cfe-commits

Differential Revision: http://reviews.llvm.org/D13639

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250114 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agotest: change argument
Saleem Abdulrasool [Mon, 12 Oct 2015 21:19:30 +0000 (21:19 +0000)]
test: change argument

This failed on AArch64 due to the type mismatch using int instead of
__builtin_va_list.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250112 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agotest: relax path matching for windows
Saleem Abdulrasool [Mon, 12 Oct 2015 21:19:27 +0000 (21:19 +0000)]
test: relax path matching for windows

The test failed on Windows due to use of \ as a path separator rather than /.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250111 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoAdd warning flags for #include_next and some nearby warnings.
Richard Smith [Mon, 12 Oct 2015 21:05:54 +0000 (21:05 +0000)]
Add warning flags for #include_next and some nearby warnings.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250105 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoParse and ignore #pragma runtime_checks in MS extensions mode (PR25138)
Hans Wennborg [Mon, 12 Oct 2015 20:47:58 +0000 (20:47 +0000)]
Parse and ignore #pragma runtime_checks in MS extensions mode (PR25138)

We already silently ignore the /RTC, which controls the same functionality.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250099 91177308-0d34-0410-b5e6-96231b3b80d8

9 years agoSupport Debug Info path remapping
Saleem Abdulrasool [Mon, 12 Oct 2015 20:21:08 +0000 (20:21 +0000)]
Support Debug Info path remapping

Add support for the `-fdebug-prefix-map=` option as in GCC.  The syntax is
`-fdebug-prefix-map=OLD=NEW`.  When compiling files from a path beginning with
OLD, change the debug info to indicate the path as start with NEW.  This is
particularly helpful if you are preprocessing in one path and compiling in
another (e.g. for a build cluster with distcc).

Note that the linearity of the implementation is not as terrible as it may seem.
This is normally done once per file with an expectation that the map will be
small (1-2) entries, making this roughly linear in the number of input paths.

Addresses PR24619.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250094 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[Sema] Make `&function_with_enable_if_attrs` an error
George Burgess IV [Mon, 12 Oct 2015 19:57:04 +0000 (19:57 +0000)]
[Sema] Make `&function_with_enable_if_attrs` an error

This fixes a bug where one can take the address of a conditionally
enabled function to drop its enable_if guards. For example:

  int foo(int a) __attribute__((enable_if(a > 0, "")));
  int (*p)(int) = &foo;
  int result = p(-1); // compilation succeeds; calls foo(-1)

Overloading logic has been updated to reflect this change, as well.

Functions with enable_if attributes that are always true are still
allowed to have their address taken.

Differential Revision: http://reviews.llvm.org/D13607

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250090 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[Sema] Don't emit multiple diags for one error
George Burgess IV [Mon, 12 Oct 2015 18:40:58 +0000 (18:40 +0000)]
[Sema] Don't emit multiple diags for one error

Fixed a bug where we'd emit multiple diagnostics if there was a problem
taking the address of an overloaded template function.

Differential Revision: http://reviews.llvm.org/D13664

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250078 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[CMake] Bug 14109 - CMake build for compiler-rt should use just-built clang
Chris Bieneman [Mon, 12 Oct 2015 16:34:23 +0000 (16:34 +0000)]
[CMake] Bug 14109 - CMake build for compiler-rt should use just-built clang

Summary:
Many small improvements to LLVM_BUILD_EXTERNAL_COMPILER_RT.

* Works correctly with Ninja by working around CMake Bug 14771 (https://cmake.org/Bug/view.php?id=14771)
* Has install-compiler-rt target, and installs as part of the default install target
* Sets the install paths properly so that it matches the non-standalone build
* Only generate the test targets if(LLVM_INCLUDE_TESTS)

Reviewers: samsonov, Bigcheese

Differential Revision: http://reviews.llvm.org/D13399

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250064 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[VFS] Let the user decide if they want path normalization.
Benjamin Kramer [Mon, 12 Oct 2015 16:16:39 +0000 (16:16 +0000)]
[VFS] Let the user decide if they want path normalization.

This is a more principled version of what I did earlier. Path
normalization is generally a good thing, but may break users in strange
environments, e. g. using lots of symlinks. Let the user choose and
default it to on.

This also changes adding a duplicated file into returning an error if
the file contents are different instead of an assertion failure.

Differential Revision: http://reviews.llvm.org/D13658

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250060 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[Driver] Remove `else` after `return`
Simon Atanasyan [Mon, 12 Oct 2015 14:32:57 +0000 (14:32 +0000)]
[Driver] Remove `else` after `return`

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250043 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[VFS] Unbreak test.
Benjamin Kramer [Mon, 12 Oct 2015 13:39:33 +0000 (13:39 +0000)]
[VFS] Unbreak test.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250037 91177308-0d34-0410-b5e6-96231b3b80d8

9 years ago[VFS] Don't try to be heroic with '.' in paths.
Benjamin Kramer [Mon, 12 Oct 2015 13:30:38 +0000 (13:30 +0000)]
[VFS] Don't try to be heroic with '.' in paths.

Actually the only special path we have to handle is ./foo, the rest is
tricky to get right so do the same thing as the existing YAML vfs here.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250036 91177308-0d34-0410-b5e6-96231b3b80d8