platform/upstream/llvm.git
4 years ago[clangd] Fix data race in BackgroundIndex test
Kadir Cetinkaya [Sat, 9 May 2020 16:14:48 +0000 (18:14 +0200)]
[clangd] Fix data race in BackgroundIndex test

MockFSProvider is not thread-safe. Make sure we don't modify it while
background index is working.

4 years ago[flang] Make implicit conversion explicit in assignment
Tim Keith [Sat, 9 May 2020 16:10:08 +0000 (09:10 -0700)]
[flang] Make implicit conversion explicit in assignment

When intrinsic types are assigned there are some implicit conversions
that take place. This change make them explicit in the types
representation of assignments.

Differential Revision: https://reviews.llvm.org/D79637

4 years ago[clang-tidy] RenamerClangTidy now renames dependent member expr when the member can...
Nathan James [Fri, 8 May 2020 18:30:18 +0000 (19:30 +0100)]
[clang-tidy] RenamerClangTidy now renames dependent member expr when the member can be resolved

Summary:
Sometimes in templated code Member references are reported as `DependentScopeMemberExpr` because that's what the standard dictates, however in many trivial cases it is easy to resolve the reference to its actual Member.
Take this code:
```
template<typename T>
class A{
  int value;
  A& operator=(const A& Other){
    value = Other.value;
    this->value = Other.value;
    return *this;
  }
};
```
When ran with `clang-tidy file.cpp -checks=readability-identifier-naming --config="{CheckOptions: [{key: readability-identifier-naming.MemberPrefix, value: m_}]}" -fix`
Current behaviour:
```
template<typename T>
class A{
  int m_value;
  A& operator=(const A& Other){
    m_value = Other.value;
    this->value = Other.value;
    return *this;
  }
};
```
As `this->value` and `Other.value` are Dependent they are ignored when creating the fix-its, however this can easily be resolved.
Proposed behaviour:
```
template<typename T>
class A{
  int m_value;
  A& operator=(const A& Other){
    m_value = Other.m_value;
    this->m_value = Other.m_value;
    return *this;
  }
};
```

Reviewers: aaron.ballman, JonasToth, alexfh, hokein, gribozavr2

Reviewed By: aaron.ballman

Subscribers: merge_guards_bot, xazax.hun, cfe-commits

Tags: #clang, #clang-tools-extra

Differential Revision: https://reviews.llvm.org/D73052

4 years ago[libcxx testing] Make three locking tests more reliable
David Zarzycki [Sat, 9 May 2020 15:10:41 +0000 (11:10 -0400)]
[libcxx testing] Make three locking tests more reliable

The challenge with measuring time in tests is that slow and/or busy
machines can cause tests to fail in unexpected ways. After this change,
three tests should be much more robust. The only remaining and tiny race
that I can think of is preemption after `--countDown`. That being said,
the race isn't fixable because the standard library doesn't provide a
way to count threads that are waiting to acquire a lock.

Reviewers: ldionne, EricWF, howard.hinnant, mclow.lists, #libc

Reviewed By: ldionne, #libc

Subscribers: dexonsmith, jfb, broadwaylamb, libcxx-commits

Tags: #libc

Differential Revision: https://reviews.llvm.org/D79406

4 years agoLTO.h - reduce includes to forward declarations. NFC.
Simon Pilgrim [Sat, 9 May 2020 14:10:51 +0000 (15:10 +0100)]
LTO.h - reduce includes to forward declarations. NFC.

Add missing ToolOutputFile.h dependency to BackendUtil.cpp

4 years agoLLParser.h - remove unused ValueHandle.h include. NFC.
Simon Pilgrim [Sat, 9 May 2020 14:08:48 +0000 (15:08 +0100)]
LLParser.h - remove unused ValueHandle.h include. NFC.

4 years ago[X86] Remove mul(abs(x),abs(x)) -> mul(x,x) tests
Simon Pilgrim [Sat, 9 May 2020 14:07:15 +0000 (15:07 +0100)]
[X86] Remove mul(abs(x),abs(x)) -> mul(x,x) tests

This is handled in InstCombine (D79319) and its unlikely that these can occur in DAG (see D79304).

4 years ago[X86] Allow combineVectorCompareAndMaskUnaryOp to handle 'all-bits' general case
Simon Pilgrim [Sat, 9 May 2020 13:53:07 +0000 (14:53 +0100)]
[X86] Allow combineVectorCompareAndMaskUnaryOp to handle 'all-bits' general case

For the sint_to_fp(and(X,C)) -> and(X,sint_to_fp(C)) fold, allow combineVectorCompareAndMaskUnaryOp to match any X that ComputeNumSignBits says is all-bits, not just SETCC.

Noticed while investigating mask promotion issues in PR45808

4 years ago[X86] Add test cases for 'abs from mul patterns' (PR45691)
Simon Pilgrim [Sat, 9 May 2020 13:41:27 +0000 (14:41 +0100)]
[X86] Add test cases for 'abs from mul patterns' (PR45691)

4 years ago[clangd] Fix a data race in RecordsLatencies test
Kadir Cetinkaya [Sat, 9 May 2020 13:42:15 +0000 (15:42 +0200)]
[clangd] Fix a data race in RecordsLatencies test

4 years ago[X86] Add tests showing failure of combineVectorCompareAndMaskUnaryOp to handle ...
Simon Pilgrim [Sat, 9 May 2020 13:24:38 +0000 (14:24 +0100)]
[X86] Add tests showing failure of combineVectorCompareAndMaskUnaryOp to handle 'all-bits' general case

For the sint_to_fp(and(X,C)) -> and(X,sint_to_fp(C)) fold, combineVectorCompareAndMaskUnaryOp only matches X against SETCC (with an all-bits result) when really it could accept anything that ComputeNumSignBits says is all-bits.

Noticed while investigating mask promotion issues in PR45808

4 years agoNativeFormatting.h - reduce raw_ostream.h include to forward declaration. NFC.
Simon Pilgrim [Sat, 9 May 2020 12:31:39 +0000 (13:31 +0100)]
NativeFormatting.h - reduce raw_ostream.h include to forward declaration. NFC.

4 years ago[clang-format] [PR34574] Handle [[nodiscard]] attribute in class declaration
mydeveloperday [Sat, 9 May 2020 10:26:38 +0000 (11:26 +0100)]
[clang-format] [PR34574] Handle [[nodiscard]] attribute in class declaration

Summary:
https://bugs.llvm.org/show_bug.cgi?id=34574
https://bugs.llvm.org/show_bug.cgi?id=38401

```
template <typename T>
class [[nodiscard]] result
{
  public:
    result(T&&)
    {
    }
};
```

formats incorrectly to

```
template <typename T>
class [[nodiscard]] result{public : result(T &&){}};
```

Reviewed By: krasimir

Subscribers: cfe-commits

Tags: #clang, #clang-format

Differential Revision: https://reviews.llvm.org/D79354

4 years ago[MLIR] Register JIT event listeners with RTDyldObjectLinkingLayer
Eugene Zhulenev [Sat, 9 May 2020 09:13:50 +0000 (11:13 +0200)]
[MLIR] Register JIT event listeners with RTDyldObjectLinkingLayer

Use a new API to register JIT event listeners.

Differential Revision: https://reviews.llvm.org/D78435

4 years ago[lldb] [testsuite] TestReproducerAttach.py: Fix dependency on external symbol files
Jan Kratochvil [Sat, 9 May 2020 07:06:37 +0000 (09:06 +0200)]
[lldb] [testsuite] TestReproducerAttach.py: Fix dependency on external symbol files

D55859 and D63339 prevented needless dependencies on system symbol
files. This testcase was checked-in afterwards and it brings back one
such unwanted dependency. Under some circumstances it may cause false
FAILs and/or excessive resource usage to run the testcase.

clang-format does not support .py so I have formatted it as I found most
compatible.

Also this is not a full testcase-style initialization, for example
--no-lldbinit ignores env("NO_LLDBINIT") setting which lldbtest.py does
implement:
  # If we spawn an lldb process for test (via pexpect), do not load the
  # init file unless told otherwise.
  if os.environ.get("NO_LLDBINIT") != "NO":
      self.lldbOption += " --no-lldbinit"

But this is what lldbpexpect.py does - it also ignores
env("NO_LLDBINIT"). Sure one could also fix lldbpexpect.py to unify the
initialization more with lldbtest.py but I find that outside of the
scope of this patch.

Differential Revision: https://reviews.llvm.org/D79649

4 years ago[Driver] Don't pass -u__llvm_profile_runtime for clang -fprofile-arcs a.o
Fangrui Song [Sat, 9 May 2020 06:13:19 +0000 (23:13 -0700)]
[Driver] Don't pass -u__llvm_profile_runtime for clang -fprofile-arcs a.o

clang --coverage a.o       # InstrProfilingRuntime.cpp.o not linked in
clang --fprofile-arcs a.o  # InstrProfilingRuntime.cpp.o unexpectedly linked in

Fix --fprofile-arcs.

4 years ago[NFC] Clean up in MCObjectStreamer and X86AsmBackend
Shengchen Kan [Sat, 9 May 2020 04:47:44 +0000 (12:47 +0800)]
[NFC] Clean up in MCObjectStreamer and X86AsmBackend

4 years agoRevert "Relands "[YAMLVFSWriter][Test][NFC] Add couple tests""
Jan Korous [Sat, 9 May 2020 04:36:29 +0000 (21:36 -0700)]
Revert "Relands "[YAMLVFSWriter][Test][NFC] Add couple tests""

This reverts commit 49b32d80416288b6eb8e26f76c40a8e32c20a361.

4 years ago[DebugInfo] Dump raw data in a case of decoding error of an expression.
Igor Kudrin [Sat, 9 May 2020 03:03:38 +0000 (10:03 +0700)]
[DebugInfo] Dump raw data in a case of decoding error of an expression.

It looks like that was an initial intention, but some code paths in
`DWARFExpression::Operation::extract()` did not initialize `EndOffset`
properly.

Differential Revision: https://reviews.llvm.org/D79622

4 years agoFix parsing of enum-base to follow C++11 rules.
Richard Smith [Sat, 9 May 2020 02:24:18 +0000 (19:24 -0700)]
Fix parsing of enum-base to follow C++11 rules.

Previously we implemented non-standard disambiguation rules to
distinguish an enum-base from a bit-field but otherwise treated a :
after an elaborated-enum-specifier as introducing an enum-base. That
misparses various examples (anywhere an elaborated-type-specifier can
appear followed by a colon, such as within a ternary operator or
_Generic).

We now implement the C++11 rules, with the old cases accepted as
extensions where that seemed reasonable. These amount to:
 * an enum-base must always be accompanied by an enum definition (except
   in a standalone declaration of the form 'enum E : T;')
 * in a member-declaration, 'enum E :' always introduces an enum-base,
   never a bit-field
 * in a type-specifier (or similar context), 'enum E :' is not
   permitted; the colon means whatever else it would mean in that
   context.

Fixed underlying types for enums are also permitted in Objective-C and
under MS extensions, plus as a language extension in all other modes.
The behavior in ObjC and MS extensions modes is unchanged (but the
bit-field disambiguation is a bit better); remaining language modes
follow the C++11 rules.

Fixes PR45726, PR39979, PR19810, PR44941, and most of PR24297, plus C++
core issues 1514 and 1966.

4 years agoRelands "[YAMLVFSWriter][Test][NFC] Add couple tests"
Jan Korous [Fri, 8 May 2020 02:11:51 +0000 (19:11 -0700)]
Relands "[YAMLVFSWriter][Test][NFC] Add couple tests"

Fixed test for Windows.

Differential Revision: https://reviews.llvm.org/D79552

4 years agoclang: Cleanup usage of CreateMemCpy
Matt Arsenault [Fri, 8 May 2020 18:39:07 +0000 (14:39 -0400)]
clang: Cleanup usage of CreateMemCpy

It handles the the pointee type casts in preparation for opaque
pointers.

4 years ago[Driver] Add -fno-test-coverage
Fangrui Song [Fri, 8 May 2020 23:50:34 +0000 (16:50 -0700)]
[Driver] Add -fno-test-coverage

4 years ago[hwasan] Allow -hwasan-globals flag to appear more than once.
Evgenii Stepanov [Fri, 8 May 2020 23:30:45 +0000 (16:30 -0700)]
[hwasan] Allow -hwasan-globals flag to appear more than once.

4 years ago[hwasan] Untag destination address in hwasan_posix_memalign.
Evgenii Stepanov [Fri, 8 May 2020 23:29:46 +0000 (16:29 -0700)]
[hwasan] Untag destination address in hwasan_posix_memalign.

Required on X86 because no TBI.

4 years ago[Driver] Don't warn -Wunused-command-line-argument for --coverage -ftest-coverage...
Fangrui Song [Fri, 8 May 2020 23:14:41 +0000 (16:14 -0700)]
[Driver] Don't warn -Wunused-command-line-argument for --coverage -ftest-coverage -fprofile-arcs

4 years ago[LangRef] Describe linkage types, allocation size of declarations for global variables
Matthias Schiffer [Fri, 8 May 2020 23:20:43 +0000 (16:20 -0700)]
[LangRef] Describe linkage types, allocation size of declarations for global variables

Linkage type was only referenced for functions, not for global
variables.

Clarify that LLVM doesn't make assumption about the allocation size when
no definitive initializer for a global variable is known.

Differential Revision: https://reviews.llvm.org/D78952

4 years ago[Driver] Reorganize --coverage -ftest-coverage -fprofile-arcs related tests
Fangrui Song [Fri, 8 May 2020 22:04:03 +0000 (15:04 -0700)]
[Driver] Reorganize --coverage -ftest-coverage -fprofile-arcs related tests

And fix a comment about __llvm_profile_runtime

4 years ago[SelectionDAG] Remove ConstantPoolSDNode::getAlignment.
Craig Topper [Fri, 8 May 2020 22:06:37 +0000 (15:06 -0700)]
[SelectionDAG] Remove ConstantPoolSDNode::getAlignment.

Use getAlign instead.

Differential Revision: https://reviews.llvm.org/D79459

4 years ago[SelectionDAG] Use Align/MaybeAlign for ConstantPoolSDNode.
Craig Topper [Fri, 8 May 2020 22:06:15 +0000 (15:06 -0700)]
[SelectionDAG] Use Align/MaybeAlign for ConstantPoolSDNode.

This patch stores the alignment for ConstantPoolSDNode as an
Align and updates the getConstantPool interface to take a MaybeAlign.

Removing getAlignment() will be done as a follow up.

Differential Revision: https://reviews.llvm.org/D79436

4 years agoAdd Operation::moveAfter
Geoffrey Martin-Noble [Fri, 8 May 2020 22:34:13 +0000 (22:34 +0000)]
Add Operation::moveAfter

This revision introduces an Operation::moveAfter mirroring
Operation::moveBefore to move an operation after another
existing operation or an iterator in a specified block.

Resolves https://bugs.llvm.org/show_bug.cgi?id=45799

Differential Revision: https://reviews.llvm.org/D79640

4 years ago[AMDGPU] Vectorize alloca thru bitcast
Stanislav Mekhanoshin [Tue, 5 May 2020 23:17:53 +0000 (16:17 -0700)]
[AMDGPU] Vectorize alloca thru bitcast

This is mostly useful if alloca element type is not integer
and then casted to an integer for load or store. We now can
vectorize an [i32] alloca but cannot do so for [float].

There also a separate patch needed to properly lower 64 bit
types after they vectorized. At the moment these are lowered
via scratch anyway.

Differential Revision: https://reviews.llvm.org/D79641

4 years ago[TRE][NFC] Refactor shared state into member variables.
Layton Kifer [Fri, 8 May 2020 21:18:53 +0000 (14:18 -0700)]
[TRE][NFC] Refactor shared state into member variables.

Separate functions that require shared state into a class to avoid
needing to pass them though multiple functions just to be available
where needed.

The main motivation for this is that we would like to remove the
limitation that accumulator values be dynamic constant, which would
require additional shared state between call eliminations in the same
function, compounding this issue.

Differential Revision: https://reviews.llvm.org/D79299

4 years ago[COFF] Use Expected in COFFObjectFile creation
Reid Kleckner [Fri, 8 May 2020 20:58:56 +0000 (13:58 -0700)]
[COFF] Use Expected in COFFObjectFile creation

The constructor error out parameter was a bit awkward. Wrap it in a
factory method which can return an error. Make the constructor private.

4 years ago[COFF] Migrate COFFObjectFile to Expected<T>
Reid Kleckner [Fri, 8 May 2020 17:41:05 +0000 (10:41 -0700)]
[COFF] Migrate COFFObjectFile to Expected<T>

I noticed that std::error_code() does one-time initialization. Avoid
that overhead with Expected<T> and llvm::Error. Also, it is consistent
with the virtual interface and ELF, and generally cleaner.

Reviewed By: MaskRay

Differential Revision: https://reviews.llvm.org/D79643

4 years ago[clang][WebAssembly] Only expose wait and notify builtins with atomics
Thomas Lively [Thu, 7 May 2020 00:17:48 +0000 (17:17 -0700)]
[clang][WebAssembly] Only expose wait and notify builtins with atomics

Summary:
Since the underlying wait and notify instructions are only available
when the atomics feature is enabled, it only makes sense to expose
their builtin functions when atomics are enabled.

Reviewers: aheejin, sunfish

Subscribers: dschuff, sbc100, jgravelle-google, jfb, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D79534

4 years ago[WebAssembly] Disallow 'shared-mem' rather than 'atomics'
Thomas Lively [Thu, 7 May 2020 02:33:24 +0000 (19:33 -0700)]
[WebAssembly] Disallow 'shared-mem' rather than 'atomics'

Summary:
The WebAssembly backend automatically lowers atomic operations and TLS
to nonatomic operations and non-TLS data when either are present and
the atomics or bulk-memory features are not present, respectively. The
resulting object is no longer thread-safe, so the linker has to be
told not to allow it to be linked into a module with shared
memory. This was previously done by disallowing the 'atomics' feature,
which prevented any objct with its atomic operations or TLS removed
from being linked with any object containing atomics or TLS, and
therefore preventing it from being linked into a module with shared
memory since shared memory requires atomics.

However, as of https://github.com/WebAssembly/threads/issues/144, the
validation rules are relaxed to allow atomic operations to validate
with unshared memories, which makes it perfectly safe to link an
object with stripped atomics and TLS with another object that still
contains TLS and atomics as long as the resulting module has an
unshared memory. To allow this kind of link, this patch disallows a
pseudo-feature 'shared-mem' rather than 'atomics' to communicate to
the linker that the object is not thread-safe. This means that the
'atomics' feature is available to accurately reflect whether or not an
object has atomics enabled.

As a drive-by tweak, this change also requires that bulk-memory be
enabled in addition to atomics in order to use shared memory. This is
because initializing shared memories requires bulk-memory operations.

Reviewers: aheejin, sbc100

Subscribers: dschuff, jgravelle-google, hiraditya, sunfish, jfb, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D79542

4 years ago[Target][XCOFF] Correctly halt when mixing AIX or XCOFF with ppc64le
Hubert Tong [Fri, 8 May 2020 20:40:28 +0000 (16:40 -0400)]
[Target][XCOFF] Correctly halt when mixing AIX or XCOFF with ppc64le

The code to prevent using `PPCXCOFFMCAsmInfo` with little-endian targets
used an incorrect check. Also, there does not appear to be sufficient
earlier checking to prevent failing this check, so the check here is
upgraded to be a `report_fatal_error`.

`PPCAIXAsmPrinter` was also missing a check against use with
little-endian targets. This patch adds such a check in.

4 years ago[XCOFF] XCOFF constants, MCObjectFileInfo placeholder code for DWARF; NFC
Hubert Tong [Fri, 8 May 2020 20:32:12 +0000 (16:32 -0400)]
[XCOFF] XCOFF constants, MCObjectFileInfo placeholder code for DWARF; NFC

Summary:
This patch introduces the constants defined to identify DWARF sections
in XCOFF into `llvm/BinaryFormat/XCOFF.h` and adds (NFC) placeholder
code to `llvm/lib/MC/MCObjectFileInfo.cpp` where the DWARF sections for
XCOFF are to be set up.

Reviewers: jasonliu, sfertile, daltenty, DiggerLin, Xiangling_L

Reviewed By: jasonliu, sfertile, DiggerLin

Differential Revision: https://reviews.llvm.org/D79220

4 years ago[AIX] Avoid structor alias; die before bad alias codegen
Hubert Tong [Fri, 8 May 2020 20:29:58 +0000 (16:29 -0400)]
[AIX] Avoid structor alias; die before bad alias codegen

Summary:
`AsmPrinter::emitGlobalIndirectSymbol` is dependent on
`MCStreamer::emitAssignment` to produce `.set` directives for alias
symbols; however, the `.set` pseudo-op on AIX is documented as not
usable with external relocatable terms or expressions, which limits its
applicability in generating alias symbols.

Disable generating aliases on AIX until a different implementation
strategy is available.

Reviewers: cebowleratibm, jasonliu, sfertile, daltenty, DiggerLin

Reviewed By: jasonliu

Differential Revision: https://reviews.llvm.org/D79044

4 years ago[GlobalISel] Don't add duplicate successors to MBBs when translating indirectbr
Jessica Paquette [Thu, 7 May 2020 23:25:34 +0000 (16:25 -0700)]
[GlobalISel] Don't add duplicate successors to MBBs when translating indirectbr

This fixes a verifier failure on a bot:

http://green.lab.llvm.org/green/job/test-suite-verify-machineinstrs-aarch64-O0-g/

```
*** Bad machine code: MBB has duplicate entries in its successor list. ***
- function:    foo
- basic block: %bb.5 indirectgoto (0x7fe3d687ca08)
```

One of the GCC torture suite tests (pr70460.c) has an indirectbr instruction
which has duplicate blocks in its destination list.

According to the langref this is allowed:

> Blocks are allowed to occur multiple times in the destination list, though
> this isn’t particularly useful.
(https://www.llvm.org/docs/LangRef.html#indirectbr-instruction)

We don't allow this in MIR. So, when we translate such an instruction, the
verifier screams.

This patch makes `translateIndirectBr` check if a successor has already been
added to a block. If the successor is present, it is skipped rather than added
twice.

Differential Revision: https://reviews.llvm.org/D79609

4 years ago[VectorCombine] scalarize binop of inserted elements into vector constants
Sanjay Patel [Fri, 8 May 2020 20:29:07 +0000 (16:29 -0400)]
[VectorCombine] scalarize binop of inserted elements into vector constants

As with the extractelement patterns that are currently in vector-combine,
there are going to be several possible variations on this theme. This
should be the clearest, simplest example.

Scalarization is the right direction for target-independent canonicalization,
and InstCombine has some of those folds already, but it doesn't do this.
I proposed a similar transform in D50992. Here in vector-combine, we can
check the cost model to be sure it's profitable, so there should be less risk.

Differential Revision: https://reviews.llvm.org/D79452

4 years ago[lldb/Test] Update TestProcessList.py for reproducer replay
Jonas Devlieghere [Fri, 8 May 2020 20:12:22 +0000 (13:12 -0700)]
[lldb/Test] Update TestProcessList.py for reproducer replay

Because LLDB isn't the one spawning the subprocess, the PID is different
during replay. Exclude it form the substring check during replay.

Depends on D79646 to pass with reproducer replay.

4 years agoReland [libc++] Move abs and div into stdlib.h to fix header cycle.
Eric Fiselier [Sat, 15 Feb 2020 23:55:07 +0000 (18:55 -0500)]
Reland [libc++] Move abs and div into stdlib.h to fix header cycle.

This commit should will break libc++ without local submodule visibility, but
the LLVM+modules bots are now all using this mode. Before the Green Dragon
LLDB bot was failing to compile with a libc++ built with this commit as LSV
was disabled on macOS.

Original summary:

libc++ is careful to not fracture overload sets. When one overload
is visible to a user, all of them should be. Anything less causes
subtle bugs and ODR violations.

Previously, in order to support ::abs and ::div being supplied by
both <cmath> and <cstdlib> we had to do awful things that make
<math.h> and <stdlib.h> have header cycles and be non-modular.
This really breaks with modules.

Specifically the problem was that in C++ ::abs introduces overloads
for floating point numbers, these overloads forward to ::fabs,
which are defined in math.h. Therefore ::abs needed to be in math.h
too. But this required stdlib.h to include math.h and math.h to
include stdlib.h.

To avoid these problems the definitions have been moved to stddef.h
(which math includes), and the floating point overloads of ::abs
have been changed to call __builtin_fabs, which both Clang and GCC
support.

4 years ago[X86] Remove the mayLoad and mayStore flags from vzeroupper/vzeroall.
Craig Topper [Fri, 8 May 2020 19:32:19 +0000 (12:32 -0700)]
[X86] Remove the mayLoad and mayStore flags from vzeroupper/vzeroall.

But leave the hasUnmodelledSideEffects flag.

4 years ago[InstCombine] fix typo in comment; NFC
Sanjay Patel [Fri, 8 May 2020 19:42:54 +0000 (15:42 -0400)]
[InstCombine] fix typo in comment; NFC

4 years agoRe-commit: Mark values as trivially dead when their only use is a start or end lifeti...
zoecarver [Fri, 8 May 2020 19:22:39 +0000 (12:22 -0700)]
Re-commit: Mark values as trivially dead when their only use is a start or end lifetime intrinsic.

Summary:
If the only use of a value is a start or end lifetime intrinsic then mark the intrinsic as trivially dead. This should allow for that value to then be removed as well.

Currently, this only works for allocas, globals, and arguments.

Subscribers: hiraditya, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D79355

4 years ago[InstCombine] add/adjust tests for fpext of casted value; NFC
Sanjay Patel [Fri, 8 May 2020 19:14:36 +0000 (15:14 -0400)]
[InstCombine] add/adjust tests for fpext of casted value; NFC

4 years ago[InstCombine] add helper for known exact cast to FP; NFC
Sanjay Patel [Fri, 8 May 2020 18:40:04 +0000 (14:40 -0400)]
[InstCombine] add helper for known exact cast to FP; NFC

As suggested in D79116 - there's shared logic between the
existing code and potential new folds. This could go in
ValueTracking if it seems generally useful.

4 years ago[libcxx] Delete pointer in shared_ptr deduction test.
zoecarver [Fri, 8 May 2020 19:18:21 +0000 (12:18 -0700)]
[libcxx] Delete pointer in shared_ptr deduction test.

Updates the dummy deleter in deduction.pass.cpp to delete the pointer argument. This will fix the asan bots.

4 years ago[lldb] Remove 'use_synthetic' parameters in ValueObject code
Raphael Isemann [Fri, 8 May 2020 17:09:30 +0000 (19:09 +0200)]
[lldb] Remove 'use_synthetic' parameters in ValueObject code

Summary:
`CalculateSyntheticValue` and `GetSyntheticValue` have a `use_synthetic` parameter
that makes the function do nothing when it's false. We obviously always pass true
to the function (or check that the value we pass is true), because there really isn't
any point calling with function with a `false`. This just removes all of this.

Reviewers: labath, JDevlieghere, davide

Reviewed By: davide

Subscribers: davide

Differential Revision: https://reviews.llvm.org/D79568

4 years ago[X86] Add assembler support for {vex} prefix to match GNU as.
Craig Topper [Fri, 8 May 2020 18:49:30 +0000 (11:49 -0700)]
[X86] Add assembler support for {vex} prefix to match GNU as.

This does the same thing as {vex2}. Which is give an error
if the instruction can't be done with VEX. It doesn't force
the instruction to use 2 byte VEX. That's already the preference
if its possible. Therefore {vex} is a clearer name.

4 years ago[SampleFDO] For functions without profiles, provide an option to put
Wei Mi [Tue, 5 May 2020 00:17:34 +0000 (17:17 -0700)]
[SampleFDO] For functions without profiles, provide an option to put
them in a special text section.

For sampleFDO, because the optimized build uses profile generated from
previous release, previously we couldn't tell a function without profile
was truely cold or just newly created so we had to treat them conservatively
and put them in .text section instead of .text.unlikely. The result was when
we persuing the best performance by locking .text.hot and .text in memory,
we wasted a lot of memory to keep cold functions inside.

In https://reviews.llvm.org/D66374, we introduced profile symbol list to
discriminate functions being cold versus functions being newly added.
This mechanism works quite well for regular use cases in AutoFDO. However,
in some case, we can only have a partial profile when optimizing a target.
The partial profile may be an aggregated profile collected from many targets.
The profile symbol list method used for regular sampleFDO profile is not
applicable to partial profile use case because it may be too large and
introduce many false positives.

To solve the problem for partial profile use case, we provide an option called
--profile-unknown-in-special-section. For functions without profile, we will
still treat them conservatively in compiler optimizations -- for example,
treat them as warm instead of cold in inliner. When we use profile info to
add section prefix for functions, we will discriminate functions known to be
not cold versus functions without profile (being unknown), and we will put
functions being unknown in a special text section called .text.unknown.
Runtime system will have the flexibility to decide where to put the special
section in order to achieve a balance between performance and memory saving.

Differential Revision: https://reviews.llvm.org/D62540

4 years ago[lld] Add a new output section ".text.unknown" for funtions with unknown hotness
Wei Mi [Thu, 7 May 2020 17:24:19 +0000 (10:24 -0700)]
[lld] Add a new output section ".text.unknown" for funtions with unknown hotness

For sampleFDO, because the optimized build uses profile generated from previous
release, often we couldn't tell a function without profile was truely cold or
just newly created so we had to treat them conservatively and put them in .text
section instead of .text.unlikely. The result was when we persue the best
performance by locking .text.hot and .text in memory, we wasted a lot of memory
to keep cold functions inside. This problem has been largely solved for regular
sampleFDO using profile-symbol-list (https://reviews.llvm.org/D66374), but for
the case when we use partial profile, we still waste a lot of memory because
of it.

In https://reviews.llvm.org/D62540, we propose to save functions with unknown
hotness information in a special section called ".text.unknown", so that
compiler will treat those functions as luck-warm, but runtime can choose not
to mlock the special section in memory or use other strategy to save memory.
That will solve most of the memory problem even if we use a partial profile.

The patch adds the support in lld for the special section.For sampleFDO,
because the optimized build uses profile generated from previous release,
often we couldn't tell a function without profile was truely cold or just
newly created so we had to treat them conservatively and put them in .text
section instead of .text.unlikely. The result was when we persue the best
performance by locking .text.hot and .text in memory, we wasted a lot of
memory to keep cold functions inside. This problem has been largely solved
for regular sampleFDO using profile-symbol-list
(https://reviews.llvm.org/D66374), but for the case when we use partial
profile, we still waste a lot of memory because of it.

In https://reviews.llvm.org/D62540, we propose to save functions with unknown
hotness information in a special section called ".text.unknown", so that
compiler will treat those functions as luck-warm, but runtime can choose not
to mlock the special section in memory or use other strategy to save memory.
That will solve most of the memory problem even if we use a partial profile.

The patch adds the support in lld for the special section.

Differential Revision: https://reviews.llvm.org/D79590

4 years ago[SimplifyCFG] Remap rewritten debug intrinsic operands.
Ricky Zhou [Fri, 8 May 2020 17:55:27 +0000 (10:55 -0700)]
[SimplifyCFG] Remap rewritten debug intrinsic operands.

FoldBranchToCommonDest clones instructions to a different basic block,
but handles debug intrinsics in a separate path. Previously, when
cloning debug intrinsics, their operands were not updated to reference
the correct cloned values. As a result, we would emit debug.value
intrinsics with broken operand references which are discarded in later
passes. This leads to incorrect debuginfo that reports incorrect values
for variables.

Fix this by remapping debug intrinsic operands when cloning them.

Fixes https://bugs.llvm.org/show_bug.cgi?id=45667.

Differential Revision: https://reviews.llvm.org/D79602

4 years ago[DAG] SimplifyMultipleUseDemandedBits - remove superfluous bitcasts
Simon Pilgrim [Fri, 8 May 2020 18:04:29 +0000 (19:04 +0100)]
[DAG] SimplifyMultipleUseDemandedBits - remove superfluous bitcasts

If the SimplifyMultipleUseDemandedBits calls BITCASTs that peek through back to the original type then we can remove the BITCASTs entirely.

Differential Revision: https://reviews.llvm.org/D79572

4 years ago[AIX] Make sure we use export lists for plugins
David Tenty [Fri, 8 May 2020 17:45:44 +0000 (13:45 -0400)]
[AIX] Make sure we use export lists for plugins

Summary:
Besides just generating and consuming the lists, this includes:

 * Calling  nm with the right options in extract_symbols.py. Such as not
  demangling C++ names, which AIX nm does by default, and accepting both
  32/64-bit names.
 * Not having nm sort the list of symbols or we may run in to memory
   issues on debug builds, as nm calls a 32-bit sort.
 * Defaulting to having LLVM_EXPORT_SYMBOLS_FOR_PLUGINS on for AIX
 * CMake versions prior to 3.16 set the -brtl linker flag globally on
   AIX. Clear it out early on so we don't run into failures. We will set
   it as needed.

Reviewers: jasonliu, DiggerLin, stevewan, hubert.reinterpretcast

Reviewed By: hubert.reinterpretcast

Subscribers: hubert.reinterpretcast, mgorny, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D70972

4 years agoRe-land "get rid of PythonInteger::GetInteger()"
Lawrence D'Anna [Fri, 8 May 2020 17:56:30 +0000 (10:56 -0700)]
Re-land "get rid of PythonInteger::GetInteger()"

This was reverted due to a python2-specific bug.  Re-landing with a fix
for python2.

Summary:
One small step in my long running quest to improve python exception handling in
LLDB.  Replace GetInteger() which just returns an int with As<long long> and
friends, which return Expected types that can track python exceptions

Reviewers: labath, jasonmolenda, JDevlieghere, vadimcn, omjavaid

Reviewed By: labath, omjavaid

Subscribers: omjavaid, lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D78462

4 years agoAdd an API to construct an XcodeSDK from an SDK type.
Adrian Prantl [Thu, 7 May 2020 23:02:23 +0000 (16:02 -0700)]
Add an API to construct an XcodeSDK from an SDK type.

Also, this moves numSDKs out of the actual enum, as to not mess with
the switch-cases-covered warning.

Differential Revision: https://reviews.llvm.org/D79603

4 years ago[InstCombine] add tests for known bits before FP casts; NFC
Sanjay Patel [Fri, 8 May 2020 17:44:03 +0000 (13:44 -0400)]
[InstCombine] add tests for known bits before FP casts; NFC

4 years agoRevert "[libc++] ECMAScript IdentityEscape is ambiguous (2584)"
zoecarver [Fri, 8 May 2020 17:35:18 +0000 (10:35 -0700)]
Revert "[libc++] ECMAScript IdentityEscape is ambiguous (2584)"

This reverts commit 6d2a66b10d458e34c852be46028092d2b46edc14.

The regex expressions in some lld tests need to be fixed. Reverting
until those are fixed.

4 years agoFix bugs when an included file name is typo corrected.
Nico Weber [Fri, 8 May 2020 17:03:14 +0000 (13:03 -0400)]
Fix bugs when an included file name is typo corrected.

D52774 fixed a bug with typo correction of includes, but didn't add
a test.

D65907 then broke recovery of typo correction of includes again,
because it extracted the code that writes to Filename to a separate
function that took the parameter not by reference.

Fix that, and also don't repeat the slash normalization computation
and fix both lookup and regular file name after recovery.

Differential Revision: https://reviews.llvm.org/D79595

4 years ago[hwasan] Reset current thread pointer on thread exit.
Evgenii Stepanov [Thu, 7 May 2020 23:22:21 +0000 (16:22 -0700)]
[hwasan] Reset current thread pointer on thread exit.

Summary:
This is necessary to handle calls to free() after __hwasan_thread_exit,
which is possible in glibc.

Also, add a null check to GetCurrentThread, otherwise the logic in
GetThreadByBufferAddress turns it into a non-null value. This means that
all of the checks for GetCurrentThread() != nullptr do not have any
effect at all right now!

Reviewers: pcc, hctim

Subscribers: #sanitizers, llvm-commits

Tags: #sanitizers

Differential Revision: https://reviews.llvm.org/D79608

4 years agoReland [lldb][cmake] Also use local submodule visibility on Darwin
Raphael Isemann [Mon, 27 Apr 2020 12:58:50 +0000 (14:58 +0200)]
Reland [lldb][cmake] Also use local submodule visibility on Darwin

Relanding this as D79632 should fix the macOS tests with this option.

Original commit:

Summary:
Currently building LLVM on macOS and on other platforms with LLVM_ENABLE_MODULES is using different module flags,
which means that a passing modules build on macOS might fail on Linux and vice versa. -fmodules-local-submodule-visibility
is the mode that has clearer semantics and is closer to the actual C++ module standard, so let's make this the default everywhere.

We can still test building without local submodule visibility on an additional bot by just changing the respective CMake flag. However,
if building without local-submodule-visibility breaks we won't revert other commits and we won't loose LLDB's/Clang's test run
information.

Reviewers: aprantl, bruno, Bigcheese

Reviewed By: Bigcheese

Subscribers: abidh, dexonsmith, JDevlieghere, lldb-commits, mgorny, llvm-commits

Tags: #llvm, #lldb

Differential Revision: https://reviews.llvm.org/D74892

4 years ago[PDB] Optimize public symbol processing
Reid Kleckner [Sun, 3 May 2020 16:29:03 +0000 (09:29 -0700)]
[PDB] Optimize public symbol processing

Reduces time to link PGO instrumented net_unittets.exe by 11% (9.766s ->
8.672s, best of three). Reduces peak memory by 65.7MB (2142.71MB ->
2076.95MB).

Use a more compact struct, BulkPublic, for faster sorting. Sort in
parallel. Construct the hash buckets in parallel. Try to use one vector
to hold all the publics instead of copying them from one to another.
Allocate all the memory needed to serialize publics up front, and then
serialize them in place in parallel.

Reviewed By: aganea, hans

Differential Revision: https://reviews.llvm.org/D79467

4 years ago[lldb/test][Darwin] Ask dyld where the real python is
Vedant Kumar [Thu, 7 May 2020 23:07:32 +0000 (16:07 -0700)]
[lldb/test][Darwin] Ask dyld where the real python is

Summary:
On macOS, we can't do the DYLD_INSERT_LIBRARIES trick with a shim
python binary as the ASan interceptors get loaded too late. Find the
"real" python binary, copy it, and invoke it.

Hopefully this makes the GreenDragon and swift-ci sanitizer bots
happy...

I tested this out by running `../llvm-macosx-x86_64/bin/llvm-lit test
--filter TestNSDictionarySynthetic.py` in an ASanified swift-lldb build
directory and it worked (i.e. no more "interceptors loaded too late"
messages).

Reviewers: JDevlieghere

Subscribers: lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D79607

4 years agoAMDGPU: Don't assert on unknown address spaces
Matt Arsenault [Thu, 7 May 2020 15:22:54 +0000 (11:22 -0400)]
AMDGPU: Don't assert on unknown address spaces

Assume unknown address spaces behave like some flavor of global
memory.

4 years agoUnbreak clang-tidy tests after D79599 / e9b4113902850.
Nico Weber [Fri, 8 May 2020 16:36:31 +0000 (12:36 -0400)]
Unbreak clang-tidy tests after D79599 / e9b4113902850.

4 years agoReland D79501 "[DebugInfo] Fix handling DW_OP_call_ref in DWARF64 units."
Fangrui Song [Fri, 8 May 2020 16:28:25 +0000 (09:28 -0700)]
Reland D79501 "[DebugInfo] Fix handling DW_OP_call_ref in DWARF64 units."

With a fix to uninitialized EndOffset.

DW_OP_call_ref is the only operation that has an operand which depends
on the DWARF format. The patch fixes handling that operation in DWARF64
units.

Differential Revision: https://reviews.llvm.org/D79501

4 years ago[lldb][modules] Disable Clang Modules in source/Host directory on macOS
Raphael Isemann [Fri, 8 May 2020 16:13:43 +0000 (18:13 +0200)]
[lldb][modules] Disable Clang Modules in source/Host directory on macOS

Summary:
The arpa/inet.h header in macOS is providing an incorrect htonl
function with enabled local submodule visibility while building LLDB. This
caused several networking tests to fail as the IP addresses are now flipped
in LLDB.

This patch disables building with modules when local submodule visibility is
active and the current system is macOS for the source/Host directory (which
is the *only directory that includes arpa/inet.h).

* debugserver also includes arpa/inet.h but there we already disabled
modules.

Reviewers: aprantl

Reviewed By: aprantl

Subscribers: mgorny, JDevlieghere

Differential Revision: https://reviews.llvm.org/D79632

4 years ago[InstCombine] clean up foldItoFPtoI; NFC
Sanjay Patel [Fri, 8 May 2020 16:06:38 +0000 (12:06 -0400)]
[InstCombine] clean up foldItoFPtoI; NFC

Mostly cosmetic improvements to variable names and logic to ease
refactoring suggested in D79116.

4 years agoFix MSan test use-after-dtor.cpp under new pass manager
Arthur Eubanks [Thu, 7 May 2020 19:14:43 +0000 (12:14 -0700)]
Fix MSan test use-after-dtor.cpp under new pass manager

Summary: The new pass manager symbolizes the location as ~Simple instead of Simple::~Simple.

Reviewers: rnk, leonardchan, vitalybuka

Subscribers: #sanitizers

Tags: #sanitizers

Differential Revision: https://reviews.llvm.org/D79594

4 years agoAdd a flag that controls if clang-tidy and clang-include-fixer are built into libclang.
Nico Weber [Thu, 7 May 2020 21:05:42 +0000 (17:05 -0400)]
Add a flag that controls if clang-tidy and clang-include-fixer are built into libclang.

Based on the discussion on D55415, also make the flag default to false.
Having libclang depend on clang-tools-extra means check-clang builds all
of clang-tools-extra, which besides being a layering violation takes
quite some time, since clang-tools-extra has many files that are slow
to compile.

Longer term, we likely will want to remove this flag completely. If
people need this functionality, maybe there could be a
libclang-tools-extra that's libclang + clang-tidy and
clang-includes-fixer linked in.

Differential Revision: https://reviews.llvm.org/D79599

4 years agoRevert "[DebugInfo] Fix handling DW_OP_call_ref in DWARF64 units."
Krasimir Georgiev [Fri, 8 May 2020 15:14:12 +0000 (17:14 +0200)]
Revert "[DebugInfo] Fix handling DW_OP_call_ref in DWARF64 units."

This reverts commit 989ae9e848a079715c2d23e5d3622cac9b48e08e.

Newly added test fails:
FAIL: LLVM::DW_OP_call_ref_unexpected.s

http://lab.llvm.org:8011/builders/clang-x86_64-debian-fast/builds/28298

4 years ago[mlir][spirv] Handle debuginfo for variables.
Denis Khalikov [Fri, 8 May 2020 11:56:58 +0000 (14:56 +0300)]
[mlir][spirv] Handle debuginfo for variables.

Summary:
Handle debuginfo for spv.Variable and spv.globalVariable during
(de)serialization.

Differential Revision: https://reviews.llvm.org/D79566

4 years agoAMDGPU/GlobalISel: Regenerate checks
Matt Arsenault [Fri, 8 May 2020 14:29:25 +0000 (10:29 -0400)]
AMDGPU/GlobalISel: Regenerate checks

Avoids extra diffs from the rename of G_GEP to G_PTR_ADD in the
generated check variables in a future patch.

4 years agoAMDGPU: Lower addrspacecast to 32-bit constant
Matt Arsenault [Thu, 7 May 2020 15:49:39 +0000 (11:49 -0400)]
AMDGPU: Lower addrspacecast to 32-bit constant

Somehow this was missing from the DAG path, but not global isel.

4 years ago[ELF] Add convenience TableGen classes to enforce two dashes for options not supporte...
Fangrui Song [Mon, 4 May 2020 21:42:36 +0000 (14:42 -0700)]
[ELF] Add convenience TableGen classes to enforce two dashes for options not supported by GNU ld

Announced on https://lists.llvm.org/pipermail/llvm-dev/2020-May/141416.html

For many options, we have to support either one or two dash to be
compatible with GNU ld. For newer and lld specific options, we can enforce strict double dashes.

Affected options:

* --thinlto-*
* --lto-*
* --shuffle-sections=

This patch does not change `-plugin-opt=*` because clang driver passes
`-plugin-opt=*` and I don't intend to cause churn.

In 2000, GNU ld tried something similar with --omagic
https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=e4897a3288f37d5f69e8acd256a6e83e607fe8d8

Reviewed By: tejohnson, psmith

Differential Revision: https://reviews.llvm.org/D79371

4 years ago[PatternMatch] add missing FP cast matchers; NFC
Sanjay Patel [Fri, 8 May 2020 13:56:59 +0000 (09:56 -0400)]
[PatternMatch] add missing FP cast matchers; NFC

These are the obvious counterparts to the existing cast matchers.
Moving out of D79116 to reduce that patch.

4 years ago[InstCombine] simplify code for FP to integer casts; NFCI
Sanjay Patel [Fri, 8 May 2020 13:05:41 +0000 (09:05 -0400)]
[InstCombine] simplify code for FP to integer casts; NFCI

FoldIToFPtoI() returns immediately if the operand is not
an opposite cast instruction, so the extra checks in the
callers are redundant.

4 years agoLiveIntervalCalc - remove unnecessary includes. NFC.
Simon Pilgrim [Fri, 8 May 2020 13:57:35 +0000 (14:57 +0100)]
LiveIntervalCalc - remove unnecessary includes. NFC.

As we're inheriting from LiveRangeCalc, all the headers are already explicitly required by LiveRangeCalc.h

4 years agoDFAEmitter.h - remove unnecessary headers. NFC.
Simon Pilgrim [Fri, 8 May 2020 13:53:10 +0000 (14:53 +0100)]
DFAEmitter.h - remove unnecessary headers. NFC.

Reduce StringRef.h include to forward declaration and add implicit SmallVector.h and <map> include dependencies.

4 years agoItaniumManglingCanonicalizer.h - add cstdint.h include for missing uintptr_t def
Simon Pilgrim [Fri, 8 May 2020 13:21:49 +0000 (14:21 +0100)]
ItaniumManglingCanonicalizer.h - add cstdint.h include for missing uintptr_t def

MSVC builds don't need it but everything else does.

4 years ago[ARM] Change test target to arm-none-none-eabi. NFC
David Green [Fri, 8 May 2020 12:30:04 +0000 (13:30 +0100)]
[ARM] Change test target to arm-none-none-eabi. NFC

4 years ago[libc++][test] Add test coverage for codecvt<char(16|32)_t, char8_t, mbstate_t>
Casey Carter [Thu, 7 May 2020 17:42:10 +0000 (10:42 -0700)]
[libc++][test] Add test coverage for codecvt<char(16|32)_t, char8_t, mbstate_t>

This change adds test coverage for the `codecvt<char16_t, char8_t, mbstate_t>` and `codecvt<char32_t, char8_t, mbstate_t>` ctype facets added to the C++20 WD by [P0482R6](https://wg21.link/P0428R6). Note that libc++ does not implement these facets despite implementing the remainder of P0482, presumably for ABI reasons, so these tests are marked `UNSUPPORTED: libc++`.

4 years ago[clangd] Update the new clangd url, NFC.
Haojian Wu [Fri, 8 May 2020 13:11:44 +0000 (15:11 +0200)]
[clangd] Update the new clangd url, NFC.

4 years agoCachePruning.h - reduce StringRef.h to Optional.h include. NFC
Simon Pilgrim [Fri, 8 May 2020 12:15:49 +0000 (13:15 +0100)]
CachePruning.h - reduce StringRef.h to Optional.h include. NFC

We only need to include Optional.h, forward declare StringRef and move the StringRef.h include down to CachePruning.cpp.

4 years agoItaniumManglingCanonicalizer - reduce StringRef.h include to forward declaration...
Simon Pilgrim [Fri, 8 May 2020 12:02:57 +0000 (13:02 +0100)]
ItaniumManglingCanonicalizer - reduce StringRef.h include to forward declaration + remove duplicate includes. NFC

4 years ago[lldb] Fix RecordDecl match string in module-ownership.mm to get the test running...
Raphael Isemann [Fri, 8 May 2020 12:43:16 +0000 (14:43 +0200)]
[lldb] Fix RecordDecl match string in module-ownership.mm to get the test running again

The relevant output FileCheck is scanning in this test is as follows:

    CXXRecordDecl 0x7f96cf8239c8 <<invalid sloc>> <invalid sloc> imported in A.B <undeserialized declarations> struct definition
    <<DefinitionData boilerplate>>
    `-FieldDecl 0x7f96cf823b90 <<invalid sloc>> <invalid sloc> imported in A.B anon_field_b 'int'
    (anonymous struct)
    CXXRecordDecl 0x7f96cf823be8 <<invalid sloc>> <invalid sloc> imported in A.B struct

Before 710fa2c4ee346e1ec2db66ac5fdf6909e79d9a8c this test was passing by
accident as it had a -DAG suffix in the checks changed by this patch,
causing FileCheck to first match the last line of the output above
(instead of the first one), and then finding the FieldDecl above.
When I removed the -DAG suffix, FileCheck actually enforced the ordering
and started failing as the FieldDecl comes before the CXXRecordDecl match
we get.

This patch fixes the CXXRecordDecl check to find the first line of the output
above which caused FileCheck to also find the FieldDecl that follows. Also
gives the FieldDecl a more unique name to make name collisions less likely.

4 years agoRevert "Recommit "[LV] Induction Variable does not remain scalar under tail-folding.""
Benjamin Kramer [Fri, 8 May 2020 12:48:17 +0000 (14:48 +0200)]
Revert "Recommit "[LV] Induction Variable does not remain scalar under tail-folding.""

This reverts commit ae45b4dbe73ffde5fe3119835aa947d5a49635ed. It
causes miscompilations, test case on the mailing list.

4 years ago[lldb] Prevent objc-root-class warning when compiling module-ownership.mm test
Raphael Isemann [Fri, 8 May 2020 12:40:57 +0000 (14:40 +0200)]
[lldb] Prevent objc-root-class warning when compiling module-ownership.mm test

This test was generating the following false-positive warning when being compiled:
 warning: class 'SomeClass' defined without specifying a base class [-Wobjc-root-class]

4 years ago[clangd] Fix crash in AddUsing tweak due to non-identifier DeclName
Adam Czachorowski [Fri, 8 May 2020 12:23:19 +0000 (14:23 +0200)]
[clangd] Fix crash in AddUsing tweak due to non-identifier DeclName

Patch by Adam Czachorowski!

Reviewers: hokein

Reviewed By: hokein

Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D79582

4 years ago[lldb] Make module-ownership.mm test more robust against AST node ordering
Raphael Isemann [Fri, 8 May 2020 11:26:42 +0000 (13:26 +0200)]
[lldb] Make module-ownership.mm test more robust against AST node ordering

The current test is checking both the anonymous structs and the template
specializations in one FileCheck run, but the anonymous struct line can
partially match the AST dump of a template specialization, causing that
FileCheck won't match that same line later against the template specialization
check and incorrectly fails on that check. This only happens when the
template specialization node somehow ends up before the anonymous struct node.

This patch just puts the checks for the anonymous structs in their own FileCheck
run to prevent them from partially matching any other record decl.

Fixes rdar://62997926

4 years ago[X86][AVX] Don't let X86ISD::BROADCAST peek through bitcasts to illegal types.
Simon Pilgrim [Fri, 8 May 2020 11:30:33 +0000 (12:30 +0100)]
[X86][AVX] Don't let X86ISD::BROADCAST peek through bitcasts to illegal types.

This was an existing bug exposed by the more aggressive X86ISD::BROADCAST generation by rG8817334ce3c7

Original test case thanks to @mstorsjo

4 years agoRemarkStringTable.h - reduce StringRef/Remark includes to forward declarations. NFC
Simon Pilgrim [Fri, 8 May 2020 11:25:15 +0000 (12:25 +0100)]
RemarkStringTable.h - reduce StringRef/Remark includes to forward declarations. NFC

Move StringRef.h include down to RemarkStringTable.cpp and remove some unused includes there as well.

4 years ago[compiler-rt] Reduce the number of threads in gcov test to avoid failure
Calixte Denizet [Fri, 8 May 2020 09:04:17 +0000 (11:04 +0200)]
[compiler-rt] Reduce the number of threads in gcov test to avoid failure

Summary:
Patch in D78477 introduced a new test for gcov and this test is failing on arm:
 - http://lab.llvm.org:8011/builders/clang-cmake-thumbv7-full-sh/builds/4752/steps/ninja%20check%202/logs/stdio
  - http://lab.llvm.org:8011/builders/clang-cmake-armv7-full/builds/10501/steps/ninja%20check%202/logs/stdio
So try to fix it in reducing the number of threads.

Reviewers: marco-c

Reviewed By: marco-c

Subscribers: dberris, kristof.beyls, #sanitizers, serge-sans-paille, sylvestre.ledru

Tags: #sanitizers

Differential Revision: https://reviews.llvm.org/D79621

4 years agoRemark.h - reduce ArrayRef.h include to SmallVector.h. NFC.
Simon Pilgrim [Thu, 7 May 2020 17:06:23 +0000 (18:06 +0100)]
Remark.h - reduce ArrayRef.h include to SmallVector.h. NFC.

We only need to include SmallVector.h in Remark.h, and then the more bulky ArrayRef.h in Remark.cpp.

4 years agoAArch6/ARMTargetParser.h - move Triple.h dependency down to cpp file. NFC.
Simon Pilgrim [Thu, 7 May 2020 16:14:14 +0000 (17:14 +0100)]
AArch6/ARMTargetParser.h - move Triple.h dependency down to cpp file. NFC.

Reduce Triple.h include to a forward declaration in the header. Only the implementations in the cpp files need the actual Triple class definition.

4 years ago[MLIR] Add complex addition and substraction to the standard dialect
Frederik Gossen [Fri, 8 May 2020 09:49:48 +0000 (09:49 +0000)]
[MLIR] Add complex addition and substraction to the standard dialect

Complex addition and substraction are the first two binary operations on complex
numbers.
Remaining operations will follow the same pattern.

Differential Revision: https://reviews.llvm.org/D79479

4 years ago[clangd] NFC: Use deprecated grpc++ headers for compatibility
Kirill Bobyrev [Fri, 8 May 2020 09:01:34 +0000 (11:01 +0200)]
[clangd] NFC: Use deprecated grpc++ headers for compatibility

Summary:
Ubuntu 18.04 and older versions do not provide latest gRCP packages and the
ones that are in the repository use deprecated headers. Use these headers to
make builds possible.

https://packages.ubuntu.com/bionic/amd64/libgrpc++-dev/filelist

Reviewers: sammccall

Reviewed By: sammccall

Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, usaxena95, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D79487