History log of /freebsd-11-stable/lib/libclang_rt/ubsan_minimal/Makefile
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 360784 07-May-2020 dim

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
llvmorg-10.0.0-0-gd32170dbd5b (aka 10.0.0 release), and a number of
follow-ups.

MFC r356479 (by bdragon):

[PowerPC] Fix libllvmminimal build when building from powerpc64 ELFv1.

When bootstrapping on powerpc64 ELFv1, it is necessary to use binutils
ld.bfd from ports for the bootstrap, as this is the only modern linker for
ELFv1 host tools.

As binutils ld.bfd is rather strict in its handling of undefined symbols,
it is necessary to pull in Support/Atomic.cpp to avoid an undefined symbol.

Reviewed by: dim, emaste
Sponsored by: Tag1 Consulting, Inc.
Differential Revision: https://reviews.freebsd.org/D23072

MFC r356930:

Add more Subversion mergeinfo bootstrap information, to hopefully
increase the probability of merging in vendor changes.

MFC r358408 (by brooks):

Merge commit 7214f7a79 from llvm git (by Sam Elliott):

[RISCV] Lower llvm.trap and llvm.debugtrap

Summary:
Until this commit, these have lowered to a call to abort().

`llvm.trap()` now lowers to `unimp`, which should trap on all systems.

`llvm.debugtrap()` now lowers to `ebreak`, which is exactly what this
instruction is for.

Reviewers: asb, luismarques

Reviewed By: asb

Tags: #llvm

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

This fixes miscompilation resulting in linking failures with
INVARIANTS disabled.

Reviewed by: dim
Differential Revision: https://reviews.freebsd.org/D23857

MFC r358851:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
10.0.0-rc3 c290cb61fdc.

Release notes for llvm, clang, lld and libc++ 10.0.0 will become
available here:

https://releases.llvm.org/10.0.0/docs/ReleaseNotes.html
https://releases.llvm.org/10.0.0/tools/clang/docs/ReleaseNotes.html
https://releases.llvm.org/10.0.0/tools/lld/docs/ReleaseNotes.html
https://releases.llvm.org/10.0.0/projects/libcxx/docs/ReleaseNotes.html

PR: 244251

MFC r358854:

Add one additional file to libllvmminimal, to help the ppc64 bootstrap.

Reported by: bdragon
PR: 244251

MFC r358857:

Move another file in libllvm from sources required for world, to sources
required for bootstrap, as the PowerPC builds need this.

Reported by: bdragon
PR: 244251

MFC r359082:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
llvmorg-10.0.0-rc4-5-g52c365aa9ca. The actual release should follow Real
Soon Now.

PR: 244251

MFC r359084:

Merge commit 00925aadb from llvm git (by Fangrui Song):

[ELF][PPC32] Fix canonical PLTs when the order does not match the PLT order

Reviewed By: Bdragon28

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

This is needed to fix miscompiled canonical PLTs on ppc32/lld10.

Requested by: bdragon
Differential Revision: https://reviews.freebsd.org/D24109

MFC r359085:

Merge commit 315f8a55f from llvm git (by Fangrui Song):

[ELF][PPC32] Don't report "relocation refers to a discarded section"
for .got2

Similar to D63182 [ELF][PPC64] Don't report "relocation refers to a
discarded section" for .toc

Reviewed By: Bdragon28

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

This is needed to fix compile errors when building for ppc32/lld10.

Requested by: bdragon
Differential Revision: https://reviews.freebsd.org/D24110

MFC r359086:

Merge commit b8ebc11f0 from llvm git (by Sanjay Patel):

[EarlyCSE] avoid crashing when detecting min/max/abs patterns (PR41083)

As discussed in PR41083:
https://bugs.llvm.org/show_bug.cgi?id=41083
...we can assert/crash in EarlyCSE using the current hashing scheme
and instructions with flags.

ValueTracking's matchSelectPattern() may rely on overflow (nsw, etc)
or other flags when detecting patterns such as min/max/abs composed
of compare+select. But the value numbering / hashing mechanism used
by EarlyCSE intersects those flags to allow more CSE.

Several alternatives to solve this are discussed in the bug report.
This patch avoids the issue by doing simple matching of min/max/abs
patterns that never requires instruction flags. We give up some CSE
power because of that, but that is not expected to result in much
actual performance difference because InstCombine will canonicalize
these patterns when possible. It even has this comment for abs/nabs:

/// Canonicalize all these variants to 1 pattern.
/// This makes CSE more likely.

(And this patch adds PhaseOrdering tests to verify that the expected
transforms are still happening in the standard optimization
pipelines.

I left this code to use ValueTracking's "flavor" enum values, so we
don't have to change the callers' code. If we decide to go back to
using the ValueTracking call (by changing the hashing algorithm
instead), it should be obvious how to replace this chunk.

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

This fixes an assertion when building the math/gsl port on PowerPC64.

Requested by: pkubja

MFC r359087:

Merge commit 585a3cc31 from llvm git (by me):

Fix -Wdeprecated-copy-dtor and -Wdeprecated-dynamic-exception-spec
warnings.

Summary:
The former are like:

libcxx/include/typeinfo:322:11: warning: definition of implicit copy
constructor for 'bad_cast' is deprecated because it has a
user-declared destructor [-Wdeprecated-copy-dtor]
virtual ~bad_cast() _NOEXCEPT;
^
libcxx/include/typeinfo:344:11: note: in implicit copy constructor
for 'std::bad_cast' first required here
throw bad_cast();
^

Fix these by adding an explicitly defaulted copy constructor.

The latter are like:

libcxx/include/codecvt:105:37: warning: dynamic exception
specifications are deprecated [-Wdeprecated-dynamic-exception-spec]
virtual int do_encoding() const throw();
^~~~~~~

Fix these by using the _NOEXCEPT macro instead.

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

Reviewed By: EricWF, #libc

Subscribers: dexonsmith, libcxx-commits

Tags: #libc

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

This is because we use -Wsystem-headers during buildworld, and the two
warnings above are now triggered by default with clang 10, preventing
most C++ code from compiling without NO_WERROR.

Requested by: brooks
Differential Revision: https://reviews.freebsd.org/D24049

MFC r359333:

Merge commit f0990e104 from llvm git (by Justin Hibbits):

[PowerPC]: e500 target can't use lwsync, use msync instead

The e500 core has a silicon bug that triggers an illegal instruction
program trap on any sync other than msync. Other cores will typically
ignore illegal sync types, and the documentation even implies that
the 'illegal' bits are ignored.

Address this hardware deficiency by only using msync, like the PPC440.

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

Requested by: jhibbits

MFC r359334:

Merge commit 459e8e948 from llvm git (by Justin Hibbits):

[PowerPC]: Don't allow r0 as a target for LD_GOT_TPREL_L/32

Summary:
The linker is free to relax this (relocation R_PPC_GOT_TPREL16)
against R_PPC_TLS, if it sees fit (initial exec to local exec). If r0
is used, this can generate execution-invalid code (converts to 'addi
%rX, %r0, FOO, which translates in PPC-lingo to li %rX, FOO). Forbid
this instead.

This fixes static binaries using locales on FreeBSD/powerpc (tested
on FreeBSD/powerpcspe).

Reviewed By: nemanjai
Differential Revision: https://reviews.llvm.org/D76662

Requested by: jhibbits

MFC r359338:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
llvmorg-10.0.0-0-gd32170dbd5b (aka 10.0.0 release).

PR: 244251

MFC r359506 (by emaste):

lldb: stop excluding bindings/ subdir

With liblua in the tree we should be able to enable lldb's lua
scripting. We'll need the files in bindings/, so start by allowing them
to come in with the next import.

Approved by: dim
Sponsored by: The FreeBSD Foundation

MFC r359578:

Merge once more from ^/vendor/llvm-project/release-10.x, to get the
lldb/bindings directory, which will be used to provide lua bindings for
lldb.

Requested by: emaste

MFC r359826:

Merge commit 30588a739 from llvm git (by Erich Keane):

Make target features check work with ctor and dtor-

The problem was reported in PR45468, applying target features to an
always_inline constructor/destructor runs afoul of GlobalDecl
construction assert when checking for target-feature compatibility.

The core problem is fixed by using the version of the check that
takes a FunctionDecl rather than the GlobalDecl. However, while
writing the test, I discovered that source locations weren't properly
set for this check on ctors/dtors. This patch also fixes constructors
and CALLED destructors.

Unfortunately, it doesn't seem too possible to get a meaningful
source location for a 'cleanup' destructor, so those are still
'frontend' level errors unfortunately. A fixme was added to the test
to cover that situation.

This should fix 'Assertion failed: (!isa<CXXConstructorDecl>(D) && "Use
other ctor with ctor decls!"), function Init, file
/usr/src/contrib/llvm-project/clang/include/clang/AST/GlobalDecl.h, line
45' when compiling the security/botan2 port.

PR: 245550

MFC r359981:

Revert commit a9ad65a2b from llvm git (by Nemanja Ivanovic):

[PowerPC] Change default for unaligned FP access for older subtargets

This is a fix for https://bugs.llvm.org/show_bug.cgi?id=40554

Some CPU's trap to the kernel on unaligned floating point access and
there are kernels that do not handle the interrupt. The program then
fails with a SIGBUS according to the PR. This just switches the
default for unaligned access to only allow it on recent server CPUs
that are known to allow this.

Differential revision: https://reviews.llvm.org/D71954

This upstream commit causes a compiler hang when building certain ports
(e.g. security/nss, multimedia/x264) for powerpc64. The hang has been
reported in https://bugs.llvm.org/show_bug.cgi?id=45186, but in the mean
time it is more convenient to revert the commit.

Requested by: jhibbits

MFC r359994:

Revert commit b6cf400aa fro llvm git (by Nemanja Ivanovic):

Fix bots after a9ad65a2b34f

In the last commit, I neglected to initialize the new subtarget
feature I added which caused failures on a few bots. This should fix
that.

This unbreaks the build after r359981, which reverted upstream commit
a9ad65a2b34f.

Reported by: jhibbits (and jenkins :)

MFC r360129:

Merge commit ce5173c0e from llvm git (by Reid Kleckner):

Use FinishThunk to finish musttail thunks

FinishThunk, and the invariant of setting and then unsetting
CurCodeDecl, was added in 7f416cc42638 (2015). The invariant didn't
exist when I added this musttail codepath in ab2090d10765 (2014).
Recently in 28328c3771, I started using this codepath on non-Windows
platforms, and users reported problems during release testing
(PR44987).

The issue was already present for users of EH on i686-windows-msvc,
so I added a test for that case as well.

Reviewed By: hans

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

This should fix 'Assertion failed: (!empty() && "popping exception stack
when not empty"), function popTerminate, file
/usr/src/contrib/llvm-project/clang/lib/CodeGen/CGCleanup.h, line 583'
when building the net-p2p/libtorrent-rasterbar

PR: 244830
Reported by: jbeich, yuri

MFC r360134:

Merge commit 64b31d96d from llvm git (by Nemanja Ivanovic):

[PowerPC] Do not attempt to reuse load for 64-bit FP_TO_UINT without
FPCVT

We call the function that attempts to reuse the conversion without
checking whether the target matches the constraints that the callee
expects. This patch adds the check prior to the call.

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

Differential revision: https://reviews.llvm.org/D77564

This should fix 'Assertion failed: ((Op.getOpcode() == ISD::FP_TO_SINT
|| Subtarget.hasFPCVT()) && "i64 FP_TO_UINT is supported only with
FPCVT"), function LowerFP_TO_INTForReuse, file
/usr/src/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp, line 7276'
when building the devel/libslang2 port (and a few others) for PowerPC64.

Requested by: pkubaj

MFC r360350:

Tentatively apply https://reviews.llvm.org/D78877 (by Dave Green):

[ARM] Only produce qadd8b under hasV6Ops

When compiling for a arm5te cpu from clang, the +dsp attribute is
set. This meant we could try and generate qadd8 instructions where we
would end up having no pattern. I've changed the condition here to be
hasV6Ops && hasDSP, which is what other parts of ARMISelLowering seem
to use for similar instructions.

Fixed PR45677.

This fixes "fatal error: error in backend: Cannot select: t37: i32 =
ARMISD::QADD8b t43, t44" when compiling sys/dev/sound/pcm/feeder_mixer.c
for armv5. For some reason we do not encounter this on head, but this
error popped up while building universes for stable/12.

MFC r360697:

In r358396 I merged llvm upstream commit 2e24219d3, which fixed "error:
unsupported relocation on symbol" when assembling arm 'adr' pseudo
instructions. However, the upstream commit did not take big-endian arm
into account.

Applying the same changes to the big-endian handling is straightforward,
thanks to Andrew Turner and Peter Smith for the hint. This will also be
submitted upstream.


# 331838 31-Mar-2018 dim

Merge clang, llvm, lld, lldb, compiler-rt and libc++ 6.0.0 release, and
several follow-up fixes.

MFC r327952:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
6.0.0 (branches/release_60 r321788). Upstream has branched for the
6.0.0 release, which should be in about 6 weeks. Please report bugs and
regressions, so we can get them into the release.

Please note that from 3.5.0 onwards, clang, llvm and lldb require C++11
support to build; see UPDATING for more information.

MFC r328010:

Pull in r322473 from upstream llvm trunk (by Andrei Elovikov):

[LV] Don't call recordVectorLoopValueForInductionCast for
newly-created IV from a trunc.

Summary:
This method is supposed to be called for IVs that have casts in their
use-def chains that are completely ignored after vectorization under
PSE. However, for truncates of such IVs the same InductionDescriptor
is used during creation/widening of both original IV based on PHINode
and new IV based on TruncInst.

This leads to unintended second call to
recordVectorLoopValueForInductionCast with a VectorLoopVal set to the
newly created IV for a trunc and causes an assert due to attempt to
store new information for already existing entry in the map. This is
wrong and should not be done.

Fixes PR35773.

Reviewers: dorit, Ayal, mssimpso

Reviewed By: dorit

Subscribers: RKSimon, dim, dcaballe, hsaito, llvm-commits, hiraditya

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

This should fix "Vector value already set for part" assertions when
building the net/iodine and sysutils/daa2iso ports.

Reported by: jbeich
PR: 224867, 224868

MFC r328090:

Pull in r322623 from upstream llvm trunk (by Andrew V. Tischenko):

Allow usage of X86-prefixes as separate instrs.
Differential Revision: https://reviews.llvm.org/D42102

This should fix parse errors when x86 prefixes (such as 'lock' and
'rep') are followed by various non-mnemonic tokens, e.g. comments, .byte
directives and labels.

PR: 224669, 225054

MFC r328091:

Revert r327340, as the workaround for rep prefixes followed by .byte
directives is no longer needed after r328090.

MFC r328141 (by emaste):

lld: Fix for ld.lld does not accept "AT" syntax for declaring LMA region

AT> lma_region expression allows to specify the memory region
for section load address.

Should fix [upstream LLVM] PR35684.

LLVM review: https://reviews.llvm.org/D41397

Obtained from: LLVM r322359 by George Rimar

MFC r328143 (by emaste):

lld: Handle parsing AT(ADDR(.foo-bar)).

The problem we had with it is that anything inside an AT is an
expression, so we failed to parse the section name because of the - in
it.

Requested by: royger
Obtained from: LLVM r322801 by Rafael Espindola

MFC r328144 (by emaste):

lld: Fix incorrect physical address on self-referencing AT command.

When a section placement (AT) command references the section itself,
the physical address of the section in the ELF header was calculated
incorrectly due to alignment happening right after the location
pointer's value was captured.

The problem was diagnosed and the first version of the patch written
by Erick Reyes.

Obtained from: LLVM r322421 by Rafael Espindola

MFC r328145:

Pull in r322016 from upstream llvm trunk (by Sanjay Patel):

[ValueTracking] remove overzealous assert

The test is derived from a failing fuzz test:
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=5008

Credit to @rksimon for pointing out the problem.

This should fix "Bad flavor while matching min/max" errors when building
the graphics/libsixel and science/kst2 ports.

Reported by: jbeich
PR: 225268, 225269

MFC r328146:

Pull in r322106 from upstream llvm trunk (by Alexey Bataev):

[COST]Fix PR35865: Fix cost model evaluation for shuffle on X86.

Summary:
If the vector type is transformed to non-vector single type, the
compile may crash trying to get vector information about non-vector
type.

Reviewers: RKSimon, spatel, mkuper, hfinkel

Subscribers: llvm-commits

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

This should fix "Not a vector MVT!" errors when building the
games/dhewm3 port.

Reported by: jbeich
PR: 225271

MFC r328286 (by emaste):

lld: Don't mark a shared library as needed because of a lazy symbol.

Obtained from: LLVM r323221 by Rafael Esp?ndola

MFC r328381:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
6.0.0 (branches/release_60 r323338).

PR: 224669

MFC r328513:

Pull in r322245 from upstream clang trunk (by Craig Topper):

[X86] Make -mavx512f imply -mfma and -mf16c in the frontend like it
does in the backend.

Similarly, make -mno-fma and -mno-f16c imply -mno-avx512f.

Withou this "-mno-sse -mavx512f" ends up with avx512f being enabled
in the frontend but disabled in the backend.

Reported by: pawel
PR: 225488

MFC r328542 (by emaste):

lld: Use lookup instead of find. NFC, just simpler.

Obtained from: LLVM r323395 by Rafael Espindola

MFC r328543 (by emaste):

lld: Only lookup LMARegion once. NFC.

This is similar to how we handle MemRegion.

Obtained from: LLVM r323396 by Rafael Espindola

MFC r328544 (by emaste):

lld: Remove MemRegionOffset. NFC.

We can just use a member variable in MemoryRegion.

Obtained from: LLVM r323399 by Rafael Espindola

MFC r328545 (by emaste):

lld: Simplify. NFC.

Obtained from: LLVM r323440 by Rafael Espindola

MFC r328546 (by emaste):

lld: Improve LMARegion handling.

This fixes the crash reported at [LLVM] PR36083.

The issue is that we were trying to put all the sections in the same
PT_LOAD and crashing trying to write past the end of the file.

This also adds accounting for used space in LMARegion, without it all
3 PT_LOADs would have the same physical address.

Obtained from: LLVM r323449 by Rafael Espindola

MFC r328547 (by emaste):

lld: Move LMAOffset from the OutputSection to the PhdrEntry. NFC.

If two sections are in the same PT_LOAD, their relatives offsets,
virtual address and physical addresses are all the same.

[Rafael] initially wanted to have a single global LMAOffset, on the
assumption that every ELF file was in practiced loaded contiguously in
both physical and virtual memory.

Unfortunately that is not the case. The linux kernel has:

LOAD 0x200000 0xffffffff81000000 0x0000000001000000 0xced000 0xced000 R E 0x200000
LOAD 0x1000000 0xffffffff81e00000 0x0000000001e00000 0x15f000 0x15f000 RW 0x200000
LOAD 0x1200000 0x0000000000000000 0x0000000001f5f000 0x01b198 0x01b198 RW 0x200000
LOAD 0x137b000 0xffffffff81f7b000 0x0000000001f7b000 0x116000 0x1ec000 RWE 0x200000

The delta for all but the third PT_LOAD is the same:
0xffffffff80000000. [Rafael] thinks the 3rd one is a hack for implementing
per cpu data, but we can't break that.

Obtained from: LLVM r323456 by Rafael Espindola

MFC r328548 (by emaste):

lld: Put the header in the first PT_LOAD even if that PT_LOAD has a LMAExpr

The root problem is that we were creating a PT_LOAD just for the header.
That was technically valid, but inconvenient: we should not be making
the ELF discontinuous.

The solution is to allow a section with LMAExpr to be added to a PT_LOAD
if that PT_LOAD doesn't already have a LMAExpr.

LLVM PR: 36017
Obtained from: LLVM r323625 by Rafael Espindola

MFC r328594 (by emaste):

Pull in r322108 from upstream llvm trunk (by Rafael Esp?ndola):

Make one of the emitFill methods non virtual. NFC.

This is just preparatory work to fix [LLVM] PR35858.

MFC r328595 (by emaste):

Pull in r322123 from upstream llvm trunk (by Rafael Esp?ndola):

Don't create MCFillFragment directly.

Instead use higher level APIs that take care of most bookkeeping.

MFC r328596 (by emaste):

Pull in r322131 from upstream llvm trunk (by Rafael Esp?ndola):

Use a MCExpr for the size of MCFillFragment.

This allows the size to be found during ralaxation. This fixes
[LLVM] pr35858.

Requested by: royger

MFC r328753:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
6.0.0 (branches/release_60 r323948).

PR: 224669

MFC r328817:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
6.0.0 (branches/release_60 r324090).

This introduces retpoline support, with the -mretpoline flag. The
upstream initial commit message (r323155 by Chandler Carruth) contains
quite a bit of explanation. Quoting:

Introduce the "retpoline" x86 mitigation technique for variant #2 of
the speculative execution vulnerabilities disclosed today,
specifically identified by CVE-2017-5715, "Branch Target Injection",
and is one of the two halves to Spectre.

Summary:
First, we need to explain the core of the vulnerability. Note that
this is a very incomplete description, please see the Project Zero
blog post for details:
https://googleprojectzero.blogspot.com/2018/01/reading-privileged-memory-with-side.html

The basis for branch target injection is to direct speculative
execution of the processor to some "gadget" of executable code by
poisoning the prediction of indirect branches with the address of
that gadget. The gadget in turn contains an operation that provides a
side channel for reading data. Most commonly, this will look like a
load of secret data followed by a branch on the loaded value and then
a load of some predictable cache line. The attacker then uses timing
of the processors cache to determine which direction the branch took
*in the speculative execution*, and in turn what one bit of the
loaded value was. Due to the nature of these timing side channels and
the branch predictor on Intel processors, this allows an attacker to
leak data only accessible to a privileged domain (like the kernel)
back into an unprivileged domain.

The goal is simple: avoid generating code which contains an indirect
branch that could have its prediction poisoned by an attacker. In
many cases, the compiler can simply use directed conditional branches
and a small search tree. LLVM already has support for lowering
switches in this way and the first step of this patch is to disable
jump-table lowering of switches and introduce a pass to rewrite
explicit indirectbr sequences into a switch over integers.

However, there is no fully general alternative to indirect calls. We
introduce a new construct we call a "retpoline" to implement indirect
calls in a non-speculatable way. It can be thought of loosely as a
trampoline for indirect calls which uses the RET instruction on x86.
Further, we arrange for a specific call->ret sequence which ensures
the processor predicts the return to go to a controlled, known
location. The retpoline then "smashes" the return address pushed onto
the stack by the call with the desired target of the original
indirect call. The result is a predicted return to the next
instruction after a call (which can be used to trap speculative
execution within an infinite loop) and an actual indirect branch to
an arbitrary address.

On 64-bit x86 ABIs, this is especially easily done in the compiler by
using a guaranteed scratch register to pass the target into this
device. For 32-bit ABIs there isn't a guaranteed scratch register
and so several different retpoline variants are introduced to use a
scratch register if one is available in the calling convention and to
otherwise use direct stack push/pop sequences to pass the target
address.

This "retpoline" mitigation is fully described in the following blog
post: https://support.google.com/faqs/answer/7625886

We also support a target feature that disables emission of the
retpoline thunk by the compiler to allow for custom thunks if users
want them. These are particularly useful in environments like
kernels that routinely do hot-patching on boot and want to hot-patch
their thunk to different code sequences. They can write this custom
thunk and use `-mretpoline-external-thunk` *in addition* to
`-mretpoline`. In this case, on x86-64 thu thunk names must be:
```
__llvm_external_retpoline_r11
```
or on 32-bit:
```
__llvm_external_retpoline_eax
__llvm_external_retpoline_ecx
__llvm_external_retpoline_edx
__llvm_external_retpoline_push
```
And the target of the retpoline is passed in the named register, or in
the case of the `push` suffix on the top of the stack via a `pushl`
instruction.

There is one other important source of indirect branches in x86 ELF
binaries: the PLT. These patches also include support for LLD to
generate PLT entries that perform a retpoline-style indirection.

The only other indirect branches remaining that we are aware of are
from precompiled runtimes (such as crt0.o and similar). The ones we
have found are not really attackable, and so we have not focused on
them here, but eventually these runtimes should also be replicated for
retpoline-ed configurations for completeness.

For kernels or other freestanding or fully static executables, the
compiler switch `-mretpoline` is sufficient to fully mitigate this
particular attack. For dynamic executables, you must compile *all*
libraries with `-mretpoline` and additionally link the dynamic
executable and all shared libraries with LLD and pass `-z
retpolineplt` (or use similar functionality from some other linker).
We strongly recommend also using `-z now` as non-lazy binding allows
the retpoline-mitigated PLT to be substantially smaller.

When manually apply similar transformations to `-mretpoline` to the
Linux kernel we observed very small performance hits to applications
running typic al workloads, and relatively minor hits (approximately
2%) even for extremely syscall-heavy applications. This is largely
due to the small number of indirect branches that occur in
performance sensitive paths of the kernel.

When using these patches on statically linked applications,
especially C++ applications, you should expect to see a much more
dramatic performance hit. For microbenchmarks that are switch,
indirect-, or virtual-call heavy we have seen overheads ranging from
10% to 50%.

However, real-world workloads exhibit substantially lower performance
impact. Notably, techniques such as PGO and ThinLTO dramatically
reduce the impact of hot indirect calls (by speculatively promoting
them to direct calls) and allow optimized search trees to be used to
lower switches. If you need to deploy these techniques in C++
applications, we *strongly* recommend that you ensure all hot call
targets are statically linked (avoiding PLT indirection) and use both
PGO and ThinLTO. Well tuned servers using all of these techniques saw
5% - 10% overhead from the use of retpoline.

We will add detailed documentation covering these components in
subsequent patches, but wanted to make the core functionality
available as soon as possible. Happy for more code review, but we'd
really like to get these patches landed and backported ASAP for
obvious reasons. We're planning to backport this to both 6.0 and 5.0
release streams and get a 5.0 release with just this cherry picked
ASAP for distros and vendors.

This patch is the work of a number of people over the past month:
Eric, Reid, Rui, and myself. I'm mailing it out as a single commit
due to the time sensitive nature of landing this and the need to
backport it. Huge thanks to everyone who helped out here, and
everyone at Intel who helped out in discussions about how to craft
this. Also, credit goes to Paul Turner (at Google, but not an LLVM
contributor) for much of the underlying retpoline design.

Reviewers: echristo, rnk, ruiu, craig.topper, DavidKreitzer

Subscribers: sanjoy, emaste, mcrosier, mgorny, mehdi_amini, hiraditya, llvm-commits

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

PR: 224669

MFC r329033:

Pull in r324594 from upstream clang trunk (by Alexander Ivchenko):

Fix for #31362 - ms_abi is implemented incorrectly for values >=16
bytes.

Summary:
This patch is a fix for following issue:
https://bugs.llvm.org/show_bug.cgi?id=31362 The problem was caused by
front end lowering C calling conventions without taking into account
calling conventions enforced by attribute. In this case win64cc was
no correctly lowered on targets other than Windows.

Reviewed By: rnk (Reid Kleckner)

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

Author: belickim <mateusz.belicki@intel.com>

This fixes clang 6.0.0 assertions when building the emulators/wine and
emulators/wine-devel ports, and should also make it use the correct
Windows calling conventions. Bump __FreeBSD_version to make the fix
easy to detect.

PR: 224863

MFC r329223:

Pull in r323998 from upstream clang trunk (by Richard Smith):

PR36157: When injecting an implicit function declaration in C89, find
the right DeclContext rather than injecting it wherever we happen to
be.

This avoids creating functions whose DeclContext is a struct or
similar.

This fixes assertion failures when parsing certain not-completely-valid
struct declarations.

Reported by: ae
PR: 225862

MFC r329410:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
6.0.0 (branches/release_60 r325330).

PR: 224669

MFC r329983:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
6.0.0 (branches/release_60 r325932). This corresponds to 6.0.0 rc3.

PR: 224669

MFC r330384:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
6.0.0 release (upstream r326565).

Release notes for llvm, clang and lld will be available here soon:
<http://releases.llvm.org/6.0.0/docs/ReleaseNotes.html>
<http://releases.llvm.org/6.0.0/tools/clang/docs/ReleaseNotes.html>
<http://releases.llvm.org/6.0.0/tools/lld/docs/ReleaseNotes.html>

Relnotes: yes
PR: 224669

MFC r330686:

Pull in r326882 from upstream llvm trunk (by Sjoerd Meijer):

[ARM] Fix for PR36577

Don't PerformSHLSimplify if the given node is used by a node that
also uses a constant because we may get stuck in an infinite combine
loop.

bugzilla: https://bugs.llvm.org/show_bug.cgi?id=36577

Patch by Sam Parker.

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

This fixes a hang when compiling one particular file in java/openjdk8
for armv6 and armv7.

Reported by: swills
PR: 226388

MFC r331065:

Pull in r327638 from upstream llvm trunk (by Matthew Simpson):

[ConstantFolding, InstSimplify] Handle more vector GEPs

This patch addresses some additional cases where the compiler crashes
upon encountering vector GEPs. This should fix PR36116.

Differential Revision: https://reviews.llvm.org/D44219
Reference: https://bugs.llvm.org/show_bug.cgi?id=36116

This fixes an assertion when building the emulators/snes9x port.

Reported by: jbeich
PR: 225471

MFC r331066:

Pull in r321999 from upstream clang trunk (by Ivan A. Kosarev):

[CodeGen] Fix TBAA info for accesses to members of base classes

Resolves:
Bug 35724 - regression (r315984): fatal error: error in backend:
Broken function found (Did not see access type in access path!)
https://bugs.llvm.org/show_bug.cgi?id=35724

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

This fixes "Did not see access type in access path" fatal errors when
building the devel/gdb port (version 8.1).

Reported by: jbeich
PR: 226658

MFC r331366:

Pull in r327101 from upstream llvm trunk (by Rafael Espindola):

Don't treat .symver as a regular alias definition.

This patch starts simplifying the handling of .symver.

For now it just moves the responsibility for creating an alias down to
the streamer. With that the asm streamer can pass a .symver unchanged,
which is nice since gas cannot parse "foo@bar = zed".

In a followup I hope to move the handling down to the writer so that
we don't need special hacks for avoiding breaking names with @@@ on
windows.

Pull in r327160 from upstream llvm trunk (by Rafael Espindola):

Delay creating an alias for @@@.

With this we only create an alias for @@@ once we know if it should
use @ or @@. This avoids last minutes renames and hacks to handle MS
names.

This only handles the ELF writer. LTO still has issues with @@@
aliases.

Pull in r327928 from upstream llvm trunk (by Vitaly Buka):

Object: Move attribute calculation into RecordStreamer. NFC

Summary: Preparation for D44274

Reviewers: pcc, espindola

Subscribers: hiraditya

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

Pull in r327930 from upstream llvm trunk (by Vitaly Buka):

Object: Fix handling of @@@ in .symver directive

Summary:
name@@@nodename is going to be replaced with name@@nodename if symbols is
defined in the assembled file, or name@nodename if undefined.
https://sourceware.org/binutils/docs/as/Symver.html

Fixes PR36623

Reviewers: pcc, espindola

Subscribers: mehdi_amini, hiraditya

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

Together, these changes fix handling of @@@ in .symver directives when
doing Link Time Optimization.

Reported by: Shawn Webb <shawn.webb@hardenedbsd.org>

MFC r331731:

Pull in r328738 from upstream lld trunk (by Rafael Espindola):

Strip @VER suffices from the LTO output.

This fixes pr36623.

The problem is that we have to parse versions out of names before LTO
so that LTO can use that information.

When we get the LTO produced .o files, we replace the previous symbols
with the LTO produced ones, but they still have @ in their names.

We could just trim the name directly, but calling parseSymbolVersion
to do it is simpler.

This is a follow-up to r331366, since we discovered that lld could
append version strings to symbols twice, when using Link Time
Optimization.


/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/allocator_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/asan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/coverage_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/esan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/hwasan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/lsan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/msan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/scudo_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/tsan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/xray/xray_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/xray/xray_log_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/xray/xray_records.h
/freebsd-11-stable/contrib/compiler-rt/lib/BlocksRuntime/Block.h
/freebsd-11-stable/contrib/compiler-rt/lib/BlocksRuntime/Block_private.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_descriptions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_descriptions.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_errors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_errors.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_fake_stack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_fuchsia.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_globals.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_init_version.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors_memintrinsics.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_memory_profile.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_poisoning.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_premap_shadow.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_premap_shadow.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_scariness_score.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_shadow_setup.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_stack.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/aarch64
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/adddf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memcpy.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memmove.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memset.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_uidivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/bswapdi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/bswapsi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/clzdi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/clzsi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/comparesf2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/modsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/udivmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/udivsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/umodsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashldi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashrdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/assembly.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clear_cache.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/comparedf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/comparesf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cpu_model.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/emutls.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/enable_execute_stack.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/extendhfsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/extendsfdf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixdfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixdfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixsfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixsfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsdfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsdfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunssfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunssfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatdidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatdisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatsidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatsisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatundidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatundisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatunsidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatunsisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_endianness.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/lshrdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muldf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muldi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negdf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subdf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/truncdfhf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/truncdfsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/truncsfhf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/cfi/cfi.cc
/freebsd-11-stable/contrib/compiler-rt/lib/cfi/cfi_blacklist.txt
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_sideline.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_sideline_linux.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/working_set_posix.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_linux.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_mac.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_type_test.cc
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_win.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/weak_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/profile/GCDAProfiling.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfData.inc
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfiling.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingFile.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingInternal.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformLinux.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformOther.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPort.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingValue.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingWriter.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/WindowsMMap.c
/freebsd-11-stable/contrib/compiler-rt/lib/safestack/safestack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_begin.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_end.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary32.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_asm.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_mips.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_other.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_bitvector.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_bvgraph.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_file.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_file.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_getauxval.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mutex.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_freebsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_signal_interceptors.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_fuchsia.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_generic.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_aarch64.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_arm.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_x86_64.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_vector.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_allocator.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_allocator_combined.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_allocator_secondary.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_crc32.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_new_delete.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tls.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tls_android.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tls_android.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tls_context_android.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tls_context_linux.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tls_linux.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tls_linux.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd_exclusive.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd_exclusive.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd_shared.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd_shared.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_utils.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_utils.h
/freebsd-11-stable/contrib/compiler-rt/lib/stats/stats.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_fd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_aarch64.S
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_amd64.S
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_trace.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_vector.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_checks.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_diag.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_diag.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_signals_standalone.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_signals_standalone.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan_minimal
/freebsd-11-stable/contrib/compiler-rt/lib/xray/weak_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_buffer_queue.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_buffer_queue.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_log_records.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_logging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_logging.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_logging_impl.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_init.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_inmemory_log.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_inmemory_log.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_interface.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_log_interface.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_x86_64.cc
/freebsd-11-stable/contrib/libc++/CREDITS.TXT
/freebsd-11-stable/contrib/libc++/include/__config
/freebsd-11-stable/contrib/libc++/include/__functional_base
/freebsd-11-stable/contrib/libc++/include/__libcpp_version
/freebsd-11-stable/contrib/libc++/include/__locale
/freebsd-11-stable/contrib/libc++/include/__mutex_base
/freebsd-11-stable/contrib/libc++/include/__tree
/freebsd-11-stable/contrib/libc++/include/algorithm
/freebsd-11-stable/contrib/libc++/include/array
/freebsd-11-stable/contrib/libc++/include/bitset
/freebsd-11-stable/contrib/libc++/include/chrono
/freebsd-11-stable/contrib/libc++/include/cstddef
/freebsd-11-stable/contrib/libc++/include/deque
/freebsd-11-stable/contrib/libc++/include/exception
/freebsd-11-stable/contrib/libc++/include/experimental/algorithm
/freebsd-11-stable/contrib/libc++/include/experimental/filesystem
/freebsd-11-stable/contrib/libc++/include/experimental/iterator
/freebsd-11-stable/contrib/libc++/include/forward_list
/freebsd-11-stable/contrib/libc++/include/fstream
/freebsd-11-stable/contrib/libc++/include/functional
/freebsd-11-stable/contrib/libc++/include/future
/freebsd-11-stable/contrib/libc++/include/istream
/freebsd-11-stable/contrib/libc++/include/iterator
/freebsd-11-stable/contrib/libc++/include/list
/freebsd-11-stable/contrib/libc++/include/locale
/freebsd-11-stable/contrib/libc++/include/map
/freebsd-11-stable/contrib/libc++/include/memory
/freebsd-11-stable/contrib/libc++/include/mutex
/freebsd-11-stable/contrib/libc++/include/new
/freebsd-11-stable/contrib/libc++/include/optional
/freebsd-11-stable/contrib/libc++/include/ostream
/freebsd-11-stable/contrib/libc++/include/queue
/freebsd-11-stable/contrib/libc++/include/random
/freebsd-11-stable/contrib/libc++/include/ratio
/freebsd-11-stable/contrib/libc++/include/regex
/freebsd-11-stable/contrib/libc++/include/scoped_allocator
/freebsd-11-stable/contrib/libc++/include/set
/freebsd-11-stable/contrib/libc++/include/sstream
/freebsd-11-stable/contrib/libc++/include/stack
/freebsd-11-stable/contrib/libc++/include/streambuf
/freebsd-11-stable/contrib/libc++/include/string
/freebsd-11-stable/contrib/libc++/include/string_view
/freebsd-11-stable/contrib/libc++/include/system_error
/freebsd-11-stable/contrib/libc++/include/tuple
/freebsd-11-stable/contrib/libc++/include/type_traits
/freebsd-11-stable/contrib/libc++/include/typeinfo
/freebsd-11-stable/contrib/libc++/include/unordered_map
/freebsd-11-stable/contrib/libc++/include/unordered_set
/freebsd-11-stable/contrib/libc++/include/utility
/freebsd-11-stable/contrib/libc++/include/variant
/freebsd-11-stable/contrib/libc++/include/vector
/freebsd-11-stable/contrib/libc++/include/wchar.h
/freebsd-11-stable/contrib/libc++/src/exception.cpp
/freebsd-11-stable/contrib/libc++/src/experimental/filesystem/directory_iterator.cpp
/freebsd-11-stable/contrib/libc++/src/experimental/filesystem/operations.cpp
/freebsd-11-stable/contrib/libc++/src/include/atomic_support.h
/freebsd-11-stable/contrib/libc++/src/include/config_elast.h
/freebsd-11-stable/contrib/libc++/src/include/refstring.h
/freebsd-11-stable/contrib/libc++/src/iostream.cpp
/freebsd-11-stable/contrib/libc++/src/locale.cpp
/freebsd-11-stable/contrib/libc++/src/new.cpp
/freebsd-11-stable/contrib/libc++/src/random.cpp
/freebsd-11-stable/contrib/libc++/src/strstream.cpp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_fallback.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_msvc.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_pointer_msvc.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/new_handler_fallback.ipp
/freebsd-11-stable/contrib/libc++/src/system_error.cpp
/freebsd-11-stable/contrib/libc++/src/typeinfo.cpp
/freebsd-11-stable/contrib/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/lto.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/APFloat.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/APInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ArrayRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/BitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/EquivalenceClasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/FoldingSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/MapVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Optional.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerEmbeddedInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerIntPair.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerSumType.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerUnion.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/TinyPtrVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Triple.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Twine.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AssumptionCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CallGraphSCCPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CmpInstAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ConstantFolding.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DemandedBits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InlineCost.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Interval.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IntervalIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IntervalPartition.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopAnalysisManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemoryLocation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemorySSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PostDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PtrUseVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/SparsePropagation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Trace.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueLattice.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueLatticeUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/AsmParser/Parser.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/COFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Dwarf.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Dwarf.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/AMDGPU.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/ARC.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/AVR.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/RISCV.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Wasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/WasmRelocs.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/WasmRelocs/WebAssembly.def
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CommandFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CommandFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CostTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FastISel.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FaultMaps.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelAccessor.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/IntrinsicLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervals.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveStackAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveStacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveVariables.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineFunction.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstr.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOperand.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineSSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineValueType.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Passes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.def
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SDNodeProperties.td
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGAddressAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/StackMaps.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TailDuplicator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetCallingConv.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetFrameLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetInstrInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetOpcodes.def
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetOpcodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.td
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/VirtRegMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/AppendingTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewSymbols.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewTypes.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordName.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SimpleTypeSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StringsAndChecksums.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeHashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeName.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DIContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MSFBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MSFCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MSFStreamLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIATable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PublicsStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PublicsStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Attributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Attributes.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CallSite.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CallingConv.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Constant.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ConstantRange.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DIBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DataLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DiagnosticHandler.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Dominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Function.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InlineAsm.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstrTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instruction.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicInst.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Intrinsics.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsAArch64.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsX86.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LLVMContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/MDBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSummaryIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Operator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/OptBisect.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Value.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Value.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Verifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/IRReader/IRReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/InitializePasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/Caching.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/Config.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/LTO.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LinkAllIR.h
/freebsd-11-stable/contrib/llvm/include/llvm/LinkAllPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/LaneBitmask.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmMacro.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAssembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCCodePadder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCCodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDwarf.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCELFStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCExpr.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFragment.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInst.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCObjectStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSchedule.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWasmObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWasmStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWinCOFFStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MachineLocation.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SubtargetFeature.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Archive.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ArchiveWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Binary.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/COFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/COFFImportFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELFObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELFTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/IRObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/IRSymtab.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/RelocVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/StackMapParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Wasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/WindowsResource.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/COFFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypeHashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/ELFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/MachOYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/WasmYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/YAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptParser.td
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Pass.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassAnalysisSupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassSupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/Passes/PassBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMappingReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/GCOV.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProf.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProfData.inc
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/SampleProf.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/SampleProfReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AMDGPUCodeObjectMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AMDGPUKernelDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AMDGPUMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AtomicOrdering.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryByteStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryItemStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CachePruning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Chrono.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CodeGen.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CodeGenCWrappers.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CodeGenCoverage.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CommandLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ConvertUTF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DebugCounter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileOutputBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileSystem.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatVariadic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatVariadicDetails.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GCOV.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GenericDomTree.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/KnownBits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LEB128.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LockFileManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LowLevelTypeImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Memory.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MemoryBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Parallel.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Printable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Process.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Program.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ReverseIteration.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScaledNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SourceMgr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SpecialCaseList.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TarWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ThreadPool.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Threading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ToolOutputFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/X86TargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/YAMLParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/YAMLTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/raw_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringMatcher.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/CostTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GenericOpcodes.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/Target.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetCallingConv.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetFrameLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetInstrInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetOpcodes.def
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetOpcodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Testing/Support/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Testing/Support/SupportHelpers.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ArgumentPromotion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/CalledValuePropagation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ConstantMerge.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ElimAvailExtern.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/FunctionImport.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/GlobalOpt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/GlobalSplit.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Inliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/PartialInlining.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/PGOInstrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/SampleProfile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/ADCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/DivRemPairs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopIdiomRecognize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopLoadElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/NewGVN.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Reassociate.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/RewriteStatepointsForGC.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SROA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SpeculateAroundPHIs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CallPromotionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/EntryExitInstrumenter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Evaluator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SplitModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsManifest
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/InstrumentationMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/XRayRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/YAMLXRayRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/module.modulemap
/freebsd-11-stable/contrib/llvm/include/llvm/module.modulemap.build
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AssumptionCache.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFGPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLGraph.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CGSCCPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CallGraphSCCPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CmpInstAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CodeMetrics.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ConstantFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CostModel.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DemandedBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InlineCost.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Interval.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IntervalPartition.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyCallGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyValueInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Lint.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Loads.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopAnalysisManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemDerefPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemorySSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemorySSAUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ObjCARCAnalysisUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PostDominators.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ProfileSummaryInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PtrUseVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/SparsePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Trace.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ValueLattice.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ValueLatticeUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ValueTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/VectorUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLParser.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLParser.h
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLToken.h
/freebsd-11-stable/contrib/llvm/lib/AsmParser/Parser.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/Dwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/Magic.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/ValueList.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/ValueList.h
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AllocationOrder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AllocationOrder.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/Analysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AntiDepBreaker.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchCoalescing.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchFolding.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CallingConvLower.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CodeGen.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CountingFunctionInserter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DetectDeadLanes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/EdgeBundles.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandMemCmp.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandReductions.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FEntryInserter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalMerge.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/IfConversion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/IndirectBrExpandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InlineSpiller.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterferenceCache.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterferenceCache.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LexicalScopes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveDebugValues.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveDebugVariables.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveInterval.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeCalc.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeShrink.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRegUnits.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveStacks.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LowerEmuTLS.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MILexer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MILexer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MIParser.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRPrintingPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineCSE.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineDominators.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFrameInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineInstr.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineLICM.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineOperand.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineOutliner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachinePipeliner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineSink.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PHIElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ParallelCG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PatchableFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBase.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocFast.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterCoalescer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterUsageInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStack.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackColoring.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackLayout.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SlotIndexes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SpillPlacement.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SpillPlacement.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/Spiller.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SplitKit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SplitKit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackMaps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackProtector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TailDuplication.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TailDuplicator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetPassConfig.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetSchedule.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/XRayInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/MergingTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/RecordName.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SimpleTypeSerializer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/StringsAndChecksums.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeHashing.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeName.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeSerializer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeTableCollection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/MSFBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/MSFCommon.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/GSI.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/GSI.h
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/GlobalsStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PDBStringTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PublicsStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PublicsStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/ItaniumDemangle.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcABISupport.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate
/freebsd-11-stable/contrib/llvm/lib/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Attributes.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AutoUpgrade.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/BasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantFold.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantRange.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Constants.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Core.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DIBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DataLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DebugInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DebugInfoMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DebugLoc.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DiagnosticHandler.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Dominators.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Function.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/GCOV.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Globals.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/IRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/IRPrintingPasses.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/InlineAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Instruction.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Instructions.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/IntrinsicInst.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/LLVMContext.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/LLVMContextImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/LLVMContextImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/LegacyPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/MDBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/OptBisect.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Pass.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassRegistry.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/SafepointIRVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/User.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Value.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ValueSymbolTable.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ValueTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Verifier.cpp
/freebsd-11-stable/contrib/llvm/lib/IRReader/IRReader.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/Caching.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTO.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTOBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTOModule.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/UpdateCompilerUsed.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/IRMover.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoWasm.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAssembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCCodePadder.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCCodeView.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCContext.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCFragment.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachOStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCNullStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCObjectFileInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCObjectStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionWasm.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbolELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWasmStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWin64EH.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/StringTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WasmObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Archive.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ArchiveWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFImportFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFModuleDefinition.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ELF.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ELFObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/IRObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/IRSymtab.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/MachOObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ModuleSymbolTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/RecordStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/RecordStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Object/SymbolicFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/WasmObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/WindowsResource.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/COFFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/CodeViewYAMLTypeHashing.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/CodeViewYAMLTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/ELFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/MachOYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/OptTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassRegistry.def
/freebsd-11-stable/contrib/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/GCOV.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProf.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProfReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/AMDGPUCodeObjectMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/AMDGPUMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMAttributeParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Atomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BlockFrequency.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CachePruning.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Chrono.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CodeGenCoverage.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CommandLine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileOutputBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FoldingSet.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FormatVariadic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/GlobPattern.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/GraphWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Host.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/KnownBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LockFileManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LowLevelType.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MD5.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Parallel.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Path.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Process.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Program.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/RandomNumberGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ScopedPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Signals.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SmallPtrSet.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SmallVector.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SourceMgr.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Statistic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringExtras.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringMap.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TarWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TargetParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TargetRegistry.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ThreadPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Threading.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Timer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ToolOutputFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Memory.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Path.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Process.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Program.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Memory.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Path.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Process.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Program.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLTraits.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/raw_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/regcclass.h
/freebsd-11-stable/contrib/llvm/lib/Support/regcname.h
/freebsd-11-stable/contrib/llvm/lib/Support/regcomp.c
/freebsd-11-stable/contrib/llvm/lib/Support/regex2.h
/freebsd-11-stable/contrib/llvm/lib/TableGen/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/Main.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/Record.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/StringMatcher.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64GenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SIMDInstrOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA53.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedKryo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedM1.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SystemOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64VectorByElementOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/SVEInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPU.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPU.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULibFunc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUOpenCLEnqueuedBlockLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUOpenCLImageTypeLoweringPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/BUFInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/CIInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/CaymanInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/DSInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/FLATInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNMinRegStrategy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNProcessors.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUCodeObjectMetadataStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUCodeObjectMetadataStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUHSAMetadataStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUHSAMetadataStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MIMGInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Processors.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Processors.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixControlFlowLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixWWMLiveness.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInsertWaits.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SMInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SOPInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOP1Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOP2Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOP3Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOPCInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOPInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARM.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARM.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA57.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSystemRegister.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Utils
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVR.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrumentFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/AsmParser
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPF.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/BitTracker.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/Hexagon.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/Hexagon.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepIICHVX.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepIICScalar.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepMappings.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepTimingClasses.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGatherPacketize.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIICHVX.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV65.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV62.gen.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV65.gen.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPatternsV65.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPseudo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV65.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVectorPrint.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFCopy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFCopy.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFGraph.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFLiveness.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFLiveness.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFRegisters.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFRegisters.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips64r6InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips64r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCondMov.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsHazardSchedule.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsScheduleGeneric.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsScheduleP5600.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Relocation.txt
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXVector.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2BaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2TargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2.td
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2CallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2MachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2MachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2Subtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2TargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2TargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/Nios2TargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/TargetInfo/Nios2TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/P9InstrResources.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPC.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBranchCoalescing.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCExpandISEL.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineBasicBlockUtils.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/p9-instrs.txt
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/AsmParser
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Disassembler
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCV.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCV.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrFormatsC.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonPasses.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonPasses.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrSystem.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrVector.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetMachineC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssembly.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssembly.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86Operand.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86TargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86AsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CmovConversion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86DomainReassignment.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86EvexToVex.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FixupBWInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86GenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Instr3DNow.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrAVX512.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrCMovSetCC.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrCompiler.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrExtension.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrMMX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrMPX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSGX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSSE.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSVM.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSystem.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrTSX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrVMX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrVecCompiler.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrXOP.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InterleavedAccess.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RetpolineThunks.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedBroadwell.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedHaswell.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedSkylakeClient.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedSkylakeServer.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleBtVer2.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleSLM.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleZnver1.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Subtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86WinEHState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
/freebsd-11-stable/contrib/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/Coroutines.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/FunctionImport.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/GlobalSplit.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/IPO.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/Inliner.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/CFGMST.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/PtrState.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/PtrState.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DivRemPairs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GVN.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GVNHoist.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GVNSink.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GuardWidening.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LICM.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopPredication.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopSink.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MergeICmps.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/NewGVN.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SROA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Scalarizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CallPromotionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Evaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/FlattenCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/FunctionComparator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Local.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Mem2Reg.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/PredicateInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SplitModule.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlan.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlan.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanValue.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp
/freebsd-11-stable/contrib/llvm/lib/WindowsManifest
/freebsd-11-stable/contrib/llvm/lib/XRay/InstrumentationMap.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/Trace.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/BugDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/BugDriver.h
/freebsd-11-stable/contrib/llvm/tools/bugpoint/CrashDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ExtractFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/FindBugs.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ToolRunner.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/bugpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Index.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DataCollection.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Decl.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclGroup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Expr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExternalASTMerger.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LexicallyOrderedRecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ODRHash.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/QualTypeNames.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtDataCollectors.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TemplateName.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Type.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/BodyFarm.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/CloneDetection.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AlignedAllocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Attr.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AttrDocs.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Attributes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CharInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTUKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticError.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoringKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SanitizerSpecialCaseList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SyncScope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/X86Target.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitFuture.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CrossTU
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Distro.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Job.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Options.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/XRayArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexSymbol.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/VariadicMacroSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/ParseAST.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/RAIIObjectsForParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Scope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Sema.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymExpr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ASTDiff
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/QualTypeNames.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Execution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/ASTSelection.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/AtomicChange.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Extract
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRule.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRuleRequirements.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRules.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOption.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptionVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringResultConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringRuleContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolName.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolOccurrences.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRFindingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRLocFinder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/StandaloneExecution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ToolExecutorPluginRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CXXABI.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DataCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Decl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclGroup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Expr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExternalASTMerger.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Linkage.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Mangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ODRHash.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/OpenMPClause.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/QualTypeNames.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtIterator.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Type.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CloneDetection.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Cuda.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SanitizerSpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/X86.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/X86.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Version.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/XRayLists.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypeCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ConstantEmitter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CrossTU
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Distro.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/DriverOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Job.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Ananas.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Bitrig.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Bitrig.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CloudABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/DragonFly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Minix.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Myriad.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NaCl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/BreakableToken.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Format.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatToken.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatToken.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PrecompiledPreamble.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/arm64intr.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bitalgintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512cdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlbitalgintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlcdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlvbmi2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlvnniintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vnniintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqvlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cetintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/clflushoptintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/clwbintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cpuid.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cuda_wrappers/algorithm
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cuda_wrappers/new
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/float.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/gfniintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/immintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdbool.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/unwind.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vaesintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vpclmulqdqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/CodegenNameGenerator.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/CommentToXML.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexBody.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexingAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPCaching.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/Parser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Scope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/MultiOnDiskHashTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MisusedMovedObjectChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ASTDiff
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/QualTypeNames.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Execution.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelectionRequirements.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/AtomicChange.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/RefactoringActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/RenamingAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFindingAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRLocFinder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/StandaloneExecution.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/driver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm/tools/llc/llc.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/.arcconfig
/freebsd-11-stable/contrib/llvm/tools/lld/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/CODE_OWNERS.TXT
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Chunks.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Chunks.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Config.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/DLL.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/DriverUtils.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Error.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/ICF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/InputFiles.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/LTO.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/LTO.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MapFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MinGW.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MinGW.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Options.td
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/PDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/PDB.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Strings.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Strings.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/SymbolTable.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Writer.h
/freebsd-11-stable/contrib/llvm/tools/lld/Common
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/AArch64ErrataFix.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/AArch64ErrataFix.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/AVR.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/Mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/MipsArchTree.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/PPC.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/PPC64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/SPARCV9.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/X86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Bits.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Config.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/DriverUtils.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/EhFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/EhFrame.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Error.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Filesystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Filesystem.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/GdbIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/GdbIndex.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ICF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputFiles.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputSection.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputSection.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/LTO.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/LTO.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/LinkerScript.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/LinkerScript.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/MapFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/MapFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Options.td
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/OutputSections.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/OutputSections.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Relocations.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Relocations.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ScriptLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ScriptLexer.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ScriptParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ScriptParser.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Strings.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Strings.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/SymbolTable.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/SyntheticSections.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/SyntheticSections.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Target.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Threads.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Thunks.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Thunks.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Writer.h
/freebsd-11-stable/contrib/llvm/tools/lld/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/tools/lld/README.md
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Config
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Atom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/DefinedAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Error.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/LLVM.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/LinkingContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/PassManager.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Reader.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Reproduce.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SymbolTable.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/TargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Writer.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Driver
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/ReaderWriter/YamlContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Config
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Reproduce.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Resolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/TargetOptionsCommandFlags.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Driver/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/FlatNamespaceFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ShimPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/tools/lld/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/tools/lld/lld.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/utils
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBError.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBProcessInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointIDList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Architecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/MappedHash.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Module.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/PluginManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/TaskPool.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeThreadProtocol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/GoASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/JavaASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Process.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ProcessInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnwindAssembly.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Log.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Logging.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Status.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TaskPool.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-defines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpointName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointIDList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Address.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FileSpecList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/RegisterValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TaskPool.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/XML.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/freebsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIX.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoInterface.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64le.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64le-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ArmUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Type.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/PathMappingList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Process.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataBufferLLVM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataEncoder.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/FileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Log.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Logging.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/PPC64LE_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/PPC64LE_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Status.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TaskPool.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/lldb.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/intel-mpx/IntelMPXTablePlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.h
/freebsd-11-stable/contrib/llvm/tools/lli/lli.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-ar/llvm-ar.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-as/llvm-as.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageFilters.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageFilters.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageReport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageReport.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageViewOptions.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/gcov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffLog.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-dis/llvm-dis.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-dwarfdump/Statistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-extract/llvm-extract.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-link/llvm-link.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-lto/llvm-lto.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-lto2/llvm-lto2.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-modextract/llvm-modextract.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/BytesOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/Diff.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/FormatUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/FormatUtil.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/InputFile.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/InputFile.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/LinePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/LinePrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/MinimalTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PdbYaml.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/StreamUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/StreamUtil.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.h
/freebsd-11-stable/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/COFFImportDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/MachODumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/WasmDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/WindowsResourceDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-stress/llvm-stress.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/llvm-xray.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/trie-node.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-account.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-extract.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-record-yaml.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-stacks.cc
/freebsd-11-stable/contrib/llvm/tools/opt/Debugify.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/NewPMDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/NewPMDriver.h
/freebsd-11-stable/contrib/llvm/tools/opt/PassPrinters.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/PassPrinters.h
/freebsd-11-stable/contrib/llvm/tools/opt/opt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/Attributes.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenHwModes.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenHwModes.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenInstruction.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenRegisters.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenSchedule.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenTarget.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenTarget.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/GlobalISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/InfoByHwMode.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/InfoByHwMode.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/InstrDocsEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/OptParserEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/RegisterBankEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SDNodeProperties.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SDNodeProperties.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/SearchableTableEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86DisassemblerTables.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86FoldTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.h
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/lib/clang/freebsd_cc_version.h
/freebsd-11-stable/lib/clang/headers/Makefile
/freebsd-11-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-11-stable/lib/clang/include/clang/Config/config.h
/freebsd-11-stable/lib/clang/include/lld/Common
/freebsd-11-stable/lib/clang/include/lld/Common/Version.inc
/freebsd-11-stable/lib/clang/include/lld/Config
/freebsd-11-stable/lib/clang/include/lldb/Host/Config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/llvm-config.h
/freebsd-11-stable/lib/clang/include/llvm/Support/VCSRevision.h
/freebsd-11-stable/lib/clang/libclang/Makefile
/freebsd-11-stable/lib/clang/liblldb/Makefile
/freebsd-11-stable/lib/clang/libllvm/Makefile
/freebsd-11-stable/lib/clang/libllvmminimal/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/asan/Makefile
/freebsd-11-stable/lib/libclang_rt/asan_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/asan_dynamic/Makefile
/freebsd-11-stable/lib/libclang_rt/include/Makefile
/freebsd-11-stable/lib/libclang_rt/profile/Makefile
/freebsd-11-stable/lib/libclang_rt/safestack/Makefile
/freebsd-11-stable/lib/libclang_rt/stats/Makefile
/freebsd-11-stable/lib/libclang_rt/tsan
/freebsd-11-stable/lib/libclang_rt/tsan_cxx
/freebsd-11-stable/lib/libclang_rt/ubsan_minimal
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone_cxx/Makefile
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/usr.bin/clang/Makefile
/freebsd-11-stable/usr.bin/clang/bugpoint/bugpoint.1
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/clang/clang.1
/freebsd-11-stable/usr.bin/clang/llc/llc.1
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lli/lli.1
/freebsd-11-stable/usr.bin/clang/llvm-ar/llvm-ar.1
/freebsd-11-stable/usr.bin/clang/llvm-as/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-as/llvm-as.1
/freebsd-11-stable/usr.bin/clang/llvm-bcanalyzer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1
/freebsd-11-stable/usr.bin/clang/llvm-cov/llvm-cov.1
/freebsd-11-stable/usr.bin/clang/llvm-cxxdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cxxfilt/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-diff/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-diff/llvm-diff.1
/freebsd-11-stable/usr.bin/clang/llvm-dis/llvm-dis.1
/freebsd-11-stable/usr.bin/clang/llvm-dwarfdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-dwarfdump/llvm-dwarfdump.1
/freebsd-11-stable/usr.bin/clang/llvm-extract/llvm-extract.1
/freebsd-11-stable/usr.bin/clang/llvm-link/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-link/llvm-link.1
/freebsd-11-stable/usr.bin/clang/llvm-modextract/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-nm/llvm-nm.1
/freebsd-11-stable/usr.bin/clang/llvm-objcopy
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/llvm-pdbutil.1
/freebsd-11-stable/usr.bin/clang/llvm-profdata/llvm-profdata.1
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/llvm-symbolizer.1
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/opt/opt.1
/freebsd-11-stable/usr.sbin/acpi/acpidb/Makefile
# 327952 14-Jan-2018 dim

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
6.0.0 (branches/release_60 r321788). Upstream has branched for the
6.0.0 release, which should be in about 6 weeks. Please report bugs and
regressions, so we can get them into the release.

Please note that from 3.5.0 onwards, clang, llvm and lldb require C++11
support to build; see UPDATING for more information.

MFC after: 3 months


# 327119 23-Dec-2017 dim

Next step in updating llvm/clang build glue: make libclang_rt build.