]> granicus.if.org Git - clang/log
clang
9 years agoFix typo in test
Eli Bendersky [Tue, 1 Sep 2015 18:56:19 +0000 (18:56 +0000)]
Fix typo in test

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

9 years agoPull initFeatureMap out of line now that it's used in multiple places.
Eric Christopher [Tue, 1 Sep 2015 18:13:20 +0000 (18:13 +0000)]
Pull initFeatureMap out of line now that it's used in multiple places.

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

9 years agoAdd a new frontend warning for referencing members from the handler of a constructor...
Aaron Ballman [Tue, 1 Sep 2015 14:49:24 +0000 (14:49 +0000)]
Add a new frontend warning for referencing members from the handler of a constructor or destructor function-try-block, which is UB in C++.

This corresponds to the CERT secure coding rule ERR53-CPP.

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

9 years agoReverting r246497 (which requires also reverting r246524 and r246521 to avoid merge...
Aaron Ballman [Tue, 1 Sep 2015 13:24:39 +0000 (13:24 +0000)]
Reverting r246497 (which requires also reverting r246524 and r246521 to avoid merge conflicts). It broke the build on MSVC 2015. It also broke an MSVC 2013 bot with testing issues.

llvm\tools\clang\lib\serialization\MultiOnDiskHashTable.h(117):
error C2065: 'Files': undeclared identifier

http://bb.pgr.jp/builders/ninja-clang-i686-msc18-R/builds/2917

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

9 years ago[modules] When emitting line tables, only emit filenames that are actually referenced...
Richard Smith [Tue, 1 Sep 2015 07:41:55 +0000 (07:41 +0000)]
[modules] When emitting line tables, only emit filenames that are actually referenced by the entries that we emit.

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

9 years agoDon't use fprintf to emit this diagnostic!
Richard Smith [Tue, 1 Sep 2015 02:35:58 +0000 (02:35 +0000)]
Don't use fprintf to emit this diagnostic!

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

9 years agoUse a more appropriate way of writing 1.
Richard Smith [Tue, 1 Sep 2015 02:02:09 +0000 (02:02 +0000)]
Use a more appropriate way of writing 1.

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

9 years ago[MS ABI] Cleanup get*ForUnnamedTagDecl
David Majnemer [Tue, 1 Sep 2015 01:53:07 +0000 (01:53 +0000)]
[MS ABI] Cleanup get*ForUnnamedTagDecl

Use "lookup" instead of operator[], it will not perform unnecessary
insertions.  No functionality change is intended.

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

9 years ago[modules] Preserve DeclID order when merging lookup tables to give a more
Richard Smith [Tue, 1 Sep 2015 01:37:34 +0000 (01:37 +0000)]
[modules] Preserve DeclID order when merging lookup tables to give a more
predictable diagnostic experience. The hash-of-DeclID order we were using
before gave different results on Win32 due to a different predefined
declaration of __builtin_va_list.

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

9 years agoFix path seperator for Windows.
Yaron Keren [Tue, 1 Sep 2015 01:29:13 +0000 (01:29 +0000)]
Fix path seperator for Windows.

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

9 years ago[PowerPC] Support __builtin_ppc_get_timebase
Hal Finkel [Mon, 31 Aug 2015 23:55:19 +0000 (23:55 +0000)]
[PowerPC] Support __builtin_ppc_get_timebase

GCC 4.8+ has a PowerPC-specific intrinsic, __builtin_ppc_get_timebase, to do
what Clang's __builtin_readcyclecounter does. For compatibility with code that
uses GCC's spelling (including glibc), support it as well.

Partially fixes PR23681.

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

9 years agoRevert "Pull the target attribute parsing out of CGCall and onto TargetInfo."
Eric Christopher [Mon, 31 Aug 2015 23:19:55 +0000 (23:19 +0000)]
Revert "Pull the target attribute parsing out of CGCall and onto TargetInfo."

This reverts commit r246468 while we figure out what to do about Basic and AST.

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

9 years ago[modules] Add some missing blockinfo records.
Richard Smith [Mon, 31 Aug 2015 22:43:10 +0000 (22:43 +0000)]
[modules] Add some missing blockinfo records.

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

9 years ago[modules] Rework serialized DeclContext lookup table management. Instead of
Richard Smith [Mon, 31 Aug 2015 22:17:11 +0000 (22:17 +0000)]
[modules] Rework serialized DeclContext lookup table management. Instead of
walking the loaded ModuleFiles looking for lookup tables for the context, store
them all in one place, and merge them together if we find we have too many
(currently, more than 4). If we do merge, include the merged form in our
serialized lookup table, so that downstream readers never need to look at our
imports' tables.

This gives a huge performance improvement to builds with very large numbers of
modules (in some cases, more than a 2x speedup was observed).

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

9 years agoFix CHECK directives that weren't checking.
Hans Wennborg [Mon, 31 Aug 2015 21:48:52 +0000 (21:48 +0000)]
Fix CHECK directives that weren't checking.

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

9 years agoRevert r246345 until an assertion is fixed.
Gabor Horvath [Mon, 31 Aug 2015 20:10:35 +0000 (20:10 +0000)]
Revert r246345 until an assertion is fixed.

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

9 years agoStop hardcoding GCC paths in crt/ld.so lookup.
Rafael Espindola [Mon, 31 Aug 2015 19:17:51 +0000 (19:17 +0000)]
Stop hardcoding GCC paths in crt/ld.so lookup.

This patch refactors the code to use the GCC installation detector
(modified so that it works in Solaris), and uses
ToolChain::GetFilePath everywhere once it works.

Patch by Xan López <xan@igalia.com>!

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

9 years ago[MS ABI] Correctly mangle classes without names for linkage purposes
David Majnemer [Mon, 31 Aug 2015 18:48:39 +0000 (18:48 +0000)]
[MS ABI] Correctly mangle classes without names for linkage purposes

A class without a name for linkage purposes gets a name along the lines
of <unnamed-type-foo> where foo is either the name of a declarator which
defined it (like a variable or field) or a
typedef-name (like a typedef or alias-declaration).

We handled the declarator case correctly but it would fall down during
template instantiation if the declarator didn't share the tag's type.
We failed to handle the typedef-name case at all.

Instead, keep track of the association between the two and keep it up to
date in the face of template instantiation.

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

9 years agoPull the target attribute parsing out of CGCall and onto TargetInfo.
Eric Christopher [Mon, 31 Aug 2015 18:39:22 +0000 (18:39 +0000)]
Pull the target attribute parsing out of CGCall and onto TargetInfo.

Also:
  - Add a typedef to make working with the result easier.
  - Update callers to use the new function.
  - Make initFeatureMap out of line.

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

9 years agoPull out the ppc incompatible features check into a separate function.
Eric Christopher [Mon, 31 Aug 2015 18:39:16 +0000 (18:39 +0000)]
Pull out the ppc incompatible features check into a separate function.

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

9 years ago[CUDA] fix codegen for __nvvm_atom_min/max_gen_u*
Jingyue Wu [Mon, 31 Aug 2015 17:25:51 +0000 (17:25 +0000)]
[CUDA] fix codegen for __nvvm_atom_min/max_gen_u*

Summary: Clang should emit "atomicrmw umin/umax" instead of "atomicrmw min/max".

Reviewers: eliben, tra

Subscribers: llvm-commits

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

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

9 years ago[OpenMP] base specific_clause_iterator on iterator_adaptor_base.
Benjamin Kramer [Mon, 31 Aug 2015 16:45:35 +0000 (16:45 +0000)]
[OpenMP] base specific_clause_iterator on iterator_adaptor_base.

Removes some boilerplate code. No functionality change intended.

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

9 years agoPR17829: Proper diagnostic of mangled names conflicts
Andrey Bokhanko [Mon, 31 Aug 2015 13:20:44 +0000 (13:20 +0000)]
PR17829: Proper diagnostic of mangled names conflicts

Proper diagnostic and resolution of mangled names conflicts between C++ methods
and C functions. This patch implements support for functions/methods only;
support for variables is coming separately.

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

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

9 years agoAVX-512: Changed cnt parameter in valignq/d intrinsic from i8 to i32 according to...
Igor Breger [Mon, 31 Aug 2015 11:15:06 +0000 (11:15 +0000)]
AVX-512: Changed cnt parameter in valignq/d intrinsic from i8 to i32 according to the Intel Spec

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

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

9 years ago[OPENMP 4.0] Codegen for array sections.
Alexey Bataev [Mon, 31 Aug 2015 07:32:19 +0000 (07:32 +0000)]
[OPENMP 4.0] Codegen for array sections.
Added codegen for array section in 'depend' clause of 'task' directive. It emits to pointers, one for the begin of array section and another for the end of array section. Size of the section is calculated as (end + 1 - start) * sizeof(basic_element_type).

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

9 years ago[OpenCL] Improve diagnostics detecting implicit vector conversion.
Alexey Bader [Sun, 30 Aug 2015 18:06:39 +0000 (18:06 +0000)]
[OpenCL] Improve diagnostics detecting implicit vector conversion.

Reviewers: pekka.jaaskelainen

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

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

9 years agoFix test for Release builds, the label form is <label>:14, not <label>14.
Yaron Keren [Sun, 30 Aug 2015 17:46:43 +0000 (17:46 +0000)]
Fix test for Release builds, the label form is <label>:14, not <label>14.

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

9 years agoMake test resistant to false matches of numbered (unnamed) labels inside other numbers.
Yaron Keren [Sun, 30 Aug 2015 15:24:46 +0000 (15:24 +0000)]
Make test resistant to false matches of numbered (unnamed) labels inside other numbers.

In release builds labels are numbers. Matching just the number may result
in false matches where the label is contained in other numbers, such as
14 inside [114 x i8]. A stricter match requiring start of line or > character
before the label avoids these false matches.

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

9 years ago[OpenMP] Make the filetered clause iterator a real iterator and type safe.
Benjamin Kramer [Sun, 30 Aug 2015 15:12:28 +0000 (15:12 +0000)]
[OpenMP] Make the filetered clause iterator a real iterator and type safe.

This replaces the filtered generic iterator with a type-specfic one based
on dyn_cast instead of comparing the kind enum. This allows us to use
range-based for loops and eliminates casts. No functionality change
intended.

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

9 years agoUpdate for several APIs in LLVM that now use StringRefs rather than
Chandler Carruth [Sun, 30 Aug 2015 07:51:18 +0000 (07:51 +0000)]
Update for several APIs in LLVM that now use StringRefs rather than
const char pointers. In turn, push this through Clang APIs as well,
simplifying a number of bits of code that was handling the oddities of
nullptrs.

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

9 years agoUpdate for API change in LLVM: ARMTargetParser class is just the ARM
Chandler Carruth [Sun, 30 Aug 2015 02:16:36 +0000 (02:16 +0000)]
Update for API change in LLVM: ARMTargetParser class is just the ARM
namespace.

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

9 years ago[X86] Reapplied r246204, r246206, r246211, r246223
Simon Pilgrim [Sat, 29 Aug 2015 17:13:40 +0000 (17:13 +0000)]
[X86] Reapplied r246204, r246206, r246211, r246223

(Re)added debug codegen test for F16C, FMA4, XOP + 3DNow! intrinsics

Part of PR24590

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

9 years ago[AST] Don't crash when comparing incomplete object
David Majnemer [Sat, 29 Aug 2015 08:32:55 +0000 (08:32 +0000)]
[AST] Don't crash when comparing incomplete object

We cannot tell if an object is past-the-end if its type is incomplete.
Zero sized objects satisfy past-the-end criteria and our object might
turn out to be such an object.

This fixes PR24622.

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

9 years agoAdd a check for a function we're not testing.
Eric Christopher [Sat, 29 Aug 2015 02:59:37 +0000 (02:59 +0000)]
Add a check for a function we're not testing.

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

9 years agoFollow-up to r246338: use getParentFunctionOrMethod
Hans Wennborg [Fri, 28 Aug 2015 22:56:21 +0000 (22:56 +0000)]
Follow-up to r246338: use getParentFunctionOrMethod

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

9 years agoPR24612: Don't bail out of checking a constexpr function before checking
Richard Smith [Fri, 28 Aug 2015 22:33:53 +0000 (22:33 +0000)]
PR24612: Don't bail out of checking a constexpr function before checking
whether it can ever produce a constant expression in the case where it has a
void return type and no return statements.

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

9 years agoFold TargetInfo::handleUserFeatures into TargetInfo::initFeatureMap.
Eric Christopher [Fri, 28 Aug 2015 22:32:01 +0000 (22:32 +0000)]
Fold TargetInfo::handleUserFeatures into TargetInfo::initFeatureMap.

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

9 years ago[analyzer] When memcpy'ing into a fixed-size array, do not invalidate entire region.
Devin Coughlin [Fri, 28 Aug 2015 22:26:05 +0000 (22:26 +0000)]
[analyzer] When memcpy'ing into a fixed-size array, do not invalidate entire region.

Change the analyzer's modeling of memcpy to be more precise when copying into fixed-size
array fields. With this change, instead of invalidating the entire containing region the
analyzer now invalidates only offsets for the array itself when it can show that the
memcpy stays within the bounds of the array.

This addresses false positive memory leak warnings of the kind reported by
krzysztof in https://llvm.org/bugs/show_bug.cgi?id=22954

A patch by Pierre Gousseau!

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

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

9 years agoAllow TLS vars in dllimport/export functions; only inline dllimport functions when...
Hans Wennborg [Fri, 28 Aug 2015 21:47:01 +0000 (21:47 +0000)]
Allow TLS vars in dllimport/export functions; only inline dllimport functions when safe (PR24593)

This patch does two things:

1) Don't error about dllimport/export on thread-local static local variables.
   We put those attributes on static locals in dllimport/export functions
   implicitly in case the function gets inlined. Now, for TLS variables this
   is a problem because we can't import such variables, but it's a benign
   problem becase:

2) Make sure we never inline a dllimport function TLS static locals. In fact,
   never inline a dllimport function that references a non-imported function
   or variable (because these are not defined in the importing library). This
   seems to match MSVC's behaviour.

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

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

9 years agoUpdating the AST matcher documentation with a new entry; NFC.
Aaron Ballman [Fri, 28 Aug 2015 19:39:56 +0000 (19:39 +0000)]
Updating the AST matcher documentation with a new entry; NFC.

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

9 years agoRevert "[X86][3DNow] Added debug codegen test for 3DNow! intrinsics"
Renato Golin [Fri, 28 Aug 2015 19:39:29 +0000 (19:39 +0000)]
Revert "[X86][3DNow] Added debug codegen test for 3DNow! intrinsics"

This reverts commit r246223, as it broke all ARM/AArch64 bots.

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

9 years agoAdding an AST matcher for namespaceAliasDecl.
Aaron Ballman [Fri, 28 Aug 2015 19:39:21 +0000 (19:39 +0000)]
Adding an AST matcher for namespaceAliasDecl.

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

9 years agoRevert "[X86][XOP] Added debug codegen test for XOP intrinsics"
Renato Golin [Fri, 28 Aug 2015 19:38:05 +0000 (19:38 +0000)]
Revert "[X86][XOP] Added debug codegen test for XOP intrinsics"

This reverts commit r246211, as it broke all ARM/AArch64 bots.

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

9 years agoRevert "[X86][FMA4] Added debug codegen test for FMA4 intrinsics"
Renato Golin [Fri, 28 Aug 2015 19:36:27 +0000 (19:36 +0000)]
Revert "[X86][FMA4] Added debug codegen test for FMA4 intrinsics"

This reverts commit r246206, as it broke all ARM/AArch64 bots.

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

9 years agoRevert "[X86][F16C] Added debug codegen test for F16C intrinsics"
Renato Golin [Fri, 28 Aug 2015 19:34:53 +0000 (19:34 +0000)]
Revert "[X86][F16C] Added debug codegen test for F16C intrinsics"

This reverts commit r246204, as it was breaking all ARM/AArch64 bots.

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

9 years agofix typo; NFC
Sanjay Patel [Fri, 28 Aug 2015 14:42:54 +0000 (14:42 +0000)]
fix typo; NFC

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

9 years agoSupport Debian s390x multiarch paths
Sylvestre Ledru [Fri, 28 Aug 2015 12:26:09 +0000 (12:26 +0000)]
Support Debian s390x multiarch paths

Summary: Patch by Steven Chamberlain <steven@pyro.eu.org>

Reviewers: uweigand

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

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

9 years agoRevert "[OPENMP 4.0] Codegen for array sections."
Daniel Jasper [Fri, 28 Aug 2015 08:42:22 +0000 (08:42 +0000)]
Revert "[OPENMP 4.0] Codegen for array sections."

The test is currently failing on bots:
http://lab.llvm.org:8080/green/job/clang-stage1-cmake-RA-incremental_check/12747/

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

9 years agoRevert r246214 and r246213
Steven Wu [Fri, 28 Aug 2015 07:14:10 +0000 (07:14 +0000)]
Revert r246214 and r246213

These two commits causes llvm LTO bootstrap to hang in ScalarEvolution.

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

9 years ago[OPENMP 4.0] Codegen for array sections.
Alexey Bataev [Fri, 28 Aug 2015 06:09:05 +0000 (06:09 +0000)]
[OPENMP 4.0] Codegen for array sections.
Added codegen for array section in 'depend' clause of 'task' directive. It emits to pointers, one for the begin of array section and another for the end of array section. Size of the section is calculated as (end + 1 - start) * sizeof(basic_element_type).

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

9 years agoPR24597: Fix in-place evaluation of call expressions to provide a proper "this"
Richard Smith [Fri, 28 Aug 2015 02:43:42 +0000 (02:43 +0000)]
PR24597: Fix in-place evaluation of call expressions to provide a proper "this"
pointer to an RVO construction of a returned object.

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

9 years agoInstead of duplicating code, call the base implementation.
Eric Christopher [Fri, 28 Aug 2015 02:14:00 +0000 (02:14 +0000)]
Instead of duplicating code, call the base implementation.

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

9 years agoMerge the two feature map setting functions into a single function
Eric Christopher [Fri, 28 Aug 2015 02:13:58 +0000 (02:13 +0000)]
Merge the two feature map setting functions into a single function
and replace all callers.

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

9 years agoFix macro backtrace printing.
Richard Trieu [Thu, 27 Aug 2015 23:38:45 +0000 (23:38 +0000)]
Fix macro backtrace printing.

Sometimes, a macro that expands to another macro name will not be printed in
the macro backtrace.  This patch finds the missed macro expansions and prints
them.  Fixes PR16799

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

9 years agoCGDebugInfo: Instead of uniquing RetainedTypes, just refrain from retaining
Adrian Prantl [Thu, 27 Aug 2015 22:56:46 +0000 (22:56 +0000)]
CGDebugInfo: Instead of uniquing RetainedTypes, just refrain from retaining
them more than once. (NFC)

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

9 years ago[X86] Bump Darwin MaxVectorAlign to 64 when AVX512 is enabled.
Ahmed Bougacha [Thu, 27 Aug 2015 22:42:12 +0000 (22:42 +0000)]
[X86] Bump Darwin MaxVectorAlign to 64 when AVX512 is enabled.

Without this, 64-byte vector types (__m512), specified to be 64-byte
aligned in the AVX512 draft SysV ABI, will only be 32-byte aligned.

This is analoguous to AVX, for which we accept 32-byte max alignment.

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

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

9 years ago[X86] Conditionalize Darwin MaxVectorAlign on the presence of AVX.
Ahmed Bougacha [Thu, 27 Aug 2015 22:30:38 +0000 (22:30 +0000)]
[X86] Conditionalize Darwin MaxVectorAlign on the presence of AVX.

There's no point in using a larger alignment if we have no instructions
that would benefit from it.

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

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

9 years ago[X86] Use AVX features instead of ABI to init. SimdDefaultAlign.
Ahmed Bougacha [Thu, 27 Aug 2015 22:24:56 +0000 (22:24 +0000)]
[X86] Use AVX features instead of ABI to init. SimdDefaultAlign.

The ABI string only exists to communicate with TargetCodeGenInfo.
Concretely, since we only used "avx*" ABI strings on x86_64 (as AVX
doesn't affect the i386 ABIs), this meant that, when initializing
SimdDefaultAlign, we would ignore AVX/AVX512 on i386, for no good
reason.

Instead, directly check the features. A similar change for
MaxVectorAlign will follow.

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

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

9 years agoUse an explicit assignment.
Eric Christopher [Thu, 27 Aug 2015 22:20:03 +0000 (22:20 +0000)]
Use an explicit assignment.

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

9 years ago[X86][3DNow] Added debug codegen test for 3DNow! intrinsics
Simon Pilgrim [Thu, 27 Aug 2015 22:18:09 +0000 (22:18 +0000)]
[X86][3DNow] Added debug codegen test for 3DNow! intrinsics

Part of PR24590

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

9 years agoDon't call a member function on a null pointer.
Richard Smith [Thu, 27 Aug 2015 21:38:25 +0000 (21:38 +0000)]
Don't call a member function on a null pointer.

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

9 years agoAssume loads fix #2
Piotr Padlewski [Thu, 27 Aug 2015 21:35:41 +0000 (21:35 +0000)]
Assume loads fix #2

There was linker problem, and it turns out that it is not always safe
to refer to vtable. If the vtable is used, then we can refer to it
without any problem, but because we don't know when it will be used or
not, we can only check if vtable is external or it is safe to to emit it
speculativly (when class it doesn't have any inline virtual functions).
It should be fixed in the future.

http://reviews.llvm.org/D12385

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

9 years agoGenerating assumption loads of vptr after ctor call (fixed)
Piotr Padlewski [Thu, 27 Aug 2015 21:35:37 +0000 (21:35 +0000)]
Generating assumption loads of vptr after ctor call (fixed)

Generating call assume(icmp %vtable, %global_vtable) after constructor
call for devirtualization purposes.

For more info go to:
http://lists.llvm.org/pipermail/cfe-dev/2015-July/044227.html

Edit:
Fixed version because of PR24479.

http://reviews.llvm.org/D11859

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

9 years ago[X86][XOP] Added debug codegen test for XOP intrinsics
Simon Pilgrim [Thu, 27 Aug 2015 21:32:03 +0000 (21:32 +0000)]
[X86][XOP] Added debug codegen test for XOP intrinsics

Part of PR24590

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

9 years agoCGDebugInfo: Factor out a getOrCreateStandaloneType() method.
Adrian Prantl [Thu, 27 Aug 2015 21:21:19 +0000 (21:21 +0000)]
CGDebugInfo: Factor out a getOrCreateStandaloneType() method.

Usually debug info is created on the fly while during codegen.
With this API it becomes possible to create standalone debug info
for types that are not referenced by any code, such as emitting debug info
for a clang module or for implementing something like -gfull.
Because on-the-fly debug info generation may still insert retained types
on top of them, all RetainedTypes are uniqued in CGDebugInfo::finalize().

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

9 years ago[X86][FMA4] Added debug codegen test for FMA4 intrinsics
Simon Pilgrim [Thu, 27 Aug 2015 20:41:45 +0000 (20:41 +0000)]
[X86][FMA4] Added debug codegen test for FMA4 intrinsics

Part of PR24590

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

9 years ago[X86][F16C] Added debug codegen test for F16C intrinsics
Simon Pilgrim [Thu, 27 Aug 2015 20:34:02 +0000 (20:34 +0000)]
[X86][F16C] Added debug codegen test for F16C intrinsics

Part of PR24590

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

9 years agoRemove a dead assert, we'd have gotten the case above.
Eric Christopher [Thu, 27 Aug 2015 20:32:24 +0000 (20:32 +0000)]
Remove a dead assert, we'd have gotten the case above.

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

9 years ago[X86] Add __builtin_ia32_undef* intrinsics to test
Simon Pilgrim [Thu, 27 Aug 2015 20:29:13 +0000 (20:29 +0000)]
[X86] Add __builtin_ia32_undef* intrinsics to test

Minor tweak to rL246083

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

9 years agoTarget attribute syntax compatibility fix - gcc uses no- rather than mno-.
Eric Christopher [Thu, 27 Aug 2015 20:05:48 +0000 (20:05 +0000)]
Target attribute syntax compatibility fix - gcc uses no- rather than mno-.

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

9 years agoRename this file to have a processor suffix to help identify.
Eric Christopher [Thu, 27 Aug 2015 20:05:46 +0000 (20:05 +0000)]
Rename this file to have a processor suffix to help identify.

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

9 years agoRewrite the code generation handling for function feature and cpu attributes.
Eric Christopher [Thu, 27 Aug 2015 19:59:34 +0000 (19:59 +0000)]
Rewrite the code generation handling for function feature and cpu attributes.

A couple of changes here:

a) Do less work in the case where we don't have a target attribute on the
function. We've already canonicalized the attributes for the function -
no need to do more work.

b) Use the newer canonicalized feature adding functions from TargetInfo
to do the work when we do have a target attribute. This enables us to diagnose
some warnings in the case of conflicting written attributes (only ppc does
this today) and also make sure to get all of the features for a cpu that's
listed rather than just change the cpu.

Updated all testcases accordingly and added a new testcase to verify that we'll
error out on ppc if we have some incompatible options using the existing diagnosis
framework there.

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

9 years ago[CUDA] Check register names on appropriate side of cuda compilation only.
Artem Belevich [Thu, 27 Aug 2015 19:54:21 +0000 (19:54 +0000)]
[CUDA] Check register names on appropriate side of cuda compilation only.

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

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

9 years agoAdd a -gmodules option to the driver and a -dwarf-ext-refs to cc1
Adrian Prantl [Thu, 27 Aug 2015 19:46:20 +0000 (19:46 +0000)]
Add a -gmodules option to the driver and a -dwarf-ext-refs to cc1
to enable the use of external type references in the debug info
(a.k.a. module debugging).

The driver expands -gmodules to "-g -fmodule-format=obj -dwarf-ext-refs"
and passes that to cc1. All this does at the moment is set a flag
codegenopts.

http://reviews.llvm.org/D11958

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

9 years agoImprove options printed on vectorization analysis diagnostics.
Tyler Nowicki [Thu, 27 Aug 2015 18:58:34 +0000 (18:58 +0000)]
Improve options printed on vectorization analysis diagnostics.

The LLVM patch changes the analysis diagnostics produced when loops with
floating-point recurrences or memory operations are identified. The new messages
say "cannot prove it is safe to reorder * operations; allow reordering by
specifying #pragma clang loop vectorize(enable)". Depending on the type of
diagnostic the message will include additional options such as ffast-math or
__restrict__.

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

9 years ago[Static Analyzer] BugReporter.cpp:2869: Assertion failed: !RemainingNodes.empty(...
Gabor Horvath [Thu, 27 Aug 2015 18:57:00 +0000 (18:57 +0000)]
[Static Analyzer] BugReporter.cpp:2869: Assertion failed: !RemainingNodes.empty() && "No error node found in the trimmed graph"

The assertion is caused by reusing a “filler” ExplodedNode as an error node.
The “filler” nodes are only used for intermediate processing and are not
essential for analyzer history, so they can be reclaimed when the
ExplodedGraph is trimmed by the “collectNode” function. When a checker finds a
bug, they generate a new transition in the ExplodedGraph. The analyzer will
try to reuse the existing predecessor node. If it cannot, it creates a new
ExplodedNode, which always has a tag to uniquely identify the creation site.
The assertion is caused when the analyzer reuses a “filler” node.

In the test case, some “filler” nodes were reused and then reclaimed later
when the ExplodedGraph was trimmed. This caused an assertion because the node
was needed to generate the report. The “filler” nodes should not be reused as
error nodes. The patch adds a constraint to prevent this happening, which
solves the problem and makes the test cases pass.

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

Patch by Ying Yi!

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

9 years ago[Tests] Modified Lit Tests to be C++11 compatibile
Charles Li [Thu, 27 Aug 2015 18:49:15 +0000 (18:49 +0000)]
[Tests] Modified Lit Tests to be C++11 compatibile

This 2nd patch should not change the test results, but it is useful if clang's
default C++ language is ever changed from gnu++98.

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

9 years ago[Static Analyzer] Make NonNullParamChecker emit implicit null dereference events.
Gabor Horvath [Thu, 27 Aug 2015 18:49:07 +0000 (18:49 +0000)]
[Static Analyzer] Make NonNullParamChecker emit implicit null dereference events.

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

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

9 years agoconst-ify TargetInfo::handleUserFeatures.
Eric Christopher [Thu, 27 Aug 2015 18:42:57 +0000 (18:42 +0000)]
const-ify TargetInfo::handleUserFeatures.

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

9 years ago[CUDA] Improve CUDA compilation pipeline creation.
Artem Belevich [Thu, 27 Aug 2015 18:10:41 +0000 (18:10 +0000)]
[CUDA] Improve CUDA compilation pipeline creation.

Current implementation tries to guess which Action will result in a
job which needs to incorporate device-side GPU binaries. The guessing
was attempting to work around the fact that multiple actions may be
combined into a single compiler invocation. If CudaHostAction ends up
being combined (and thus bypassed during action list traversal) no
device-side actions it pointed to were processed. The guessing worked
for most of the usual cases, but fell apart when external assembler
was used.

This change removes the guessing and makes sure we create and pass
device-side jobs regardless of how the jobs get combined.

* CudaHostAction is always inserted either at Compile phase or the
  FinalPhase of current compilation, whichever happens first.
* If selectToolForJob combines CudaHostAction with other actions, it
  passes info about CudaHostAction up to the caller
* When it sees that CudaHostAction got combined with other actions
  (and hence will never be passed to BuildJobsForActions),
  BuildJobsForActions creates device-side jobs the same way they would
  be created if CudaHostAction was passed to BuildJobsForActions
  directly.
* Added two more test cases to make sure GPU binaries are passed to
  correct jobs.

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

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

9 years agoclang-format: Don't let a leading "template <..>" lead to wrapped initializers.
Daniel Jasper [Thu, 27 Aug 2015 11:59:31 +0000 (11:59 +0000)]
clang-format: Don't let a leading "template <..>" lead to wrapped initializers.

Before:
  Constructor() : initializer(0) {}

  template <typename T>
  Constructor()
      : initializer(0) {}

After:
  Constructor() : initializer(0) {}

  template <typename T>
  Constructor() : initializer(0) {}

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

9 years agoPass in a cpu to initDefaultFeatures so that we can share this code
Eric Christopher [Thu, 27 Aug 2015 00:05:52 +0000 (00:05 +0000)]
Pass in a cpu to initDefaultFeatures so that we can share this code
with multiple uses of feature map construction.

Note: We could make this a static function on TargetInfo if we
fix the x86 port needing to check the triple in an isolated case.

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

9 years agoconst-ify X86TargetInfo::getCPUKind.
Eric Christopher [Thu, 27 Aug 2015 00:05:50 +0000 (00:05 +0000)]
const-ify X86TargetInfo::getCPUKind.

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

9 years ago[modules] The key to a DeclContext name lookup table is not actually a
Richard Smith [Wed, 26 Aug 2015 23:55:49 +0000 (23:55 +0000)]
[modules] The key to a DeclContext name lookup table is not actually a
DeclarationName (because all ctor names are considered the same, and so on).
Reflect this in the type used as the lookup table key. As a side-effect, remove
one copy of the duplicated code used to compute the hash of the key.

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

9 years agoPull out cpu string -> enum parsing for x86 as a separate function,
Eric Christopher [Wed, 26 Aug 2015 23:42:18 +0000 (23:42 +0000)]
Pull out cpu string -> enum parsing for x86 as a separate function,
this is going to see use shortly in unifying feature set construction.

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

9 years ago[Static Analyzer] Checks to catch nullability related issues.
Gabor Horvath [Wed, 26 Aug 2015 23:17:43 +0000 (23:17 +0000)]
[Static Analyzer] Checks to catch nullability related issues.

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

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

9 years agoDI: Update DISubprogram testcases after LLVM r246098
Duncan P. N. Exon Smith [Wed, 26 Aug 2015 22:50:48 +0000 (22:50 +0000)]
DI: Update DISubprogram testcases after LLVM r246098

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

9 years agoDI: Clarify meaning of createTempFunctionFwdDecl() arg, NFC
Duncan P. N. Exon Smith [Wed, 26 Aug 2015 22:21:09 +0000 (22:21 +0000)]
DI: Clarify meaning of createTempFunctionFwdDecl() arg, NFC

I stared at `false /*declaration*/` for quite some time before giving up
and checking the actual function to see what it meant.  Replacing with
`/* isDefinition = */ false` to save myself effort later.

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

9 years ago[ARM] Mark mcr/mrc builtin operands as required-immediate.
Ahmed Bougacha [Wed, 26 Aug 2015 22:21:07 +0000 (22:21 +0000)]
[ARM] Mark mcr/mrc builtin operands as required-immediate.

An early error message is better than the "cannot select" alternative.

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

9 years agoCorrected 3 typos. NFC
Charles Li [Wed, 26 Aug 2015 22:13:30 +0000 (22:13 +0000)]
Corrected 3 typos. NFC

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

9 years ago[ms-inline-asm] Add field access to MS inline asm identifier lookup
Reid Kleckner [Wed, 26 Aug 2015 21:57:20 +0000 (21:57 +0000)]
[ms-inline-asm] Add field access to MS inline asm identifier lookup

Now we can parse code like this:
  struct A {
    int field;
  };
  int f(A o) {
    __asm mov eax, o.field
  }

Fixes PR19117.

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

9 years ago[X86][SSE] Add _mm_undefined_* intrinsics
Simon Pilgrim [Wed, 26 Aug 2015 21:17:12 +0000 (21:17 +0000)]
[X86][SSE] Add _mm_undefined_* intrinsics

Added missing SSE/AVX 'undefined' intrinsics (PR24040):

_mm_undefined_pd, _mm_undefined_ps + _mm_undefined_si128
_mm256_undefined_pd, _mm256_undefined_ps + _mm256_undefined_si256
_mm512_undefined, _mm512_undefined_ps, _mm512_undefined_pd + _mm512_undefined_epi32

Added builtin intrinsicss:

__builtin_ia32_undef128, __builtin_ia32_undef256 + __builtin_ia32_undef512

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

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

9 years ago[ARM] Error out if float-ab=hard and abi=apcs-gnu on macho platforms.
Akira Hatanaka [Wed, 26 Aug 2015 19:00:11 +0000 (19:00 +0000)]
[ARM] Error out if float-ab=hard and abi=apcs-gnu on macho platforms.

Error out if -mfloat-abi=hard or -mhard-float is specified on the command
line and the target ABI is APCS. Previously clang issued no warnings or
errors and just passed the option to the backend, which had no effect on
code generation for targets using APCS.

This commit corrects the patch commited in r245866, which didn't take into
account the fact that not all darwin targets use APCS.

rdar://problem/22257950

http://reviews.llvm.org/D12344

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

9 years agoChange Native Client x86 usr include and link path to match SDK expectations
Derek Schuff [Wed, 26 Aug 2015 17:14:08 +0000 (17:14 +0000)]
Change Native Client x86 usr include and link path to match SDK expectations

GNU multilib style uses x86_64-nacl/include and x86_64-nacl/usr/include
but the SDK expects i686-nacl/usr/include for its files. Change the driver
to use this.

Fixes https://code.google.com/p/nativeclient/issues/detail?id=4108

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

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

9 years ago[ASTMatchers] Add type matcher for SubstTemplateTypeParmType.
Samuel Benzaquen [Wed, 26 Aug 2015 16:15:59 +0000 (16:15 +0000)]
[ASTMatchers] Add type matcher for SubstTemplateTypeParmType.

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

9 years agoConvert a bunch of loops to ranged-for and clean up accordingly.
Eric Christopher [Wed, 26 Aug 2015 08:21:55 +0000 (08:21 +0000)]
Convert a bunch of loops to ranged-for and clean up accordingly.

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

9 years agoMake FileManager::getFileSystemOptions consistent with CompilerInstance::getFileSyste...
Yaron Keren [Wed, 26 Aug 2015 08:10:22 +0000 (08:10 +0000)]
Make FileManager::getFileSystemOptions consistent with CompilerInstance::getFileSystemOpts
and CompilerInvocation::getFileSystemOpts by renaming it to getFileSystemOpts,
marking the const-returning access method const and adding a non-const version,
making the function prototypes identical to CompilerInstance::getFileSystemOpts.

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

9 years agoGroup some of the inline assembly related function prototypes near
Eric Christopher [Wed, 26 Aug 2015 07:29:58 +0000 (07:29 +0000)]
Group some of the inline assembly related function prototypes near
each other.

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

9 years agoRemove dead code associated with parsing and setting ABI based on
Eric Christopher [Wed, 26 Aug 2015 07:01:33 +0000 (07:01 +0000)]
Remove dead code associated with parsing and setting ABI based on
string name.

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

9 years agoRemove a TODO that isn't going to get fixed in this way.
Eric Christopher [Wed, 26 Aug 2015 07:01:30 +0000 (07:01 +0000)]
Remove a TODO that isn't going to get fixed in this way.

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