History log of /freebsd-11-stable/lib/libc++/
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.


/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/llvm-project/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/clang
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/BuildSystem.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/CXString.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/Documentation.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/ExternC.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/Index.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/Platform.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/APValue.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTConsumer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTFwd.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTImporter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTImporterSharedState.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTLambda.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTNodeTraverser.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTStructuralEquivalence.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTTypeTraits.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/AbstractBasicReader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/AbstractBasicWriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/AbstractTypeReader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/AbstractTypeWriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Attr.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CXXInheritance.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CXXRecordDeclDefinitionBits.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CharUnits.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Comment.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CommentCommands.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CommentLexer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ComparisonCategories.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Decl.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclBase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclCXX.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclObjC.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclTemplate.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclarationName.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Expr.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExprCXX.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExprConcepts.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExprObjC.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExternalASTMerger.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExternalASTSource.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/FormatString.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/GlobalDecl.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/JSONNodeDumper.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Mangle.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/NSAPI.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/OpenMPClause.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/OperationKinds.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/PrettyPrinter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/PropertiesBase.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/RawCommentList.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/RecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Stmt.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/StmtDataCollectors.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/StmtOpenMP.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/StmtVisitor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TemplateBase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TemplateName.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TextNodeDumper.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Type.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeLoc.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeLocNodes.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeNodes.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeProperties.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeVisitor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/UnresolvedSet.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchFinder.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchers.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/Parser.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/AnalysisDeclContext.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/CFG.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/CallGraph.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/PathDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/AArch64SVEACLETypes.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/ASTNode.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/AddressSpaces.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Attr.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/AttrDocs.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/AttributeCommonInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Builtins.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Builtins.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsAArch64.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsAMDGPU.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsARM.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsBPF.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsPPC.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsWebAssembly.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsX86.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsX86_64.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/CodeGenOptions.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/CodeGenOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/CommentNodes.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Cuda.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DebugInfoOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DeclNodes.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Diagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticASTKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticCommentKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticCommonKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticDriverKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticFrontendKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticGroups.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticLexKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticOptions.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticParseKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSerializationKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Features.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/FileManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/IdentifierTable.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/LangOptions.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/LangOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/LangStandard.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/LangStandards.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Linkage.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/OpenCLOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/OperatorKinds.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/PartialDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/SanitizerSpecialCaseList.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Sanitizers.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/SourceLocation.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/SourceManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Specifiers.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Stack.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/StmtNodes.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/SyncScope.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TargetBuiltins.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TargetCXXABI.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TargetInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TokenKinds.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TokenKinds.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TypeNodes.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/X86Target.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_fp16.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_mve.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_mve_defs.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_neon_incl.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CrossTU/CrossTranslationUnit.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/DirectoryWatcher/DirectoryWatcher.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Action.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/CC1Options.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/CLCompatOptions.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Distro.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Driver.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Job.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/OptionUtils.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Options.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Options.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Phases.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/SanitizerArgs.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/ToolChain.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Types.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Types.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/ASTUnit.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/CompilerInstance.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/FrontendOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/LangStandard.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/LangStandards.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/MultiplexConsumer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/PrecompiledPreamble.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/Utils.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/CodegenNameGenerator.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/IndexDataConsumer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/IndexingAction.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/IndexingOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/DependencyDirectivesSourceMinimizer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/HeaderMap.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/HeaderSearch.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/HeaderSearchOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/Lexer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/MacroArgs.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/ModuleLoader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/ModuleMap.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/PPCallbacks.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/Preprocessor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/PreprocessorExcludedConditionalDirectiveSkipMapping.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/PreprocessorOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/Parser.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/RAIIObjectsForParser.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/Rewriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/CodeCompleteConsumer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/DeclSpec.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ExternalSemaSource.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/MultiplexExternalSemaSource.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ObjCMethodList.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/Overload.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ParsedAttr.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ParsedTemplate.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/Scope.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ScopeInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/Sema.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/SemaConcept.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/SemaInternal.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/Template.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/TemplateDeduction.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/TypoCorrection.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTBitCodes.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTReader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordReader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordWriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTWriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ContinuousRangeMap.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/Module.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ModuleFile.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ModuleManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/TypeBitCodes.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/Checker.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicCastInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/ASTDiff.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/AllTUsExecution.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/ArgumentsAdjusters.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/CompilationDatabase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningFilesystem.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningService.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningTool.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningWorker.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Execution.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/HeaderIncludes.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/IncludeStyle.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ASTSelection.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Extract/SourceExtraction.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RangeSelector.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/SourceCode.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Stencil.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Transformer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/StandaloneExecution.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/BuildTree.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Mutations.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Nodes.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Tokens.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Tree.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Tooling.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/module.modulemap
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/ARCMT.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/FileRemapper.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/ObjCMT.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/PlistReporter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/APValue.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTConcept.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTDiagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTImporter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTStructuralEquivalence.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTTypeTraits.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/CXXInheritance.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Comment.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/CommentLexer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/CommentParser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/CommentSema.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ComparisonCategories.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Decl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclBase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclTemplate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclarationName.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Expr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprClassification.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprConcepts.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprConstant.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExternalASTMerger.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExternalASTSource.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/FormatString.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/FormatStringParsing.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/InheritViz.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ItaniumMangle.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/JSONNodeDumper.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Mangle.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/MicrosoftMangle.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/NSAPI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/NestedNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ODRHash.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/OpenMPClause.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/QualTypeNames.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/RawCommentList.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/RecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Stmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/StmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/StmtPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/StmtProfile.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/TemplateBase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/TextNodeDumper.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Type.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/TypeLoc.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/TypePrinter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/VTTBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/VTableBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/ASTMatchFinder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Marshallers.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Parser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Registry.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/AnalysisDeclContext.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/BodyFarm.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/CFG.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/CloneDetection.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/CocoaConventions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/Consumed.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/PathDiagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/ProgramPoint.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/ReachableCode.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/RetainSummaryManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/ThreadSafety.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/ThreadSafetyCommon.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/plugins/SampleAnalyzer/MainCallChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Attributes.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Builtins.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Cuda.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/FileManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/IdentifierTable.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/LangStandards.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Module.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/OpenMPKinds.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/SanitizerBlacklist.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/SanitizerSpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/SourceManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Stack.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/AArch64.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/AArch64.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/ARM.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/ARM.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/BPF.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/BPF.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/Hexagon.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/Mips.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/NVPTX.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/OSTargets.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/OSTargets.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/PPC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/PPC.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/SPIR.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/Sparc.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/SystemZ.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/TCE.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/X86.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/X86.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/TokenKinds.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Version.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/XRayLists.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/BackendUtil.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGAtomic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGBlocks.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGBuilder.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGBuiltin.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCUDANV.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCXXABI.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCall.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCall.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGClass.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCleanup.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGDebugInfo.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGDebugInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGDeclCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGException.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExpr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprAgg.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprComplex.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprConstant.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprScalar.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGLoopInfo.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGLoopInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGNonTrivialStruct.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGObjCGNU.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGObjCMac.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGObjCRuntime.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenCLRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntime.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGStmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGVTables.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGValue.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenPGO.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenPGO.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenTBAA.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenTypes.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ConstantEmitter.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ConstantInitBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CoverageMappingGen.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/EHScopeStack.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ModuleBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/SanitizerMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CrossTU/CrossTranslationUnit.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/default/DirectoryWatcher-not-implemented.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/linux/DirectoryWatcher-linux.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/DirectoryWatcher-mac.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/windows
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Action.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Distro.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/DriverOptions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Job.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/OptionUtils.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Phases.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/SanitizerArgs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChain.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AMDGPU.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AVR.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Ananas.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/ARM.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/Mips.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/PPC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/RISCV.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/SystemZ.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/BareMetal.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/CloudABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/CommonArgs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/CommonArgs.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/CrossWindows.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Cuda.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Cuda.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/DragonFly.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Fuchsia.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/HIP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/HIP.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Hexagon.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MSP430.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MSVC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MSVC.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MinGW.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MinGW.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Minix.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Myriad.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/NaCl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/NetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/OpenBSD.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/OpenBSD.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/PPCLinux.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/PS4CPU.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/PS4CPU.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/RISCVToolchain.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Solaris.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/WebAssembly.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/XCore.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Types.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/XRayArgs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/BreakableToken.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/BreakableToken.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/ContinuationIndenter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/Encoding.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/Format.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/FormatToken.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/FormatTokenLexer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/FormatTokenLexer.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/NamespaceEndCommentsFixer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/TokenAnnotator.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/TokenAnnotator.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/UnwrappedLineFormatter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/UnwrappedLineParser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/UnwrappedLineParser.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/WhitespaceManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ChainedIncludesSource.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/CompilerInstance.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/CompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/DependencyGraph.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/FrontendAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/FrontendOptions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/HeaderIncludeGen.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/InitHeaderSearch.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/InitPreprocessor.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/InterfaceStubFunctionsConsumer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/LangStandards.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ModuleDependencyCollector.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/MultiplexConsumer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/PrecompiledPreamble.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/PrintPreprocessedOutput.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/__clang_cuda_intrinsics.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/altivec.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/arm_acle.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/arm_cmse.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avx512bwintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avx512fintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avx512vlbwintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avx512vlintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avxintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/bmiintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/cpuid.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/emmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ia32intrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/immintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/intrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/mwaitxintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/opencl-c-base.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/pmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/emmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/mm_malloc.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/mmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/pmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/smmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/tmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/xmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/xmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/CodegenNameGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/CommentToXML.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/IndexDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/IndexSymbol.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/IndexingAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/IndexingContext.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/USRGeneration.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/HeaderMap.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/HeaderSearch.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/Lexer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/LiteralSupport.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/MacroArgs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/ModuleMap.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/PPDirectives.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/PPLexerChange.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/PPMacroExpansion.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/Pragma.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/Preprocessor.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/TokenLexer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/UnicodeCharSets.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseAST.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseCXXInlineMethods.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseDeclCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseExpr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseExprCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseInit.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseObjc.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseOpenMP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParsePragma.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseStmtAsm.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseTemplate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseTentative.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/Parser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/Rewriter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/AnalysisBasedWarnings.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/DeclSpec.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/JumpDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/MultiplexExternalSemaSource.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/OpenCLBuiltins.td
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/ParsedAttr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/Sema.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaAccess.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaAttr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCXXScopeSpec.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCast.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaChecking.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCodeComplete.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaConcept.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCoroutine.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDeclAttr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDeclCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDeclObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExceptionSpec.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExpr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExprCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExprMember.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExprObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaInit.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaLambda.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaLookup.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaObjCProperty.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaOpenMP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaOverload.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaPseudoObject.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaStmtAsm.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaStmtAttr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateDeduction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateVariadic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaType.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/TreeTransform.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/TypeLocBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/TypeLocBuilder.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTCommon.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTReader.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTReaderDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTReaderStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTWriter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTWriterDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTWriterStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/Module.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ModuleFile.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ModuleManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/PCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CastValueChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckPlacementNew.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugIteratorModeling.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FuchsiaHandleChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InvalidatedIteratorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorModeling.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorRangeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MIGChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MismatchedIteratorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Taint.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Taint.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Yaml.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Checker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicType.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Environment.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Store.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/WorkList.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/AllTUsExecution.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ArgumentsAdjusters.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/CommonOptionsParser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/CompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/Replacement.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningFilesystem.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningService.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningTool.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ExpandResponseFilesCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/GuessTargetAndModeCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/IncludeStyle.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/JSONCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/ASTSelectionRequirements.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/RangeSelector.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/RefactoringActions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/RenamingAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/USRFindingAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/SourceCode.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Stencil.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Transformer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/RefactoringCallbacks.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/StandaloneExecution.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/BuildTree.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/ComputeReplacements.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Mutations.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Nodes.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Synthesis.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Tokens.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Tree.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Tooling.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Transformer
/freebsd-11-stable/contrib/llvm-project/clang/tools/clang-format/ClangFormat.cpp
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/cc1_main.cpp
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/cc1as_main.cpp
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/driver.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.h
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangASTNodesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangASTPropertiesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangOpcodesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangOpenCLBuiltinEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangOptionDocEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangSACheckersEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangTypeNodesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/MveEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/NeonEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/fuzzer
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/profile
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/asan_interface.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/dfsan_interface.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/tsan_interface_atomic.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/ubsan_interface.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interface.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interface_internal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_internal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_scariness_score.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/fp_mode.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/adddf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/addsf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/addtf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/arm/fp_mode.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/atomic.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/clear_cache.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/divtf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/emutls.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/extenddftf2.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/extendsftf2.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fixunsxfdi.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fixunsxfsi.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fixxfdi.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_add_impl.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_lib.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_trunc_impl.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/i386/fp_mode.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixtfti.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixunstfti.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/subdf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/subsf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/subtf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/udivmoddi4.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/crt/crtbegin.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerDefs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtFunctions.def
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeak.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtraCounters.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerFlags.def
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIO.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIO.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerInternal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerMerge.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerOptions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerTracePC.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtil.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilDarwin.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilFuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilLinux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilPosix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/utils
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/definitions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/guarded_pool_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/guarded_pool_allocator.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace_linux_libc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace_sanitizer_common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/options.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/options.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_allocator.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_exceptions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_flags.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_interface_internal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_new_delete.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_setjmp.S
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_tag_mismatch_aarch64.S
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_type_test.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_blacklist.txt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfData.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfiling.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfiling.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingBuffer.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingFile.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingInternal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingMerge.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingMergeFile.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingPort.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingValue.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingWriter.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_asm.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_netbsd_compat.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_getauxval.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_glibc_version.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_malloc_mac.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_vector.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/scudo_allocator_secondary.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/scudo_errors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/allocator_config.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/atomic_helpers.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/bytemap.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/chunk.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/combined.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/internal_defs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/list.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/local_cache.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/mutex.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/platform.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/primary32.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/primary64.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/quarantine.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/release.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/secondary.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/secondary.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/size_class_map.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/stats.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd_exclusive.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd_shared.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/vector.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_checks.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/stats/stats.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/stats/stats.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_dispatch_defs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_libdispatch.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mach_vm.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_libdispatch.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_checks.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx
/freebsd-11-stable/contrib/llvm-project/libcxx/CREDITS.TXT
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__bit_reference
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__config
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__debug
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__functional_03
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__functional_base
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__hash_table
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__libcpp_version
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__mutex_base
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__split_buffer
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__string
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__threading_support
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__tree
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__tuple
/freebsd-11-stable/contrib/llvm-project/libcxx/include/algorithm
/freebsd-11-stable/contrib/llvm-project/libcxx/include/atomic
/freebsd-11-stable/contrib/llvm-project/libcxx/include/bit
/freebsd-11-stable/contrib/llvm-project/libcxx/include/chrono
/freebsd-11-stable/contrib/llvm-project/libcxx/include/codecvt
/freebsd-11-stable/contrib/llvm-project/libcxx/include/cstdlib
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ctime
/freebsd-11-stable/contrib/llvm-project/libcxx/include/deque
/freebsd-11-stable/contrib/llvm-project/libcxx/include/exception
/freebsd-11-stable/contrib/llvm-project/libcxx/include/execution
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/coroutine
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/functional
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/iterator
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/propagate_const
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/type_traits
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ext/hash_map
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ext/hash_set
/freebsd-11-stable/contrib/llvm-project/libcxx/include/filesystem
/freebsd-11-stable/contrib/llvm-project/libcxx/include/forward_list
/freebsd-11-stable/contrib/llvm-project/libcxx/include/fstream
/freebsd-11-stable/contrib/llvm-project/libcxx/include/functional
/freebsd-11-stable/contrib/llvm-project/libcxx/include/future
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ios
/freebsd-11-stable/contrib/llvm-project/libcxx/include/istream
/freebsd-11-stable/contrib/llvm-project/libcxx/include/iterator
/freebsd-11-stable/contrib/llvm-project/libcxx/include/list
/freebsd-11-stable/contrib/llvm-project/libcxx/include/map
/freebsd-11-stable/contrib/llvm-project/libcxx/include/math.h
/freebsd-11-stable/contrib/llvm-project/libcxx/include/memory
/freebsd-11-stable/contrib/llvm-project/libcxx/include/module.modulemap
/freebsd-11-stable/contrib/llvm-project/libcxx/include/mutex
/freebsd-11-stable/contrib/llvm-project/libcxx/include/new
/freebsd-11-stable/contrib/llvm-project/libcxx/include/numeric
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ostream
/freebsd-11-stable/contrib/llvm-project/libcxx/include/queue
/freebsd-11-stable/contrib/llvm-project/libcxx/include/random
/freebsd-11-stable/contrib/llvm-project/libcxx/include/regex
/freebsd-11-stable/contrib/llvm-project/libcxx/include/set
/freebsd-11-stable/contrib/llvm-project/libcxx/include/span
/freebsd-11-stable/contrib/llvm-project/libcxx/include/stdexcept
/freebsd-11-stable/contrib/llvm-project/libcxx/include/string
/freebsd-11-stable/contrib/llvm-project/libcxx/include/string_view
/freebsd-11-stable/contrib/llvm-project/libcxx/include/system_error
/freebsd-11-stable/contrib/llvm-project/libcxx/include/thread
/freebsd-11-stable/contrib/llvm-project/libcxx/include/tuple
/freebsd-11-stable/contrib/llvm-project/libcxx/include/type_traits
/freebsd-11-stable/contrib/llvm-project/libcxx/include/typeinfo
/freebsd-11-stable/contrib/llvm-project/libcxx/include/utility
/freebsd-11-stable/contrib/llvm-project/libcxx/include/vector
/freebsd-11-stable/contrib/llvm-project/libcxx/include/version
/freebsd-11-stable/contrib/llvm-project/libcxx/src/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/libcxx/src/algorithm.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/chrono.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/condition_variable.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/debug.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/experimental/memory_resource.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/directory_iterator.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/int128_builtins.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/operations.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/iostream.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/locale.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/memory.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/mutex.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/mutex_destructor.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/regex.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/shared_mutex.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/thread.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/utility.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/valarray.cpp
/freebsd-11-stable/contrib/llvm-project/libunwind
/freebsd-11-stable/contrib/llvm-project/libunwind/include/__libunwind_config.h
/freebsd-11-stable/contrib/llvm-project/libunwind/include/libunwind.h
/freebsd-11-stable/contrib/llvm-project/libunwind/src/AddressSpace.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/DwarfInstructions.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/RWMutex.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/Registers.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/Unwind-EHABI.cpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/UnwindCursor.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/UnwindLevel1-gcc-ext.c
/freebsd-11-stable/contrib/llvm-project/libunwind/src/UnwindRegistersRestore.S
/freebsd-11-stable/contrib/llvm-project/libunwind/src/UnwindRegistersSave.S
/freebsd-11-stable/contrib/llvm-project/libunwind/src/libunwind.cpp
/freebsd-11-stable/contrib/llvm-project/lld
/freebsd-11-stable/contrib/llvm-project/lld/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/COFF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Chunks.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Config.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/DLL.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/DebugTypes.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Driver.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/DriverUtils.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/ICF.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/InputFiles.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/LTO.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/MapFile.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/MinGW.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/MinGW.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Options.td
/freebsd-11-stable/contrib/llvm-project/lld/COFF/PDB.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/PDB.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/SymbolTable.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Symbols.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Symbols.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Writer.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/Common/DWARF.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/ErrorHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/Filesystem.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/Strings.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/TargetOptionsCommandFlags.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/AArch64ErrataFix.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ARMErrataFix.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ARMErrataFix.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/ARM.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/AVR.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/Hexagon.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/MSP430.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/Mips.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/MipsArchTree.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/PPC.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/PPC64.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/SPARCV9.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/X86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/ELF/CallGraphSort.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Config.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/DWARF.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/DWARF.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/DriverUtils.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/EhFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ICF.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputFiles.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputSection.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputSection.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/LTO.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/LinkerScript.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/LinkerScript.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/MapFile.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Options.td
/freebsd-11-stable/contrib/llvm-project/lld/ELF/OutputSections.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/OutputSections.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Relocations.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Relocations.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ScriptLexer.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ScriptParser.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/SymbolTable.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Symbols.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Symbols.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/SyntheticSections.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/SyntheticSections.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Target.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Target.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Thunks.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Thunks.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Writer.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Writer.h
/freebsd-11-stable/contrib/llvm-project/lld/docs/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/docs/Driver.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/NewLLD.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/ReleaseNotes.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/WebAssembly.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/conf.py
/freebsd-11-stable/contrib/llvm-project/lld/docs/index.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/ld.lld.1
/freebsd-11-stable/contrib/llvm-project/lld/docs/windows_support.rst
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/DWARF.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/Driver.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/ErrorHandler.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/LLVM.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/Strings.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/TargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Atom.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Error.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/File.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Instrumentation.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Reference.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/UndefinedAtom.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/ReaderWriter/MachOLinkingContext.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/Resolver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/Driver/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/Driver/DarwinLdDriver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/FileArchive.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/DebugInfo.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/File.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/GOTPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ShimPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/TLVPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
/freebsd-11-stable/contrib/llvm-project/lld/tools/lld/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/tools/lld/lld.cpp
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/lldb/bindings
/freebsd-11-stable/contrib/llvm-project/lldb/docs/lldb.1
/freebsd-11-stable/contrib/llvm-project/lldb/docs/man
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBBreakpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointLocation.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointName.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBCommandReturnObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBDebugger.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBDefines.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBError.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBInstructionList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBProcess.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBReproducer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBStream.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBStructuredData.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBThread.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBThreadPlan.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointID.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocation.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointOptions.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/Watchpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointOptions.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Address.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/AddressRange.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverFileLine.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverName.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ClangForward.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Disassembler.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/FileLineResolver.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/FileSpecList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/FormatEntity.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Highlighter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/IOHandlerCursesGUI.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/LoadedModuleInfoList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Mangled.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Module.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ModuleChild.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ModuleList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/PluginManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/PropertiesBase.td
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/STLUtils.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/SourceManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/StreamFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/StructuredDataImpl.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeDenseMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/dwarf.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/DataVisualization.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatClasses.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/LanguageCategory.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/StringPrinter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategory.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeValidator.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/Expression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/Materializer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/REPL.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/FileCache.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/LZMA.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Socket.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/SocketAddress.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Terminal.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/XML.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/NativeProcessProtocol.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandCompletions.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandReturnObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionGroupPythonClassWithDict.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueArch.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueBoolean.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueProperties.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueRegex.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueUUID.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/Options.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/Property.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CallFrameInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTMetadata.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/DebugMacros.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/DeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Declaration.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Function.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/LineEntry.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/LineTable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/PostfixExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/TypeList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/VariableList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/VerifyDecl.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Platform.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Process.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Queue.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/RemoteAwarePlatform.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/StopInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepOut.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepRange.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Unwind.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/AnsiTerminal.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ArchSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Args.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Baton.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Broadcaster.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/CleanUp.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/CompletionRequest.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Connection.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ConstString.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/DataEncoder.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/DataExtractor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/FileCollector.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/FileSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Flags.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/GDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/IOObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/JSON.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Log.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Logging.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Predicate.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ProcessInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/RangeMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/RegularExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Reproducer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ReproducerInstrumentation.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Scalar.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Status.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Stream.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringLexer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StructuredData.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/UUID.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/VMRange.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-enumerations.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-forward.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-private-enumerations.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpointName.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpointOptionCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBCompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBDeclaration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBEvent.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBLineEntry.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBProcess.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBReproducer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBReproducerPrivate.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBStream.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBSymbolContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBThreadPlan.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBTypeCategory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/Utils.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/Breakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointIDList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointOptions.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/Watchpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/WatchpointOptions.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectDisassemble.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectGUI.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectType.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectVersion.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/Options.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/OptionsBase.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Address.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/AddressRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/AddressResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/CoreProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/DumpDataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/FileLineResolver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/FileSpecList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/FormatEntity.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Highlighter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/IOHandlerCursesGUI.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Mangled.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Module.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ModuleList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/PluginManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/SourceManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/StreamFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectCast.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectChild.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectRegister.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/DataVisualization.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormatCache.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormatClasses.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/LanguageCategory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeValidator.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/VectorType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/Expression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/IRExecutionUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/IRInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/FileCache.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/FileSystem.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Host.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/HostInfoBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/HostNativeThreadBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/LZMA.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/MainLoop.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/NativeProcessProtocol.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/NativeRegisterContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/PseudoTerminal.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Socket.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Terminal.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/UDPSocket.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/XML.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/netbsd/Host.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/FileSystemPosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/PipePosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandAlias.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/InterpreterProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionArgParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupArchitecture.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupOutputFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupUUID.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupVariable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueArch.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueBoolean.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueEnumeration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueRegex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueUUID.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/Options.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/Property.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/ScriptInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arc
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ModuleDependencyCollector.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDBProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSArray.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSError.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/MachException.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/AuxVector.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLogProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ArmUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Block.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangASTMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompilerDecl.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompilerDeclContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompilerType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CxxModuleHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/DWARFCallFrameInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/DeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Declaration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFileMacOSX.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/PostfixExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/SymbolVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Symtab.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Type.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/TypeMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/VerifyDecl.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/MemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Platform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Process.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/RemoteAwarePlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StackFrameRecognizer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/TargetProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanCallFunction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanRunToAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOut.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepUntil.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanTracer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Args.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Baton.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/CompletionRequest.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/ConstString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/DataBufferLLVM.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/DataEncoder.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Environment.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/FileCollector.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/FileSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/GDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/LLDBAssert.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Listener.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Log.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Logging.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/PPC64LE_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/RegisterValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Reproducer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Scalar.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/SelectHelper.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Status.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Stream.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StreamString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StringLexer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StringList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StructuredData.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/VMRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/argdumper/argdumper.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/compact-unwind/compact-unwind-dumper.c
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/Options.td
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-instr/Instrument.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnConfig.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDataTypes.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMain.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIExtensions.txt
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIReadMe.txt
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/module.modulemap
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/LLDBServerUtilities.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/lldb-platform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/lldb-server.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBOptionDefEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGen.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenBackends.h
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Analysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/BitReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/BitWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Comdat.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/DebugInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Disassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Error.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/ErrorHandling.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/ExternC.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/IRReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Initialization.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/LinkTimeOptimizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Linker.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Remarks.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Support.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Target.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/InstCombine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Types.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/lto.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/APFloat.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/APInt.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Any.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ArrayRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/BitVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/DirectedGraph.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/EnumeratedArray.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/FloatingPointMode.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/FoldingSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Hashing.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ImmutableSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/IntervalMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Optional.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/PointerIntPair.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/PointerUnion.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Statistic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringExtras.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/TinyPtrVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Triple.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Twine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/VariadicFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/iterator_range.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/AliasAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/AliasSetTracker.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/AssumptionCache.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CFG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CGSCCPassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CaptureTracking.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DDG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceGraphBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/GlobalsModRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/GuardUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/InstructionSimplify.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/IntervalPartition.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/Loads.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAnalysisManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopCacheAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfoImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryBuiltins.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSA.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSAUpdater.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MustExecute.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/Passes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/PhiValues.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/PostDominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/PtrUseVisitor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/RegionInfoImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TargetLibraryInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/Local.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/VecFuncs.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/COFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/AArch64.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MachO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Magic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Minidump.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MinidumpConstants.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Wasm.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/XCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeAnalyzer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/BitCodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/BitstreamReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/AccelTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/BasicTTIImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/CallingConvLower.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/CommandFlags.inc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/DFAPacketizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/FastISel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/FaultMaps.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/GISelKnownBits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ISDOpcodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervals.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LivePhysRegs.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRangeCalc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRegUnits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveStacks.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveVariables.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LowLevelType.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRFormatter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRYamlMapping.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBasicBlock.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineDominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFrameInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBundle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineMemOperand.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineModuleInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOperand.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOutliner.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePipeliner.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePostDominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineScheduler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineSizeOpts.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ModuloSchedule.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/NonRelocatableStringpool.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/Math.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ParallelCG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/Passes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PseudoSourceValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/Register.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterClassInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterScavenging.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGISel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SlotIndexes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/StackMaps.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/StackProtector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TailDuplicator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetCallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetPassConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSchedule.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/VirtRegMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DIContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFLocationExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymCreator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Header.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LookupResult.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Range.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/StringTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/GenericError.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/Demangle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/DemangleConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/ItaniumDemangle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/Utility.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_arm64.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Core.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/DebugUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Speculation.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Frontend
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Argument.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Attributes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Attributes.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/AutoUpgrade.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/CallSite.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/CallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Constant.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ConstantRange.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Constants.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ConstrainedOps.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DIBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DataLayout.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DerivedTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DiagnosticInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Dominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/FPEnv.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/FixedMetadataKinds.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Function.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IRPrintingPasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/InstVisitor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/InstrTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Instruction.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Instruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Instructions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicInst.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAArch64.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsARM.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsBPF.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsMips.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsRISCV.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsX86.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/LLVMContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManagers.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/MDBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Module.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/NoFolder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Operator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/PassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/RemarkStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/RuntimeLibcalls.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/User.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Value.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ValueHandle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ValueMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/InitializePasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/Config.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/LTO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/LTOBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LinkAllPasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoELF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoXCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmMacro.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAssembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCCodeEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCCodePadder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDirectives.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDwarf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCELFStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCExpr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCFixup.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCFixupKindInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCFragment.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInst.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInstrAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCMachObjectWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCObjectFileInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCObjectStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/AsmCond.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCRegister.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSection.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSectionXCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSubtargetInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolWasm.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolXCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCWasmObjectWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCXCOFFStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/StringTableBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/SubtargetFeature.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/CodeEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Context.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RegisterFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ResourceManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RetireControlUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Instruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/SourceMgr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/RetireStage.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Archive.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Binary.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/COFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ELF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ELFObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ELFTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/MachO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/MachOUniversal.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Minidump.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/StackMapParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/TapiFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/TapiUniversal.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Wasm.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/WindowsResource.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/XCOFFObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/DWARFYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ELFYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MachOYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MinidumpYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/WasmYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/YAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/yaml2obj.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Pass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Passes/PassBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfData.inc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkContainer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkSerializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/Remark.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkFormat.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkLinker.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkSerializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkStringTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/YAMLRemarkSerializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AMDGPUMetadata.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AlignOf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Alignment.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Automaton.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamArray.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CRC.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CodeGen.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CommandLine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CrashRecoveryContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/DataExtractor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Endian.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileCheck.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileCollector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileOutputBuffer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileSystem.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileUtilities.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Format.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FormatVariadic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTree.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTreeConstruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/GlobPattern.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/InitLLVM.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/JSON.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/JamCRC.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/KnownBits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/LineIterator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/LockFileManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/LowLevelTypeImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/MachineValueType.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Memory.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Mutex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/MutexGuard.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/OnDiskHashTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Options.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Parallel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Path.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Process.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/RWMutex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Regex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Registry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SHA1.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ScalableSize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Signals.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SourceMgr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SpecialCaseList.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SwapByteOrder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TargetOpcodes.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TargetRegistry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Threading.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TimeProfiler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Timer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TypeSize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/UnicodeCharRanges.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/UniqueLock.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/VersionTuple.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Win64EH.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Windows
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/X86TargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/YAMLTraits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/circular_raw_ostream.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/raw_ostream.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/type_traits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/Automaton.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/Error.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GenericOpcodes.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Combine.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Target.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/Target.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetItinerary.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetLoweringObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetOptions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Architecture.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/ArchitectureSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/InterfaceFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Platform.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Symbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Target.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/TextAPIReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/CFGuard.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/Attributor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/FunctionImport.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/MergeFunctions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/SanitizerCoverage.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Float2Int.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVN.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LICM.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerConstantIntrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerMatrixIntrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Reassociate.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/SCCP.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeMoverUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Debugify.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/GuardUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/InjectTLIMappings.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/MisExpect.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SizeOpts.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecordProducer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecords.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/FileHeaderReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/module.modulemap
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/AliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/Analysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/AssumptionCache.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/BasicAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/BlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/BranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CFGPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CallPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CaptureTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ConstantFolding.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CostModel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DDG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/Delinearization.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DemandedBits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DependenceGraphBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DomPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DomTreeUpdater.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/IVDescriptors.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/IVUsers.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/InlineCost.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/InstCount.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/InstructionSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/IntervalPartition.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LazyCallGraph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LazyValueInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/Lint.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/Loads.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopAccessAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopAnalysisManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopCacheAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemDepPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemDerefPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemoryBuiltins.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemoryLocation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemorySSA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemorySSAUpdater.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MustExecute.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/OrderedInstructions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/PhiValues.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/PostDominators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ProfileSummaryInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/RegionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/RegionPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolution.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ScopedNoAliasAA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/StackSafetyAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/TargetLibraryInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/TypeMetadataUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/VFABIDemangling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ValueTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/VectorUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/LLLexer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/LLParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/LLParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/LLToken.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/Parser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/Dwarf.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/Magic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/XCOFF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/BitstreamReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/Analysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AtomicExpandPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/BranchFolding.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/BranchFolding.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/BranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/BreakFalseDeps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CFGuardLongjmp.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CFIInstrInserter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CalcSpillWeights.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CallingConvLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CodeGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/DFAPacketizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/DetectDeadLanes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/DwarfEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/EarlyIfConversion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/EdgeBundles.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ExecutionDomainFix.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ExpandMemCmp.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ExpandReductions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/FEntryInserter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/FaultMaps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/FinalizeISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/FuncletLayout.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GCMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GCRootLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Utils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalMerge.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/HardwareLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/IfConversion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ImplicitNullChecks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/IndirectBrExpandPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/InlineSpiller.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/InterleavedAccessPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/IntrinsicLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LLVMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LexicalScopes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugVariables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveInterval.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveIntervals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LivePhysRegs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeCalc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeCalc.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeEdit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeShrink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRegMatrix.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRegUnits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveStacks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LowLevelType.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LowerEmuTLS.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRNamerPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MILexer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MILexer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MIParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRPrintingPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineBasicBlock.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineBlockPlacement.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineCSE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineCombiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineCopyPropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineDominators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineFrameInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineInstr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineInstrBundle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineLICM.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineModuleInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineOperand.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineOutliner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachinePipeliner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachinePostDominators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineRegionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineSSAUpdater.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineSink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineSizeOpts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineTraceMetrics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MacroFusion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ModuloSchedule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/NonRelocatableStringpool.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/OptimizePHIs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PHIElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ParallelCG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PatchableFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PeepholeOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PostRASchedulerList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PrologEpilogInserter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PseudoSourceValue.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegAllocBase.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegAllocFast.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegAllocGreedy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegAllocPBQP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegisterClassInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegisterCoalescer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegisterPressure.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegisterScavenging.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SafeStack.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SjLjEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SlotIndexes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SpillPlacement.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SplitKit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SplitKit.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackColoring.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackMaps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackProtector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackSlotColoring.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SwiftErrorValueTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SwitchLoweringUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TailDuplication.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TailDuplicator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetLoweringBase.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetOptionsImpl.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetPassConfig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetSchedule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TypePromotion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/UnreachableBlockElim.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ValueTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/VirtRegMap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/WasmEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/WinEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/XRayInstrumentation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DWARFLinker
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAddressRange.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFLocationExpression.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FileWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FunctionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Header.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/InlineInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LineTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LookupResult.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Range.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/GenericError.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/Hash.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Demangle/ItaniumDemangle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Demangle/MicrosoftDemangle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/BasicGOTAndStubsBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/EHFrameSupportImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkGeneric.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkGeneric.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOAtomGraphBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOAtomGraphBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/CompileUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Core.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/DebugUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Layer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/SpeculateAnalyses.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Speculation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OrcError
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFAArch64.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/TargetSelect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend
/freebsd-11-stable/contrib/llvm-project/llvm/lib/FuzzMutate/FuzzerCLI.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/AttributeImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Attributes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/AutoUpgrade.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/BasicBlock.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ConstantFold.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ConstantRange.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Constants.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ConstantsContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Core.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DIBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DataLayout.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DebugInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DebugInfoMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Dominators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/FPEnv.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Function.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Globals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/IRBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/IRPrintingPasses.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/InlineAsm.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Instruction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Instructions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/IntrinsicInst.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/LLVMContext.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/LLVMContextImpl.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/LLVMContextImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/LegacyPassManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/MDBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Module.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Pass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/RemarkStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/SafepointIRVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Type.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/TypeFinder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/User.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Value.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Verifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/Caching.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/LTO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/LTOBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/LTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/LTOModule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/SummaryBasedOptimizations.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/IRMover.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/LinkModules.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmInfoELF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmInfoXCOFF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmMacro.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAssembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCCodePadder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCContext.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDwarf.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCFragment.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCInstrAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCMachOStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCObjectFileInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCObjectStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/AsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/COFFAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/WasmAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCSection.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCSectionXCOFF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCSymbolELF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCTargetOptions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCValue.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCWasmStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCXCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/StringTableBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/WasmObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/XCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/CodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Context.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/LSUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/RegisterFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/RetireControlUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/Scheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/InstrBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Instruction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/DispatchStage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/EntryStage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/ExecuteStage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/InstructionTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/RetireStage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Archive.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ArchiveWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Binary.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/COFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Decompressor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ELF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ELFObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/MachOObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/MachOUniversal.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Minidump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ModuleSymbolTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/RelocationResolver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/SymbolicFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/TapiFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/TapiUniversal.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/WasmObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/WindowsResource.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/XCOFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/COFFEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/DWARFEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/ELFEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/ELFYAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/MachOEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/MachOYAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpYAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/WasmEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/WasmYAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/YAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/yaml2obj.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/ArgList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/PassBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/PassRegistry.def
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/GCOV.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/InstrProf.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/InstrProfReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/InstrProfWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/SampleProf.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/SampleProfReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/SampleProfWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkSerializer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkFormat.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkLinker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkSerializer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkStringTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkSerializer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/AArch64TargetParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ABIBreak.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/AMDGPUMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/APFloat.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/APInt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ARMAttributeParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ARMTargetParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/BinaryStreamReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CRC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CachePruning.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CodeGenCoverage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CommandLine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CrashRecoveryContext.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ErrorHandling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileCheck.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileCheckImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileCollector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileOutputBuffer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileUtilities.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/GlobPattern.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Host.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/InitLLVM.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/JSON.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/JamCRC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/KnownBits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/LockFileManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ManagedStatic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Mutex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Options.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Parallel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Path.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/PrettyStackTrace.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Process.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/RWMutex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/RandomNumberGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Regex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/SHA1.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Signals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Signposts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/SpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Statistic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/StringExtras.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/StringRef.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/TargetParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Threading.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/TimeProfiler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Timer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Memory.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Mutex.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Path.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Process.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Program.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/RWMutex.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Signals.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Threading.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Unix.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/VirtualFileSystem.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Host.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Memory.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Mutex.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Path.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Process.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Program.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/RWMutex.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Signals.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/ThreadLocal.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Threading.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/explicit_symbols.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/YAMLParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/YAMLTraits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Z3Solver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/raw_ostream.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/regcomp.c
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/Error.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/Main.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/Record.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/SetTheory.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/TGLexer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/TGLexer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/TGParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/TGParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Combine.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SIMDInstrOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM5.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackOffset.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTaggingPreRA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Subtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SystemOperands.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/SVEInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPU.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPU.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/BUFInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/CaymanInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/DSInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/FLATInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNNSAReassign.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegPressure.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MIMGInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600FrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600Instructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIDefines.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIPreAllocateWWMRegs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIProgramInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SMInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SOPInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUPALMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP1Instructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP2Instructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP3Instructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOPCInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOPInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCBranchFinalize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/A15SDOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARM.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARM.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBasicBlockInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMFastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMHazardRecognizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrMVE.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrNEON.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrThumb.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrThumb2.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrVFP.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMParallelDSP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMPredicates.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMScheduleA9.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMScheduleM4.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MLxExpansionPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MVEGatherScatterLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MVETailPredication.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MVEVPTBlockPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPF.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFAbstractMemberAccess.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFCORE.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFMIChecking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFMIPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFMISimplifyPatchable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BTF.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BTFDebug.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BTFDebug.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/BitTracker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonDepOperands.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPatterns.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPseudo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVExtract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFCopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFGraph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFLiveness.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFRegisters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFRegisters.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430FrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430Subtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips64InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsCondMov.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsFastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrFPU.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsLegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsMCInstLower.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsPfmCounters.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBanks.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsScheduleGeneric.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsScheduleP5600.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsTargetStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/ManagedStringPool.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTX.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/P9InstrResources.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCBranchCoalescing.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrHTM.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrVSX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopInstrFormPrep.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLowerMASSVEntries.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCV.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCV.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBanks.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket32.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket64.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedule.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/LeonPasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstr64Bit.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZ.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZCallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrFP.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrVector.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZOperands.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZPatterns.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZPostRewrite.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZProcessors.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZSchedule.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleArch13.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleZ15.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTDC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/TargetLoweringObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/TargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/TargetMachineC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/VE
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssembly.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrBulkMemory.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86Operand.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86AsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidTrailingCall.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CmovConversion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CondBrFolding.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86DomainReassignment.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86EvexToVex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FixupBWInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FixupLEAs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FixupSetCC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FloatingPoint.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86IndirectBranchTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InsertPrefetch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrAVX512.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrArithmetic.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrCMovSetCC.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrCompiler.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrControl.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrExtension.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFMA.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFPStack.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFoldTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFoldTables.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrMMX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrMPX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrSSE.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrSystem.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrTSX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrXOP.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86IntrinsicsInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86LegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86MCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86MacroFusion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86PadShortFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86PfmCounters.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RetpolineThunks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedBroadwell.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedHaswell.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedPredicates.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSandyBridge.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSkylakeClient.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSkylakeServer.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86Schedule.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleAtom.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleBdVer2.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleBtVer2.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleSLM.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver1.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver2.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86Subtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86Subtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86VZeroUpper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86WinEHState.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/Architecture.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/InterfaceFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/Platform.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/Symbol.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStub.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStubCommon.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStubCommon.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/CFGuard
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroElide.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroInstr.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroInternal.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/Coroutines.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/Attributor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/BlockExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ConstantMerge.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/FunctionImport.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalDCE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalSplit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/IPO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/InlineSimple.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/Inliner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/Internalize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/LoopExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/MergeFunctions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/PartialInlining.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/PruneEH.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/SCCP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/SampleProfile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/StripSymbols.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAtomicRMW.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/CFGMST.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrOrderFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PoisonChecking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfilePlugins.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/PtrState.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ADCE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/BDCE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ConstantProp.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/DCE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/DivRemPairs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Float2Int.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVN.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVNHoist.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVNSink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/GuardWidening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/InstSimplifyPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/JumpThreading.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LICM.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopFuse.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopPredication.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopRotation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopSink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerConstantIntrinsics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerMatrixIntrinsics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerWidenableCondition.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/MergeICmps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/NewGVN.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Reassociate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SCCP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SROA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Scalar.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Scalarizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Sink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CloneFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CloneModule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeMoverUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Debugify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Evaluator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/FlattenCFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/InjectTLIMappings.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/InstructionNamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Local.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnroll.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopVersioning.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LowerInvoke.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LowerSwitch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Mem2Reg.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/MetaRenamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/MisExpect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ModuleUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/PredicateInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/SizeOpts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Utils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/VNCoercion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlan.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlan.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/FDRRecordProducer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/FileHeaderReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/InstrumentationMap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/Profile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/RecordInitializer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/Trace.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/BugDriver.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/CrashDebugger.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/ExtractFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/OptimizerDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/ToolRunner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/bugpoint.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llc/llc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/RemoteJITUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/lli.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-ar/llvm-ar.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-as/llvm-as.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/CodeCoverage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/CoverageExporterJson.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/SourceCoverageView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxmap/llvm-cxxmap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-diff/DifferenceEngine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dis/llvm-dis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/Statistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-extract/llvm-extract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-link/llvm-link.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto/llvm-lto.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto2/llvm-lto2.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/DispatchStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/ResourcePressureView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/SchedulerStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/SummaryView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/llvm-mca.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-modextract/llvm-modextract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/llvm-nm.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Reader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Writer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/CommonOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/InstallNameToolOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ObjcopyOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/StripOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/ELFDump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-profdata/llvm-profdata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/COFFDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ELFDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/MachODumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/WasmDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/Win64EHDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/XCOFFDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-stress/llvm-stress.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/func-id-helper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-account.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-converter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-extract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-fdr-dump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph-diff.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-stacks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/Debugify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/Debugify.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/NewPMDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/PassPrinters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/PassPrinters.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/opt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/AsmMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/AsmWriterEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/AsmWriterInst.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CallingConvEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeEmitterGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenMapTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenSchedule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcher.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GICombinerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISelEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InstrDocsEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InstrInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/IntrinsicEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptParserEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptRSTEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/RegisterInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SearchableTableEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SequenceToOffsetTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SubtargetEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86DisassemblerTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86FoldTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86RecognizableInstr.cpp
/freebsd-11-stable/contrib/llvm-project/openmp
/freebsd-11-stable/contrib/llvm-project/openmp/CREDITS.txt
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/extractExternal.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/i18n/en_US.txt
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/include/omp_lib.f.var
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_affinity.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_affinity.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_alloc.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_atomic.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_barrier.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_csupport.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_dispatch.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_dispatch_hier.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_ftn_entry.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_ftn_os.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_global.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_gsupport.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_itt.inl
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_lock.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_lock.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_os.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_platform.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_runtime.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_settings.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_stats.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_str.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_stub.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_taskdeps.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_tasking.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_taskq.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_wait_release.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_getpid.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_malloc.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-event-specific.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-general.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-internal.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-specific.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-specific.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_config.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.c
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/legacy/ittnotify.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/z_Linux_asm.S
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/z_Linux_util.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/z_Windows_NT_util.cpp
/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/VCSVersion.inc
/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/Version.inc
/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/Extension.def
/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/clang/llvm.build.mk
Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/asan-preinit/Makefile
/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/cfi/Makefile
/freebsd-11-stable/lib/libclang_rt/cfi_diag/Makefile
/freebsd-11-stable/lib/libclang_rt/dd/Makefile
/freebsd-11-stable/lib/libclang_rt/fuzzer/Makefile
/freebsd-11-stable/lib/libclang_rt/fuzzer_no_main/Makefile
/freebsd-11-stable/lib/libclang_rt/include/Makefile
/freebsd-11-stable/lib/libclang_rt/msan/Makefile
/freebsd-11-stable/lib/libclang_rt/msan_cxx/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/stats_client/Makefile
/freebsd-11-stable/lib/libclang_rt/tsan/Makefile
/freebsd-11-stable/lib/libclang_rt/tsan_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_minimal/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/xray-basic/Makefile
/freebsd-11-stable/lib/libclang_rt/xray-fdr/Makefile
/freebsd-11-stable/lib/libclang_rt/xray-profiling/Makefile
/freebsd-11-stable/lib/libclang_rt/xray/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/lib/libomp/Makefile
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lldb-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/lldb.1
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/opt/Makefile
360660 05-May-2020 dim

MFC r355940:

Move all sources from the llvm project into contrib/llvm-project.

This uses the new layout of the upstream repository, which was recently
migrated to GitHub, and converted into a "monorepo". That is, most of
the earlier separate sub-projects with their own branches and tags were
consolidated into one top-level directory, and are now branched and
tagged together.

Updating the vendor area to match this layout is next.


/freebsd-11-stable/MAINTAINERS
/freebsd-11-stable/contrib/compiler-rt
/freebsd-11-stable/contrib/libc++
/freebsd-11-stable/contrib/libunwind
/freebsd-11-stable/contrib/llvm
/freebsd-11-stable/contrib/llvm-project
/freebsd-11-stable/contrib/llvm-project/clang
/freebsd-11-stable/contrib/llvm-project/compiler-rt
/freebsd-11-stable/contrib/llvm-project/libcxx
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__errc
/freebsd-11-stable/contrib/llvm-project/libcxx/include/errno.h
/freebsd-11-stable/contrib/llvm-project/libunwind
/freebsd-11-stable/contrib/llvm-project/lld
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/llvm
/freebsd-11-stable/contrib/llvm-project/openmp
/freebsd-11-stable/contrib/openmp
/freebsd-11-stable/gnu/usr.bin/cc/include/Makefile
/freebsd-11-stable/lib/clang/clang.build.mk
/freebsd-11-stable/lib/clang/clang.pre.mk
/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/clang/lldb.pre.mk
/freebsd-11-stable/lib/clang/llvm.build.mk
/freebsd-11-stable/lib/clang/llvm.pre.mk
/freebsd-11-stable/lib/libblocksruntime/Makefile
Makefile
/freebsd-11-stable/lib/libc++experimental/Makefile
/freebsd-11-stable/lib/libc/arm/aeabi/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/lib/libexecinfo/Makefile
/freebsd-11-stable/lib/libgcc_eh/Makefile.inc
/freebsd-11-stable/lib/libomp/Makefile
/freebsd-11-stable/share/doc/llvm/Makefile
/freebsd-11-stable/share/doc/llvm/clang/Makefile
/freebsd-11-stable/share/mk/bsd.clang-analyze.mk
/freebsd-11-stable/stand/i386/boot2/Makefile
/freebsd-11-stable/stand/libsa/Makefile
/freebsd-11-stable/usr.bin/clang/bugpoint/Makefile
/freebsd-11-stable/usr.bin/clang/clang-format/Makefile
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/clang/Makefile
/freebsd-11-stable/usr.bin/clang/llc/Makefile
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lldb-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/Makefile
/freebsd-11-stable/usr.bin/clang/lli/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-ar/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-as/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-bcanalyzer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cov/Makefile
/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-dis/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-dwarfdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-extract/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-link/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-lto/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-lto2/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-mc/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-mca/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-modextract/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-nm/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-profdata/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-rtdyld/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-xray/Makefile
/freebsd-11-stable/usr.bin/clang/opt/Makefile
360658 05-May-2020 dim

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
9.0.0 final release r372316.

(NOTE: This does not yet consolidate all the llvm project sources under
contrib/llvm-project (e.g., MFC r355940), due to Subversion limitations.
It will be done in a follow-up MFC.)

MFC r348610 (by emaste):

build llvm-ar and llvm-nm with Clang (promote out of CLANG_EXTRAS)

To facilitate experimentation with LTO we require an ar that supports
LLVM IR, and to a lesser degree also an nm. As a first step always
install llvm-ar and llvm-nm.

Sponsored by: The FreeBSD Foundation

MFC r350453 (by asomers):

Add a CXXWARNFLAGS variable

Some warning flags are valid for C++ but not C. GCC 8 complains if you pass
such flags when building a C file. Using a separate variable for these
flags allows building both C and C++ files in the same directory (such as
the fusefs tests) under GCC.

Reviewed by: cem, emaste
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D21116

MFC r350467 (by luporl):

[PPC64] Backport fix for missing IRELATIVE relocations

This is a backport of LLVM commit 8331f61a51a7a0a1efbf5ed398e181593023d151,
llvm-svn: 353981:

ELF: Allow GOT relocs pointing to non-preemptable ifunc to resolve to an
IRELATIVE where possible.

This is needed in order to make ifuncs work correctly on PPC64.

It fixes an issue with lld, in which it would skip emitting necessary IRELATIVE
relocations. Without this change, indirect calls to ifuncs would result in a
segmentation fault, in static binaries or when defined in the main binary
(outside shared libraries).

This change also reverts the local
"Preserve relocations against ifuncs when -zifunc-noplt" commit and
replaces it by its upstream version, as part of the merge.

Reviewed by: markj
Differential Revision: https://reviews.freebsd.org/D21102

MFC r351662 (by emaste):

lldb: shorten thread names to make logs easier to follow

lldb prepends the thread name to log entries, and the existing thread
name for the FreeBSD ProcessMonitor thread was longer than the kernel's
supported thread name length, and so was truncated. This made logs hard
to read, as the truncated thread name ran into the log message. Shorten
"lldb.process.freebsd.operation" to just "freebsd.op" so that logs are
more readable.

(Upstreaming to lldb still to be done).

MFC r352095 (by emaste):

compiler-rt: use more __sanitizer_time_t on FreeBSD

A few structs were using long for time_t members.

Obtained from: LLVM r370755

MFC r352096 (by emaste):

compiler-rt: use 64-bit time_t for all FreeBSD archs except i386

Obtained from: LLVM r370756

MFC r352167 (by imp):

Remove dir empty since r276851

MFC r352168 (by imp):

Remove dirs empty since r280031

MFC r352169 (by imp):

Remove dir empty since r314564

MFC r352170 (by imp):

Remove dir empty since r327952

MFC r352171 (by imp):

Remove dirs (and their now-empty parents) empty since r344779

MFC r352792 (by emaste):

compiler-rt: correct RISC-V struct_kernel_stat64_sz

The value of struct_kernel_stat64_sz introduced by review D5021 for
RISC-V was incorrect.

Also add a __riscv_xlen == 64 conditional as the 32-bit ABI is not yet
finalized.

Submitted by: Luís Marques
Differential Revision: https://reviews.freebsd.org/D21684

MFC r353018 (by kevans):

clang: use -mxgot for 32-bit mips

Various bits in usr.bin/clang/* will fail to compile without -mxgot due to
truncated relocations. -mxgot entails a speed penalty, but I suspect we
don't care as much about compiler performance in 32-bit mips land.

Reviewed by: arichardson
Differential Revision: https://reviews.freebsd.org/D21698

MFC r353358:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
9.0.0 final release r372316.

Release notes for llvm, clang, lld and libc++ 9.0.0 are available here:

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

PR: 240629

MFC r353363:

Put in a band-aid fix for lldb 9 exiting with "Expected<T> must be
checked before access or destruction" when launching executables, while
we sort this out with upstream.

Reported by: jbeich
PR: 241137

MFC r353415:

Revert r353363 in preparation for applying upstream fix:

Put in a band-aid fix for lldb 9 exiting with "Expected<T> must be
checked before access or destruction" when launching executables, while
we sort this out with upstream.

PR: 241137

MFC r353416:

Pull in r374444 from upstream lldb trunk (by me):

Fix process launch failure on FreeBSD after r365761

Summary:
After rLLDB365761, and with `LLVM_ENABLE_ABI_BREAKING_CHECKS`
enabled, launching any process on FreeBSD crashes lldb with:

```
Expected<T> must be checked before access or destruction.
Expected<T> value was in success state. (Note: Expected<T> values in
success mode must still be checked prior to being destroyed).
```

This is because `m_operation_thread` and `m_monitor_thread` were
wrapped in `llvm::Expected<>`, but this requires the objects to be
correctly initialized before accessing them.

To fix the crashes, use `llvm::Optional<>` for the members (as
indicated by labath), and use local variables to store the return
values of `LaunchThread` and `StartMonitoringChildProcess`. Then,
only assign to the member variables after checking if the return
values indicated success.

Reviewers: devnexen, emaste, MaskRay, mgorny

Reviewed By: devnexen

Subscribers: jfb, labath, krytarowski, lldb-commits

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

PR: 241137

MFC r353579 (by jhb):

Use __FreeBSD_version to determine if gets() has been removed.

GCC compilers set __FreeBSD__ statically to a build-time determined
targeted version (which in ports always matches the build host's
version). This means that when building any version (12 or 13, etc.)
of riscv or some other architecture via GCC on a 12.x host,
__FreeBSD__ will always be set to 12. As a result, __FreeBSD__ cannot
be used to reliably detect the target FreeBSD version being built.
Instead, __FreeBSD_version from either <sys/param.h> (in the kernel)
or <osreldate.h> (in userland) should be used.

This changes the gets() test in libc++ to use __FreeBSD_version from
<osreldate.h>.

Reported by: jenkins (riscv64 and amd64-gcc)
Reviewed by: dim, imp
Differential Revision: https://reviews.freebsd.org/D22034

MFC r353711 (by mhorne):

Fix build of LLVM RISC-V backend

Reviewed by: dim
MFC with: r353358
Differential Revision: https://reviews.freebsd.org/D21963

MFC r353738:

Pull in r372651 from upstream lld trunk (by Simon Atanasyan):

[mips] Support elf32btsmipn32_fbsd / elf32ltsmipn32_fbsd emulations

Patch by Kyle Evans.

Requested by: kevans

MFC r353739:

Pull in r374154 from upstream clang trunk (by Simon Atanasyan):

[mips] Set default float ABI to "soft" on FreeBSD

Initial patch by Kyle Evans.

Fix PR43596

Requested by: kevans

MFC r353936:

Bump clang's default target CPU for the i386 architecture (aka "x86") to
i686, as per the discussion on the freebsd-arch mailing list. Earlier
in r352030, I had already bumped it to i586, to work around missing
atomic 64 bit functions for the i386 architecture.

Relnotes: yes

MFC r354097:

Pull in r372186 from upstream llvm trunk (by Eli Friedman):

[ARM] VFPv2 only supports 16 D registers.

r361845 changed the way we handle "D16" vs. "D32" targets; there used
to be a negative "d16" which removed instructions from the
instruction set, and now there's a "d32" feature which adds
instructions to the instruction set. This is good, but there was an
oversight in the implementation: the behavior of VFPv2 was changed.
In particular, the "vfp2" feature was changed to imply "d32". This is
wrong: VFPv2 only supports 16 D registers.

In practice, this means if you specify -mfpu=vfpv2, the compiler will
generate illegal instructions.

This patch gets rid of "vfp2d16" and "vfp2d16sp", and fixes "vfp2"
and "vfp2sp" so they don't imply "d32".

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

Pull in r372187 from upstream clang trunk (by Eli Friedman):

[ARM] Update clang for removal of vfp2d16 and vfp2d16sp

Matching fix for https://reviews.llvm.org/D67375 (r372186).

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

This should fix clang generating invalid opcodes for floating point
operations on armv6.

Requested by: mmel

MFC r354146:

Pull in r373338 from upstream llvm trunk (by Simon Pilgrim):

Revert rL349624 : Let TableGen write output only if it changed,
instead of doing so in cmake, attempt 2

Differential Revision: https://reviews.llvm.org/D55842
-----------------
As discussed on PR43385 this is causing Visual Studio msbuilds to
perpetually rebuild all tablegen generated files

Pull in r373664 from upstream llvm trunk (by Nico Weber):

Reland r349624: Let TableGen write output only if it changed, instead
of doing so in cmake

Move the write-if-changed logic behind a flag and don't pass it with
the MSVC generator. msbuild doesn't have a restat optimization, so
not doing write-if-change there doesn't have a cost, and it should
fix whatever causes PR43385.

This should fix the scenario where an incremental build from before
r353358 (the clang 9.0.0 upgrade) to r353358 or later fails to update
the timestamp of the generated lib/clang/headers/arm_fp16.h header.

After such a build, installing world from read-only source and object
directories would attempt to generate the header again, leading to
"clang-tblgen: error opening arm_fp16.h.d:Read-only file system".

Reported by: avg, np
PR: 241402

MFC r354339:

Merge commit 97e362607 from llvm git (by Nemanja Ivanovic):

[PowerPC] Do not emit HW loop if the body contains calls to
lrint/lround

These two intrinsics are lowered to calls so should prevent the
formation of CTR loops. In a subsequent patch, we will handle all
currently known intrinsics and prevent the formation of HW loops if
any unknown intrinsics are encountered.

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

This should fix an "invalid CRT loop" assertion when building the
www/node port for powerpc64.

Requested by: Alfredo Dal'Ava Júnior <alfredo.junior@eldorado.org.br>

MFC r354347 (by cem):

Fix llvm-libunwind userspace build on ARM

GCC's libgcc exports a few ARM-specific symbols for ARM EABI, AEABI, or
EHABI or whatever it's called. Export the same ones from LLVM-libunwind's
libgcc_s, on ARM. As part of this, convert libgcc_s from a direct
Version.map to one constructed from component Symbol.map files. This allows
the ARM-specific Symbol.map to be included only on ARM.

Fix ARM-only oddities in struct name/aliases in LLVM-libunwind to match
non-ARM definitions and ARM-specific expectations in libcxxrt /
libcompiler_rt.

No functional change intended for non-ARM architectures.

This commit does not actually flip the switch for ARM defaults from libgcc
to llvm-libunwind, but makes it possible (to compile, anyway).

MFC r354418 (by cem):

clang: Enable unwind tables on !amd64

There doesn't seem to be much sense in defaulting "on" unwind tables on
amd64 and not on other arches. It causes surprising differences between
platforms, such as the PR below.

Prior to this change, FreeBSD inherited the default implementation of the
method from the Gnu.h Generic_Elf => Generic_GCC parent class, which
returned true only for amd64 targets. Override that and opt on always,
similar to, e.g., NetBSD.

PR: 241562
Reported by: lwhsu
Reviewed by: dim
Discussed with: emaste
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D22252

MFC r354429:

Merge commit 8e34dd941 from llvm git (by Sanjay Patel):

[x86] avoid crashing when splitting AVX stores with non-simple type
(PR43916)

The store splitting transform was assuming a simple type (MVT), but
that's not necessarily the case as shown in the test.

This should fix 'Assertion failed: (isSimple() && "Expected a
SimpleValueType!")' when building the security/openssl111 port targeting
a CPU that supports AVX, but not AVX2, such as sandybridge.

PR: 241747

MFC r354469:

Merge commit f596f4507 from llvm git (by Sam Elliott):

[RISCV] Add Custom Parser for Atomic Memory Operands

Summary:
GCC Accepts both (reg) and 0(reg) for atomic instruction memory
operands. These instructions do not allow for an offset in their
encoding, so in the latter case, the 0 is silently dropped.

Due to how we have structured the RISCVAsmParser, the easiest way to
add support for parsing this offset is to add a custom AsmOperand and
parser. This parser drops all the parens, and just keeps the
register.

This commit also adds a custom printer for these operands, which
matches the GCC canonical printer, printing both `(a0)` and `0(a0)`
as `(a0)`.

Reviewers: asb, lewis-revill

Reviewed By: asb

Subscribers: s.egerton, hiraditya, rbar, johnrusso, simoncook,
apazos, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay,
zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o,
rkruppe, jfb, PkmX, jocewei, psnobl, benna, Jim, llvm-commits

Tags: #llvm

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

llvm-svn: 367553

Merge commit f596f4507 from llvm git (by Sam Elliott):

[RISCV] Add FreeBSD targets

Reviewers: asb

Reviewed By: asb

Subscribers: simoncook, s.egerton, lenary, psnobl, benna, mhorne,
emaste, kito-cheng, shiva0217, rogfer01, rkruppe, cfe-commits

Tags: #clang

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

Patch by James Clarke (jrtc27)

llvm-svn: 367557

Merge commit f596f4507 from llvm git (by Hsiangkai Wang):

[DebugInfo] Generate fixups as emitting DWARF .debug_frame/.eh_frame.

It is necessary to generate fixups in .debug_frame or .eh_frame as
relaxation is enabled due to the address delta may be changed after
relaxation.

There is an opcode with 6-bits data in debug frame encoding. So, we
also need 6-bits fixup types.

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

llvm-svn: 366524

Merge commit f596f4507 from llvm git (by Hsiangkai Wang):

[DebugInfo] Some fields do not need relocations even relax is enabled.

In debug frame information, some fields, e.g., Length in CIE/FDE and
Offset in FDE are attributes to describe the structure of CIE/FDE.
They are not related to the relaxed code. However, these attributes
are symbol differences. So, in current design, these attributes will
be filled as zero and LLVM generates relocations for them.

We only need to generate relocations for symbols in executable
sections. So, if the symbols are not located in executable sections,
we still evaluate their values under relaxation.

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

llvm-svn: 366531

Merge commit f596f4507 from llvm git (by Alex Bradbury):

[RISCV] Don't force absolute FK_Data_X fixups to relocs

The current behavior of shouldForceRelocation forces relocations for
the majority of fixups when relaxation is enabled. This makes sense
for fixups which incorporate symbols but is unnecessary for simple
data fixups where the fixup target is already resolved to an absolute
value.

Differential Revision: https://reviews.llvm.org/D63404
Patch by Edward Jones.

llvm-svn: 369257

Merge commit f596f4507 from llvm git (by Alex Bradbury):

[RISCV] Implement getExprForFDESymbol to ensure RISCV_32_PCREL is
used for the FDE location

Follow binutils in using RISCV_32_PCREL for the FDE initial location.
As explained in the relevant binutils commit
<https://github.com/riscv/riscv-binutils-gdb/commit/a6cbf936e3dce68114d28cdf60d510a3f78a6d40>,
the ADD/SUB pair of relocations is problematic in the presence of
linker relaxation.

This patch has the same end goal as D64715 but includes test changes
and avoids adding a new global VariantKind to MCExpr.h (preferring
RISCVMCExpr VKs like the rest of the RISC-V backend).

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

llvm-svn: 369375

This series of merges will permit riscv64 kernels and riscv64sf worlds
to build with clang instead of gcc (but still using the bfd linker).

Requested by: jhb
Obtained from: https://github.com/freebsd/freebsd/compare/master...bsdjhb:riscv_clang

MFC r354662 (by jhb):

Sync target triple generation with the version in Makefile.inc1.

Reviewed by: dim
Sponsored by: DARPA
Differential Revision: https://reviews.freebsd.org/D22333

MFC r354692 (by emaste):

llvm: use AT_EXECPATH from ELF auxiliary vectors for getExecutablePath

/proc/curproc/file and the KERN_PROC_PATHNAME sysctl may not return the
desired path if there are multiple hardlinks to the file.

PR: 241932
Tested by: ler
Sponsored by: The FreeBSD Foundation

MFC r354707 (by emaste):

llvm: use elf_aux_info to get executable's path, if available

Obtained from: LLVM a0a38b81ea
MFC with: r354692
Sponsored by: The FreeBSD Foundation

MFC r354979:

Merge commit 7bed381ea from llvm git (by Simon Atanasyan):

[mips] Implement Octeon+ `saa` and `saad` instructions

`saa` and `saad` are 32-bit and 64-bit store atomic add instructions.

memory[base] = memory[base] + rt

These instructions are available for "Octeon+" CPU. The patch adds
support for both instructions to MIPS assembler and diassembler and
introduces new CPU type - "octeon+".

Next patches will implement `.set arch=octeon+` directive and
`AFL_EXT_OCTEONP` ISA extension flag support.

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

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354980:

Merge commit 3718102d4 from llvm git (by Simon Atanasyan):

[mips] Support `octeon+` CPU in the `.set arch=` directive

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

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354981:

Merge commit bf996f761 from llvm git (by Simon Atanasyan):

[mips] Write `AFL_EXT_OCTEONP` flag to the `.MIPS.abiflags` section

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

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354982:

Merge commit 3552d3e0f from llvm git (by Simon Atanasyan):

[mips] Add `octeon+` to the list of CPUs accepted by the driver

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354983:

Merge commit e578d0fd2 from llvm git (by Simon Atanasyan):

[mips] Fix `__mips_isa_rev` macros value for Octeon CPU

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354984:

Merge commit 0d14656b9 from llvm git (by Simon Atanasyan):

[mips] Set __OCTEON__ macros

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354985:

Merge commit a751f557d from llvm git (by Simon Atanasyan):

[mips] Set macros for Octeon+ CPU

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r355397:

Merge commit 241cbf201 from llvm git (by Nemanja Ivanovic):

[PowerPC] Fix crash in peephole optimization

When converting reg+reg shifts to reg+imm rotates, we neglect to
consider the CodeGenOnly versions of the 32-bit shift mnemonics. This
means we produce a rotate with missing operands which causes a crash.

Committing this fix without review since it is non-controversial that
the list of mnemonics to consider should include the 64-bit aliases
for the exact mnemonics.

Fixes PR44183.

This should fix "Assertion failed: (idx < size()), function operator[],
file /usr/src/contrib/llvm/include/llvm/ADT/SmallVector.h, line 153"
when building the graphics/mesa-dri port for the PowerPC64 ELFv2 ABI.

Reported by: Alfredo Dal'Ava Júnior <alfredo.junior@eldorado.org.br>

MFC r355602:

Add a few missed source files to libllvm, for the MK_LLVM_TARGET_BPF=yes
case. Otherwise, linking of clang and other llvm based executables
would complain about missing symbols.

Reported by: rstone

MFC r355645 (by cem):

arm: libgcc_s: Fix ABI breakage introduced in r354347

Provide the symbol version for llvm-libunwind's _Unwind_Backtrace that libgcc
has historically provided on arm, in addition to the (default) standard version
used on all other arch.

Reported by: mmel

MFC r355803 (by mmel):

Fix LLVM libunwnwind _Unwind_Backtrace symbol version for ARM.
In original GNU libgcc, _Unwind_Backtrace is published with GCC_3.3 version
for all architectures but ARM. For ARM should be publishes with GCC_4.3.0
version. This was originally omitted in r255095, fixed in r318024 and omitted
aging in LLVM libunwind implementation in r354347.

For ARM _Unwind_Backtrace should be published as default with GCC_4.3.0
version , (because this is right original version) and again as
normal(not-default) with GCC_3.3 version (to maintain ABI compatibility
compiled/linked with wrong pre r318024 libgcc)

PR: 233664


/freebsd-11-stable/Makefile.inc1
/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/compiler-rt/FREEBSD-Xlist
/freebsd-11-stable/contrib/compiler-rt/LICENSE.TXT
/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/dfsan_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/linux_syscall_hooks.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/netbsd_syscall_hooks.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/sanitizer/tsan_interface_atomic.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/asan/asan_activation.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation_flags.inc
/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_debugging.cc
/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_fake_stack.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_flags.h
/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_globals_win.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_interceptors_vfork.S
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interface_internal.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_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_local.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping_myriad.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping_sparc64.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_preinit.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_rtems.cc
/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.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_stack.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_stats.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_stats.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_suppressions.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/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/aarch64/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/absvdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/absvsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/absvti2.c
/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/addtf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addvdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addvsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addvti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/apple_versioning.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/adddf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmpeq_check_nan.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmpeq_check_nan.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_dcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_div0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_drsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_frsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.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/aeabi_uldivmod.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/chkstk.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/divdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/extendsfdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixsfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunsdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunssfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/modsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/muldf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/mulsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/restore_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/save_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/softfloat-alias.list
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch16.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch32.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switchu8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync-ops.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_synchronize.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/truncdfsf2vfp.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/arm/unorddf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/armv6m
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashldi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashlti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashrdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashrti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/assembly.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_clear.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_clear_explicit.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set_explicit.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_signal_fence.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_thread_fence.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/bswapdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/bswapsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clear_cache.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cmpdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cmpti2.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/comparetf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cpu_model.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divmoddi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divmodsi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divsc3.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/divtc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divtf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divxc3.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/eprintf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/extenddftf2.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/extendsftf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ffsdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ffssi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ffsti2.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/fixdfti.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/fixsfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixtfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixtfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixtfti.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/fixunsdfti.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/fixunssfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunstfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunstfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunstfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsxfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsxfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsxfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixxfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixxfti.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/floatditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatdixf.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/floatsitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattixf.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/floatunditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatundixf.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/floatunsitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntixf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_add_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_extend.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_extend_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_mul_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_trunc.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_trunc_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/common_entry_exit_abi1.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/common_entry_exit_abi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/common_entry_exit_legacy.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfaddsub.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfdiv.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dffma.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfminmax.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfmul.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfsqrt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/divdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/divsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fabs_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fastmath2_dlib_asm.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fastmath2_ldlib_asm.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fastmath_dlib_asm.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fma_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fmax_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fmin_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/memcpy_forward_vp4cp4n2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/memcpy_likely_aligned.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/moddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/modsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/sfdiv_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/sfsqrt_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/udivdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/udivmoddi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/udivmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/udivsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/umoddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/umodsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/chkstk2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/divdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/lshrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/moddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/muldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/udivdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/umoddi3.S
/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/int_math.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_types.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_util.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_util.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/lshrdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/lshrti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mingw_fixfloat.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/moddi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/modsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/modti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muldc3.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/mulodi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulosi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muloti4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulsc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/multc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/multf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/multi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulvdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulvsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulvti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulxc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negdf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negvdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negvsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negvti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/os_version_check.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/paritydi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/paritysi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/parityti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/popcountdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/popcountsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/popcountti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powidf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powisf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powitf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powixf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/DD.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/divtc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/fixtfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/fixunstfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/fixunstfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/floatditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/floattitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/floatunditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qadd.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qdiv.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qmul.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/multc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/restFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/saveFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/riscv/mulsi3.S
/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/subtf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subvdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subvsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subvti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/trampoline_setup.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/trunctfdf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/trunctfsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ucmpdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ucmpti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivmoddi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivmodsi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivmodti4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/umoddi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/umodsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/umodti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/unwind-ehabi-helpers.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/chkstk2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdixf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/cfi/cfi.cc
/freebsd-11-stable/contrib/compiler-rt/lib/cfi/cfi.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/crt
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan.h
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_custom.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/done_abilist.txt
/freebsd-11-stable/contrib/compiler-rt/lib/esan
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltins.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerCommand.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerCorpus.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerCrossOver.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDefs.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDictionary.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDriver.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctions.def
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctions.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsDlsym.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeak.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtraCounters.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerFlags.def
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerFork.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerFork.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIO.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIO.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerInterface.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerInternal.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMain.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMerge.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMerge.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerOptions.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerRandom.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerSHA1.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerSHA1.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerShmem.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerShmemFuchsia.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerShmemPosix.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerShmemWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtil.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtil.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilDarwin.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilFuchsia.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilLinux.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilPosix.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerValueBitMap.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/utils
/freebsd-11-stable/contrib/compiler-rt/lib/gwp_asan
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_checks.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interceptors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interceptors_vfork.S
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_linux.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_malloc_bisect.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_mapping.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_memintrinsics.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_memintrinsics.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_new_delete.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_tag_mismatch_aarch64.S
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.h
/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.cc
/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_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_preinit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.h
/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_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_chained_origin_depot.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_chained_origin_depot.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_interface_internal.h
/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_origin.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_poisoning.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_thread.h
/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/InstrProfiling.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingBuffer.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/InstrProfilingMerge.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingMergeFile.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingNameVar.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformDarwin.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
/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/InstrProfilingPlatformWindows.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPort.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingRuntime.cc
/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.h
/freebsd-11-stable/contrib/compiler-rt/lib/safestack/safestack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/safestack/safestack_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/safestack/safestack_util.h
/freebsd-11-stable/contrib/compiler-rt/lib/sancov
/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/sancov_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_addrhashmap.h
/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_bytemap.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_internal.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_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.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_allocator_stats.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_asm.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic.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_atomic_clang_x86.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.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_format.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_interceptors_vfork_aarch64.inc.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_vfork_arm.inc.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_vfork_i386.inc.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_vfork_x86_64.inc.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface_posix.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc
/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_coverage_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_dbghelp.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno_codes.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.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_freebsd.h
/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_hash.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
/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_lfstack.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.h
/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_linux_mips64.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_list.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_local_address_space_view.h
/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_malloc_mac.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mutex.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_placement_new.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_freebsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc
/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_openbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.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_bsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.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_ring_buffer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.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_stackdepot.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepotbase.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld.h
/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_stoptheworld_netbsd_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h
/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.h
/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_libbacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.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_symbolizer_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_rtems.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.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_syscalls_netbsd.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
/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_tls_get_addr.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.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.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ar_to_bc.sh
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
/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.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_crc32.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_errors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_errors.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.h
/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_malloc.cpp
/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_termination.cpp
/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/scudo/standalone
/freebsd-11-stable/contrib/compiler-rt/lib/stats/stats.cc
/freebsd-11-stable/contrib/compiler-rt/lib/stats/stats.h
/freebsd-11-stable/contrib/compiler-rt/lib/stats/stats_client.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/benchmarks/mop.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_rtl.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/test.c
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_dense_alloc.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_dispatch_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_external.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_fd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_fd.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_ignoreset.h
/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.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_ann.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch.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_md5.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_mutex.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutex.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutexset.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutexset.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_platform_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_preinit.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_proc.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_stack_trace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stack_trace.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.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_update_shadow_word_inl.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_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_flags.inc
/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_handlers_cxx.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_monitor.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_monitor.h
/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/ubsan_type_hash.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_value.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_value.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_AArch64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_arm.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_logging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_logging.h
/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_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_controller.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_log_records.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_log_writer.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_flags.cc
/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_function_call_trie.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_init.cc
/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_mips.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_mips64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_powerpc64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_powerpc64.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profile_collector.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profile_collector.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_recursion_guard.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_segmented_array.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_mips.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_mips64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_tsc.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_x86_64.inc
/freebsd-11-stable/contrib/libc++/FREEBSD-Xlist
/freebsd-11-stable/contrib/libc++/LICENSE.TXT
/freebsd-11-stable/contrib/libc++/include/__bit_reference
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_defaults.h
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_fallbacks.h
/freebsd-11-stable/contrib/libc++/include/__config
/freebsd-11-stable/contrib/libc++/include/__debug
/freebsd-11-stable/contrib/libc++/include/__errc
/freebsd-11-stable/contrib/libc++/include/__functional_03
/freebsd-11-stable/contrib/libc++/include/__functional_base
/freebsd-11-stable/contrib/libc++/include/__functional_base_03
/freebsd-11-stable/contrib/libc++/include/__hash_table
/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/__node_handle
/freebsd-11-stable/contrib/libc++/include/__nullptr
/freebsd-11-stable/contrib/libc++/include/__sso_allocator
/freebsd-11-stable/contrib/libc++/include/__std_stream
/freebsd-11-stable/contrib/libc++/include/__string
/freebsd-11-stable/contrib/libc++/include/__threading_support
/freebsd-11-stable/contrib/libc++/include/__tree
/freebsd-11-stable/contrib/libc++/include/__tuple
/freebsd-11-stable/contrib/libc++/include/__undef_macros
/freebsd-11-stable/contrib/libc++/include/algorithm
/freebsd-11-stable/contrib/libc++/include/any
/freebsd-11-stable/contrib/libc++/include/array
/freebsd-11-stable/contrib/libc++/include/atomic
/freebsd-11-stable/contrib/libc++/include/bit
/freebsd-11-stable/contrib/libc++/include/bitset
/freebsd-11-stable/contrib/libc++/include/cassert
/freebsd-11-stable/contrib/libc++/include/ccomplex
/freebsd-11-stable/contrib/libc++/include/cctype
/freebsd-11-stable/contrib/libc++/include/cerrno
/freebsd-11-stable/contrib/libc++/include/cfenv
/freebsd-11-stable/contrib/libc++/include/cfloat
/freebsd-11-stable/contrib/libc++/include/charconv
/freebsd-11-stable/contrib/libc++/include/chrono
/freebsd-11-stable/contrib/libc++/include/cinttypes
/freebsd-11-stable/contrib/libc++/include/ciso646
/freebsd-11-stable/contrib/libc++/include/climits
/freebsd-11-stable/contrib/libc++/include/clocale
/freebsd-11-stable/contrib/libc++/include/cmath
/freebsd-11-stable/contrib/libc++/include/codecvt
/freebsd-11-stable/contrib/libc++/include/compare
/freebsd-11-stable/contrib/libc++/include/complex
/freebsd-11-stable/contrib/libc++/include/complex.h
/freebsd-11-stable/contrib/libc++/include/condition_variable
/freebsd-11-stable/contrib/libc++/include/csetjmp
/freebsd-11-stable/contrib/libc++/include/csignal
/freebsd-11-stable/contrib/libc++/include/cstdarg
/freebsd-11-stable/contrib/libc++/include/cstdbool
/freebsd-11-stable/contrib/libc++/include/cstddef
/freebsd-11-stable/contrib/libc++/include/cstdint
/freebsd-11-stable/contrib/libc++/include/cstdio
/freebsd-11-stable/contrib/libc++/include/cstdlib
/freebsd-11-stable/contrib/libc++/include/cstring
/freebsd-11-stable/contrib/libc++/include/ctgmath
/freebsd-11-stable/contrib/libc++/include/ctime
/freebsd-11-stable/contrib/libc++/include/ctype.h
/freebsd-11-stable/contrib/libc++/include/cwchar
/freebsd-11-stable/contrib/libc++/include/cwctype
/freebsd-11-stable/contrib/libc++/include/deque
/freebsd-11-stable/contrib/libc++/include/errno.h
/freebsd-11-stable/contrib/libc++/include/exception
/freebsd-11-stable/contrib/libc++/include/experimental/__config
/freebsd-11-stable/contrib/libc++/include/experimental/__memory
/freebsd-11-stable/contrib/libc++/include/experimental/algorithm
/freebsd-11-stable/contrib/libc++/include/experimental/any
/freebsd-11-stable/contrib/libc++/include/experimental/chrono
/freebsd-11-stable/contrib/libc++/include/experimental/coroutine
/freebsd-11-stable/contrib/libc++/include/experimental/deque
/freebsd-11-stable/contrib/libc++/include/experimental/filesystem
/freebsd-11-stable/contrib/libc++/include/experimental/forward_list
/freebsd-11-stable/contrib/libc++/include/experimental/functional
/freebsd-11-stable/contrib/libc++/include/experimental/iterator
/freebsd-11-stable/contrib/libc++/include/experimental/list
/freebsd-11-stable/contrib/libc++/include/experimental/map
/freebsd-11-stable/contrib/libc++/include/experimental/memory_resource
/freebsd-11-stable/contrib/libc++/include/experimental/numeric
/freebsd-11-stable/contrib/libc++/include/experimental/optional
/freebsd-11-stable/contrib/libc++/include/experimental/propagate_const
/freebsd-11-stable/contrib/libc++/include/experimental/ratio
/freebsd-11-stable/contrib/libc++/include/experimental/regex
/freebsd-11-stable/contrib/libc++/include/experimental/set
/freebsd-11-stable/contrib/libc++/include/experimental/simd
/freebsd-11-stable/contrib/libc++/include/experimental/string
/freebsd-11-stable/contrib/libc++/include/experimental/string_view
/freebsd-11-stable/contrib/libc++/include/experimental/system_error
/freebsd-11-stable/contrib/libc++/include/experimental/tuple
/freebsd-11-stable/contrib/libc++/include/experimental/type_traits
/freebsd-11-stable/contrib/libc++/include/experimental/unordered_map
/freebsd-11-stable/contrib/libc++/include/experimental/unordered_set
/freebsd-11-stable/contrib/libc++/include/experimental/utility
/freebsd-11-stable/contrib/libc++/include/experimental/vector
/freebsd-11-stable/contrib/libc++/include/ext/__hash
/freebsd-11-stable/contrib/libc++/include/ext/hash_map
/freebsd-11-stable/contrib/libc++/include/ext/hash_set
/freebsd-11-stable/contrib/libc++/include/fenv.h
/freebsd-11-stable/contrib/libc++/include/filesystem
/freebsd-11-stable/contrib/libc++/include/float.h
/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/initializer_list
/freebsd-11-stable/contrib/libc++/include/inttypes.h
/freebsd-11-stable/contrib/libc++/include/iomanip
/freebsd-11-stable/contrib/libc++/include/ios
/freebsd-11-stable/contrib/libc++/include/iosfwd
/freebsd-11-stable/contrib/libc++/include/iostream
/freebsd-11-stable/contrib/libc++/include/istream
/freebsd-11-stable/contrib/libc++/include/iterator
/freebsd-11-stable/contrib/libc++/include/limits
/freebsd-11-stable/contrib/libc++/include/limits.h
/freebsd-11-stable/contrib/libc++/include/list
/freebsd-11-stable/contrib/libc++/include/locale
/freebsd-11-stable/contrib/libc++/include/locale.h
/freebsd-11-stable/contrib/libc++/include/map
/freebsd-11-stable/contrib/libc++/include/math.h
/freebsd-11-stable/contrib/libc++/include/memory
/freebsd-11-stable/contrib/libc++/include/module.modulemap
/freebsd-11-stable/contrib/libc++/include/mutex
/freebsd-11-stable/contrib/libc++/include/new
/freebsd-11-stable/contrib/libc++/include/numeric
/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/setjmp.h
/freebsd-11-stable/contrib/libc++/include/shared_mutex
/freebsd-11-stable/contrib/libc++/include/span
/freebsd-11-stable/contrib/libc++/include/sstream
/freebsd-11-stable/contrib/libc++/include/stack
/freebsd-11-stable/contrib/libc++/include/stdbool.h
/freebsd-11-stable/contrib/libc++/include/stddef.h
/freebsd-11-stable/contrib/libc++/include/stdexcept
/freebsd-11-stable/contrib/libc++/include/stdint.h
/freebsd-11-stable/contrib/libc++/include/stdio.h
/freebsd-11-stable/contrib/libc++/include/stdlib.h
/freebsd-11-stable/contrib/libc++/include/streambuf
/freebsd-11-stable/contrib/libc++/include/string
/freebsd-11-stable/contrib/libc++/include/string.h
/freebsd-11-stable/contrib/libc++/include/string_view
/freebsd-11-stable/contrib/libc++/include/strstream
/freebsd-11-stable/contrib/libc++/include/system_error
/freebsd-11-stable/contrib/libc++/include/tgmath.h
/freebsd-11-stable/contrib/libc++/include/thread
/freebsd-11-stable/contrib/libc++/include/tuple
/freebsd-11-stable/contrib/libc++/include/type_traits
/freebsd-11-stable/contrib/libc++/include/typeindex
/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/valarray
/freebsd-11-stable/contrib/libc++/include/variant
/freebsd-11-stable/contrib/libc++/include/vector
/freebsd-11-stable/contrib/libc++/include/version
/freebsd-11-stable/contrib/libc++/include/wchar.h
/freebsd-11-stable/contrib/libc++/include/wctype.h
/freebsd-11-stable/contrib/libc++/src/CMakeLists.txt
/freebsd-11-stable/contrib/libc++/src/algorithm.cpp
/freebsd-11-stable/contrib/libc++/src/any.cpp
/freebsd-11-stable/contrib/libc++/src/bind.cpp
/freebsd-11-stable/contrib/libc++/src/charconv.cpp
/freebsd-11-stable/contrib/libc++/src/chrono.cpp
/freebsd-11-stable/contrib/libc++/src/condition_variable.cpp
/freebsd-11-stable/contrib/libc++/src/condition_variable_destructor.cpp
/freebsd-11-stable/contrib/libc++/src/debug.cpp
/freebsd-11-stable/contrib/libc++/src/exception.cpp
/freebsd-11-stable/contrib/libc++/src/experimental/memory_resource.cpp
/freebsd-11-stable/contrib/libc++/src/filesystem/directory_iterator.cpp
/freebsd-11-stable/contrib/libc++/src/filesystem/filesystem_common.h
/freebsd-11-stable/contrib/libc++/src/filesystem/int128_builtins.cpp
/freebsd-11-stable/contrib/libc++/src/filesystem/operations.cpp
/freebsd-11-stable/contrib/libc++/src/functional.cpp
/freebsd-11-stable/contrib/libc++/src/future.cpp
/freebsd-11-stable/contrib/libc++/src/hash.cpp
/freebsd-11-stable/contrib/libc++/src/include/apple_availability.h
/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/ios.cpp
/freebsd-11-stable/contrib/libc++/src/iostream.cpp
/freebsd-11-stable/contrib/libc++/src/locale.cpp
/freebsd-11-stable/contrib/libc++/src/memory.cpp
/freebsd-11-stable/contrib/libc++/src/mutex.cpp
/freebsd-11-stable/contrib/libc++/src/mutex_destructor.cpp
/freebsd-11-stable/contrib/libc++/src/new.cpp
/freebsd-11-stable/contrib/libc++/src/optional.cpp
/freebsd-11-stable/contrib/libc++/src/random.cpp
/freebsd-11-stable/contrib/libc++/src/regex.cpp
/freebsd-11-stable/contrib/libc++/src/shared_mutex.cpp
/freebsd-11-stable/contrib/libc++/src/stdexcept.cpp
/freebsd-11-stable/contrib/libc++/src/string.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_glibcxx.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_libcxxabi.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_libcxxrt.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_msvc.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_pointer_cxxabi.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_pointer_glibcxx.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_pointer_msvc.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_pointer_unimplemented.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/new_handler_fallback.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/stdexcept_default.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/stdexcept_vcruntime.ipp
/freebsd-11-stable/contrib/libc++/src/system_error.cpp
/freebsd-11-stable/contrib/libc++/src/thread.cpp
/freebsd-11-stable/contrib/libc++/src/typeinfo.cpp
/freebsd-11-stable/contrib/libc++/src/utility.cpp
/freebsd-11-stable/contrib/libc++/src/valarray.cpp
/freebsd-11-stable/contrib/libc++/src/variant.cpp
/freebsd-11-stable/contrib/libc++/src/vector.cpp
/freebsd-11-stable/contrib/libunwind/FREEBSD-Xlist
/freebsd-11-stable/contrib/libunwind/LICENSE.TXT
/freebsd-11-stable/contrib/libunwind/include/__libunwind_config.h
/freebsd-11-stable/contrib/libunwind/include/libunwind.h
/freebsd-11-stable/contrib/libunwind/include/mach-o/compact_unwind_encoding.h
/freebsd-11-stable/contrib/libunwind/include/unwind.h
/freebsd-11-stable/contrib/libunwind/src/AddressSpace.hpp
/freebsd-11-stable/contrib/libunwind/src/CompactUnwinder.hpp
/freebsd-11-stable/contrib/libunwind/src/DwarfInstructions.hpp
/freebsd-11-stable/contrib/libunwind/src/DwarfParser.hpp
/freebsd-11-stable/contrib/libunwind/src/EHHeaderParser.hpp
/freebsd-11-stable/contrib/libunwind/src/RWMutex.hpp
/freebsd-11-stable/contrib/libunwind/src/Registers.hpp
/freebsd-11-stable/contrib/libunwind/src/Unwind-EHABI.cpp
/freebsd-11-stable/contrib/libunwind/src/Unwind-EHABI.h
/freebsd-11-stable/contrib/libunwind/src/Unwind-seh.cpp
/freebsd-11-stable/contrib/libunwind/src/Unwind-sjlj.c
/freebsd-11-stable/contrib/libunwind/src/UnwindCursor.hpp
/freebsd-11-stable/contrib/libunwind/src/UnwindLevel1-gcc-ext.c
/freebsd-11-stable/contrib/libunwind/src/UnwindLevel1.c
/freebsd-11-stable/contrib/libunwind/src/UnwindRegistersRestore.S
/freebsd-11-stable/contrib/libunwind/src/UnwindRegistersSave.S
/freebsd-11-stable/contrib/libunwind/src/Unwind_AppleExtras.cpp
/freebsd-11-stable/contrib/libunwind/src/assembly.h
/freebsd-11-stable/contrib/libunwind/src/config.h
/freebsd-11-stable/contrib/libunwind/src/dwarf2.h
/freebsd-11-stable/contrib/libunwind/src/libunwind.cpp
/freebsd-11-stable/contrib/libunwind/src/libunwind_ext.h
/freebsd-11-stable/contrib/llvm/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/include/llvm-c/Analysis.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/BitReader.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/BitWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Comdat.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DataTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Disassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DisassemblerTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/IRReader.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Initialization.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/LinkTimeOptimizer.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Linker.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Object.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OptRemarks.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Remarks.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Support.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Target.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/InstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Types.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/APSInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/AllocatorList.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Any.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/BitmaskEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/BreadthFirstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/CachedHashString.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/EpochTracker.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/FunctionExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/GraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Hashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableList.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IndexedMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntEqClasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntervalMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/MapVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/None.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Optional.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PackedVector.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/PostOrderIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PriorityQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PriorityWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ScopeExit.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ScopedHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Sequence.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SetOperations.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SetVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallString.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseMultiSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Statistic.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/StringRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringSwitch.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/UniqueVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/VariadicFunction.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/bit.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/edit_distance.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/fallible_iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_base.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node_base.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node_options.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator_range.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/simple_ilist.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/CFGPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLAliasAnalysisUtils.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/CallPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CaptureTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CmpInstAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CodeMetrics.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/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DomPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DomTreeUpdater.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/EHPersonalities.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GlobalsModRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GuardUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IVDescriptors.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IVUsers.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InlineCost.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InstructionPrecedenceTracking.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/IteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Lint.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Loads.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/LoopIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.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/MemorySSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MustExecute.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OrderedBasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OrderedInstructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PHITransAddr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Passes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PhiValues.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/RegionIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.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/ScalarEvolutionNormalization.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/StackSafetyAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/SyntheticCountsUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetFolder.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/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Utils/Local.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/Analysis/VecFuncs.def
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/AsmParser/Parser.h
/freebsd-11-stable/contrib/llvm/include/llvm/AsmParser/SlotMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/AMDGPUMetadataVerifier.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/DynamicTags.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/ARM.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MachO.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Magic.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Minidump.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MinidumpConstants.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPack.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPack.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackDocument.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Wasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/WasmRelocs
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/WasmRelocs.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/XCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeAnalyzer.h
/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/BitcodeWriterPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitstream
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AccelTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Analysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AsmPrinterHandler.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/BuiltinGCs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CSEConfigBase.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.inc
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CostTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DAGCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIEValue.def
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DbgEntityHistoryCalculator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DebugHandlerBase.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/EdgeBundles.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ExecutionDomainFix.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ExpandReductions.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/GCMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCStrategy.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.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/Localizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Types.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/LazyMachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.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/LiveRegMatrix.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.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/LoopTraversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LowLevelType.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRParser/MIParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachORelocation.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/MachineBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.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/MachineFunctionPass.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/MachineInstrBundleIterator.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/MachineOutliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePipeliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegionInfo.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/MacroFusion.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/CostAllocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Math.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ParallelCG.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/ReachingDefAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegAllocRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Register.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/RegisterScavenging.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.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/ScheduleDAGMutation.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDFS.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.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/StackProtector.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SwiftErrorValueTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SwitchLoweringUtils.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/TargetLoweringObjectFileImpl.h
/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/UnreachableBlockElim.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.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/CodeGen/WasmEHFuncInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.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/CVSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.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/DebugChecksumsSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/Formatters.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/GUID.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/Line.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/RecordSerialization.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/SymbolDumpDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.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/TypeDumpVisitor.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/TypeRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.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/DWARFAddressRange.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.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/DWARFDebugAddr.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.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/DWARFDebugRnglists.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/DWARFGdbIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.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/GSYM
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/IMSFFile.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/MSFError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIATable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBFrameData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBInjectedSource.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSectionContrib.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/Formatters.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/Hash.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InjectedSourceStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NamedStreamMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumInjectedSources.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.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/NativeSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.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/PDBStringTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PublicsStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawConstants.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiHashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDB.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/UDTLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Demangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/DemangleConfig.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/ItaniumDemangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/MicrosoftDemangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/README.txt
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/StringView.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Utility.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/GenericValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Interpreter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITLink
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/MCJIT.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.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/RawByteChannel.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/Orc/ThreadSafeModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/OrcV1Deprecation.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/FuzzerCLI.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/IRMutator.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/OpDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/Operations.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/Random.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/RandomIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Argument.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/AssemblyAnnotationWriter.h
/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/AutoUpgrade.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CFGDiff.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/Comdat.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Constant.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ConstantFolder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ConstantRange.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Constants.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/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedUser.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/DiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DomTreeUpdater.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/GVMaterializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRPrintingPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InlineAsm.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstrTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instruction.def
/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.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/IntrinsicsARM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsBPF.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsMips.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsRISCV.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsX86.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsXCore.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LLVMContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassNameParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/MDBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Mangler.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Module.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSlotTracker.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/NoFolder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/OperandTraits.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/PassInstrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassTimingInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PredIteratorCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ProfileSummary.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/RemarkStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/RuntimeLibcalls.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SafepointIRVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Statepoint.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SymbolTableListTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TrackingMDRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TypeFinder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Use.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/UseListOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/User.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/ValueHandle.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueSymbolTable.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/LTOBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/SummaryBasedOptimizations.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/UpdateCompilerUsed.h
/freebsd-11-stable/contrib/llvm/include/llvm/LineEditor/LineEditor.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/Linker/IRMover.h
/freebsd-11-stable/contrib/llvm/include/llvm/Linker/Linker.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/ConstantPools.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/LaneBitmask.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAnalysis
/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/MCAsmInfoCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoXCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmLayout.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/MCCodeEmitter.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/MCDirectives.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCRelocationInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCSymbolizer.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/MCFixedLenDisassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFixup.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFixupKindInfo.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/MCInstBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrItineraries.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCLinkerOptimizationHint.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/MCObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/AsmCond.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.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/MCSection.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionMachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionXCOFF.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/MCSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolMachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolXCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
/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/MCWin64EH.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/MCWinEH.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCXCOFFObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCXCOFFStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MachineLocation.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SectionKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/StringTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SubtargetFeature.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Context.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HWEventListener.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/HardwareUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/RegisterFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/ResourceManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/RetireControlUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/InstrBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Instruction.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Pipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/SourceMgr.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/DispatchStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/EntryStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/ExecuteStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/InstructionTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/MicroOpQueueStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/RetireStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/Stage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Support.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/COFFModuleDefinition.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/CVDebugRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Decompressor.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/Error.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/MachOUniversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Minidump.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ModuleSymbolTable.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/RelocationResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/StackMapParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/SymbolSize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/SymbolicFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Wasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/WasmTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/WindowsMachineFlag.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/WindowsResource.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/XCOFFObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/COFFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLDebugSections.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLSymbols.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/DWARFEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/DWARFYAML.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/MinidumpYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/ObjectYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/WasmYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/XCOFFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/YAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/Arg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/ArgList.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptParser.td
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptSpecifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/Option.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/Passes/PassPlugin.h
/freebsd-11-stable/contrib/llvm/include/llvm/Passes/StandardInstrumentations.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/Coverage/CoverageMappingWriter.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/InstrProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/ProfileCommon.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/ProfileData/SampleProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Remarks
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AMDGPUMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AMDHSAKernelDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMAttributeParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMEHABI.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMTargetParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMWinEH.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AlignOf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ArrayRecycler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Atomic.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/BinaryStreamArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamError.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BlockFrequency.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BranchProbability.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BuryPointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CBindingWrapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CFGUpdate.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/COM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CRC.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CachePruning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Capacity.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Casting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CheckedArithmetic.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/CodeGenCoverage.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CommandLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compression.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ConvertUTF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DJB.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DOTGraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Debug.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DebugCounter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DynamicLibrary.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Endian.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/EndianStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Errc.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Errno.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorOr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileCheck.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/FileUtilities.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Format.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatAdapters.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatProviders.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/FormattedStream.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/GenericIteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GlobPattern.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GraphWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/InitLLVM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/JSON.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/JamCRC.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/LineIterator.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/MSVCErrorWorkarounds.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachineValueType.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MemAlloc.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/MipsABIFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Mutex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MutexGuard.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/NativeFormatting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/OnDiskHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Options.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Parallel.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Path.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PluginLoader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PrettyStackTrace.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/RWMutex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RandomNumberGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Recycler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RecyclingAllocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Regex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Registry.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SHA1.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SMLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SMTAPI.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SaveAndRestore.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScalableSize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScaledNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScopedPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Signals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Signposts.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SmallVectorMemoryBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Solaris/sys/regset.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/StringPool.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StringSaver.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SwapByteOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SymbolRemappingReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SystemUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TarWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetOpcodes.def
/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/TargetSelect.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TaskQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ThreadLocal.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/TimeProfiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Timer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ToolOutputFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrigramIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TypeName.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Unicode.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/UniqueLock.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Valgrind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/VersionTuple.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Watchdog.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Win64EH.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/WindowsError.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/WithColor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.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/circular_raw_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/raw_os_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/raw_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/raw_sha1_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/thread.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/type_traits.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Main.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/SearchableTable.td
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/SetTheory.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringMatcher.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringToOffsetTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/TableGenBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/CodeGenCWrappers.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GenericOpcodes.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GlobalISel/RegisterBank.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GlobalISel/Target.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/Target.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetCallingConv.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetInstrPredicate.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetItinerary.td
/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/TargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetPfmCounters.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm/include/llvm/Testing/Support/Annotations.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/TextAPI/ELF/ELFStub.h
/freebsd-11-stable/contrib/llvm/include/llvm/TextAPI/ELF/TBEHandler.h
/freebsd-11-stable/contrib/llvm/include/llvm/TextAPI/MachO
/freebsd-11-stable/contrib/llvm/include/llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ToolDrivers/llvm-lib/LibDriver.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ArgumentPromotion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Attributor.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/CrossDSOCFI.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/ForceFunctionAttrs.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/HotColdSplitting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Inliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Internalize.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/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SampleProfile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/AddressSanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/BoundsChecking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/CGProfile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/GCOVProfiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/HWAddressSanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/InstrOrderFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/PoisonChecking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/ObjCARC.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/AlignmentFromAssumptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/BDCE.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/DCE.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/Float2Int.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/GuardWidening.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/InstSimplifyPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LICM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopFuse.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/LoopPredication.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerAtomic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerWidenableCondition.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MergeICmps.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.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/PartiallyInlineLibCalls.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/Scalarizer.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/Sink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SpeculateAroundPHIs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/WarnMissedTransforms.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.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/BreakCriticalEdges.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.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/CanonicalizeAliases.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CtorUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/EntryExitInstrumenter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.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/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/GuardUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LCSSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LowerInvoke.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/NameAnonGlobals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterBulk.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SanitizerStats.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/SizeOpts.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/UnifyFunctionExitNodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/VNCoercion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.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/WindowsManifestMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource/ResourceProcessor.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource/ResourceScriptToken.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource/ResourceScriptTokenList.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/BlockIndexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/BlockPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/BlockVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRLogBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRRecordConsumer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRRecordProducer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRRecords.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRTraceExpander.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRTraceWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FileHeaderReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/InstrumentationMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Profile.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/RecordPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Trace.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/lib/Analysis/AliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Analysis.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/CFG.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/CallPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CaptureTracking.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/Delinearization.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DemandedBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DomPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DomTreeUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/EHPersonalities.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVDescriptors.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVUsers.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/InstCount.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InstructionPrecedenceTracking.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/IteratedDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBranchProbabilityInfo.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/LegacyDivergenceAnalysis.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/MemDepPrinter.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/MemoryLocation.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/MustExecute.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/ObjCARCInstKind.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OrderedInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PHITransAddr.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PhiValues.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/RegionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/StackSafetyAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/StratifiedSets.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/SyntheticCountsUtils.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/TypeMetadataUtils.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/LLLexer.h
/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/AMDGPUMetadataVerifier.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/BinaryFormat/Minidump.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackDocument.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackDocumentYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackReader.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/Wasm.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.h
/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/BitWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.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/Bitstream
/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/AccelTable.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/ByteStreamer.h
/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/DIEHash.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.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/DwarfException.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/DwarfUnit.h
/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/WasmException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h
/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/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/BreakFalseDeps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BuiltinGCs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CFIInstrInserter.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/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/ExecutionDomainFix.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/FaultMaps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FinalizeISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FuncletLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCMetadataPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCStrategy.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/GISelChangeObserver.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/LegalityPredicates.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/LegalizeMutations.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/HardwareLoops.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/InterleavedLoadCombinePass.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/LazyMachineBlockFrequencyInfo.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/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/LiveRangeUtils.h
/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/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/LoopTraversal.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LowLevelType.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/MIParser.h
/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/MachineDominanceFrontier.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/MachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.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/MachineLoopInfo.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/MachinePostDominators.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineRegionInfo.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/PHIEliminationUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PHIEliminationUtils.h
/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/ReachingDefAnalysis.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/InstrEmitter.h
/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/ScheduleDAGSDNodes.h
/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/SjLjEHPrepare.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/SwiftErrorValueTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SwitchLoweringUtils.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/ValueTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/WasmEHPrepare.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/CodeViewError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugLinesSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/Formatters.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/Line.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/SymbolRecordHelpers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.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/TypeIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordHelpers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.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/DWARFAddressRange.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/DWARFDebugAddr.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.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/DWARFDebugInfoEntry.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/DWARFDebugMacro.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/DWARFDebugRnglists.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/DWARFGdbIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFListTable.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/GSYM
/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/MSFError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAFrameData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.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/EnumTables.cpp
/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/Hash.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/HashTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InjectedSourceStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NamedStreamMap.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumModules.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/NativeSymbolEnumerator.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeUDT.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/RawError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStream.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/PDBContext.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/PDBSymDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/Demangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/ItaniumDemangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/MicrosoftDemangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/MicrosoftDemangleNodes.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/GDBRegistrationListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/JIT
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/JITLink
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/CompileUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Core.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Layer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.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.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
/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/RuntimeDyldCOFFX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.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/FuzzerCLI.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/IRMutator.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/OpDescriptor.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/Operations.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/RandomIRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AbstractCallSite.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeImpl.h
/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/Comdat.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantFold.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantFold.h
/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/ConstantsContext.h
/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/DiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DomTreeUpdater.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/GVMaterializer.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/Mangler.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/MetadataImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/Module.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Operator.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/PassInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassRegistry.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassTimingInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ProfileSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/RemarkStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/SafepointIRVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Statepoint.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/SymbolTableListTraitsImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/Type.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/TypeFinder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Use.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/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/SummaryBasedOptimizations.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/LineEditor/LineEditor.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/IRMover.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/LinkDiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/lib/Linker/LinkModules.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ConstantPools.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAnalysis
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoWasm.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoXCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmMacro.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/MCCodeEmitter.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/MCDisassembler/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCSymbolizer.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/MCInst.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstrAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstrDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachOStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachObjectTargetWriter.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/MCObjectWriter.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/MCAsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParserExtension.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/WasmAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSchedule.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSection.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionMachO.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionWasm.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionXCOFF.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/MCSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbolELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCTargetOptions.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCValue.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWasmObjectTargetWriter.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/MCWinEH.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCXCOFFObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCXCOFFStreamer.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/SubtargetFeature.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/MC/XCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Context.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HWEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/HardwareUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/LSUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/RegisterFile.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/RetireControlUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/Scheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/InstrBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Instruction.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Pipeline.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/DispatchStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/EntryStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/ExecuteStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/InstructionTables.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/MicroOpQueueStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/RetireStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/Stage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Support.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/Binary.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/Decompressor.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/Error.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/MachOUniversal.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Minidump.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ModuleSymbolTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Object.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/RelocationResolver.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/SymbolSize.cpp
/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/WindowsMachineFlag.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/WindowsResource.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/XCOFFObjectFile.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/DWARFVisitor.h
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFYAML.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/MinidumpYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/ObjectYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/XCOFFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/YAML.cpp
/freebsd-11-stable/contrib/llvm/lib/OptRemarks
/freebsd-11-stable/contrib/llvm/lib/Option/Arg.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/ArgList.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/OptTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/Option.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassPlugin.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassRegistry.def
/freebsd-11-stable/contrib/llvm/lib/Passes/StandardInstrumentations.cpp
/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/InstrProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProf.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/Remarks
/freebsd-11-stable/contrib/llvm/lib/Support/AArch64TargetParser.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/APSInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMAttributeParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMBuildAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMTargetParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMWinEH.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Allocator.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Atomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamError.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamReader.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/BranchProbability.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BuryPointer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/COM.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CRC.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/Compression.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTF.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CrashRecoveryContext.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DJB.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Debug.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DeltaAlgorithm.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DynamicLibrary.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Errno.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ErrorHandling.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileCheck.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileOutputBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileUtilities.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/FormattedStream.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/Hashing.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Host.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/InitLLVM.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/IntEqClasses.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/IntervalMap.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/JSON.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/JamCRC.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/KnownBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LEB128.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LineIterator.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/ManagedStatic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MathExtras.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Memory.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Mutex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/NativeFormatting.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Optional.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Options.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/PluginLoader.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/PrettyStackTrace.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/RWMutex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/RandomNumberGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Regex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SHA1.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ScaledNumber.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Signals.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Signposts.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/StringPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringSaver.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SymbolRemappingReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SystemUtils.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/ThreadLocal.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/TimeProfiler.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/TrigramIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Twine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Unicode.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/COM.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Host.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Memory.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Mutex.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/RWMutex.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/ThreadLocal.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Unix.h
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Watchdog.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Valgrind.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/VersionTuple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/VirtualFileSystem.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Watchdog.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/COM.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Host.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Memory.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Mutex.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/RWMutex.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/ThreadLocal.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Watchdog.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm/lib/Support/WithColor.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLTraits.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Z3Solver.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/circular_raw_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/raw_os_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/raw_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/JSONBackend.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/SetTheory.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/StringMatcher.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGLexer.h
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.h
/freebsd-11-stable/contrib/llvm/lib/TableGen/TableGenBackend.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/AArch64BranchTargets.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.cpp
/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/AArch64CompressJumpTables.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/AArch64ExpandImm.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ExpandImm.h
/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/AArch64MCInstLower.h
/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/AArch64MacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PerfectShuffle.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PfmCounters.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.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.h
/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/AArch64SchedA57WriteRes.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkorDetails.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedKryo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedPredicates.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/AArch64Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64StackTagging.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.cpp
/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/AsmParser/AArch64AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.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/AArch64FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.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/AArch64MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
/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/AArch64TargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
/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/TargetInfo/AArch64TargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.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/AMDGPUAnnotateUniformValues.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/AMDGPUAtomicOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
/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/AMDGPUFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFixFunctionBitcasts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
/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/AMDGPUIntrinsicInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
/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/AMDGPULowerIntrinsics.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelAttributes.cpp
/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/AMDGPUMachineFunction.h
/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/AMDGPUMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUOpenCLEnqueuedBlockLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPropagateAttributes.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegAsmNames.inc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
/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/AMDGPUSearchableTables.td
/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/AMDGPUTargetObjectFile.h
/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/AMDKernelCodeT.h
/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/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/GCNDPPCombine.cpp
/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/GCNNSAReassign.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNProcessors.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
/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/GCNSchedStrategy.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
/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/AMDGPUFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.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/R600MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCTargetDesc.cpp
/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/R600.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.h
/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/R600Defines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.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/R600ISelLowering.h
/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/R600MachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600OpenCLImageTypeLoweringPass.cpp
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R700Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixVGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixWWMLiveness.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.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/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/SIIntrinsics.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/SILowerSGPRSpills.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/SIModeRegister.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/SIPreAllocateWWMRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIProgramInfo.h
/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/SISchedule.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/TargetInfo/AMDGPUTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
/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/AMDGPUPALMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUPALMetadata.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.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/VIInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VIInstructions.td
/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/ARC.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARC.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCBranchFinalize.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCExpandPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.h
/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/ARMBasicBlockInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBasicBlockInfo.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.cpp
/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/ARMCodeGenPrepare.cpp
/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/ARMFeatures.h
/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/ARMHazardRecognizer.h
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrMVE.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/ARMLegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMParallelDSP.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMPerfectShuffle.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMPredicates.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.h
/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/ARMScheduleA57WriteRes.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA8.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleM3.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleM4.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleV6.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
/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/ARMTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.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
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/LICENSE.TXT
/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/ARMFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h
/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/ARMUnwindOpAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
/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/TargetInfo/ARMTargetInfo.h
/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/Thumb2ITBlockPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h
/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/ARMBaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVR.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVR.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRCallingConv.td
/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/AVRISelDAGToDAG.cpp
/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/AVRInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
/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/AVRRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSubtarget.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/AVRTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/InstPrinter
/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/AVRELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.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/MCTargetDesc/AVRTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPF.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPF.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFAbstractMemberAccess.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFCORE.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFFrameLowering.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.cpp
/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/BPFMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMIChecking.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMIPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMISimplifyPatchable.cpp
/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/BPFSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFSelectionDAGInfo.h
/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/BTF.def
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTF.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTFDebug.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTFDebug.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/InstPrinter
/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/BPFInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
/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/BPF/TargetInfo/BPFTargetInfo.h
/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/HexagonBranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCallingConv.td
/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/HexagonDepDecoders.inc
/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/HexagonDepMapAsm2Intrin.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/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/HexagonHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIICHVX.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIICScalar.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/HexagonInstrFormatsV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.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/HexagonIntrinsicsV5.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/HexagonMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
/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/HexagonOptimizeSZextends.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/HexagonScheduleV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV65.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV66.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
/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/HexagonTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetStreamer.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/HexagonVExtract.cpp
/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/HexagonFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
/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/HexagonMCCompound.cpp
/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/HexagonMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.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/RDFDeadCode.h
/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/Hexagon/TargetInfo/HexagonTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Lanai.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Lanai.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiAluCode.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
/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/LanaiInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.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/LanaiRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSubtarget.cpp
/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/LanaiTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.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/LanaiBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.h
/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/Lanai/TargetInfo/LanaiTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430CallingConv.td
/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/MSP430InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.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/MSP430RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp
/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/MSP430/TargetInfo/MSP430TargetInfo.h
/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
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h
/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/MipsBaseInfo.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/MipsFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
/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/MipsMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.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/MipsOptionRecord.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/MicroMipsDSPInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.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/Mips.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips.td
/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/Mips16HardFloatInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloatInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td
/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/Mips16RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
/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/MipsBranchExpansion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCCState.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallingConv.td
/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/MipsDSPInstrFormats.td
/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/MipsEVAInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsEVAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
/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/MipsInstrFormats.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/MipsInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.h
/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/MipsMSAInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMTInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMTInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOptionRecord.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBanks.td
/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/MipsSEISelDAGToDAG.h
/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/MipsSEInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSchedule.td
/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/MipsTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/ManagedStringPool.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
/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/NVPTXGenericToNVVM.cpp
/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/NVPTXImageOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/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/NVPTXLowerAggrCopies.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
/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/NVPTXProxyRegErasure.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/NVPTXRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.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/NVPTXUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter
/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/PPCFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
/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/PPC.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.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/PPCCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCCState.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
/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/PPCHazardRecognizers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.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/PPCInstrBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrHTM.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/PPCInstrQPX.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrSPE.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/PPCMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCPfmCounters.td
/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.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/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/PPCTOCRegDeps.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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetStreamer.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/PPCVSXCopy.cpp
/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/README_P9.txt
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
/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/RISCVAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.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/MCTargetDesc/RISCVTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.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/RISCVExpandPseudoInsts.cpp
/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/RISCVMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.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/RISCVSystemOperands.td
/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/RISCVTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Utils/RISCVMatInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Utils/RISCVMatInt.h
/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/Disassembler/SparcDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/InstPrinter
/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/SparcFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
/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/MCTargetDesc/SparcTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcCallingConv.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/SparcISelDAGToDAG.cpp
/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/SparcInstr64Bit.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/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/SparcInstrVIS.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h
/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/SparcRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSchedule.td
/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/SparcTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h
/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.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFeatures.td
/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/SystemZInstrBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrDFP.td
/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/SystemZInstrHFP.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/SystemZLongBranch.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
/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/SystemZOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZPatterns.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZPostRewrite.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.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/SystemZSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleArch13.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTDC.cpp
/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/SystemZ/TargetInfo/SystemZTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetIntrinsicInfo.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/AsmParser/WebAssemblyAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
/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/README.txt
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.h
/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/WebAssemblyAddMissingPrototypes.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
/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/WebAssemblyCFGSort.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyEHRestoreStackPointer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.h
/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/WebAssemblyISD.def
/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/WebAssemblyInstrBulkMemory.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrExceptRef.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/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/WebAssemblyInstrInteger.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrRef.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.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/WebAssemblyMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.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/WebAssemblyRegNumbering.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/WebAssemblyRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.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/WebAssemblyTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
/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/X86AsmParserCommon.h
/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/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.h
/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/X86FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86InstComments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86InstComments.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86InstPrinterCommon.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCExpr.h
/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/ShadowCallStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
/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/X86AvoidStoreForwardingBlocks.cpp
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallingConv.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/X86CondBrFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86DiscriminateMemOps.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/X86FixupSetCC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FlagsCopyLowering.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/X86IndirectBranchTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InsertPrefetch.cpp
/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/X86InstrBuilder.h
/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/X86InstrFMA3Info.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFoldTables.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFoldTables.h
/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/X86LegalizerInfo.h
/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/X86MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MacroFusion.h
/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/X86PfmCounters.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBanks.td
/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/X86SchedPredicates.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/X86ScheduleBdVer2.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/X86SelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SpeculativeLoadHardening.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/Disassembler/XCoreDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCore.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCore.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreCallingConv.td
/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/XCoreFrameToArgsOffsetElim.cpp
/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/XCoreInstrFormats.td
/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/XCoreInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
/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/XCoreRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSubtarget.cpp
/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/XCoreTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Testing/Support/Annotations.cpp
/freebsd-11-stable/contrib/llvm/lib/Testing/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/TextAPI/ELF/ELFStub.cpp
/freebsd-11-stable/contrib/llvm/lib/TextAPI/ELF/TBEHandler.cpp
/freebsd-11-stable/contrib/llvm/lib/TextAPI/MachO
/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/ToolDrivers/llvm-lib/Options.td
/freebsd-11-stable/contrib/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroElide.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroInstr.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroInternal.h
/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/Attributor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/BlockExtractor.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/HotColdSplitting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.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/Internalize.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/SCCP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.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/InstCombineAtomicRMW.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/CGProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.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/InstrOrderFile.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/MaximumSpanningTree.h
/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/PoisonChecking.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.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/DependencyAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.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/ProvenanceAnalysisEvaluator.cpp
/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/AlignmentFromAssumptions.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/ConstantProp.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DCE.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/FlattenCFGPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Float2Int.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/IVUsersPrinter.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/InstSimplifyPass.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/LoopAccessAnalysisPrinter.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/LoopFuse.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/LoopPassManager.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/LoopSimplifyCFG.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/LoopUnrollAndJamPass.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/LowerExpectIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerWidenableCondition.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.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/Reg2Mem.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/SpeculativeExecution.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/Scalar/WarnMissedTransforms.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/BuildLibCalls.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/CanonicalizeAliases.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/CodeExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.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/GlobalStatus.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InstructionNamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Local.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopRotationUtils.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/LoopUnrollAndJam.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/LoopVersioning.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerInvoke.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/NameAnonGlobals.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/SSAUpdaterBulk.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SanitizerStats.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/SimplifyLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SizeOpts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SplitModule.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.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/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/VNCoercion.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/LoopVectorizationLegality.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
/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/VPRecipeBuilder.h
/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/VPlanDominatorTree.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanLoopInfo.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanPredicator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanPredicator.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanValue.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp
/freebsd-11-stable/contrib/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/BlockIndexer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/BlockPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/BlockVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRRecordProducer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRRecords.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRTraceExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRTraceWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FileHeaderReader.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/InstrumentationMap.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/LogBuilderConsumer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/Profile.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/RecordInitializer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/RecordPrinter.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/ListReducer.h
/freebsd-11-stable/contrib/llvm/tools/bugpoint/Miscompilation.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/ToolRunner.h
/freebsd-11-stable/contrib/llvm/tools/bugpoint/bugpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/tools/clang/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/BuildSystem.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/CXErrorCode.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/CXString.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Documentation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Index.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Platform.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/APValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AST.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContextAllocate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDumper.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDumperUtils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTFwd.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporterLookupTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporterSharedState.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTLambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTNodeTraverser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.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/Attr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AttrVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Availability.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/Comment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ComparisonCategories.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CurrentSourceLocExprScope.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/DeclAccessPair.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/EvaluatedExprVisitor.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/ExprOpenMP.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/FormatString.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/JSONNodeDumper.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LambdaCapture.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LexicallyOrderedRecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LocInfoType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Mangle.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NonTrivialTypeVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ODRHash.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OSLog.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/ParentMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/PrettyDeclStackTrace.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/RawCommentList.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/SelectorLocationsKind.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.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/StmtObjC.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/TemplateArgumentVisitor.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/TextNodeDumper.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/TypeLocNodes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeOrdering.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeVisitor.h
/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/AST/VTableBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.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/Diagnostics.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/ASTMatchers/Dynamic/VariantValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.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/ExprMutationAnalyzer.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/ReachableCode.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/ThreadSafetyLogical.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyOps.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnyCall.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/CFGStmtMap.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/CodeInjector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/ConstructionContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowValues.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/RetainSummaryManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/SelectorExtras.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ABI.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/AttrKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AttrSubjectMatchRules.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Attributes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BitmaskEnum.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/BuiltinsLe64.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.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/BuiltinsXCore.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CharInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CommentOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.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/DiagnosticAST.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysis.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticComment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTU.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTUKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDocs.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriver.h
/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/DiagnosticFrontend.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/DiagnosticLex.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParse.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoring.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoringKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSema.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Features.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FixedPoint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/JsonSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Lambda.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/Linkage.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/MSP430Target.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/MemoryBufferCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensionTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PragmaKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.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/Stack.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SyncScope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.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/TemplateKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Version.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Visibility.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/X86Target.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/XRayInstr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/XRayLists.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_fp16.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitBuilder.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/CodeGen/ObjectFilePCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTUDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTranslationUnit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/DirectoryWatcher
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Action.h
/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/ClangOptionDocs.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/DarwinSDKInfo.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/DriverDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Job.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Multilib.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Options.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Options.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Phases.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Tool.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Util.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/XRayArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/Commit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/EditedSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/EditsReceiver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/FileOffset.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/Rewriters.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.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/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.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/LayoutOverrideSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/FrontendTool/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/CommentToXML.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/DeclOccurrence.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/Index/IndexingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/DependencyDirectivesSourceMinimizer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMapTypes.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/LexDiagnostic.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/PPConditionalDirectiveRecord.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/ScratchBuffer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Token.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/TokenConcatenation.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/LoopHint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/ParseAST.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.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/Rewrite/Core/DeltaTree.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/Rewriters.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CleanupInfo.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/DelayedDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Designator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.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/ParsedAttr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.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/SemaConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaLambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Template.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateInstCallback.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Weak.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.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/GlobalModuleIndex.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/InMemoryModuleCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.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.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/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/CommonBugCategories.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/Checker.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.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/BasicValueFactory.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.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/CheckerHelpers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.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/DynamicTypeInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.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/FunctionSummary.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/LoopWidening.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/ProgramStateTrait.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Regions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTExpr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSort.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.def
/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/SimpleConstraintManager.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/StoreRef.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.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/StaticAnalyzer/Core/PathSensitive/Symbols.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiff.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiffInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
/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/CompilationDatabasePluginRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/DependencyScanning
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Execution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/FixIt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Inclusions/HeaderIncludes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Inclusions/IncludeStyle.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.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/Extract.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RangeSelector.h
/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/USRFinder.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/Refactoring/SourceCode.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Stencil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Transformer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/StandaloneExecution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Syntax
/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/lib/ARCMigrate/ARCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/APValue.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.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/ASTImporterLookupTable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/AttrImpl.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/Comment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ComparisonCategories.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/DeclOpenMP.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/FormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/InheritViz.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/JSONNodeDumper.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/ParentMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/QualTypeNames.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RawCommentList.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/ScanfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtIterator.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtObjC.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/StmtViz.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/TextNodeDumper.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/Diagnostics.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/ASTMatchers/Dynamic/VariantValue.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/CFG.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CFGStmtMap.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/CodeInjector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ConstructionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/RetainSummaryManager.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/ThreadSafetyLogical.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/Analysis/plugins
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/CharInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/CodeGenOptions.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/DiagnosticOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FixedPoint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/MemoryBufferCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/ObjCRuntime.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/Sanitizers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SourceLocation.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.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AVR.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AVR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/BPF.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/BPF.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Lanai.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Lanai.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Le64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Le64.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/MSP430.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/MSP430.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PNaCl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PNaCl.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SystemZ.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SystemZ.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/TCE.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/TCE.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.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/Targets/XCore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/XCore.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/TokenKinds.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Version.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Warnings.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/XRayInstr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/XRayLists.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/Address.h
/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/CGBlocks.h
/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/CGCUDANV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
/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/CGCall.h
/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/CGCleanup.h
/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/CGGPUBuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.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/CGObjCRuntime.h
/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/CGRecordLayout.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/CGVTables.h
/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/CodeGenPGO.h
/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/ConstantInitBuilder.cpp
/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/EHScopeStack.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
/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/PatternInit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/PatternInit.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.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/CodeGen/VarBypassDetector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CrossTU/CrossTranslationUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/DirectoryWatcher
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Action.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/DarwinSDKInfo.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/InputInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Job.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Multilib.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Phases.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tool.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/AVR.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/AVR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Ananas.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Ananas.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.h
/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/RISCV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.h
/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/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/CloudABI.h
/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/Contiki.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Contiki.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.h
/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/DragonFly.h
/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/Gnu.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Haiku.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Haiku.h
/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/Hurd.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Lanai.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h
/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/Minix.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Myriad.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Myriad.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NaCl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NaCl.h
/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/OpenBSD.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PPCLinux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PPCLinux.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/TCE.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/TCE.h
/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/ToolChains/XCore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/XCore.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Types.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/Commit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.h
/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/Encoding.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/SortJavaScriptImports.h
/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/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.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/CreateInvocationFromCommandLine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.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/FrontendOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendTiming.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.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/InterfaceStubFunctionsConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/LangStandards.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.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/FixItRewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteMacros.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/Rewrite/RewriteTest.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.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_builtin_vars.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_device_functions.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_libdevice_declares.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/__stddef_max_align_t.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/adxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/altivec.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ammintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/arm64intr.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/arm_acle.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/armintr.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bf16intrin.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/avx512erintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512pfintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlbf16intrin.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/avx512vlvp2intersectintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vnniintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vp2intersectintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqvlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cetintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cldemoteintrin.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/clzerointrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cpuid.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/enqcmdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/f16cintrin.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/fxsrintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/gfniintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ia32intrin.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/inttypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/invpcidintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/iso646.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/limits.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/lwpintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mm_malloc.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/movdirintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/msa.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mwaitxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/nmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/opencl-c-base.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/openmp_wrappers
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pconfigintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pkuintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ppc_wrappers
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/prfchwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ptwriteintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/rtmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/s390intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/sgxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/shaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdalign.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdarg.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdatomic.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdbool.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stddef.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdint.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdnoreturn.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tbmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tgmath.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/unwind.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vadefs.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vaesintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/varargs.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vecintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vpclmulqdqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/waitpkgintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/wbnoinvdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/x86intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xopintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsavecintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsaveintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsaveoptintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsavesintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xtestintrin.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/FileIndexRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/FileIndexRecord.h
/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/IndexingContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/SimpleFormatContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/HeaderMap.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/PPCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPExpressions.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/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/ScratchBuffer.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/Lex/UnicodeCharSets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseAST.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/ParseInit.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/DeltaTree.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/TokenRewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/CoroutineStmtBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.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/OpenCLBuiltins.td
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/ParsedAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Scope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.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/SemaConsumer.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/SemaFixItUtils.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/SemaModule.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/Sema/TypeLocBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.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/GeneratePCH.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/InMemoryModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleFileExtension.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/Serialization/PCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.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/CXXSelfAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastValueChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.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/DeadStoresChecker.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/DereferenceChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.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/InnerPointerChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MIGChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Move.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/OSObjectCStyleCast.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerIterationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSortingChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnValueChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SmartPtrModeling.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Taint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Taint.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObject.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.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/BlockCounter.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/Checker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.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/ExprEngineCallAndReturn.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.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/LoopWidening.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/PlistDiagnostics.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/RetainSummaryManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.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/SubEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TaintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/WorkList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
/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/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/DependencyScanning
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Execution.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/FixIt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/GuessTargetAndModeCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Inclusions/IncludeStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring.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/Extract.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/RangeSelector.cpp
/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/USRFinder.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/Refactoring/SourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Stencil.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Transformer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/StandaloneExecution.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Syntax
/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/cc1_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1gen_reproducer_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/driver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangOpenCLBuiltinEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.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/CMakeLists.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/DLL.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/DebugTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/DebugTypes.h
/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/ICF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/ICF.h
/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/MapFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MarkLive.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/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/TypeMerger.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/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/Common/ErrorHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Filesystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Reproduce.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Strings.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/TargetOptionsCommandFlags.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Threads.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Timer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Version.cpp
/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/Hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/MSP430.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/RISCV.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/CallGraphSort.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/CallGraphSort.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Config.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/DWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/DWARF.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/Filesystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Filesystem.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ICF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ICF.h
/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/MarkLive.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/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/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/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/lld/docs/NewLLD.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/Partitions.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/ReleaseNotes.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/WebAssembly.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/conf.py
/freebsd-11-stable/contrib/llvm/tools/lld/docs/getting_started.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/index.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/ld.lld.1
/freebsd-11-stable/contrib/llvm/tools/lld/docs/missingkeyfunction.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/partitions.dot
/freebsd-11-stable/contrib/llvm/tools/lld/docs/partitions.svg
/freebsd-11-stable/contrib/llvm/tools/lld/docs/sphinx_intro.rst
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Args.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/ErrorHandler.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Filesystem.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/LLVM.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Reproduce.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Strings.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/TargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Threads.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Version.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/AbsoluteAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/ArchiveLibraryFile.h
/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/File.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Instrumentation.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/LinkingContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Node.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Pass.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/Reference.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Resolver.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SharedLibraryAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SharedLibraryFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Simple.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SymbolTable.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/UndefinedAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Writer.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/ReaderWriter/YamlContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/DefinedAtom.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/LinkingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Reader.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/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/Atoms.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/DebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
/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/LayoutPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.h
/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/MachOPasses.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h
/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/MachO/TLVPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.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/lldb/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/tools/lldb/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBlock.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/SBBroadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommunication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDeclaration.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/SBEvent.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBHostOS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInitializerOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBModule.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBPlatform.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/SBQueue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBQueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBReproducer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSourceManager.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/SBSymbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContextList.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/API/SBThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTrace.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTraceOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeNameSpecifier.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSummary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.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/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.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/Breakpoint/BreakpointPrecondition.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Stoppoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointCallbackContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Architecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ClangForward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DumpRegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Highlighter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOStreamMacros.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.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/ModuleChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Opcode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/PluginInterface.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/RichManglingContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/STLUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectRegister.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/dwarf.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/CXXFunctionPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DynamicCheckerFunctions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionTypeSystemHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Materializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ConnectionFileDescriptor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Debug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileAction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostGetOpt.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/OptionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Pipe.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PosixApi.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/SafeMachO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/TaskPool.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Terminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Time.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/XML.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.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/Host/common/NativeWatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/openbsd/HostInfoOpenBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionArgParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArgs.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValues.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Property.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CxxModuleHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/LineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/LineTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/LocateSymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/PostfixExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SourceModule.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TaggedASTType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/VariableList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/VerifyDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ModuleCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.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/ProcessStructReader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Queue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RemoteAwarePlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameRecognizer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallOnFunctionExit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanRunToAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOut.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepThrough.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepUntil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanTracer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnwindAssembly.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Args.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Broadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/CleanUp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Endian.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Environment.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Event.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FileCollector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Flags.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/IOObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Listener.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/NameMatches.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Predicate.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RangeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Reproducer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Scalar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharedCluster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/State.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Status.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Stream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TildeExpressionResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timeout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TraceOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UriParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UserIDResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-defines.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-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-public.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-versioning.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBlock.cpp
/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/SBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommunication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBEvent.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpecList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInitializerOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBListener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModuleSpec.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/SBQueue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBReproducer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBReproducerPrivate.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbolContextList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTrace.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTraceOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/Utils.h
/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/BreakpointLocationCollection.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/Breakpoint/BreakpointPrecondition.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Stoppoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/StoppointCallbackContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h
/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/CommandObjectBreakpointCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h
/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/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.h
/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/Commands/CommandObjectThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/Options.td
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/OptionsBase.td
/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/AddressResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpRegisterValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FileLineResolver.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/Highlighter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Mangled.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ModuleChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Opcode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/RichManglingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatClasses.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Expression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.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/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileAction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/GetOptInc.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/HostNativeThreadBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.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/NativeWatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/OptionParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/PipeBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ProcessRunLock.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/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TaskPool.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Terminal.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.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/freebsd/HostInfoFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/openbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/openbsd/HostInfoOpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.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/CommandObjectRegexCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandOptionValidators.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionArgParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Property.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/embedded_interpreter.py
/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/MacOSX-arm/ABIMacOSX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/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-arm64/ABISysV_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
/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-i386/ABISysV_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/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-ppc/ABISysV_ppc.h
/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-ppc64/ABISysV_ppc64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
/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/ABI/SysV-x86_64/ABISysV_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/Windows-x86_64
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/ArchitecturePPC64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/ArchitecturePPC64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.h
/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/ClangDiagnostic.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/ClangExpressionHelper.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/ClangExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.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/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.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/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ModuleDependencyCollector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
/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/LibCxxAtomic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.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/LibCxxOptional.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/LibCxxVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.h
/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/CPlusPlus/LibStdcpp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h
/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/NSDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
/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.cpp
/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/AppleObjCRuntimeV1.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.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/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h
/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/Breakpad/BreakpadRecords.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.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/Go
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.h
/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/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFUtils.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/DarwinProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.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/ProcessFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
/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_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.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/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/POSIX/CrashReason.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/NativeProcessELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/NativeProcessELF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMDefines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/AuxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/AuxVector.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/DynamicRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InstructionUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
/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/NetBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwinConstants.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.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/RegisterContextDarwin_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.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/RegisterContextLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.h
/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_arm.h
/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_i386.h
/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/RegisterContextMach_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
/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_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.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/RegisterContextThreadMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.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_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.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_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.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_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.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_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64.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_s390x.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/StopInfoMachException.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64-register-enums.h
/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/Utility/lldb-s390x-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-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/GDBRemoteClientBase.h
/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/GDBRemoteCommunicationHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.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/GDBRemoteCommunicationServerCommon.h
/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/GDBRemoteCommunicationServerPlatform.h
/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/GDBRemoteRegisterContext.h
/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/ProcessGDBRemoteLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.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/gdb-remote/ThreadGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/NtStructures.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.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/ScriptInterpreter/None/ScriptInterpreterNone.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
/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/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.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/DWARFDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
/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/DWARFDebugArangeSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.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/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.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/DWARFDebugRanges.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
/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/DWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFTypeUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.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/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.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/DWARF/UniqueDWARFASTType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CodeViewRegisterMapping.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CodeViewRegisterMapping.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbSymUid.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbSymUid.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.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/PDBASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.h
/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/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h
/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/UnwindAssembly-x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.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/Block.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CxxModuleHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/DebugMacros.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/DeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Declaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LocateSymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LocateSymbolFileMacOSX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/PostfixExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.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/TypeList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/VariableList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/VerifyDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/FileAction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoaderList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/OperatingSystem.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/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Queue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RemoteAwarePlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameRecognizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StructuredDataPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Baton.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Connection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.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/Environment.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Event.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/FileCollector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/FileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/IOObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Listener.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/NameMatches.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/PPC64_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/RegisterValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Reproducer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ReproducerInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Scalar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/State.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Status.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Stream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Timer.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/Utility/UserID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UserIDResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UuidCompatibility.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/lldb.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/argdumper/argdumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Options.td
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-instr
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-entitlements.plist
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-macos-entitlements.plist
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/utils
/freebsd-11-stable/contrib/llvm/tools/lli/RemoteJITUtils.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/CoverageExporter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterJson.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.h
/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/RenderingSupport.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/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/gcov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/llvm-cov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/Error.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxmap/llvm-cxxmap.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffConsumer.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffLog.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffLog.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/llvm-diff.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/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/Disassembler.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegion.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegion.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/PipelinePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/PipelinePrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/BottleneckAnalysis.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/BottleneckAnalysis.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/DispatchStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/DispatchStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/InstructionInfoView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/RegisterFileStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/RegisterFileStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/ResourcePressureView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/ResourcePressureView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/SchedulerStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/SchedulerStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/SummaryView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/SummaryView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/TimelineView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/TimelineView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/View.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/View.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/include
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/lib
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/llvm-mca.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/Buffer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/Buffer.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Object.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Object.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Reader.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Reader.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Writer.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/CopyConfig.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/CopyConfig.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ELF/Object.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ELF/Object.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/MachO
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ObjcopyOpts.td
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/StripOpts.td
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/ELFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/WasmDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
/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/DumpOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/ExplainOutputStyle.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/MinimalTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/OutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PdbYaml.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PdbYaml.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyVariableDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyVariableDumper.h
/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/TypeReferenceTracker.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/TypeReferenceTracker.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.h
/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/ARMWinEHPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.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/DwarfCFIEHPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Error.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/MachODumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/StackMapPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/WasmDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Win64EHDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Win64EHDumper.h
/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/XCOFFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
/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/func-id-helper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/func-id-helper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/llvm-xray.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/trie-node.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-account.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-account.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-extract.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-fdr-dump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph-diff.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph-diff.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-registry.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-registry.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-stacks.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/AnalysisWrappers.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/BreakpointPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/BreakpointPrinter.h
/freebsd-11-stable/contrib/llvm/tools/opt/Debugify.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/Debugify.h
/freebsd-11-stable/contrib/llvm/tools/opt/GraphPrinters.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/PrintSCC.cpp
/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/AsmWriterInst.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmWriterInst.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/Attributes.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CTagsEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeEmitterGen.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/CodeGenMapTable.cpp
/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/DAGISelMatcher.h
/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/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/ExegesisEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.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/PredicateExpander.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/PredicateExpander.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/RISCVCompressInstEmitter.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/SubtargetFeatureInfo.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.h
/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/Types.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/Types.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86DisassemblerShared.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/X86ModRMFilters.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86ModRMFilters.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.h
/freebsd-11-stable/contrib/openmp/FREEBSD-Xlist
/freebsd-11-stable/contrib/openmp/LICENSE.txt
/freebsd-11-stable/contrib/openmp/runtime/src/dllexports
/freebsd-11-stable/contrib/openmp/runtime/src/exports_so.txt
/freebsd-11-stable/contrib/openmp/runtime/src/extractExternal.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/i18n/en_US.txt
/freebsd-11-stable/contrib/openmp/runtime/src/include/30
/freebsd-11-stable/contrib/openmp/runtime/src/include/40
/freebsd-11-stable/contrib/openmp/runtime/src/include/45
/freebsd-11-stable/contrib/openmp/runtime/src/include/50
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp-tools.h.var
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp.h.var
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp_lib.f.var
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp_lib.f90.var
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp_lib.h.var
/freebsd-11-stable/contrib/openmp/runtime/src/kmp.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_affinity.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_affinity.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_alloc.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_atomic.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_atomic.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_barrier.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_cancel.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_config.h.cmake
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_csupport.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_debug.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_debug.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_debugger.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_debugger.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_dispatch.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_dispatch.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_dispatch_hier.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_environment.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_environment.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_error.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_error.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_cdecl.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_entry.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_extra.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_os.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_stdcall.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_global.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_gsupport.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_i18n.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_i18n.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_import.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_io.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_io.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_itt.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_itt.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_itt.inl
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_lock.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_lock.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_omp.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_os.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_platform.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_runtime.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_safe_c_api.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_sched.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_settings.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_settings.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stats.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stats.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stats_timing.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stats_timing.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_str.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_str.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stub.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stub.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_taskdeps.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_taskdeps.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_tasking.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_taskq.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_threadprivate.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_utility.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_version.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_version.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_wait_release.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_wait_release.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_wrapper_getpid.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_wrapper_malloc.h
/freebsd-11-stable/contrib/openmp/runtime/src/libomp.rc.var
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-event-specific.h
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-general.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-internal.h
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-specific.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-specific.h
/freebsd-11-stable/contrib/openmp/runtime/src/test-touch.c
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/disable_warnings.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify_config.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.c
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify_types.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/legacy/ittnotify.h
/freebsd-11-stable/contrib/openmp/runtime/src/tsan_annotations.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/tsan_annotations.h
/freebsd-11-stable/contrib/openmp/runtime/src/z_Linux_asm.S
/freebsd-11-stable/contrib/openmp/runtime/src/z_Linux_util.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/z_Windows_NT-586_asm.asm
/freebsd-11-stable/contrib/openmp/runtime/src/z_Windows_NT-586_util.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/z_Windows_NT_util.cpp
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/lib/Makefile
/freebsd-11-stable/lib/atf/libatf-c++/Makefile
/freebsd-11-stable/lib/clang/freebsd_cc_version.h
/freebsd-11-stable/lib/clang/headers/Makefile
/freebsd-11-stable/lib/clang/include/VCSVersion.inc
/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/Version.inc
/freebsd-11-stable/lib/clang/include/lldb/Host/Config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/abi-breaking.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/clang/llvm.build.mk
Makefile
/freebsd-11-stable/lib/libc++fs
/freebsd-11-stable/lib/libclang_rt/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/cfi
/freebsd-11-stable/lib/libclang_rt/cfi_diag
/freebsd-11-stable/lib/libclang_rt/dd
/freebsd-11-stable/lib/libclang_rt/fuzzer/Makefile
/freebsd-11-stable/lib/libclang_rt/fuzzer_no_main/Makefile
/freebsd-11-stable/lib/libclang_rt/include/Makefile
/freebsd-11-stable/lib/libclang_rt/msan_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/profile/Makefile
/freebsd-11-stable/lib/libclang_rt/safestack/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/lib/libclang_rt/xray
/freebsd-11-stable/lib/libclang_rt/xray-basic
/freebsd-11-stable/lib/libclang_rt/xray-fdr
/freebsd-11-stable/lib/libclang_rt/xray-profiling
/freebsd-11-stable/lib/libcompiler_rt/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/lib/libdevdctl/Makefile
/freebsd-11-stable/lib/libgcc_s/Makefile
/freebsd-11-stable/lib/libgcc_s/Symbol.map
/freebsd-11-stable/lib/libgcc_s/SymbolDefault.map
/freebsd-11-stable/lib/libgcc_s/Version.map
/freebsd-11-stable/lib/libgcc_s/Versions.def
/freebsd-11-stable/lib/libgcc_s/arm
/freebsd-11-stable/lib/libgcc_s/arm/Symbol.map
/freebsd-11-stable/lib/libomp/Makefile
/freebsd-11-stable/lib/libomp/kmp_config.h
/freebsd-11-stable/lib/libomp/kmp_i18n_default.inc
/freebsd-11-stable/lib/libomp/kmp_i18n_id.inc
/freebsd-11-stable/lib/libomp/omp-tools.h
/freebsd-11-stable/lib/libomp/omp.h
/freebsd-11-stable/lib/libpmc/Makefile
/freebsd-11-stable/libexec/atf/atf-check/Makefile
/freebsd-11-stable/libexec/atf/atf-sh/Makefile
/freebsd-11-stable/share/man/man5/src.conf.5
/freebsd-11-stable/share/mk/atf.test.mk
/freebsd-11-stable/share/mk/bsd.sys.mk
/freebsd-11-stable/share/mk/src.opts.mk
/freebsd-11-stable/sys/conf/kmod.mk
/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/Makefile.inc
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/clang.prog.mk
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lldb-tblgen
/freebsd-11-stable/usr.bin/clang/lldb/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-mca/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/Makefile
/freebsd-11-stable/usr.bin/clang/llvm.prog.mk
346296 16-Apr-2019 dim

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
8.0.0 final release r356365.

MFC r306265 (by emaste):

Force LLVM_LIBUNWIND off if we don't have a C++11 compiler

Tested by: bde
Differential Revision: https://reviews.freebsd.org/D7746

MFC r308100 (by emaste):

compile libunwind c source with -fexceptions

When an exception is thrown the unwinder must unwind its own C source
(starting with _Unwind_RaiseException in UnwindLevel1.c), so it needs to
be built with unwinding data.

MFC r324998 (by bdrewery):

Prefix {TARGET,BUILD}_TRIPLE with LLVM_ to avoid Makefile.inc1 collision.

The Makefile.inc1 TARGET_TRIPLE is for specifying which -target is used
during the build of world.

Reviewed by: dim, imp
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D12792

MFC r329093 (by emaste):

Promote llvm-cov to a standalone option

Introduce WITH_/WITHOUT_LLVM_COV to match GCC's WITH_/WITHOUT_GCOV.
It is intended to provide a superset of the interface and functionality
of gcov.

It is enabled by default when building Clang, similarly to gcov and GCC.

This change moves one file in libllvm to be compiled unconditionally.
Previously it was included only when WITH_CLANG_EXTRAS was set, but the
complexity of a new special case for (CLANG_EXTRAS | LLVM_COV) is not
worth avoiding a tiny increase in build time.

Reviewed by: dim, imp
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D142645

MFC r331244 (by jhb):

Add support for MIPS to LLVM's libunwind.

This is originally based on a patch from David Chisnall for soft-float
N64 but has since been updated to support O32, N32, and hard-float ABIs.
The soft-float O32, N32, and N64 support has been committed upstream.
The hard-float changes are still in review upstream.

Enable LLVM_LIBUNWIND on mips when building with a suitable (C+11-capable)
toolchain. This has been tested with external GCC for all ABIs and
O32 and N64 with clang.

Reviewed by: emaste
Obtained from: CheriBSD (original N64 patch)
Sponsored by: DARPA / AFRL
Differential Revision: https://reviews.freebsd.org/D14701

MFC r336691 (by emaste):

llvm: remove __FreeBSD_version conditionals

All supported FreeBSD build host versions have backtrace.h, so we can
just eliminate that test. For futimes() we can test the compiler's
built-in __FreeBSD__ major version rather than relying on including
osreldate.h. This should reduce the frequency with which Clang gets
rebuilt when building world.

Reviewed by: dim
Sponsored by: The FreeBSD Foundation

MFC r337379 (by andrew):

Default to armv5te in LINT on arm. This should fix building LINT there.

MFC r337552:

Add optional LLVM BPF target support

BPF (eBPF) is an independent instruction set architecture which is
introduced in Linux a few years ago. Originally, eBPF execute
environment was only inside Linux kernel. However, recent years there
are some user space implementation (https://github.com/iovisor/ubpf,
https://doc.dpdk.org/guides/prog_guide/bpf_lib.html) and kernel space
implementation for FreeBSD is going on
(https://github.com/YutaroHayakawa/generic-ebpf).

The BPF target support can be enabled using WITH_LLVM_TARGET_BPF, as it
is not built by default.

Submitted by: Yutaro Hayakawa <yhayakawa3720@gmail.com>
Reviewed by: dim, bdrewery
Differential Revision: https://reviews.freebsd.org/D16033

MFC r337585:

In r308100, an explicit -fexceptions flag was added for the C sources
from LLVM's libunwind, which end up in libgcc_eh.a and libgcc_s.so.
This is because the unwinder needs the unwinder data for its own
functions.

However, for the C++ sources in libunwind, -fexceptions is already the
default, and this can have the side effect of generating a reference to
__gxx_personality_v0, the so-called personality function, which is
normally provided by the C++ ABI library (libcxxrt or libsupc++).

If the reference ends up in the eventual libgcc_s.so, linking any
non-C++ programs against it will fail with "undefined reference to
`__gxx_personality_v0'".

Note that at high optimization levels, the reference is usually
optimized away, which is why we have never noticed this problem before.

With clang 7.0.0 though, higher optimization levels don't help anymore,
since the addition of address-significance tables [1] in
<https://reviews.llvm.org/rL337339>. Effectively, this always causes a
reference to __gxx_personality_v0.

After discussion with the upstream author of that change, it turns out
that we should compile libunwind sources with the -fno-exceptions
-funwind-tables flags instead. This ensures unwind tables are
generated, but no references to any personality functions are emitted.

[1] https://lists.llvm.org/pipermail/llvm-dev/2018-May/123514.html

Reported by: jbeich
PR: 230399

MFC r340287 (by emaste):

Consolidate gcov entries in OptionalObsoleteFiles

Sponsored by: The FreeBSD Foundation

MFC r340289 (by emaste):

llvm-cov: also install as gcov (if GNU gcov is disabled)

llvm-cov provides a gcov-compatible interface when invoked as gcov.

Reviewed by: dim, markj
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D17923

MFC r340296 (by emaste):

Move llvm-profdata build into MK_LLVM_COV block

llvm-profdata is used with llvm-cov for code coverage (although llvm-cov
can also operate independently in a gcov-compatible mode).
Although llvm-profdata can be used independently of llvm-cov it makes
sense to group these under one option.

Also handle these in OptionalObsoleteFiles.inc while here.

Sponsored by: The FreeBSD Foundation

MFC r340300 (by emaste):

libllvm: Move SampleProfWriter to SRCS_MIN

It is required by llvm-profdata, now built by default under the
LLVM_COV knob. The additional complexity that would come from avoiding
building it if CLANG_EXTRAS and LLVM_COV are both disabled is not worth
the small savings in build time.

Sponsored by: The FreeBSD Foundation

MFC r340972 (by emaste):

llvm-objdump: initial man page

Based on llvm-objdump's online documentation and usage information.
This serves as a starting point; additional detail and cleanup still
required.

Also being submitted upstream in LLVM review D54864. I expect to use
this bespoke copy while we have LLVM 6.0 or 7.0 in FreeBSD; when we
update to LLVM 8.0 it should be upstream and we will switch to it.

PR: 233437
Reviewed by: bcr (man formatting)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D18309

MFC r340973 (by emaste):

llvm-objdump.1: remove invalid options

Some options appear in llvm-objdump's usage information as a side effect
of its option parsing implementation and are not actually llvm-objdump
options. Reported in LLVM review https://reviews.llvm.org/D54864.

Reported by: Fangrui Song
Sponsored by: The FreeBSD Foundation

MFC r340975 (by emaste):

llvm-objdump.1: fix igor / mandoc -Tlint warnings

Accidentally omitted from r340972.

MFC r341055 (by emaste):

llvm-objdump.1: remove more unintentional options

Some options come from static constructors in LLVM libraries and are
automatically added to llvm's usage output. They're not really supposed
to be llvm-objdump options.

Reported by: Fangrui Song in LLVM review D54864
Sponsored by: The FreeBSD Foundation

MFC r344779:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
the upstream release_80 branch r355313 (effectively, 8.0.0 rc3). The
release will follow very soon, but no more functional changes are
expected.

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

PR: 236062
Relnotes: yes

MFC r344798 (by emaste):

libllvm: promote WithColor and xxhash to SRCS_MIN

The armv6 build failed in CI due to missing symbols (from these two
source files) in the bootstrap Clang.

This affected only armv6 because other Clang-using archs are using LLD
as the bootstrap linker, and thus include SRCS_MIW via LLD_BOOTSTRAP.

Reported by: CI, via lwhsu
Sponsored by: The FreeBSD Foundation

MFC r344825:

Add a few missed files to the MK_LLVM_TARGET_BPF=yes case, otherwise
clang and various other executables will fail to link with undefined
symbols.

Reported by: O. Hartmann <ohartmann@walstatt.org>

MFC r344852:

Put in a temporary workaround for what is likely a gcc 6 bug (it does
not occur with gcc 7 or later). This should prevent the following error
from breaking the head-amd64-gcc CI builds:

In file included from /workspace/src/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp:14:0:
/workspace/src/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h:128:54: error: 'template<class _InputIterator> lldb_private::MemoryRegionInfos::MemoryRegionInfos(_InputIterator, _InputIterator, const allocator_type&)' inherited from 'std::__1::vector<lldb_private::MemoryRegionInfo>'
using std::vector<lldb_private::MemoryRegionInfo>::vector;
^~~~~~
/workspace/src/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h:128:54: error: conflicts with version inherited from 'std::__1::vector<lldb_private::MemoryRegionInfo>'

Reported by: CI

MFC r344896:

Pull in r354937 from upstream clang trunk (by Jörg Sonnenberger):

Fix inline assembler constraint validation

The current constraint logic is both too lax and too strict. It fails
for input outside the [INT_MIN..INT_MAX] range, but it also
implicitly accepts 0 as value when it should not. Adjust logic to
handle both correctly.

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

Pull in r355491 from upstream clang trunk (by Hans Wennborg):

Inline asm constraints: allow ICE-like pointers for the "n"
constraint (PR40890)

Apparently GCC allows this, and there's code relying on it (see bug).

The idea is to allow expression that would have been allowed if they
were cast to int. So I based the code on how such a cast would be
done (the CK_PointerToIntegral case in
IntExprEvaluator::VisitCastExpr()).

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

These should fix assertions and errors when using the inline assembly
"n" constraint in certain ways.

In case of devel/valgrind, a pointer was used as the input for the
constraint, which lead to "Assertion failed: (isInt() && "Invalid
accessor"), function getInt".

In case of math/secp256k1, a very large integer value was used as input
for the constraint, which lead to "error: value '4624529908474429119'
out of range for constraint 'n'".

PR: 236216, 236194

MFC r344951:

Merge llvm, clang, compiler-rt, libc++, lld, and lldb release_80 branch
r355677 (effectively, 8.0.0 rc4), resolve conflicts, and bump version
numbers.

PR: 236062

MFC r345018:

Merge LLVM libunwind trunk r351319, from just before upstream's
release_80 branch point. Afterwards, we will merge the rest of the
changes in the actual release_80 branch.

PR: 236062

MFC r345019:

Merge LLVM libunwind release_80 branch r355677 (effectively, 8.0.0 rc4).

PR: 236062

MFC r345021:

Pull in r355854 from upstream llvm trunk (by Jonas Paulsson):

[RegAlloc] Avoid compile time regression with multiple copy hints.

As a fix for https://bugs.llvm.org/show_bug.cgi?id=40986 ("excessive
compile time building opencollada"), this patch makes sure that no
phys reg is hinted more than once from getRegAllocationHints().

This handles the case were many virtual registers are assigned to the
same physreg. The previous compile time fix (r343686) in
weightCalcHelper() only made sure that physical/virtual registers are
passed no more than once to addRegAllocationHint().

Review: Dimitry Andric, Quentin Colombet
https://reviews.llvm.org/D59201

This should fix a hang when compiling certain generated .cpp files in
the graphics/opencollada port.

PR: 236313

MFC r345068 (by jhb):

Move libunwind out of contrib/llvm/projects.

Move LLVM's libunwind to its own contrib/ directory similar to other
runtime libraries like libc++ and libcxxrt.

Reviewed by: dim, emaste
Differential Revision: https://reviews.freebsd.org/D19534

MFC r345073:

Revert r308867 (which was originally committed in the clang390-import
project branch):

Work around LLVM PR30879, which is about a bad interaction between
X86 Call Frame Optimization on i386 and libunwind, by disallowing the
optimization for i386-freebsd12.

This should fix some instances of broken exception handling when
frame pointers are omitted, in particular some unittests run during
the build of editors/libreoffice.

This hack will be removed as soon as upstream has implemented a more
permanent fix for this problem.

And indeed, after r345018 and r345019, which updated LLVM libunwind to
the most recent version, the above workaround is no longer needed. The
upstream commit which fixed this is:

https://llvm.org/viewvc/llvm-project?view=revision&revision=292723

Specifically, 32 bit (i386-freebsd) executables optimized with omitted
frame pointers and Call Frame Optimization should now behave correctly
when a C++ exception is thrown, and the stack is unwound.

Upstream PR: https://llvm.org/bugs/show_bug.cgi?id=30879
PR: 236062

MFC r345152:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, and lldb
release_80 branch r356034 (effectively, 8.0.0 rc5), resolve conflicts,
and bump version numbers.

PR: 236062

MFC r345231:

Add LLVM openmp trunk r351319 (just before the release_80 branch point)
to contrib/llvm. This is not yet connected to the build, the glue for
that will come in a follow-up commit.

PR: 236062

MFC r345232:

Bootstrap svn:mergeinfo on contrib/openmp.

PR: 236062

MFC r345233:

Merge openmp release_80 branch r356034 (effectively, 8.0.0 rc5).

PR: 236062

MFC r345234:

Add openmp __kmp_gettid() wrapper, using pthread_getthreadid_np(3).
This has also been submitted upstream.

PR: 236062

MFC r345283:

Enable building libomp.so for 32-bit x86. This is done by selectively
enabling the functions that save and restore MXCSR, since access to this
register requires SSE support.

Note that you may run into other issues with OpenMP on i386, since this
*not* yet supported upstream, and certainly not extensively tested.

PR: 236062, 236582

MFC r345345:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
8.0.0 final release r356365. There were no functional changes since the
most recent merge, of 8.0.0 rc5.

Release notes for llvm, clang, lld and libc++ 8.0.0 are now available:

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

PR: 236062

MFC r345349:

Pull in r352826 from upstream lld trunk (by Fangrui Song):

[ELF] Support --{,no-}allow-shlib-undefined

Summary:
In ld.bfd/gold, --no-allow-shlib-undefined is the default when
linking an executable. This patch implements a check to error on
undefined symbols in a shared object, if all of its DT_NEEDED entries
are seen.

Our approach resembles the one used in gold, achieves a good balance
to be useful but not too smart (ld.bfd traces all DSOs and emulates
the behavior of a dynamic linker to catch more cases).

The error is issued based on the symbol table, different from
undefined reference errors issued for relocations. It is most
effective when there are DSOs that were not linked with -z defs (e.g.
when static sanitizers runtime is used).

gold has a comment that some system libraries on GNU/Linux may have
spurious undefined references and thus system libraries should be
excluded (https://sourceware.org/bugzilla/show_bug.cgi?id=6811). The
story may have changed now but we make --allow-shlib-undefined the
default for now. Its interaction with -shared can be discussed in the
future.

Reviewers: ruiu, grimar, pcc, espindola

Reviewed By: ruiu

Subscribers: joerg, emaste, arichardson, llvm-commits

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

Pull in r352943 from upstream lld trunk (by Fangrui Song):

[ELF] Default to --no-allow-shlib-undefined for executables

Summary:
This follows the ld.bfd/gold behavior.

The error check is useful as it captures a common type of ld.so
undefined symbol errors as link-time errors:

// a.cc => a.so (not linked with -z defs)
void f(); // f is undefined
void g() { f(); }

// b.cc => executable with a DT_NEEDED entry on a.so
void g();
int main() { g(); }

// ld.so errors when g() is executed (lazy binding) or when the program is started (-z now)
// symbol lookup error: ... undefined symbol: f

Reviewers: ruiu, grimar, pcc, espindola

Reviewed By: ruiu

Subscribers: llvm-commits, emaste, arichardson

Tags: #llvm

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

Together, these add support for --no-allow-shlib-undefined, and make it
the default for executables, so they will fail to link if any symbols
from needed shared libraries are undefined.

Reported by: jbeich
PR: 236062, 236141

MFC r345449:

Pull in r356809 from upstream llvm trunk (by Eli Friedman):

[ARM] Don't form "ands" when it isn't scheduled correctly.

In r322972/r323136, the iteration here was changed to catch cases at
the beginning of a basic block... but we accidentally deleted an
important safety check. Restore that check to the way it was.

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

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

This should fix "Assertion failed: (LiveCPSR && "CPSR liveness tracking
is wrong!"), function UpdateCPSRUse" errors when building the devel/xwpe
port for armv7.

PR: 236062, 236568


/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/compiler-rt/LICENSE.TXT
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/allocator_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/hwasan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
/freebsd-11-stable/contrib/compiler-rt/include/xray/xray_log_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_allocator.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_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_globals_win.cc
/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_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_rtems.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3.S
/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/arm64
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cpu_model.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divsc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divtc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/emutls.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_math.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_types.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_util.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_util.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/os_version_check.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/divtc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/fixunstfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/floattitf.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_interceptors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_shadow.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_sideline.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_sideline_bsd.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltins.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerCommand.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerCorpus.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDefs.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDriver.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsDlsymWin.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeak.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeakAlias.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerFlags.def
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIO.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIO.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerInternal.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerOptions.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtil.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilFuchsia.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_checks.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_mapping.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_memintrinsics.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_linux.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_allocator.h
/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/msan/msan.cc
/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/profile/GCDAProfiling.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfData.inc
/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/InstrProfilingValue.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/WindowsMMap.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/WindowsMMap.h
/freebsd-11-stable/contrib/compiler-rt/lib/safestack/safestack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_bytemap.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_internal.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_secondary.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_atomic_clang_x86.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_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_win_sections.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_file.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_interceptors_ioctl_netbsd.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.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_local_address_space_view.h
/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_malloc_mac.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
/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_freebsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.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.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_procmaps.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.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_ring_buffer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_fuchsia.h
/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_syscalls_netbsd.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
/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_type_traits.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
/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_malloc.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
/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_libdispatch_mac.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_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_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_checks.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_flags.inc
/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_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_logging.cc
/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_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_controller.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_log_records.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_log_writer.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_logging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_function_call_trie.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_init.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_interface.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profile_collector.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profile_collector.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_segmented_array.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_tsc.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_x86_64.cc
/freebsd-11-stable/contrib/libc++/LICENSE.TXT
/freebsd-11-stable/contrib/libc++/include/__bit_reference
/freebsd-11-stable/contrib/libc++/include/__config
/freebsd-11-stable/contrib/libc++/include/__debug
/freebsd-11-stable/contrib/libc++/include/__functional_base
/freebsd-11-stable/contrib/libc++/include/__hash_table
/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/__node_handle
/freebsd-11-stable/contrib/libc++/include/__sso_allocator
/freebsd-11-stable/contrib/libc++/include/__string
/freebsd-11-stable/contrib/libc++/include/__threading_support
/freebsd-11-stable/contrib/libc++/include/__tree
/freebsd-11-stable/contrib/libc++/include/__tuple
/freebsd-11-stable/contrib/libc++/include/algorithm
/freebsd-11-stable/contrib/libc++/include/any
/freebsd-11-stable/contrib/libc++/include/array
/freebsd-11-stable/contrib/libc++/include/atomic
/freebsd-11-stable/contrib/libc++/include/bit
/freebsd-11-stable/contrib/libc++/include/bitset
/freebsd-11-stable/contrib/libc++/include/charconv
/freebsd-11-stable/contrib/libc++/include/chrono
/freebsd-11-stable/contrib/libc++/include/cmath
/freebsd-11-stable/contrib/libc++/include/complex
/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/any
/freebsd-11-stable/contrib/libc++/include/experimental/chrono
/freebsd-11-stable/contrib/libc++/include/experimental/coroutine
/freebsd-11-stable/contrib/libc++/include/experimental/dynarray
/freebsd-11-stable/contrib/libc++/include/experimental/memory_resource
/freebsd-11-stable/contrib/libc++/include/experimental/numeric
/freebsd-11-stable/contrib/libc++/include/experimental/optional
/freebsd-11-stable/contrib/libc++/include/experimental/ratio
/freebsd-11-stable/contrib/libc++/include/experimental/string_view
/freebsd-11-stable/contrib/libc++/include/experimental/system_error
/freebsd-11-stable/contrib/libc++/include/experimental/tuple
/freebsd-11-stable/contrib/libc++/include/filesystem
/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/iomanip
/freebsd-11-stable/contrib/libc++/include/iosfwd
/freebsd-11-stable/contrib/libc++/include/istream
/freebsd-11-stable/contrib/libc++/include/iterator
/freebsd-11-stable/contrib/libc++/include/limits
/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/module.modulemap
/freebsd-11-stable/contrib/libc++/include/mutex
/freebsd-11-stable/contrib/libc++/include/new
/freebsd-11-stable/contrib/libc++/include/numeric
/freebsd-11-stable/contrib/libc++/include/optional
/freebsd-11-stable/contrib/libc++/include/ostream
/freebsd-11-stable/contrib/libc++/include/random
/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/shared_mutex
/freebsd-11-stable/contrib/libc++/include/span
/freebsd-11-stable/contrib/libc++/include/sstream
/freebsd-11-stable/contrib/libc++/include/stddef.h
/freebsd-11-stable/contrib/libc++/include/stdexcept
/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/thread
/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/valarray
/freebsd-11-stable/contrib/libc++/include/variant
/freebsd-11-stable/contrib/libc++/include/vector
/freebsd-11-stable/contrib/libc++/include/version
/freebsd-11-stable/contrib/libc++/src/experimental/filesystem
/freebsd-11-stable/contrib/libc++/src/experimental/memory_resource.cpp
/freebsd-11-stable/contrib/libc++/src/filesystem/filesystem_common.h
/freebsd-11-stable/contrib/libc++/src/filesystem/operations.cpp
/freebsd-11-stable/contrib/libc++/src/future.cpp
/freebsd-11-stable/contrib/libc++/src/iostream.cpp
/freebsd-11-stable/contrib/libc++/src/new.cpp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_fallback.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_glibcxx.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_libcxxrt.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_msvc.ipp
/freebsd-11-stable/contrib/libc++/src/thread.cpp
/freebsd-11-stable/contrib/libunwind
/freebsd-11-stable/contrib/llvm/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/LICENSE.TXT
/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/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OptRemarks.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Types.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/Any.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/DenseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/GraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Hashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableList.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntervalMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Optional.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/PostOrderIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Triple.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/bit.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/AliasSetTracker.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/CFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFGPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CaptureTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CmpInstAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DemandedBits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GlobalsModRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GuardUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IVDescriptors.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InlineCost.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InstructionPrecedenceTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.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/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/MemorySSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MustExecute.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OrderedInstructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Passes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PhiValues.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolution.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/StackSafetyAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/SyntheticCountsUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def
/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/TypeBasedAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/AMDGPUMetadataVerifier.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/MSP430.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPack.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPack.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackWriter.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/Bitcode/BitcodeReader.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/AsmPrinterHandler.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/BuiltinGCs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CommandFlags.inc
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DbgEntityHistoryCalculator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DebugHandlerBase.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCStrategy.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.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/LinkAllAsmWriterComponents.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.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/LiveRegUnits.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/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/MachineModuleInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOutliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePipeliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineScheduler.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/RegAllocRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
/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/SchedulerRegistry.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/SlotIndexes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/StackMaps.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/TargetLoweringObjectFileImpl.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/TargetSubtargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/WasmEHFuncInfo.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/CodeViewError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DIContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.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/DWARFDebugPubTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.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/MSFError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAFrameData.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/GenericError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBFrameData.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/Native/DbiModuleDescriptorBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStream.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/InfoStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeBuiltinSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.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/NativeExeSymbol.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/NativeSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiHashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Demangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/ItaniumDemangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/MicrosoftDemangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/StringView.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Utility.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.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/CompileUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.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/RPCUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/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/CFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CFGDiff.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/Constants.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/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DomTreeUpdater.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/IRPrintingPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstrTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instruction.def
/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/IntrinsicsPowerPC.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsRISCV.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.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/LegacyPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Module.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/PassInstrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassTimingInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/RuntimeLibcalls.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TypeBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Value.h
/freebsd-11-stable/contrib/llvm/include/llvm/InitializePasses.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/SummaryBasedOptimizations.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/LinkAllPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoWasm.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/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/MCExpr.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInst.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrDesc.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/AsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.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/MCSection.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWasmObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWin64EH.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWinEH.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA
/freebsd-11-stable/contrib/llvm/include/llvm/Object/COFF.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/Error.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/Wasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/WasmTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/COFFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/ELFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/WasmYAML.h
/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/Passes/PassBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Passes/StandardInstrumentations.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.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/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/ProfileData/SampleProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.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/ARMTargetParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMWinEH.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BuryPointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CFGUpdate.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/CommandLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compression.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Debug.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/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileCheck.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/FormatVariadicDetails.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/GraphWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/JSON.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LowLevelTypeImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MSVCErrorWorkarounds.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Path.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScopedPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SymbolRemappingReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetOpcodes.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Threading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Timer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Win64EH.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/WithColor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/X86TargetParser.def
/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/Support/type_traits.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringMatcher.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/CodeGenCWrappers.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/TargetInstrPredicate.td
/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/TargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetPfmCounters.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm/include/llvm/Testing/Support/SupportHelpers.h
/freebsd-11-stable/contrib/llvm/include/llvm/TextAPI
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO.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/HotColdSplitting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SampleProfile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Scalarizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/WarnMissedTransforms.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CanonicalizeAliases.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/GuardUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/OrderedInstructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/BlockIndexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/BlockPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/BlockVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRLogBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRRecordConsumer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRRecordProducer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRRecords.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRTraceExpander.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRTraceWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FileHeaderReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Profile.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/RecordPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Trace.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.extern.modulemap
/freebsd-11-stable/contrib/llvm/include/llvm/module.install.modulemap
/freebsd-11-stable/contrib/llvm/include/llvm/module.modulemap
/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/Analysis.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/CFG.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/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/CaptureTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CmpInstAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ConstantFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DemandedBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/EHPersonalities.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVDescriptors.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/InstructionPrecedenceTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.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/LegacyDivergenceAnalysis.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/MemDepPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryLocation.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/ModuleSummaryAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MustExecute.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ObjCARCInstKind.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OrderedInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PhiValues.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ProfileSummaryInfo.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/ScalarEvolutionAliasAnalysis.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/StackSafetyAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/SyntheticCountsUtils.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/TypeBasedAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TypeMetadataUtils.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/BinaryFormat/AMDGPUMetadataVerifier.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/BinaryFormat/MsgPackReader.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/Wasm.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/MetadataLoader.h
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/ValueList.cpp
/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/CodeGen/Analysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AccelTable.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/AsmPrinterHandler.h
/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/DbgEntityHistoryCalculator.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/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/DwarfUnit.h
/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/WasmException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BreakFalseDeps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BuiltinGCs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CFIInstrInserter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CalcSpillWeights.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/DFAPacketizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/EarlyIfConversion.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/GCMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/GISelChangeObserver.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/LegalityPredicates.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/MachineIRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/RegBankSelect.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/InterleavedLoadCombinePass.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/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/LivePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.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/MachineBasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBlockPlacement.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/MachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.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/MachineOutliner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachinePassRegistry.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/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/PostRASchedulerList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PreISelIntrinsicLowering.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/ReachingDefAnalysis.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/RegUsageInfoCollector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterUsageInfo.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/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/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.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/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/ScheduleDAGSDNodes.h
/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/StatepointLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SlotIndexes.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/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/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/TwoAddressInstructionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/WasmEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordHelpers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.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/DWARFDebugRnglists.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/DWARFGdbIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFListTable.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/MSF/MSFError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAFrameData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/GenericError.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/GSIStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/GlobalsStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumModules.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/NativeSymbolEnumerator.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeTypedef.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeVTShape.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/RawError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolCache.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStream.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/PDBSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/Compiler.h
/freebsd-11-stable/contrib/llvm/lib/Demangle/ItaniumDemangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/MicrosoftDemangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/StringView.h
/freebsd-11-stable/contrib/llvm/lib/Demangle/Utility.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Core.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Layer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.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/OrcMCJITReplacement.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
/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/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
/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/Targets/RuntimeDyldCOFFThumb.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/IRMutator.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/RandomIRBuilder.cpp
/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/Constants.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantsContext.h
/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/DiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DomTreeUpdater.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/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/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.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/Module.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassTimingInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/SafepointIRVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Type.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Value.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Verifier.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/SummaryBasedOptimizations.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/ConstantPools.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoCOFF.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/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/MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCFragment.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInst.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstrAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstrDesc.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/DarwinAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/WasmAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSection.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCStreamer.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/MachObjectWriter.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/MCA
/freebsd-11-stable/contrib/llvm/lib/Object/ArchiveWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Binary.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/Error.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/Object.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ObjectFile.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/ELFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/OptRemarks
/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/Passes/StandardInstrumentations.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/Coverage/CoverageMapping.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/SampleProf.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/AArch64TargetParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMTargetParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamError.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BuryPointer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/COM.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CachePruning.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/Compression.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DebugCounter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileCheck.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/Hashing.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Host.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/JSON.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Locale.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LockFileManager.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/RandomNumberGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Signals.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SourceMgr.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringSaver.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SymbolRemappingReader.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/Timer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Path.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/VirtualFileSystem.cpp
/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/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm/lib/Support/WithColor.cpp
/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/TableGen/Main.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/Record.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGLexer.h
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.h
/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/AArch64A57FPLoadBalancing.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64BranchTargets.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.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.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/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/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/AArch64PfmCounters.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SpeculationHardening.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/AArch64TargetObjectFile.cpp
/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/AsmParser/AArch64AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.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/AArch64AddressingModes.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/AArch64MCAsmInfo.cpp
/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/AArch64TargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
/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/Utils/AArch64BaseInfo.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/AMDGPUAnnotateUniformValues.cpp
/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/AMDGPUAtomicOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
/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/AMDGPUFixFunctionBitcasts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
/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.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/AMDGPUIntrinsicInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.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/AMDGPULowerKernelArguments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp
/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/AMDGPURegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
/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/AMDGPUTargetObjectFile.h
/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/AsmParser/AMDGPUAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/BUFInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/DSInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/FLATInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
/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/GCNMinRegStrategy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNProcessors.td
/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/AMDGPUELFObjectWriter.cpp
/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/MIMGInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
/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/R600MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
/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/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixWWMLiveness.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
/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/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/SIIntrinsics.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/SIMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIModeRegister.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/SMInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SOPInstructions.td
/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/AMDGPULaneDominator.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.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/ARCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp
/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/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/ARMCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
/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/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h
/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/ARMLegalizerInfo.h
/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/ARMMacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMParallelDSP.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.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/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
/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/InstPrinter/ARMInstPrinter.cpp
/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/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/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/Thumb2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPF.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMIChecking.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTF.def
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTF.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTFDebug.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTFDebug.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
/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/HexagonBitSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.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/HexagonDepMapAsm2Intrin.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/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/HexagonGenInsert.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
/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/HexagonInstrFormatsV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV5.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/HexagonIntrinsicsV3.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
/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/HexagonPseudo.td
/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/HexagonScheduleV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV65.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV66.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.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/HexagonTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.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/MCTargetDesc/HexagonBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
/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/RDFDeadCode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFLiveness.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
/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/LanaiTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/AsmParser
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/Disassembler
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
/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/MSP430InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.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/MCTargetDesc/MipsABIInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.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/MipsMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.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/Mips.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/Mips32r6InstrFormats.td
/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/MipsAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsBranchExpansion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCondMov.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/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.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.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/MipsSEISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsScheduleGeneric.td
/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/MipsTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
/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.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.h
/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/Nios2RegisterInfo.td
/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/Disassembler/PPCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/P9InstrResources.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPC.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
/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/PPCHazardRecognizers.cpp
/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/PPCInstrHTM.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/PPCInstrQPX.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrSPE.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCPfmCounters.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/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/RISCV/AsmParser/RISCVAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.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/RISCVTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.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/RISCVExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
/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.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/RISCVMergeBaseOffset.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVSystemOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Utils
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/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/SparcInstr64Bit.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td
/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/SparcTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
/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/SystemZInstrVector.td
/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/SystemZSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.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/SystemZTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
/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/AsmParser/WebAssemblyAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h
/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/README.txt
/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/WebAssemblyAddMissingPrototypes.cpp
/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/WebAssemblyCFGSort.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyEHRestoreStackPointer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.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/WebAssemblyISD.def
/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/WebAssemblyInstrCall.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrExceptRef.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.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/WebAssemblyMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.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/WebAssemblyRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
/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/WebAssemblyUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
/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/X86MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
/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/X86WinCOFFTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/ShadowCallStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
/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/X86AvoidStoreForwardingBlocks.cpp
/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/X86CondBrFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86DiscriminateMemOps.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86DomainReassignment.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/X86FlagsCopyLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
/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/X86InsertPrefetch.cpp
/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/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/X86InstrSSE.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.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/X86MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86PfmCounters.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
/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/X86SchedPredicates.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/X86ScheduleBdVer2.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/X86ShuffleDecodeConstantPool.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SpeculativeLoadHardening.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/X86TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86WinEHState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
/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/XCoreLowerThreadLocal.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Testing/Support/SupportHelpers.cpp
/freebsd-11-stable/contrib/llvm/lib/TextAPI
/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/AggressiveInstCombine/AggressiveInstCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroElide.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/DeadArgumentElimination.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/HotColdSplitting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/IPO.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/SCCP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.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/CFGMST.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/CGProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.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/SanitizerCoverage.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
/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/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/ConstantProp.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DCE.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/JumpThreading.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LICM.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/LoopPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopPredication.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.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/LoopUnrollAndJamPass.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/LowerGuardIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.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/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/SimpleLoopUnswitch.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/Scalar/WarnMissedTransforms.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/BuildLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CallPromotionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CanonicalizeAliases.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/CodeExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.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/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Local.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopRotationUtils.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/LoopUnrollAndJam.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/ModuleUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/OrderedInstructions.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/SimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.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/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.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/VPRecipeBuilder.h
/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/VPlanHCFGBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
/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/XRay/BlockIndexer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/BlockPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/BlockVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRRecordProducer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRRecords.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRTraceExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRTraceWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FileHeaderReader.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/InstrumentationMap.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/LogBuilderConsumer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/Profile.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/RecordInitializer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/RecordPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/Trace.cpp
/freebsd-11-stable/contrib/llvm/projects
/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/OptimizerDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ToolRunner.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ToolRunner.h
/freebsd-11-stable/contrib/llvm/tools/clang/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/tools/clang/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Index.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/APValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContextAllocate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDumperUtils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporterLookupTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Attr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AttrVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Comment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.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/DeclFriend.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/EvaluatedExprVisitor.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/ExprOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/FormatString.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/Mangle.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NSAPI.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/OSLog.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/PrettyPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtDataCollectors.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.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/TemplateArgumentVisitor.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/TextNodeDumper.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/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/Dynamic/Parser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.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/OSLog.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PseudoConstantAnalysis.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/Analyses/ThreadSafetyTraverse.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.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/ConstructionContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/SelectorExtras.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/Builtins.def
/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/BuiltinsNios2.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.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/CodeGenOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.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/DiagnosticAST.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysis.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticComment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTU.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTUKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontend.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/DiagnosticLex.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParse.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoring.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSema.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Features.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FixedPoint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.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/MSP430Target.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensionTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.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/Specifiers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.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/TokenKinds.h
/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/XRayInstr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTUDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTranslationUnit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Action.h
/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/DarwinSDKInfo.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/DriverDiagnostic.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/Types.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.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/CompilerInstance.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/Utils.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/Index/IndexingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.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/TokenConcatenation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/LoopHint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/Parser.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/Initialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/LoopHint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ParsedAttr.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/SemaDiagnostic.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/GlobalModuleIndex.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h
/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.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/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/CommonBugCategories.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/Checker.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.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/BasicValueFactory.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/DynamicTypeMap.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/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/ProgramStateTrait.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Regions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.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/SubEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Execution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/StandaloneExecution.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/ARCMigrate/ARCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/APValue.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.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/ASTImporterLookupTable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.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/DeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.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/ExternalASTMerger.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/FormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/FormatStringParsing.h
/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/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/OSLog.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/OpenMPClause.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ScanfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtObjC.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/TextNodeDumper.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/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/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/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/Consumed.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/OSLog.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.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/Basic/Attributes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/CodeGenOptions.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/FileManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FixedPoint.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/SourceLocation.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.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.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/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/CGBlocks.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.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/CGCall.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h
/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/CGLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.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/CGObjCRuntime.h
/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/CodeGenPGO.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
/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/MacroPPCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
/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/SwiftCallingConv.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CrossTU/CrossTranslationUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Action.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Arch
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/DarwinSDKInfo.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/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/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.h
/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/X86.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.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/FreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
/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/Hurd.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h
/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/MipsLinux.h
/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/OpenBSD.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.h
/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/Types.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Format.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/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/UnwrappedLineParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CodeGenOptions.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/CreateInvocationFromCommandLine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.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/ModuleDependencyCollector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.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/InclusionRewriter.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/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/adxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/altivec.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.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/avx512pfintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.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/bmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cuda
/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/immintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vecintrin.h
/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/SimpleFormatContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/HeaderMap.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/MacroInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/ModuleMap.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/Preprocessor.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseAST.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/ParseInit.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/Rewrite/RewriteRope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.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/IdentifierResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/ParsedAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.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/ASTReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
/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/PCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.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/CXXSelfAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
/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/DeadStoresChecker.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/DereferenceChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.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/InnerPointerChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MisusedMovedObjectChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObjectChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.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/Checker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.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/ExprEngineCallAndReturn.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopWidening.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/PlistDiagnostics.cpp
/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/RetainSummaryManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.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/Core/TaintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/WorkList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Lookup.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/Inclusions/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFinder.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/cc1_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1gen_reproducer_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/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.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/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/DLL.h
/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/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/MapFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MarkLive.cpp
/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/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/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/ErrorHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Strings.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/TargetOptionsCommandFlags.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/AArch64ErrataFix.cpp
/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/Hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/MSP430.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/Mips.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/RISCV.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/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/CallGraphSort.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Config.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/DWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/DWARF.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/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/MarkLive.cpp
/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/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/Thunks.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/tools/lld/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/lld/docs/NewLLD.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/README.txt
/freebsd-11-stable/contrib/llvm/tools/lld/docs/Readers.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/ReleaseNotes.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/WebAssembly.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/conf.py
/freebsd-11-stable/contrib/llvm/tools/lld/docs/index.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/ld.lld.1
/freebsd-11-stable/contrib/llvm/tools/lld/docs/missingkeyfunction.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/open_projects.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/windows_support.rst
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Args.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/ErrorHandler.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/LLVM.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Strings.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/TargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Threads.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/TODO.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/tools/lld/lld.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.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/SBExpressionOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInitializerOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBModule.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContext.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/API/SBThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.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/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.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/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Stoppoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Architecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ClangForward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Highlighter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Listener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.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/ModuleList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Opcode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/PluginInterface.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/RegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RichManglingContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/STLUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/State.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectRegister.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Materializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Debug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Predicate.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/SafeMachO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/TaskPool.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/XML.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.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/SoftwareBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/openbsd/HostInfoOpenBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionArgParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArgs.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Property.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.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/LineTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.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/ProcessLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ProcessStructReader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameRecognizer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanRunToAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOut.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepThrough.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepUntil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanTracer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Broadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Either.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Event.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FastDemangle.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Listener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Log.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Predicate.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Range.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Reproducer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SafeMachO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Scalar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/State.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Status.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Stream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-defines.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-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpoint.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/SBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBEvent.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpecList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInitializerOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBListener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModuleSpec.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/SBQueue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbolContextList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.h
/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/BreakpointLocationCollection.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/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Stoppoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/StoppointCallbackContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h
/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/CommandObjectBreakpointCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h
/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/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h
/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/AddressResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpRegisterValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Event.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FileLineResolver.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/Highlighter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Listener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Mangled.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/Opcode.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/RichManglingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/State.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatClasses.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.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/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSystem.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/HostNativeThreadBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.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/ProcessRunLock.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/StringConvert.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/freebsd/HostInfoFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/openbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/openbsd/HostInfoOpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.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/Initialization/SystemLifetimeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.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/CommandObjectRegexCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionArgParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Property.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/MacOSX-arm/ABIMacOSX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/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-arm64/ABISysV_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
/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-i386/ABISysV_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/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-ppc/ABISysV_ppc.h
/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-ppc64/ABISysV_ppc64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
/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/ABI/SysV-x86_64/ABISysV_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.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/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/ClangExpressionHelper.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/ClangExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.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/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoAST.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/gen_go_ast.py
/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/ARM64/EmulateInstructionARM64.h
/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/Instruction/MIPS64/EmulateInstructionMIPS64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.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/LibCxxOptional.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/LibCxxVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.h
/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/CPlusPlus/MSVCUndecoratedNameParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ClangCommon
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/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/NSError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
/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.cpp
/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/AppleObjCRuntimeV1.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.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/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h
/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/Breakpad
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
/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/Go/OperatingSystemGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.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/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/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.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/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.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/ProcessMonitor.h
/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_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
/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_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMUtils.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/DynamicRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.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/RegisterContextDarwin_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.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/RegisterContextLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.h
/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_arm.h
/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_i386.h
/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/RegisterContextMach_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
/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_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.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/RegisterContextThreadMemory.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/RegisterInfos_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.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_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64.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_s390x.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/StopInfoMachException.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.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_arm64.cpp
/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_powerpc.cpp
/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_s390x.cpp
/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/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/GDBRemoteCommunicationHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.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/GDBRemoteCommunicationServerCommon.h
/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/GDBRemoteCommunicationServerPlatform.h
/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/GDBRemoteRegisterContext.h
/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/ProcessGDBRemoteLog.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/gdb-remote/ThreadGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.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/ScriptInterpreter/None/ScriptInterpreterNone.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
/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/DWARFDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.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/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
/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/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.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/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.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.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/DWARF/UniqueDWARFASTType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.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/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h
/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/UnwindAssembly-x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.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/Block.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.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/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/OCamlASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.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/TypeList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/OperatingSystem.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/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Queue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameRecognizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.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/Event.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/FastDemangle.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/LLDBAssert.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Listener.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/Range.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/RegisterValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Reproducer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Scalar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/State.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Status.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Stream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Timer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Options.td
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
/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-bcanalyzer/llvm-bcanalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterJson.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.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/SourceCoverageViewHTML.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxmap
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.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-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-mca/CodeRegion.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegion.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Context.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Context.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/DispatchStage.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/DispatchStage.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/DispatchStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/DispatchStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/ExecuteStage.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/ExecuteStage.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/FetchStage.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/FetchStage.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/HWEventListener.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/HWEventListener.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/HardwareUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/HardwareUnit.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/InstrBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/InstrBuilder.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Instruction.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Instruction.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/InstructionInfoView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/InstructionInfoView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/InstructionTables.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/InstructionTables.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/LSUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/LSUnit.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Pipeline.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Pipeline.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/PipelinePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/PipelinePrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RegisterFile.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RegisterFile.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RegisterFileStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RegisterFileStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/ResourcePressureView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/ResourcePressureView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RetireControlUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RetireControlUnit.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RetireControlUnitStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RetireControlUnitStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RetireStage.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/RetireStage.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Scheduler.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Scheduler.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/SchedulerStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/SchedulerStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/SourceMgr.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Stage.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Stage.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/SummaryView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/SummaryView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Support.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Support.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/TimelineView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/TimelineView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/View.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/View.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/include
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/lib
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/llvm-mca.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/Buffer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/Buffer.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/CopyConfig.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/CopyConfig.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ELF
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ObjcopyOpts.td
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/Object.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/Object.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/StripOpts.td
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/ELFDump.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-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/Analyze.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/Analyze.h
/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/InputFile.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/InputFile.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/MinimalTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PdbYaml.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PdbYaml.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.h
/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/PrettyTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.h
/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/ARMWinEHPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
/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/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
/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/xray-account.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-fdr-dump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-stacks.cpp
/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/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/CTagsEmitter.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/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/DAGISelMatcher.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.h
/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/ExegesisEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.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/PredicateExpander.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/PredicateExpander.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SearchableTableEmitter.cpp
/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/WebAssemblyDisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86ModRMFilters.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
/freebsd-11-stable/contrib/openmp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_runtime.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_wrapper_getpid.h
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-general.cpp
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/gnu/lib/libgcc/Makefile
/freebsd-11-stable/lib/Makefile
/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/Version.inc
/freebsd-11-stable/lib/clang/include/llvm/Config/AsmParsers.def
/freebsd-11-stable/lib/clang/include/llvm/Config/AsmPrinters.def
/freebsd-11-stable/lib/clang/include/llvm/Config/Disassemblers.def
/freebsd-11-stable/lib/clang/include/llvm/Config/Targets.def
/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/clang/llvm.build.mk
Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/asan/Makefile
/freebsd-11-stable/lib/libclang_rt/asan_dynamic/Makefile
/freebsd-11-stable/lib/libclang_rt/msan/Makefile
/freebsd-11-stable/lib/libclang_rt/safestack/Makefile
/freebsd-11-stable/lib/libclang_rt/stats/Makefile
/freebsd-11-stable/lib/libclang_rt/tsan/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/share/man/man5/src.conf.5
/freebsd-11-stable/share/mk/src.opts.mk
/freebsd-11-stable/sys/arm/conf/NOTES
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/tools/build/options/WITHOUT_LLVM_COV
/freebsd-11-stable/tools/build/options/WITH_LLVM_COV
/freebsd-11-stable/tools/build/options/WITH_LLVM_TARGET_BPF
/freebsd-11-stable/usr.bin/clang/Makefile
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cov/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-mca/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objdump/llvm-objdump.1
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
344213 16-Feb-2019 dim

Merge clang 7.0.1 and several follow-up changes

MFC r318594:

Add libc++experimental.a for std::experimental support

This adds a separate library for supporting std::experimental features.
It is purposefully static, and must be explicitly linked into programs
using -lc++experimental.

PLEASE NOTE: there is NO WARRANTY as to any stability or continuing
existence of the features in the std::experimental parts of the C++
library!

Reviewed by: ed
Differential Revision: https://reviews.freebsd.org/D10840

MFC r318598:

Add PICFLAG to build libc++experimental.a, so it can be used in all
situations.

Noticed by: kib

r336969 | emaste | 2018-07-31 16:12:09 +0200 (Tue, 31 Jul 2018) | 13 lines

llvm: [ELF][ARM] Add Arm ABI names for float ABI ELF Header flags

The ELF for the Arm architecture document defines, for EF_ARM_EABI_VER5
and above, the flags EF_ARM_ABI_FLOAT_HARD and EF_ARM_ABI_FLOAT_SOFT.
These have been defined to be compatible with the existing
EF_ARM_VFP_FLOAT and EF_ARM_SOFT_FLOAT used by gcc for
EF_ARM_EABI_UNKNOWN.

This patch adds the flags in addition to the existing ones so that any
code depending on the old names will still work.

Obtained from: llvm r338370 by Peter Smith

r336970 | emaste | 2018-07-31 16:14:41 +0200 (Tue, 31 Jul 2018) | 9 lines

llvm: [ARM] Complete enumeration values for Tag_ABI_VFP_args

The LLD implementation of Tag_ABI_VFP_args needs to check the rarely
seen values of 3 (toolchain specific) and 4 compatible with both Base
and VFP. Add the missing enumeration values so that LLD can refer to
them without having to use the raw numbers.

Obtained from: llvm r338373 by Peter Smith

r336972 | emaste | 2018-07-31 17:25:03 +0200 (Tue, 31 Jul 2018) | 37 lines

lld: [ELF][ARM] Implement support for Tag_ABI_VFP_args

The Tag_ABI_VFP_args build attribute controls the procedure call
standard used for floating point parameters on ARM. The values are:

0 - Base AAPCS (FP Parameters passed in Core (Integer) registers
1 - VFP AAPCS (FP Parameters passed in FP registers)
2 - Toolchain specific (Neither Base or VFP)
3 - Compatible with all (No use of floating point parameters)

If the Tag_ABI_VFP_args build attribute is missing it has an implicit
value of 0.

We use the attribute in two ways:

* Detect a clash in calling convention between Base, VFP and Toolchain.

we follow ld.bfd's lead and do not error if there is a clash between an
implicit Base AAPCS caused by a missing attribute. Many projects
including the hard-float (VFP AAPCS) version of glibc contain assembler
files that do not use floating point but do not have Tag_ABI_VFP_args.

* Set the EF_ARM_ABI_FLOAT_SOFT or EF_ARM_ABI_FLOAT_HARD ELF header flag

for Base or VFP AAPCS respectively. This flag is used by some ELF
loaders.

References:
* Addenda to, and Errata in, the ABI for the ARM Architecture for
Tag_ABI_VFP_args
* Elf for the ARM Architecture for ELF header flags

Fixes LLVM PR36009

PR: 229050
Obtained from: llvm r338377 by Peter Smith

r337282 | alc | 2018-08-04 04:30:51 +0200 (Sat, 04 Aug 2018) | 7 lines

Set the default image base on arm64 and i386 to a superpage-aligned
address.

Reviewed by: emaste, markj
Discussed with: dim
Differential Revision: https://reviews.freebsd.org/D16385

r339304 | emaste | 2018-10-11 15:19:17 +0200 (Thu, 11 Oct 2018) | 13 lines

lld: set sh_link and sh_info for .rela.plt sections

ELF spec says that for SHT_REL and SHT_RELA sh_link should reference the
associated string table and sh_info should reference the "section to
which the relocation applies." ELF Tool Chain's elfcopy / strip use
this (in part) to control whether or not the relocation entry is copied
to the output.

LLVM PR 37538 https://bugs.llvm.org/show_bug.cgi?id=37538

Approved by: re (kib)
Obtained from: llvm r344226 (backported for 6.0)

MFC r341825:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
the upstream release_70 branch r348686 (effectively, 7.0.1 rc3). The
release will follow very soon, but no more functional changes are
expected.

Release notes for llvm, clang and lld 7.0.0 are available here:
<http://releases.llvm.org/7.0.0/docs/ReleaseNotes.html>
<http://releases.llvm.org/7.0.0/tools/clang/docs/ReleaseNotes.html>
<http://releases.llvm.org/7.0.0/tools/lld/docs/ReleaseNotes.html>

PR: 230240, 230355
Relnotes: yes

MFC r342123:

Update clang, llvm, lld, lldb, compiler-rt and libc++ version number to
7.0.1 release r349250. There were no functional changes since the 7.0.1
rc3 import.

PR: 230240, 230355
Relnotes: yes

r343429 | emaste | 2019-01-25 15:46:13 +0100 (Fri, 25 Jan 2019) | 16 lines

clang: default to DWARF 4 as of FreeBSD 13

FreeBSD previously defaulted to DWARF 2 because several tools (gdb,
ctfconvert, etc.) did not support later versions. These have either
been fixed or are deprecated.

Note that gdb 6 still exists but has been moved out of $PATH into
/usr/libexec and is intended only for use by crashinfo(8). The kernel
build sets the DWARF version explicitly via -gdwarf2, so this should
have no effect there.

PR: 234887 [exp-run]
Reviewed by: markj
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D17930

MFC r343916:

Pull in r352607 from upstream llvm trunk (by Craig Topper):

[X86] Add FPSW as a Def on some FP instructions that were missing it.

Pull in r353141 from upstream llvm trunk (by Craig Topper):

[X86] Connect the default fpsr and dirflag clobbers in inline
assembly to the registers we have defined for them.

Summary:
We don't currently map these constraints to physical register numbers
so they don't make it to the MachineIR representation of inline
assembly.

This could have problems for proper dependency tracking in the
machine schedulers though I don't have a test case that shows that.

Reviewers: rnk

Reviewed By: rnk

Subscribers: eraman, llvm-commits

Tags: #llvm

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

Pull in r353489 from upstream llvm trunk (by Craig Topper):

[X86] Add FPCW as a register and start using it as an implicit use on
floating point instructions.

Summary:
FPCW contains the rounding mode control which we manipulate to
implement fp to integer conversion by changing the roudning mode,
storing the value to the stack, and then changing the rounding mode
back. Because we didn't model FPCW and its dependency chain, other
instructions could be scheduled into the middle of the sequence.

This patch introduces the register and adds it as an implciit def of
FLDCW and implicit use of the FP binary arithmetic instructions and
store instructions. There are more instructions that need to be
updated, but this is a good start. I believe this fixes at least the
reduced test case from PR40529.

Reviewers: RKSimon, spatel, rnk, efriedma, andrew.w.kaylor

Subscribers: dim, llvm-commits

Tags: #llvm

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

These should fix a problem in clang 7.0 where it would sometimes emit
long double floating point instructions in a slightly wrong order,
leading to failures in our libm tests. In particular, the cbrt_test
test case 'cbrtl_powl' and the trig_test test case 'reduction'.

Also bump __FreeBSD_cc_version, to be able to detect this in our test
suite.

Reported by: lwhsu
PR: 234040
Upstream PR: https://bugs.llvm.org/show_bug.cgi?id=40206

MFC r344056:

Pull in r339734 from upstream llvm trunk (by Eli Friedman):

[ARM] Make PerformSHLSimplify add nodes to the DAG worklist correctly.

Intentionally excluding nodes from the DAGCombine worklist is likely
to lead to weird optimizations and infinite loops, so it's generally
a bad idea.

To avoid the infinite loops, fix DAGCombine to use the
isDesirableToCommuteWithShift target hook before performing the
transforms in question, and implement the target hook in the ARM
backend disable the transforms in question.

Fixes https://bugs.llvm.org/show_bug.cgi?id=38530 . (I don't have a
reduced testcase for that bug. But we should have sufficient test
coverage for PerformSHLSimplify given that we're not playing weird
tricks with the worklist. I can try to bugpoint it if necessary,
though.)

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

This should fix a possible hang when compiling sys/dev/nxge/if_nxge.c
(which exists now only in the stable/11 branch) for arm.


/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/compiler-rt/LICENSE.TXT
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/allocator_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/dfsan_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/netbsd_syscall_hooks.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/sanitizer/tsan_interface_atomic.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/BlocksRuntime/data.c
/freebsd-11-stable/contrib/compiler-rt/lib/BlocksRuntime/runtime.c
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation_flags.inc
/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_debugging.cc
/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_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_globals_win.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_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_local.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping_myriad.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_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_rtems.cc
/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_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_suppressions.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/weak_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/README.txt
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/aarch64/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/absvdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/absvsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/absvti2.c
/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/addtf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addvdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addvsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addvti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/apple_versioning.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/adddf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmpeq_check_nan.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmpeq_check_nan.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_dcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_div0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_drsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_frsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.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/aeabi_uldivmod.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/chkstk.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/divdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/extendsfdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixsfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunsdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunssfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/modsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/muldf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/mulsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/restore_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/save_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch16.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch32.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switchu8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync-ops.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_synchronize.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/truncdfsf2vfp.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/arm/unorddf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashldi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashlti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashrdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashrti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/assembly.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_clear.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_clear_explicit.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set_explicit.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_signal_fence.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_thread_fence.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/bswapdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/bswapsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clear_cache.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cmpdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cmpti2.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/comparetf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cpu_model.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divmoddi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divmodsi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divsc3.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/divtc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divtf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divxc3.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/eprintf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/extenddftf2.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/extendsftf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ffsdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ffssi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ffsti2.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/fixdfti.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/fixsfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixtfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixtfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixtfti.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/fixunsdfti.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/fixunssfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunstfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunstfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunstfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsxfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsxfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsxfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixxfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixxfti.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/floatditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatdixf.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/floatsitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattixf.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/floatunditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatundixf.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/floatunsitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntixf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_add_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_extend.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_extend_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_mul_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_trunc.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_trunc_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/chkstk2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/divdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/lshrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/moddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/muldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/udivdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/umoddi3.S
/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/int_math.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_types.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_util.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_util.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/lshrdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/lshrti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mingw_fixfloat.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/moddi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/modsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/modti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muldc3.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/mulodi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulosi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muloti4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulsc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/multf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/multi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulvdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulvsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulvti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulxc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negdf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negvdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negvsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negvti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/os_version_check.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/paritydi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/paritysi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/parityti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/popcountdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/popcountsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/popcountti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powidf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powisf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powitf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powixf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/DD.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/divtc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/fixtfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/fixunstfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/floatditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/floatunditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qadd.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qdiv.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qmul.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/multc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/restFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/saveFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/riscv
/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/subtf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subvdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subvsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subvti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/trampoline_setup.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/trunctfdf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/trunctfsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ucmpdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ucmpti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivmoddi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivmodsi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivmodti4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/umoddi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/umodsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/umodti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/unwind-ehabi-helpers.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/chkstk2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdixf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundixf.S
/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/dfsan/dfsan.h
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_custom.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/done_abilist.txt
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/libc_ubuntu1404_abilist.txt
/freebsd-11-stable/contrib/compiler-rt/lib/esan/cache_frag.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/cache_frag.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_circular_buffer.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_flags.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_hashtable.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_interceptors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_interface.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_linux.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_shadow.h
/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.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/working_set.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/working_set_posix.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_blacklist.txt
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_mapping.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.h
/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_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_allocator.cc
/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_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_preinit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.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_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_chained_origin_depot.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_chained_origin_depot.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_interface_internal.h
/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_origin.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_poisoning.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_thread.h
/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/InstrProfiling.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingBuffer.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/InstrProfilingMerge.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingMergeFile.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingNameVar.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformDarwin.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
/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/InstrProfilingRuntime.cc
/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/profile/WindowsMMap.h
/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/sancov_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_addrhashmap.h
/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_bytemap.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_internal.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_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.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_allocator_stats.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_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_atomic_clang_x86.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_format.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_interface_posix.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.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_coverage_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_dbghelp.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno_codes.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.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_freebsd.h
/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_interceptors_ioctl_netbsd.inc
/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_libc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.h
/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_linux_mips64.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_x86_64.S
/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_malloc_mac.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mutex.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.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_linux.cc
/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_openbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.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_bsd.cc
/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_rtems.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.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_stackdepot.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepotbase.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.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_suppressions.h
/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_fuchsia.h
/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_libbacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.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_symbolizer_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_rtems.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.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_syscalls_netbsd.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.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.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ar_to_bc.sh
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/weak_symbols.txt
/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.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_crc32.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_errors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_errors.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_interceptors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_malloc.cpp
/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_termination.cpp
/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/stats/stats.h
/freebsd-11-stable/contrib/compiler-rt/lib/stats/stats_client.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_rtl.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/test.c
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_dense_alloc.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_external.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_ignoreset.h
/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.h
/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_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_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_ppc_regs.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_preinit.cc
/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_mips64.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_ppc64.S
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stack_trace.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc
/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_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_flags.inc
/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.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_monitor.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_monitor.h
/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/ubsan_type_hash_itanium.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/weak_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/weak_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_AArch64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_always_instrument.txt
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_arm.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_logging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_logging.h
/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_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_flags.inc
/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.cc
/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_function_call_trie.h
/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_mips.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_mips64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_never_instrument.txt
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_powerpc64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_powerpc64.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profile_collector.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profile_collector.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_recursion_guard.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_segmented_array.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_AArch64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_arm.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_mips.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_mips64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64_asm.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_tsc.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_x86_64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_x86_64.inc
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_defaults.h
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_fallbacks.h
/freebsd-11-stable/contrib/libc++/include/__config
/freebsd-11-stable/contrib/libc++/include/__errc
/freebsd-11-stable/contrib/libc++/include/__functional_03
/freebsd-11-stable/contrib/libc++/include/__functional_base
/freebsd-11-stable/contrib/libc++/include/__hash_table
/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/__node_handle
/freebsd-11-stable/contrib/libc++/include/__nullptr
/freebsd-11-stable/contrib/libc++/include/__sso_allocator
/freebsd-11-stable/contrib/libc++/include/__string
/freebsd-11-stable/contrib/libc++/include/__threading_support
/freebsd-11-stable/contrib/libc++/include/__tree
/freebsd-11-stable/contrib/libc++/include/algorithm
/freebsd-11-stable/contrib/libc++/include/any
/freebsd-11-stable/contrib/libc++/include/array
/freebsd-11-stable/contrib/libc++/include/atomic
/freebsd-11-stable/contrib/libc++/include/cfloat
/freebsd-11-stable/contrib/libc++/include/charconv
/freebsd-11-stable/contrib/libc++/include/chrono
/freebsd-11-stable/contrib/libc++/include/cmath
/freebsd-11-stable/contrib/libc++/include/codecvt
/freebsd-11-stable/contrib/libc++/include/compare
/freebsd-11-stable/contrib/libc++/include/complex
/freebsd-11-stable/contrib/libc++/include/complex.h
/freebsd-11-stable/contrib/libc++/include/cstdlib
/freebsd-11-stable/contrib/libc++/include/ctime
/freebsd-11-stable/contrib/libc++/include/ctype.h
/freebsd-11-stable/contrib/libc++/include/deque
/freebsd-11-stable/contrib/libc++/include/errno.h
/freebsd-11-stable/contrib/libc++/include/exception
/freebsd-11-stable/contrib/libc++/include/experimental/__config
/freebsd-11-stable/contrib/libc++/include/experimental/algorithm
/freebsd-11-stable/contrib/libc++/include/experimental/any
/freebsd-11-stable/contrib/libc++/include/experimental/chrono
/freebsd-11-stable/contrib/libc++/include/experimental/coroutine
/freebsd-11-stable/contrib/libc++/include/experimental/dynarray
/freebsd-11-stable/contrib/libc++/include/experimental/filesystem
/freebsd-11-stable/contrib/libc++/include/experimental/functional
/freebsd-11-stable/contrib/libc++/include/experimental/memory_resource
/freebsd-11-stable/contrib/libc++/include/experimental/numeric
/freebsd-11-stable/contrib/libc++/include/experimental/optional
/freebsd-11-stable/contrib/libc++/include/experimental/propagate_const
/freebsd-11-stable/contrib/libc++/include/experimental/ratio
/freebsd-11-stable/contrib/libc++/include/experimental/simd
/freebsd-11-stable/contrib/libc++/include/experimental/string_view
/freebsd-11-stable/contrib/libc++/include/experimental/system_error
/freebsd-11-stable/contrib/libc++/include/experimental/tuple
/freebsd-11-stable/contrib/libc++/include/experimental/type_traits
/freebsd-11-stable/contrib/libc++/include/filesystem
/freebsd-11-stable/contrib/libc++/include/float.h
/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/initializer_list
/freebsd-11-stable/contrib/libc++/include/inttypes.h
/freebsd-11-stable/contrib/libc++/include/ios
/freebsd-11-stable/contrib/libc++/include/istream
/freebsd-11-stable/contrib/libc++/include/iterator
/freebsd-11-stable/contrib/libc++/include/limits.h
/freebsd-11-stable/contrib/libc++/include/list
/freebsd-11-stable/contrib/libc++/include/locale
/freebsd-11-stable/contrib/libc++/include/locale.h
/freebsd-11-stable/contrib/libc++/include/map
/freebsd-11-stable/contrib/libc++/include/math.h
/freebsd-11-stable/contrib/libc++/include/memory
/freebsd-11-stable/contrib/libc++/include/module.modulemap
/freebsd-11-stable/contrib/libc++/include/new
/freebsd-11-stable/contrib/libc++/include/numeric
/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/regex
/freebsd-11-stable/contrib/libc++/include/set
/freebsd-11-stable/contrib/libc++/include/setjmp.h
/freebsd-11-stable/contrib/libc++/include/shared_mutex
/freebsd-11-stable/contrib/libc++/include/span
/freebsd-11-stable/contrib/libc++/include/stack
/freebsd-11-stable/contrib/libc++/include/stdbool.h
/freebsd-11-stable/contrib/libc++/include/stddef.h
/freebsd-11-stable/contrib/libc++/include/stdexcept
/freebsd-11-stable/contrib/libc++/include/stdint.h
/freebsd-11-stable/contrib/libc++/include/stdio.h
/freebsd-11-stable/contrib/libc++/include/stdlib.h
/freebsd-11-stable/contrib/libc++/include/streambuf
/freebsd-11-stable/contrib/libc++/include/string
/freebsd-11-stable/contrib/libc++/include/string.h
/freebsd-11-stable/contrib/libc++/include/string_view
/freebsd-11-stable/contrib/libc++/include/system_error
/freebsd-11-stable/contrib/libc++/include/tgmath.h
/freebsd-11-stable/contrib/libc++/include/thread
/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/valarray
/freebsd-11-stable/contrib/libc++/include/variant
/freebsd-11-stable/contrib/libc++/include/vector
/freebsd-11-stable/contrib/libc++/include/version
/freebsd-11-stable/contrib/libc++/include/wchar.h
/freebsd-11-stable/contrib/libc++/include/wctype.h
/freebsd-11-stable/contrib/libc++/src/algorithm.cpp
/freebsd-11-stable/contrib/libc++/src/any.cpp
/freebsd-11-stable/contrib/libc++/src/bind.cpp
/freebsd-11-stable/contrib/libc++/src/charconv.cpp
/freebsd-11-stable/contrib/libc++/src/chrono.cpp
/freebsd-11-stable/contrib/libc++/src/condition_variable.cpp
/freebsd-11-stable/contrib/libc++/src/debug.cpp
/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/filesystem_time_helper.h
/freebsd-11-stable/contrib/libc++/src/experimental/filesystem/operations.cpp
/freebsd-11-stable/contrib/libc++/src/experimental/filesystem/path.cpp
/freebsd-11-stable/contrib/libc++/src/experimental/memory_resource.cpp
/freebsd-11-stable/contrib/libc++/src/filesystem
/freebsd-11-stable/contrib/libc++/src/functional.cpp
/freebsd-11-stable/contrib/libc++/src/future.cpp
/freebsd-11-stable/contrib/libc++/src/hash.cpp
/freebsd-11-stable/contrib/libc++/src/include/apple_availability.h
/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/ios.cpp
/freebsd-11-stable/contrib/libc++/src/iostream.cpp
/freebsd-11-stable/contrib/libc++/src/locale.cpp
/freebsd-11-stable/contrib/libc++/src/memory.cpp
/freebsd-11-stable/contrib/libc++/src/mutex.cpp
/freebsd-11-stable/contrib/libc++/src/new.cpp
/freebsd-11-stable/contrib/libc++/src/optional.cpp
/freebsd-11-stable/contrib/libc++/src/random.cpp
/freebsd-11-stable/contrib/libc++/src/regex.cpp
/freebsd-11-stable/contrib/libc++/src/shared_mutex.cpp
/freebsd-11-stable/contrib/libc++/src/stdexcept.cpp
/freebsd-11-stable/contrib/libc++/src/string.cpp
/freebsd-11-stable/contrib/libc++/src/strstream.cpp
/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/system_error.cpp
/freebsd-11-stable/contrib/libc++/src/thread.cpp
/freebsd-11-stable/contrib/libc++/src/typeinfo.cpp
/freebsd-11-stable/contrib/libc++/src/utility.cpp
/freebsd-11-stable/contrib/libc++/src/valarray.cpp
/freebsd-11-stable/contrib/libc++/src/variant.cpp
/freebsd-11-stable/contrib/libc++/src/vector.cpp
/freebsd-11-stable/contrib/llvm/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/include/llvm-c/Comdat.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DataTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Disassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DisassemblerTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Initialization.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Support.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/InstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Types.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/APSInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/AllocatorList.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Any.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/BitmaskEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/BreadthFirstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/CachedHashString.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/EpochTracker.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/FunctionExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/GraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Hashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableList.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/MapVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/None.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Optional.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PackedVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerEmbeddedInt.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/PriorityWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ScopeExit.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Sequence.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SetVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseMultiSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Statistic.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/StringRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringSwitch.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/UniqueVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/VariadicFunction.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/edit_distance.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_base.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node_base.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node_options.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator_range.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/simple_ilist.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/CFLAliasAnalysisUtils.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/CaptureTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CmpInstAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CodeMetrics.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/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DivergenceAnalysis.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/EHPersonalities.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GlobalsModRef.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/IteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Lint.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/LoopIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.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/MemorySSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MustExecute.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjectUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OrderedBasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PHITransAddr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Passes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PhiValues.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/RegionIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.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/SyntheticCountsUtils.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/TypeBasedAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Utils
/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/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/AsmParser/Parser.h
/freebsd-11-stable/contrib/llvm/include/llvm/AsmParser/SlotMapping.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/DynamicTags.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/WebAssembly.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Magic.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/Bitcode/BitcodeReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AccelTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Analysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AtomicExpandUtils.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.inc
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CostTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ExecutionDepsFix.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ExecutionDomainFix.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ExpandReductions.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/GCStrategy.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.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/Localizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Types.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/LatencyPriorityQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.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/LiveRegMatrix.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveStacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LoopTraversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LowLevelType.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachORelocation.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.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/MachineInstrBundleIterator.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/MachineOperand.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOutliner.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/MachineValueType.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MacroFusion.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Math.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ParallelCG.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/ReachingDefAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.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/ScheduleDAG.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDFS.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.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/StackProtector.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/UnreachableBlockElim.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.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/CodeGen/WasmEHFuncInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/AppendingTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVDebugRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.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/DebugChecksumsSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/Formatters.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/GUID.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/Line.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/RecordSerialization.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/SymbolDumpDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.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/TypeDumpVisitor.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/TypeRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.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/DWARFAddressRange.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.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/DWARFDebugAddr.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.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/DWARFDebugRnglists.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/DWARFGdbIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.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/IMSFFile.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/MSFError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIATable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBInjectedSource.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSectionContrib.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/Formatters.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/Hash.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NamedStreamMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeBuiltinSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.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/NativeExeSymbol.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/PDBStringTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PublicsStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawConstants.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawError.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/Native/TpiHashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDB.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/UDTLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Demangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.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/RawByteChannel.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/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/FuzzerCLI.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/IRMutator.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/OpDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/Operations.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/Random.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/RandomIRBuilder.h
/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/AutoUpgrade.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CFG.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/Comdat.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/Constants.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/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedUser.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/DiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DomTreeUpdater.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/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRPrintingPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstVisitor.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.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/IntrinsicsARM.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/IntrinsicsPowerPC.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.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/Mangler.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Module.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSlotTracker.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/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ProfileSummary.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/RuntimeLibcalls.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SafepointIRVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Statepoint.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TrackingMDRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Use.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/UseListOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/User.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Value.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueHandle.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueSymbolTable.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/LTOBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/UpdateCompilerUsed.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/Linker/IRMover.h
/freebsd-11-stable/contrib/llvm/include/llvm/Linker/Linker.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/MCAsmInfoWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmLayout.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/MCDisassembler/MCDisassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCRelocationInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCSymbolizer.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/MCFixup.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFixupKindInfo.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/MCInstBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrItineraries.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCLabel.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/MCObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/AsmCond.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.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/MCSection.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/MCSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolMachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
/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/StringTableBuilder.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/COFFModuleDefinition.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/CVDebugRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Decompressor.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/MachOUniversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ModuleSymbolTable.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/SymbolSize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Wasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/WasmTraits.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/CodeViewYAMLDebugSections.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLSymbols.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/DWARFEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/DWARFYAML.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/ObjectYAML.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/Arg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/ArgList.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/Option.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/PassRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/Passes/PassBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Passes/PassPlugin.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/Coverage/CoverageMappingWriter.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/ProfileCommon.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/ProfileData/SampleProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
/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/AMDHSAKernelDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMAttributeParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AlignOf.h
/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/BinaryStreamArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamError.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BlockFrequency.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BranchProbability.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/COM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CachePruning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Casting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CheckedArithmetic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Chrono.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/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ConvertUTF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DJB.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Debug.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DebugCounter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DynamicLibrary.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Endian.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/EndianStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Errc.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Errno.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorOr.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/FormatAdapters.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatProviders.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/GenericDomTree.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GlobPattern.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GraphWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/InitLLVM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/JSON.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/JamCRC.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/LineIterator.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/MD5.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachineValueType.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MemAlloc.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/MipsABIFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Mutex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MutexGuard.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/NativeFormatting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/OnDiskHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Options.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Parallel.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Path.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/RWMutex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Regex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ReverseIteration.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SHA1.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SMLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SaveAndRestore.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScaledNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScopedPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Signals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SmallVectorMemoryBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Solaris/sys/regset.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SourceMgr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StringSaver.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SystemUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TarWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetOpcodes.def
/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/TaskQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ThreadLocal.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/Timer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ToolOutputFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrigramIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TypeName.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Unicode.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/UniqueLock.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/VersionTuple.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Win64EH.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/WithColor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.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/Support/raw_sha1_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/thread.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/type_traits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/xxhash.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/SearchableTable.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/CodeGenCWrappers.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/GlobalISel/Target.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/Target.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetCallingConv.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetInstrPredicate.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetItinerary.td
/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/TargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
/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/ToolDrivers/llvm-dlltool/DlltoolDriver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ToolDrivers/llvm-lib/LibDriver.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/AggressiveInstCombine
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/GCOVProfiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/AlwaysInliner.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/CrossDSOCFI.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/ForceFunctionAttrs.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/InferFunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Inliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Internalize.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/IPO/SampleProfile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SyntheticCountsPropagation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstrProfiling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/BoundsChecking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/CGProfile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/GCOVProfiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.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/AlignmentFromAssumptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/BDCE.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/DCE.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/Float2Int.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/GuardWidening.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/InstSimplifyPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LICM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.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/LoopPredication.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerAtomic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.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/PartiallyInlineLibCalls.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/Sink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SpeculateAroundPHIs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils.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/BreakCriticalEdges.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.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/CodeExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/EntryExitInstrumenter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.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/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LCSSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LowerInvoke.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/NameAnonGlobals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/OrderedInstructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterBulk.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SanitizerStats.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyInstructions.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/VNCoercion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.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/WindowsManifestMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource/ResourceProcessor.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource/ResourceScriptToken.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource/ResourceScriptTokenList.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/InstrumentationMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Trace.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/lib/Analysis/AliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Analysis.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/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/CallPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CaptureTracking.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/Delinearization.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DemandedBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DependenceAnalysis.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/EHPersonalities.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVUsers.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/IteratedDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBranchProbabilityInfo.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/MemDepPrinter.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/MemoryLocation.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/ModuleSummaryAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MustExecute.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/ObjCARCInstKind.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PHITransAddr.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PhiValues.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/RegionInfo.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/StratifiedSets.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/SyntheticCountsUtils.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/TypeMetadataUtils.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/LLLexer.h
/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/BinaryFormat/Wasm.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/MetadataLoader.h
/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/BitWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AllocationOrder.cpp
/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/AccelTable.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/AsmPrinterHandler.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
/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/DIEHash.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
/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/DebugLocStream.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.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/DwarfException.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/DwarfUnit.h
/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/WinCFGuard.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AtomicExpandPass.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/BreakFalseDeps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BuiltinGCs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CFIInstrInserter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CalcSpillWeights.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/CriticalAntiDepBreaker.cpp
/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/ExecutionDepsFix.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExecutionDomainFix.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/FaultMaps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FuncletLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCMetadata.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/Combiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CombinerHelper.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/LegalityPredicates.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/LegalizeMutations.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/InlineSpiller.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterferenceCache.cpp
/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/LazyMachineBlockFrequencyInfo.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/LiveInterval.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/LiveRangeUtils.h
/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/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/LoopTraversal.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LowLevelType.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/MIParser.h
/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/MachineBlockPlacement.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/MachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineInstr.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineLICM.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineModuleInfo.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/MachineRegionInfo.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/ReachingDefAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBase.cpp
/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/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/InstrEmitter.h
/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/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/ScheduleDAGSDNodes.h
/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/SjLjEHPrepare.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/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/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/ValueTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/WasmEHPrepare.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/CodeViewError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugLinesSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/Formatters.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/Line.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/SymbolRecordMapping.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/TypeIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.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/DWARFAddressRange.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/DWARFDebugAddr.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.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/DWARFDebugInfoEntry.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/DWARFDebugMacro.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/DWARFDebugRnglists.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/DWARFGdbIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFListTable.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/MSFError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.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/EnumTables.cpp
/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/Hash.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/HashTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NamedStreamMap.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumModules.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/RawError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStream.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/PDBContext.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/PDBSymDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/Compiler.h
/freebsd-11-stable/contrib/llvm/lib/Demangle/ItaniumDemangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/MicrosoftDemangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/StringView.h
/freebsd-11-stable/contrib/llvm/lib/Demangle/Utility.h
/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/GDBRegistrationListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/ObjectBuffer.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Core.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Layer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.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.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/PerfJITEvents
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
/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/Targets/RuntimeDyldCOFFI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.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/FuzzerCLI.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/IRMutator.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/OpDescriptor.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/Operations.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/RandomIRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeImpl.h
/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/Comdat.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/ConstantsContext.h
/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/DomTreeUpdater.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/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/Mangler.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/MetadataImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/Module.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Operator.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/ProfileSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/SafepointIRVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Statepoint.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/SymbolTableListTraitsImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/Type.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/TypeFinder.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/Linker/LinkDiagnosticInfo.h
/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/MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoWasm.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmMacro.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/MCDisassembler/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDwarf.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/MCInst.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstrAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstrDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLinkerOptimizationHint.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/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/MCAsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSchedule.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSection.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionCOFF.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/MCSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbolELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCValue.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWasmStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWinEH.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/SubtargetFeature.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/Binary.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/Decompressor.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/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/Object.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/SymbolSize.cpp
/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/DWARFVisitor.h
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFYAML.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/ObjectYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/YAML.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/Arg.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/ArgList.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/OptTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/Option.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassPlugin.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/InstrProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProf.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/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/BinaryStreamError.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamReader.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/BranchProbability.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/COM.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/ConvertUTF.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CrashRecoveryContext.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DJB.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Debug.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DebugCounter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DynamicLibrary.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Errno.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ErrorHandling.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/FormattedStream.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/InitLLVM.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/JSON.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/JamCRC.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/KnownBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Locale.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/ManagedStatic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MathExtras.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Memory.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Mutex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/NativeFormatting.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Options.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/PrettyStackTrace.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/RWMutex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/RandomNumberGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Regex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SHA1.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/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/StringPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringSaver.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/ThreadLocal.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/TrigramIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Twine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/UnicodeCaseFold.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/COM.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Host.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/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/ThreadLocal.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Unix.h
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Watchdog.inc
/freebsd-11-stable/contrib/llvm/lib/Support/VersionTuple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Watchdog.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/COM.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Host.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/RWMutex.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm/lib/Support/WithColor.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLTraits.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/circular_raw_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/raw_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/regcomp.c
/freebsd-11-stable/contrib/llvm/lib/Support/regengine.inc
/freebsd-11-stable/contrib/llvm/lib/Support/regex_impl.h
/freebsd-11-stable/contrib/llvm/lib/Support/xxhash.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/JSONBackend.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/TableGen/TGLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGLexer.h
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.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/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/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/AArch64MacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
/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/AArch64RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
/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/AArch64SchedExynosM1.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkorDetails.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/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/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/AsmParser/AArch64AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.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/AArch64AddressingModes.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/AArch64MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
/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/AArch64TargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
/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/Utils/AArch64BaseInfo.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/AMDGPUAnnotateUniformValues.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/AMDGPUCallLowering.h
/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/AMDGPUFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
/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/AMDGPUIntrinsicInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
/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/AMDGPULowerIntrinsics.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelAttributes.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
/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/AMDGPUMachineFunction.h
/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/AMDGPUMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.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/AMDGPUPerfHintAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegAsmNames.inc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
/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/AMDGPUSearchableTables.td
/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/AMDGPUTargetObjectFile.h
/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/AMDKernelCodeT.h
/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/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/GCNSchedStrategy.h
/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/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/AMDGPUFixupKinds.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/AMDGPUMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.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/R600MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCTargetDesc.cpp
/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/R600.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.h
/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/R600Defines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.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/R600ISelLowering.h
/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/R600Intrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600OpenCLImageTypeLoweringPass.cpp
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
/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/SIDebuggerInsertNops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixVGPRCopies.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/SIFormMemoryClauses.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/SIProgramInfo.h
/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/SISchedule.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/AMDGPUAsmUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
/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/AMDGPULaneDominator.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.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/ARC.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCBranchFinalize.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCExpandPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp
/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/ARMBasicBlockInfo.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/ARMCodeGenPrepare.cpp
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h
/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/ARMLegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMParallelDSP.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA57.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.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/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.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/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/ARMMCCodeEmitter.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/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/Thumb1FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
/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/ARMBaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h
/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/AVRISelDAGToDAG.cpp
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
/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/AVRSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSubtarget.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/AVRTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.h
/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/AVRELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.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/MCTargetDesc/AVRTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPF.h
/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/BPFCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFFrameLowering.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/BPFInstrInfo.cpp
/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/BPFMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMIPeephole.cpp
/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/BPFSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFSelectionDAGInfo.h
/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/BPFMCAsmInfo.h
/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/HexagonBranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCallingConv.td
/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/HexagonDepIICScalar.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.h
/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/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/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/HexagonHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
/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/HexagonInstrFormatsV60.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/HexagonIntrinsicsV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.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/HexagonMapAsm2IntrinV65.gen.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
/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/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/HexagonTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetStreamer.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/HexagonVExtract.cpp
/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/HexagonFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
/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/HexagonMCCompound.cpp
/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/HexagonMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.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/RDFDeadCode.h
/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/Disassembler/LanaiDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Lanai.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiAluCode.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiCondCode.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
/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/LanaiInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.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/LanaiSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSubtarget.cpp
/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/LanaiTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.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/LanaiBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.h
/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/MCTargetDesc/MSP430MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.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/InstPrinter/MipsInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h
/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/MipsFixupKinds.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/MicroMipsDSPInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.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/Mips.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.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/Mips32r6InstrFormats.td
/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/MipsAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsBranchExpansion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCCState.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallLowering.h
/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/MipsDSPInstrFormats.td
/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/MipsEVAInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsEVAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.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/MipsISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
/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/MipsInstrFormats.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/MipsInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.h
/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/MipsMSAInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMTInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBanks.td
/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/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/MipsSEISelDAGToDAG.h
/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/MipsSEInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSchedule.td
/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/MipsTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Relocation.txt
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.h
/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/NVPTXAsmPrinter.h
/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/NVPTXGenericToNVVM.cpp
/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/NVPTXImageOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/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/NVPTXLowerAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
/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/NVPTXSection.h
/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/NVVMIntrRange.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.h
/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/Nios2AsmPrinter.cpp
/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/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/Disassembler/PPCDisassembler.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/PPCMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
/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/PPC.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.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/PPCCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCCState.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
/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/PPCHazardRecognizers.cpp
/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/PPCInstrQPX.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrSPE.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.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.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/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/PPCTOCRegDeps.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/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/PPCVSXCopy.cpp
/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/README_P9.txt
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.h
/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/RISCVELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.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/MCTargetDesc/RISCVTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.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/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/RISCVMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.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/RISCVTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetObjectFile.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/Disassembler/SparcDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.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/SparcFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
/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/SparcInstrAliases.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
/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/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.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFeatures.td
/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.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.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/SystemZOperands.td
/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/SystemZSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTDC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
/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/Target.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/AsmParser
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
/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/WebAssemblyFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
/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/README.txt
/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/WebAssemblyAddMissingPrototypes.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
/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/WebAssemblyCFGSort.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.h
/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/WebAssemblyISD.def
/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/WebAssemblyInstrCall.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrExceptRef.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/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/WebAssemblyInstrInteger.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.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/WebAssemblyMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.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/WebAssemblyRegNumbering.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/WebAssemblyRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
/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/WebAssemblyTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
/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/X86ATTInstPrinter.h
/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/X86InstPrinterCommon.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86InstPrinterCommon.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
/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/X86FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCExpr.h
/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/ShadowCallStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
/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/X86AvoidStoreForwardingBlocks.cpp
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallingConv.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/X86FixupSetCC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FlagsCopyLowering.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/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/X86IndirectBranchTracking.cpp
/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/X86InstrFMA3Info.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFoldTables.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFoldTables.h
/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/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/X86LegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MacroFusion.h
/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/X86PfmCounters.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp
/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/X86SchedPredicates.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/X86ShuffleDecodeConstantPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SpeculativeLoadHardening.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/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/Disassembler/XCoreDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h
/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/XCoreISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
/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/XCoreTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Testing/Support/Error.cpp
/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/ToolDrivers/llvm-lib/Options.td
/freebsd-11-stable/contrib/llvm/lib/Transforms/AggressiveInstCombine
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroElide.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroInstr.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroInternal.h
/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/BarrierNoopPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/BlockExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/CalledValuePropagation.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/GlobalOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/GlobalSplit.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.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/Internalize.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/SCCP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.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/InstCombineTables.td
/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/CGProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.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/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/Instrumentation/ThreadSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.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/ProvenanceAnalysisEvaluator.cpp
/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/AlignmentFromAssumptions.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/ConstantProp.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DCE.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/FlattenCFGPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Float2Int.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/IVUsersPrinter.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/InstSimplifyPass.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/LoopAccessAnalysisPrinter.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/LoopPassManager.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/LoopSimplifyCFG.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/LoopUnrollAndJamPass.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/LowerExpectIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.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/PlaceSafepoints.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.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/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/SpeculativeExecution.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/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/BuildLibCalls.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/CodeExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.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/GlobalStatus.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InstructionNamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Local.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopRotationUtils.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/LoopUnrollAndJam.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/LoopVersioning.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerInvoke.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/NameAnonGlobals.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/OrderedInstructions.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/SSAUpdaterBulk.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SanitizerStats.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/StripGCRelocates.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.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/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/VNCoercion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
/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/VPRecipeBuilder.h
/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/VPlanDominatorTree.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanLoopInfo.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanValue.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp
/freebsd-11-stable/contrib/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/InstrumentationMap.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/Trace.cpp
/freebsd-11-stable/contrib/llvm/patches
/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/Miscompilation.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/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/BuildSystem.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/CXErrorCode.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/CXString.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Documentation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Index.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/APValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTFwd.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTLambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Attr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Availability.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/Comment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ComparisonCategories.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/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/EvaluatedExprVisitor.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/ExprOpenMP.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/LambdaCapture.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LexicallyOrderedRecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LocInfoType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Mangle.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NonTrivialTypeVisitor.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/ParentMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/PrettyDeclStackTrace.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/RawCommentList.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/SelectorLocationsKind.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.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/TypeOrdering.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeVisitor.h
/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/AST/VTableBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.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/Diagnostics.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/ASTMatchers/Dynamic/VariantValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.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/FormatString.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/OSLog.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/ReachableCode.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/ThreadSafetyLogical.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.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/CFGStmtMap.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/CodeInjector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/ConstructionContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.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/ABI.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/AttrKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AttrSubjectMatchRules.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Attributes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BitmaskEnum.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/BuiltinsHexagon.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.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/CapturedStmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CharInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CommentOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
/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/DiagnosticCommentKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.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.def
/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/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Features.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
/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/Lambda.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/Linkage.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/MemoryBufferCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PragmaKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.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/Stack.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SyncScope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.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/TemplateKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Version.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Visibility.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/X86Target.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/XRayInstr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/XRayLists.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_fp16.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitFuture.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTUDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTranslationUnit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Action.h
/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/Multilib.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/Tool.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/XRayArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/Commit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/EditedSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/EditsReceiver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/FileOffset.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/Rewriters.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.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/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.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/FrontendPluginRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/FrontendTool/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.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/Index/IndexingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMapTypes.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/PPConditionalDirectiveRecord.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.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/Token.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/TokenConcatenation.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/Rewrite/Core/DeltaTree.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CleanupInfo.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/DelayedDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/LoopHint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.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/ParsedAttr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.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/SemaConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaLambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Template.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateInstCallback.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Weak.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.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/GlobalModuleIndex.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.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/MPIFunctionClassifier.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
/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/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/Checker.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.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/BasicValueFactory.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.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/CheckerHelpers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.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/DynamicTypeInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.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/FunctionSummary.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/LoopWidening.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/ProgramStateTrait.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTExpr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSort.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValVisitor.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/SimpleConstraintManager.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/StoreRef.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.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/StaticAnalyzer/Core/PathSensitive/TaintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiff.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiffInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
/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/CompilationDatabasePluginRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Execution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/FixIt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Inclusions
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.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/Extract.h
/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/USRFinder.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/RefactoringCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.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/ARCMigrate/ARCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.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/CXXInheritance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Comment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ComparisonCategories.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/DeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.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/ParentMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/QualTypeNames.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RawCommentList.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/StmtCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtObjC.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/ASTMatchers/Dynamic/VariantValue.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/CFG.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CFGStmtMap.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/CodeInjector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ConstructionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/OSLog.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.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/DiagnosticOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/MemoryBufferCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/ObjCRuntime.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/Sanitizers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SourceLocation.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.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AVR.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AVR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/BPF.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/BPF.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Lanai.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Lanai.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Le64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Le64.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/MSP430.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/MSP430.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PNaCl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PNaCl.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SystemZ.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SystemZ.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/TCE.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/TCE.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.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/Targets/XCore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/XCore.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Version.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Warnings.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/XRayInstr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/XRayLists.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/Address.h
/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/CGBlocks.h
/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/CGCUDANV.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/CGCall.h
/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/CGCleanup.h
/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/CGGPUBuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.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/CGObjCRuntime.h
/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/CGRecordLayout.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/CGVTables.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h
/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/ConstantInitBuilder.cpp
/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/MacroPPCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.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/SanitizerMetadata.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.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/CodeGen/VarBypassDetector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CrossTU/CrossTranslationUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Action.cpp
/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/Job.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Multilib.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/AVR.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/AVR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Ananas.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Ananas.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.h
/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/RISCV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.h
/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/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/CloudABI.h
/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/Contiki.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Contiki.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.h
/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/DragonFly.h
/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/Gnu.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Haiku.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Haiku.h
/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/Lanai.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVCSetupApi.h
/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/Minix.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Myriad.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Myriad.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NaCl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NaCl.h
/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/OpenBSD.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/TCE.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/TCE.h
/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/ToolChains/XCore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/XCore.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Types.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/Commit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.h
/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/Encoding.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/SortJavaScriptImports.h
/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/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CodeGenOptions.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/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.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/FrontendOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendTiming.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.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/LayoutOverrideSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.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/FixItRewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.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/SerializedDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.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_builtin_vars.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_device_functions.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_libdevice_declares.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/__stddef_max_align_t.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/adxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/altivec.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ammintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/arm64intr.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/armintr.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/avx512erintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512pfintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.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/avx512vpopcntdqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqvlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cetintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cldemoteintrin.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/clzerointrin.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/emmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/f16cintrin.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/fxsrintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/gfniintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ia32intrin.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/inttypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/invpcidintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/lwpintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/movdirintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/msa.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mwaitxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/nmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pconfigintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pkuintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/prfchwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ptwriteintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/s390intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/sgxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/shaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdatomic.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdint.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/unwind.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vadefs.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vaesintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vecintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vpclmulqdqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/waitpkgintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/wbnoinvdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/x86intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xopintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsavecintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsaveintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsaveoptintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsavesintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xtestintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/CodegenNameGenerator.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/IndexingContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/SimpleFormatContext.h
/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/PPDirectives.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPExpressions.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/ScratchBuffer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseAST.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/ParseInit.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/DeltaTree.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/TokenRewriter.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/CoroutineStmtBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.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/ParsedAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.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/Sema/TypeLocBuilder.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/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleFileExtension.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/AllocationDiagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.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/CXXSelfAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.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/DeleteWithNonVirtualDtorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.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/FixedAddressChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.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/InnerPointerChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.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/MmapWriteExecChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.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/PointerArithChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.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/ReturnPointerRangeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.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/UninitializedObjectChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.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/CheckerHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.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/ExprEngineCallAndReturn.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.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/LoopWidening.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/PlistDiagnostics.cpp
/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/RangedConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.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/Core/WorkList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Lookup.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/FileMatchTrie.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/FixIt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Inclusions
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.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/Extract.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h
/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/USRFinder.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/cc1_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1gen_reproducer_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/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.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/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/DLL.h
/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/ICF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/ICF.h
/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/MapFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MarkLive.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/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/Common/ErrorHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Reproduce.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Strings.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/TargetOptionsCommandFlags.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Threads.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Timer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Version.cpp
/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/Hexagon.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/CallGraphSort.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/CallGraphSort.h
/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/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/ICF.h
/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/MarkLive.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/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/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/lld/docs
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Args.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/ErrorHandler.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/LLVM.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Reproduce.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Strings.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/TargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Threads.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Version.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Version.inc.in
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/AbsoluteAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/ArchiveLibraryFile.h
/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/File.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Instrumentation.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/LinkingContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Node.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Pass.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/Reference.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Resolver.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SharedLibraryAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SharedLibraryFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Simple.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SymbolTable.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/TODO.txt
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/UndefinedAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Writer.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
/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/Core/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/DefinedAtom.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/LinkingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Reader.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/Writer.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/Driver/DarwinLdOptions.td
/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.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/Atoms.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/DebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
/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/LayoutPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.h
/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/MachOPasses.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h
/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/MachO/TLVPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Support
/freebsd-11-stable/contrib/llvm/tools/lld/tools/linker-script-test
/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/lldb/include/lldb/API/SBAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBroadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBModule.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/SBQueue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBQueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSymbol.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/API/SBThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTrace.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTraceOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.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/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.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/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointCallbackContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Architecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DumpRegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.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/ModuleChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.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/RegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/STLUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/CXXFunctionPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionTypeSystemHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ConnectionFileDescriptor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Debug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostGetOpt.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/OptionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Pipe.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PosixApi.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Predicate.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/TaskPool.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Terminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Time.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/XML.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/GetOptInc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.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/Host/common/NativeWatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/SoftwareBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/openbsd/HostInfoOpenBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionArgParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.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/LineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/LineTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/VariableList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ModuleCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.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/ProcessStructReader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Queue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallOnFunctionExit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Args.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/CleanUp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Either.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Endian.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Environment.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FastDemangle.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Flags.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/History.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/IOObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.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/NameMatches.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SafeMachO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharedCluster.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/Stream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TildeExpressionResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timeout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TraceOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UriParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-defines.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-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-versioning.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAttachInfo.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/SBEvent.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModuleSpec.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/SBQueue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTrace.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTraceOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.h
/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/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Address.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpRegisterValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Event.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FileLineResolver.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/Listener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Mangled.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/Opcode.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/Scalar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Expression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.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/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/GetOptInc.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/HostNativeThreadBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.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/NativeWatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/OptionParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/PipeBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ProcessRunLock.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/SoftwareBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TaskPool.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Terminal.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.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/freebsd/HostInfoFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/openbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/openbsd/HostInfoOpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.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/CommandObjectRegexCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandOptionValidators.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionArgParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Property.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/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/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-arm64/ABISysV_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
/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-i386/ABISysV_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/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-ppc/ABISysV_ppc.h
/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-ppc64/ABISysV_ppc64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
/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/Arm/ArchitectureArm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
/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/ClangDiagnostic.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/ClangExpressionHelper.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/ClangExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.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/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.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/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoAST.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/gen_go_ast.py
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
/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/LibCxxAtomic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.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/CPlusPlus/LibStdcpp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h
/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/NSDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
/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.cpp
/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/AppleObjCRuntimeV1.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.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/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.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/Go/OperatingSystemGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.h
/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/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFUtils.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/DarwinProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.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/ProcessMonitor.h
/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_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.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/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/POSIX/CrashReason.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.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/DynamicRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InstructionUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
/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/NetBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwinConstants.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/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/RegisterContextDarwin_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.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/RegisterContextLinux_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
/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_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.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_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.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_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.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_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.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_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64.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_s390x.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/ThreadMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
/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-arm-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64-register-enums.h
/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/Utility/lldb-s390x-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-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/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/GDBRemoteClientBase.h
/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/GDBRemoteCommunicationServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.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/GDBRemoteCommunicationServerCommon.h
/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/GDBRemoteCommunicationServerPlatform.h
/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/MinidumpParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/NtStructures.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.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/Process/win-minidump
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
/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/DWARFDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
/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/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.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/DWARFDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
/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/DWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
/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/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.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/DWARF/UniqueDWARFASTType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.h
/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/SymbolFile/Symtab/SymbolFileSymtab.cpp
/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.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/Block.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDeclContext.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/DebugMacros.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Declaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/OCamlASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.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/TypeList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/FileAction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoaderList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.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/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Queue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StructuredDataPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.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/ARM64_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Baton.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Connection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.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/Environment.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/FastDemangle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/FileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/History.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/IOObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.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/NameMatches.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/PPC64_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Status.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Stream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Timer.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/Utility/UserID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/argdumper/argdumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/intel-mpx
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIExtensions.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIReadMe.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.h
/freebsd-11-stable/contrib/llvm/tools/lli/RemoteJITUtils.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/CoverageExporter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterJson.h
/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/RenderingSupport.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/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/gcov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/llvm-cov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/Error.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.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-mca
/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/ObjcopyOpts.td
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/Object.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/Object.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/StripOpts.td
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/ELFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/WasmDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/Analyze.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/Analyze.h
/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/Diff.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/DiffPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/DiffPrinter.h
/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/ExplainOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/ExplainOutputStyle.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/MinimalTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/OutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PdbYaml.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PdbYaml.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyVariableDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyVariableDumper.h
/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/YAMLOutputStyle.h
/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/ARMWinEHPrinter.cpp
/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/DwarfCFIEHPrinter.h
/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.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/StackMapPrinter.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-readobj/llvm-readobj.h
/freebsd-11-stable/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/func-id-helper.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/func-id-helper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/func-id-helper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/llvm-xray.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/llvm-xray.cpp
/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-account.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-account.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.cpp
/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-extract.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph-diff.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph-diff.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph-diff.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-registry.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-registry.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-registry.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-stacks.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-stacks.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/BreakpointPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/BreakpointPrinter.h
/freebsd-11-stable/contrib/llvm/tools/opt/Debugify.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/Debugify.h
/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/CTagsEmitter.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/CodeGenMapTable.cpp
/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.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.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/PredicateExpander.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/PredicateExpander.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/RISCVCompressInstEmitter.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/SubtargetEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.h
/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/Types.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/Types.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86DisassemblerShared.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/Makefile
/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/Version.inc
/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/DataTypes.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
Makefile
/freebsd-11-stable/lib/libc++experimental
/freebsd-11-stable/lib/libc++experimental/Makefile
/freebsd-11-stable/lib/libc++fs
/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_dynamic/Makefile
/freebsd-11-stable/lib/libclang_rt/fuzzer
/freebsd-11-stable/lib/libclang_rt/fuzzer_no_main
/freebsd-11-stable/lib/libclang_rt/include/Makefile
/freebsd-11-stable/lib/libclang_rt/msan
/freebsd-11-stable/lib/libclang_rt/msan_cxx
/freebsd-11-stable/lib/libclang_rt/safestack/Makefile
/freebsd-11-stable/lib/libclang_rt/stats/Makefile
/freebsd-11-stable/lib/libclang_rt/tsan/Makefile
/freebsd-11-stable/lib/libclang_rt/tsan_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/share/mk/bsd.sys.mk
/freebsd-11-stable/sys/conf/files
/freebsd-11-stable/sys/conf/kern.mk
/freebsd-11-stable/sys/conf/ldscript.i386
/freebsd-11-stable/sys/i386/i386/locore.s
/freebsd-11-stable/sys/modules/fxp/Makefile
/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/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/lld/ld.lld.1
/freebsd-11-stable/usr.bin/clang/lli/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/llvm-as.1
/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-diff/llvm-diff.1
/freebsd-11-stable/usr.bin/clang/llvm-dis/llvm-dis.1
/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/llvm-link.1
/freebsd-11-stable/usr.bin/clang/llvm-mca
/freebsd-11-stable/usr.bin/clang/llvm-nm/llvm-nm.1
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/Makefile
/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/llvm-tblgen/llvm-tblgen.1
/freebsd-11-stable/usr.bin/clang/llvm-xray/Makefile
/freebsd-11-stable/usr.bin/clang/opt/Makefile
/freebsd-11-stable/usr.bin/clang/opt/opt.1
324023 26-Sep-2017 dim

Merge clang, llvm, lld, lldb, compiler-rt and libc++ 5.0.0 release.

MFC r309126 (by emaste):

Correct lld llvm-tblgen dependency file name

MFC r309169:

Get rid of separate Subversion mergeinfo properties for llvm-dwarfdump
and llvm-lto. The mergeinfo confuses Subversion enormously, and these
directories will just use the mergeinfo for llvm itself.

MFC r312765:

Pull in r276136 from upstream llvm trunk (by Wei Mi):

Use ValueOffsetPair to enhance value reuse during SCEV expansion.

In D12090, the ExprValueMap was added to reuse existing value during
SCEV expansion. However, const folding and sext/zext distribution can
make the reuse still difficult.

A simplified case is: suppose we know S1 expands to V1 in
ExprValueMap, and
S1 = S2 + C_a
S3 = S2 + C_b
where C_a and C_b are different SCEVConstants. Then we'd like to
expand S3 as V1 - C_a + C_b instead of expanding S2 literally. It is
helpful when S2 is a complex SCEV expr and S2 has no entry in
ExprValueMap, which is usually caused by the fact that S3 is
generated from S1 after const folding.

In order to do that, we represent ExprValueMap as a mapping from SCEV
to ValueOffsetPair. We will save both S1->{V1, 0} and S2->{V1, C_a}
into the ExprValueMap when we create SCEV for V1. When S3 is
expanded, it will first expand S2 to V1 - C_a because of S2->{V1,
C_a} in the map, then expand S3 to V1 - C_a + C_b.

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

This should fix assertion failures when building OpenCV >= 3.1.

PR: 215649

MFC r312831:

Revert r312765 for now, since it causes assertions when building
lang/spidermonkey24.

Reported by: antoine
PR: 215649

MFC r316511 (by jhb):

Add an implementation of __ffssi2() derived from __ffsdi2().

Newer versions of GCC include an __ffssi2() symbol in libgcc and the
compiler can emit calls to it in generated code. This is true for at
least GCC 6.2 when compiling world for mips and mips64.

Reviewed by: jmallett, dim
Sponsored by: DARPA / AFRL
Differential Revision: https://reviews.freebsd.org/D10086

MFC r318601 (by adrian):

[libcompiler-rt] add bswapdi2/bswapsi2

This is required for mips gcc 6.3 userland to build/run.

Reviewed by: emaste, dim
Approved by: emaste
Differential Revision: https://reviews.freebsd.org/D10838

MFC r318884 (by emaste):

lldb: map TRAP_CAP to a trace trap

In the absense of a more specific handler for TRAP_CAP (generated by
ENOTCAPABLE or ECAPMODE while in capability mode) treat it as a trace
trap.

Example usage (testing the bug in PR219173):

% proccontrol -m trapcap lldb usr.bin/hexdump/obj/hexdump -- -Cv -s 1 /bin/ls
...
(lldb) run
Process 12980 launching
Process 12980 launched: '.../usr.bin/hexdump/obj/hexdump' (x86_64)
Process 12980 stopped
* thread #1, stop reason = trace
frame #0: 0x0000004b80c65f1a libc.so.7`__sys_lseek + 10
...

In the future we should have LLDB control the trapcap procctl itself
(as it does with ASLR), as well as report a specific stop reason.
This change eliminates an assertion failure from LLDB for now.

MFC r319796:

Remove a few unneeded files from libllvm, libclang and liblldb.

MFC r319885 (by emaste):

lld: ELF: Fix ICF crash on absolute symbol relocations.

If two sections contained relocations to absolute symbols with the same
value we would crash when trying to access their sections. Add a check that
both symbols point to sections before accessing their sections, and treat
absolute symbols as equal if their values are equal.

Obtained from: LLD commit r292578

MFC r319918:

Revert r319796 for now, it can cause undefined references when linking
in some circumstances.

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

MFC r319957 (by emaste):

lld: Add armelf emulation mode

Obtained from: LLD r305375

MFC r321369:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
5.0.0 (trunk r308421). Upstream has branched for the 5.0.0 release,
which should be in about a month. 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 r321420:

Add a few more object files to liblldb, which should solve errors when
linking the lldb executable in some cases. In particular, when the
-ffunction-sections -fdata-sections options are turned off, or
ineffective.

Reported by: Shawn Webb, Mark Millard

MFC r321433:

Cleanup stale Options.inc files from the previous libllvm build for
clang 4.0.0. Otherwise, these can get included before the two newly
generated ones (which are different) for clang 5.0.0.

Reported by: Mark Millard

MFC r321439 (by bdrewery):

Move llvm Options.inc hack from r321433 for NO_CLEAN to lib/clang/libllvm.

The files are only ever generated to .OBJDIR, not to WORLDTMP (as a
sysroot) and are only ever included from a compilation. So using
a beforebuild target here removes the file before the compilation
tries to include it.

MFC r321664:

Pull in r308891 from upstream llvm trunk (by Benjamin Kramer):

[CodeGenPrepare] Cut off FindAllMemoryUses if there are too many uses.

This avoids excessive compile time. The case I'm looking at is
Function.cpp from an old version of LLVM that still had the giant
memcmp string matcher in it. Before r308322 this compiled in about 2
minutes, after it, clang takes infinite* time to compile it. With
this patch we're at 5 min, which is still bad but this is a
pathological case.

The cut off at 20 uses was chosen by looking at other cut-offs in LLVM
for user scanning. It's probably too high, but does the job and is
very unlikely to regress anything.

Fixes PR33900.

* I'm impatient and aborted after 15 minutes, on the bug report it was
killed after 2h.

Pull in r308986 from upstream llvm trunk (by Simon Pilgrim):

[X86][CGP] Reduce memcmp() expansion to 2 load pairs (PR33914)

D35067/rL308322 attempted to support up to 4 load pairs for memcmp
inlining which resulted in regressions for some optimized libc memcmp
implementations (PR33914).

Until we can match these more optimal cases, this patch reduces the
memcmp expansion to a maximum of 2 load pairs (which matches what we
do for -Os).

This patch should be considered for the 5.0.0 release branch as well

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

These fix a hang (or extremely long compile time) when building older
LLVM ports.

Reported by: antoine
PR: 219139

MFC r321719:

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

PR33902: Invalidate line number cache when adding more text to
existing buffer.

This led to crashes as the line number cache would report a bogus
line number for a line of code, and we'd try to find a nonexistent
column within the line when printing diagnostics.

This fixes an assertion when building the graphics/champlain port.

Reported by: antoine, kwm
PR: 219139

MFC r321723:

Upgrade our copies of clang, llvm, lld and lldb to r309439 from the
upstream release_50 branch. This is just after upstream's 5.0.0-rc1.

MFC r322320:

Upgrade our copies of clang, llvm and libc++ to r310316 from the
upstream release_50 branch.

MFC r322326 (by emaste):

lldb: Make i386-*-freebsd expression work on JIT path

* Enable i386 ABI creation for freebsd
* Added an extra argument in ABISysV_i386::PrepareTrivialCall for mmap
syscall
* Unlike linux, the last argument of mmap is actually 64-bit(off_t).
This requires us to push an additional word for the higher order bits.
* Prior to this change, ktrace dump will show mmap failures due to
invalid argument coming from the 6th mmap argument.

Submitted by: Karnajit Wangkhem
Differential Revision: https://reviews.llvm.org/D34776

MFC r322360 (by emaste):

lldb: Report inferior signals as signals, not exceptions, on FreeBSD

This is the FreeBSD equivalent of LLVM r238549.

This serves 2 purposes:

* LLDB should handle inferior process signals SIGSEGV/SIGILL/SIGBUS/
SIGFPE the way it is suppose to be handled. Prior to this fix these
signals will neither create a coredump, nor exit from the debugger
or work for signal handling scenario.
* eInvalidCrashReason need not report "unknown crash reason" if we have
a valid si_signo

llvm.org/pr23699

Patch by Karnajit Wangkhem

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

Submitted by: Karnajit Wangkhem
Obtained from: LLVM r310591

MFC r322474 (by emaste):

lld: Add `-z muldefs` option.

Obtained from: LLVM r310757

MFC r322740:

Upgrade our copies of clang, llvm, lld and libc++ to r311219 from the
upstream release_50 branch.

MFC r322855:

Upgrade our copies of clang, llvm, lldb and compiler-rt to r311606 from
the upstream release_50 branch.

As of this version, lib/msun's trig test should also work correctly
again (see bug 220989 for more information).

PR: 220989

MFC r323112:

Upgrade our copies of clang, llvm, lldb and compiler-rt to r312293 from
the upstream release_50 branch. This corresponds to 5.0.0 rc4.

As of this version, the cad/stepcode port should now compile in a more
reasonable time on i386 (see bug 221836 for more information).

PR: 221836

MFC r323245:

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

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

Relnotes: yes


/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/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/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/asan/asan.syms.extra
/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_errors.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_globals.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_globals_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_globals_win.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_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interface_internal.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_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_win.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_posix.cc
/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_suppressions.cc
/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/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/weak_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/README.txt
/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/addsf3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmpeq_check_nan.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmpeq_check_nan.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_dcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_div0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_drsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_frsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.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/aeabi_uldivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/comparesf2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/udivsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unorddf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.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/bswapdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/bswapsi2.c
/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/divtc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/emutls.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/ffssi2.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_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_types.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_util.c
/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/os_version_check.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/builtins/x86_64/floatdidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdisf.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/done_abilist.txt
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_interceptors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_sideline_linux.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/working_set.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_win.cc
/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.cc
/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/lsan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/weak_symbols.txt
/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_new_delete.cc
/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/InstrProfilingBuffer.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/InstrProfilingNameVar.c
/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/sanitizer_common/sancov_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.h
/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.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_internal.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_secondary.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_other.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_format.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_interface_posix.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_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_mapping_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno_codes.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.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/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_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_linux_s390.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_list.h
/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_malloc_mac.inc
/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_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_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_quarantine.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld.h
/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_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_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_tls_get_addr.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ar_to_bc.sh
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/weak_symbols.txt
/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.cpp
/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_new_delete.cpp
/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_utils.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_utils.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan.syms.extra
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_dense_alloc.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_external.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
/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.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc
/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_platform_posix.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_stat.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.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_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_init.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_AArch64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_always_instrument.txt
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_arm.cc
/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_emulate_tsc.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.cc
/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_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_mips.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_mips64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_never_instrument.txt
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_powerpc64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_powerpc64.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_AArch64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_arm.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_mips.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_mips64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64_asm.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_tsc.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_x86_64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_x86_64.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_x86_64.inc
/freebsd-11-stable/contrib/libc++/CREDITS.TXT
/freebsd-11-stable/contrib/libc++/include/__bit_reference
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_defaults.h
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_fallbacks.h
/freebsd-11-stable/contrib/libc++/include/__config
/freebsd-11-stable/contrib/libc++/include/__debug
/freebsd-11-stable/contrib/libc++/include/__functional_03
/freebsd-11-stable/contrib/libc++/include/__functional_base
/freebsd-11-stable/contrib/libc++/include/__hash_table
/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/__refstring
/freebsd-11-stable/contrib/libc++/include/__split_buffer
/freebsd-11-stable/contrib/libc++/include/__std_stream
/freebsd-11-stable/contrib/libc++/include/__string
/freebsd-11-stable/contrib/libc++/include/__threading_support
/freebsd-11-stable/contrib/libc++/include/__tree
/freebsd-11-stable/contrib/libc++/include/__tuple
/freebsd-11-stable/contrib/libc++/include/__undef_macros
/freebsd-11-stable/contrib/libc++/include/__undef_min_max
/freebsd-11-stable/contrib/libc++/include/algorithm
/freebsd-11-stable/contrib/libc++/include/any
/freebsd-11-stable/contrib/libc++/include/array
/freebsd-11-stable/contrib/libc++/include/atomic
/freebsd-11-stable/contrib/libc++/include/bitset
/freebsd-11-stable/contrib/libc++/include/chrono
/freebsd-11-stable/contrib/libc++/include/cmath
/freebsd-11-stable/contrib/libc++/include/complex
/freebsd-11-stable/contrib/libc++/include/condition_variable
/freebsd-11-stable/contrib/libc++/include/cstddef
/freebsd-11-stable/contrib/libc++/include/cstdio
/freebsd-11-stable/contrib/libc++/include/cstdlib
/freebsd-11-stable/contrib/libc++/include/ctype.h
/freebsd-11-stable/contrib/libc++/include/deque
/freebsd-11-stable/contrib/libc++/include/exception
/freebsd-11-stable/contrib/libc++/include/experimental/__config
/freebsd-11-stable/contrib/libc++/include/experimental/algorithm
/freebsd-11-stable/contrib/libc++/include/experimental/any
/freebsd-11-stable/contrib/libc++/include/experimental/coroutine
/freebsd-11-stable/contrib/libc++/include/experimental/dynarray
/freebsd-11-stable/contrib/libc++/include/experimental/filesystem
/freebsd-11-stable/contrib/libc++/include/experimental/functional
/freebsd-11-stable/contrib/libc++/include/experimental/memory_resource
/freebsd-11-stable/contrib/libc++/include/experimental/numeric
/freebsd-11-stable/contrib/libc++/include/experimental/optional
/freebsd-11-stable/contrib/libc++/include/experimental/string_view
/freebsd-11-stable/contrib/libc++/include/ext/hash_map
/freebsd-11-stable/contrib/libc++/include/ext/hash_set
/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/initializer_list
/freebsd-11-stable/contrib/libc++/include/ios
/freebsd-11-stable/contrib/libc++/include/istream
/freebsd-11-stable/contrib/libc++/include/iterator
/freebsd-11-stable/contrib/libc++/include/limits
/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/math.h
/freebsd-11-stable/contrib/libc++/include/memory
/freebsd-11-stable/contrib/libc++/include/module.modulemap
/freebsd-11-stable/contrib/libc++/include/mutex
/freebsd-11-stable/contrib/libc++/include/new
/freebsd-11-stable/contrib/libc++/include/numeric
/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/set
/freebsd-11-stable/contrib/libc++/include/shared_mutex
/freebsd-11-stable/contrib/libc++/include/sstream
/freebsd-11-stable/contrib/libc++/include/stack
/freebsd-11-stable/contrib/libc++/include/stddef.h
/freebsd-11-stable/contrib/libc++/include/stdexcept
/freebsd-11-stable/contrib/libc++/include/stdio.h
/freebsd-11-stable/contrib/libc++/include/stdlib.h
/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/strstream
/freebsd-11-stable/contrib/libc++/include/system_error
/freebsd-11-stable/contrib/libc++/include/thread
/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/valarray
/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/chrono.cpp
/freebsd-11-stable/contrib/libc++/src/condition_variable.cpp
/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/filesystem_time_helper.h
/freebsd-11-stable/contrib/libc++/src/experimental/filesystem/operations.cpp
/freebsd-11-stable/contrib/libc++/src/experimental/filesystem/path.cpp
/freebsd-11-stable/contrib/libc++/src/functional.cpp
/freebsd-11-stable/contrib/libc++/src/include/atomic_support.h
/freebsd-11-stable/contrib/libc++/src/include/refstring.h
/freebsd-11-stable/contrib/libc++/src/ios.cpp
/freebsd-11-stable/contrib/libc++/src/iostream.cpp
/freebsd-11-stable/contrib/libc++/src/locale.cpp
/freebsd-11-stable/contrib/libc++/src/memory.cpp
/freebsd-11-stable/contrib/libc++/src/mutex.cpp
/freebsd-11-stable/contrib/libc++/src/new.cpp
/freebsd-11-stable/contrib/libc++/src/stdexcept.cpp
/freebsd-11-stable/contrib/libc++/src/string.cpp
/freebsd-11-stable/contrib/libc++/src/strstream.cpp
/freebsd-11-stable/contrib/libc++/src/support
/freebsd-11-stable/contrib/libc++/src/system_error.cpp
/freebsd-11-stable/contrib/libc++/src/thread.cpp
/freebsd-11-stable/contrib/libc++/src/typeinfo.cpp
/freebsd-11-stable/contrib/libc++/src/vector.cpp
/freebsd-11-stable/contrib/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Support.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Types.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/APSInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/AllocatorList.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/BreadthFirstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DepthFirstIterator.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/GraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableList.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IndexedMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntervalMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/MapVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/None.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Optional.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PackedVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerEmbeddedInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerUnion.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PostOrderIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PriorityWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ScopedHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Sequence.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SetVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseMultiSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Statistic.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/StringRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringSet.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/UniqueVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_base.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator_range.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/simple_ilist.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasAnalysis.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/CFGPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLAliasAnalysisUtils.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/ConstantFolding.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/IVUsers.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/IteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Loads.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.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/MemorySSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemorySSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjectUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OrderedBasicBlock.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/RegionIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionPass.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/ScalarEvolutionNormalization.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/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat
/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/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Analysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CommandFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ExecutionDepsFix.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ExpandReductions.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/GCMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCStrategy.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.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/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/Localizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Types.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/LazyMachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.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/LiveRegMatrix.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/LowLevelType.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRPrinter.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/MachineConstantPool.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/MachineFunctionInitializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineFunctionPass.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/MachineInstrBundleIterator.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/MachinePassRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegionInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.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/MacroFusion.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/CostAllocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Math.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Passes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegAllocRegistry.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/RegisterScavenging.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
/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/ScheduleDAGMutation.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDFS.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.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/SlotIndexes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/StackMaps.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/StackProtector.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TailDuplicator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.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/CodeGen/WinEHFuncInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolTypes.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
/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/DebugChecksumsSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/Formatters.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/GUID.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/Line.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.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/SymbolDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabase.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabaseVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumperBase.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/TypeRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecords.def
/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/CodeView/TypeTableCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.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/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.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/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.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/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.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/ByteStream.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/MappedBlockStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/SequencedItemStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/StreamArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/StreamInterface.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/StreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/StreamRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/StreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.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/GenericError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.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/Native
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDB.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/UDTLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.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/GenericValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.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/CompileUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.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/RawByteChannel.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Argument.h
/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/CFG.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/Comdat.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/Constants.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/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedUser.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/GetElementPtrTypeIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalVariable.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/InstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstrTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instruction.def
/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.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Intrinsics.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsARM.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/IntrinsicsPowerPC.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.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/LegacyPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassNameParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/MDBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Mangler.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Module.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/OperandTraits.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/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PredIteratorCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ProfileSummary.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SafepointIRVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Statepoint.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SymbolTableListTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TrackingMDRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TypeFinder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Use.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/UseListOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/User.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/ValueHandle.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueSymbolTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Verifier.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/LTOBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LibDriver
/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/Linker/IRMover.h
/freebsd-11-stable/contrib/llvm/include/llvm/Linker/Linker.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/ConstantPools.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/MCAsmInfoCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAssembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCCodeEmitter.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/MCDisassembler/MCDisassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCRelocationInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCSymbolizer.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/MCFixup.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/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrItineraries.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCLinkerOptimizationHint.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/MCObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/AsmCond.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.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/MCSection.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionMachO.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/MCSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptions.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/StringTableBuilder.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/COFFModuleDefinition.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Decompressor.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/MachOUniversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ModuleSummaryIndexObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ModuleSymbolTable.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/SymbolicFile.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/CodeViewYAMLDebugSections.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLSymbols.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/DWARFEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/DWARFYAML.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/ObjectYAML.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/Arg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/ArgList.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptParser.td
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptSpecifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/Option.h
/freebsd-11-stable/contrib/llvm/include/llvm/Pass.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassInfo.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/Coverage/CoverageMappingWriter.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/InstrProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/ProfileCommon.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/ProfileData/SampleProfWriter.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/ARMAttributeParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMBuildAttributes.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/ArrayRecycler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Atomic.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/BinaryStreamArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamError.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BlockFrequency.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BranchProbability.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CBindingWrapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/COFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CachePruning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Casting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Chrono.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CommandLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compression.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ConvertUTF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Debug.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DebugCounter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Dwarf.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Dwarf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DynamicLibrary.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Endian.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Errno.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorOr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileSystem.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Format.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatAdapters.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatProviders.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatVariadic.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/GraphWriter.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/LowLevelTypeImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MD5.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachO.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MathExtras.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/Path.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RWMutex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Recycler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Regex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ReverseIteration.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SMLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScopedPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Solaris
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Solaris.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SourceMgr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StringPool.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StringSaver.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/Timer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/UniqueLock.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Wasm.h
/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_sha1_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/thread.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/type_traits.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Main.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/SetTheory.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringMatcher.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringToOffsetTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GenericOpcodes.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GlobalISel
/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/TargetGlobalISel.td
/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/TargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSchedule.td
/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
/freebsd-11-stable/contrib/llvm/include/llvm/ToolDrivers
/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/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/LowerTypeTests.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstrProfiling.h
/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/ConstantHoisting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Float2Int.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/JumpThreading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.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/LoopPredication.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.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/Reassociate.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/Utils/BasicBlockUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.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/LoopVersioning.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/MemorySSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/OrderedInstructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.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/SymbolRewriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/VNCoercion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize.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/XRay/Graph.h
/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/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/Analysis.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/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/CallPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CaptureTracking.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/DependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DomPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/EHPersonalities.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVUsers.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/InstCount.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBranchProbabilityInfo.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/MemDepPrinter.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/MemoryLocation.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/ObjCARCInstKind.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PHITransAddr.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/RegionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionPrinter.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/ScalarEvolutionNormalization.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/TypeBasedAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TypeMetadataUtils.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/BinaryFormat
/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/MetadataLoader.h
/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/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/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/DIEHash.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHashAttributes.def
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
/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/DebugLocStream.h
/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.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
/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/BuiltinGCs.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/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/ExecutionDepsFix.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandISelPseudos.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/FaultMaps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FuncletLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCMetadataPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCStrategy.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/InlineSpiller.cpp
/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/LazyMachineBlockFrequencyInfo.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/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/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LowLevelType.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LowerEmuTLS.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/MIParser.h
/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/MIRPrinter.h
/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/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/MachineDominanceFrontier.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/MachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineInstr.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineLICM.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineModuleInfo.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/MachinePostDominators.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineRegisterInfo.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/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/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/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/RegisterClassInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
/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/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/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/StatepointLowering.cpp
/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/SjLjEHPrepare.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/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/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/CVSymbolVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugLinesSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/Formatters.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/RecordSerialization.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/SymbolRecordMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabase.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabaseVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeIndex.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/TypeRecord.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/DWARFDebugArangeSet.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/DWARFDebugInfoEntry.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/DWARFDebugMacro.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/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.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/MSF/StreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/StreamWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.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/GenericError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBContext.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
/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/IntelJITEvents/jitprofiling.c
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.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.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
/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/Targets/RuntimeDyldCOFFI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.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/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeSetNode.h
/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/Comdat.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/ConstantsContext.h
/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/DiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DiagnosticPrinter.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/Mangler.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Module.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Operator.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/PassManager.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/Statepoint.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Type.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/TypeFinder.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/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/LibDriver
/freebsd-11-stable/contrib/llvm/lib/Linker/IRMover.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/LinkModules.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ConstantPools.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/MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoELF.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/MCCodeEmitter.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/MCDisassembler/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCSymbolizer.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/MCInst.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstrAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachOStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachObjectTargetWriter.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/MCObjectWriter.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/MCAsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParserExtension.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/MCSection.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionMachO.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/MCSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbolELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCTargetOptions.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCValue.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWasmStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWinEH.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/SubtargetFeature.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/MC/WinCOFFStreamer.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/Binary.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/Decompressor.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/ModuleSummaryIndexObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ModuleSymbolTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Object.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/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/DWARFVisitor.h
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFYAML.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/ObjectYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/YAML.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/Arg.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/ArgList.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/OptTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/Option.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/InstrProf.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProf.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/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/ARMBuildAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Atomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamError.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamReader.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/BranchProbability.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/CommandLine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Compression.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTF.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CrashRecoveryContext.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DebugCounter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Dwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DynamicLibrary.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Errno.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ErrorHandling.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/FormattedStream.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/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/ManagedStatic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Mutex.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/PrettyStackTrace.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Process.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/RWMutex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Regex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SHA1.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ScopedPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SearchForAddressOfSpecialSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Signals.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/StringRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TargetParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ThreadLocal.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/TrigramIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Twine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Host.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/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Host.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Mutex.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/RWMutex.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/ThreadLocal.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLParser.cpp
/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/TableGen/Record.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/SetTheory.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/StringMatcher.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.h
/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/AArch64A57FPLoadBalancing.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.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.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.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/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/AArch64InstructionSelector.h
/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/AArch64MCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
/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/AArch64SchedA53.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkorDetails.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.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/AArch64SchedVulcan.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.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.cpp
/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/AArch64FixupKinds.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/AArch64MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
/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/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/AMDGPUAnnotateUniformValues.cpp
/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/AMDGPUCallLowering.h
/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.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/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/AMDGPUIntrinsicInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
/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/AMDGPUMachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.h
/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/AMDGPURegAsmNames.inc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURuntimeMetadata.h
/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/AMDGPUTargetObjectFile.h
/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/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/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/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/GCNSchedStrategy.h
/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/AMDGPUMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.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/R600MCCodeEmitter.cpp
/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/R600EmitClauseMarkers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.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/R600ISelLowering.h
/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/R600Intrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
/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/R600RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
/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/SIDebuggerInsertNops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixVGPRCopies.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/SIIntrinsics.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/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/SISchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SITypeRewriter.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/AMDGPUAsmUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
/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/AMDKernelCodeTInfo.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/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/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/ARMBasicBlockInfo.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.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/ARMFeatures.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFrameLowering.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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h
/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/ARMInstructionSelector.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMacroFusion.h
/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/ARMRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBanks.td
/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/ARMScheduleA57WriteRes.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleM3.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.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/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.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/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/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/ARMFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
/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/ARMUnwindOpAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
/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/Thumb2ITBlockPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h
/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/AVR/AVR.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRDevices.td
/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/AVRISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrumentFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSubtarget.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/AVRTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.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/AVRELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
/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/BPFInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp
/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/MCTargetDesc/BPFAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
/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/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.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
/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/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/HexagonCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.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/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/HexagonIICScalar.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.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/HexagonInstrAlias.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrEnc.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.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/HexagonInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIsetDx.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/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/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/HexagonScheduleV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSplitDouble.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/HexagonSystemInst.td
/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/HexagonTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.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/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/HexagonFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.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/HexagonMCCompound.cpp
/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/HexagonMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.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/Lanai/AsmParser/LanaiAsmParser.cpp
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.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/LanaiTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
/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/LanaiMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430CallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
/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/MSP430InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp
/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/Mips/AsmParser/MipsAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
/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/MipsFixupKinds.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/MipsMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips64r6InstrInfo.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/Mips.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td
/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/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/MipsCCState.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallingConv.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.cpp
/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/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMTInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMTInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOptionRecord.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
/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/MipsSEISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSchedule.td
/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/NVPTX/InstPrinter/NVPTXInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
/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/NVPTXImageOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInferAddressSpaces.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/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/NVPTXLowerArgs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.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/NVPTXTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
/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/PPCFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.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/PPC.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.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/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/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/PPCMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/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/PPCTOCRegDeps.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/PPCTargetStreamer.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/PPCVSXCopy.cpp
/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/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
/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/RISCVInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.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/Disassembler/SparcDisassembler.cpp
/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/SparcMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
/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.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td
/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/SparcTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.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/README.txt
/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/SystemZExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
/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/SystemZInstrDFP.td
/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/SystemZInstrHFP.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/SystemZLongBranch.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/SystemZOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZPatterns.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTDC.cpp
/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/Target.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/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
/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/README.txt
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssembly.h
/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/WebAssemblyCFGSort.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/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/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/WebAssemblyInstrCall.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/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/WebAssemblyLowerEmscriptenEHSjLj.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.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/WebAssemblyRegNumbering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
/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/WebAssemblyTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
/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/X86DisassemblerDecoderCommon.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
/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/X86MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
/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.cpp
/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/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/X86InstrBuilder.h
/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/X86InstrFMA.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.h
/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/X86InstrSSE.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/X86InstrTablesInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrVMX.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/X86LegalizerInfo.h
/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/X86MacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBanks.td
/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/X86SchedHaswell.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Schedule.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/X86WinEHState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
/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/XCoreISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
/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/XCoreTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Testing
/freebsd-11-stable/contrib/llvm/lib/ToolDrivers
/freebsd-11-stable/contrib/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
/freebsd-11-stable/contrib/llvm/lib/ToolDrivers/llvm-dlltool/Options.td
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroElide.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroInstr.h
/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/ArgumentPromotion.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/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/IPConstantPropagation.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/StripSymbols.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/EfficiencySanitizer.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/MaximumSpanningTree.h
/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/Instrumentation/ThreadSanitizer.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/DependencyAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
/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/ProvenanceAnalysisEvaluator.cpp
/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/AlignmentFromAssumptions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Float2Int.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/LoadCombine.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/LoopPassManager.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/LoopSimplifyCFG.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/LowerAtomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.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/Reassociate.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.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/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/AddDiscriminators.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.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/DemoteRegToStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.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/GlobalStatus.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InstructionNamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.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/MemorySSA.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/OrderedInstructions.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/SanitizerStats.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/StripGCRelocates.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/VNCoercion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.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/Vectorize.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/CMakeLists.txt
/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/CrashDebugger.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/ListReducer.h
/freebsd-11-stable/contrib/llvm/tools/bugpoint/Miscompilation.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/CXCompilationDatabase.h
/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/ASTStructuralEquivalence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTVector.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/CommentSema.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/DeclObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.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/ExternalASTMerger.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NSAPI.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/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/StmtCXX.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/TemplateBase.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/TypeOrdering.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.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/VariantValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.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/Basic/AddressSpaces.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/AttrSubjectMatchRules.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Builtins.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/BuiltinsNios2.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.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/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/DiagnosticDriverKinds.td
/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.def
/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/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/LangOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/MemoryBufferCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.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/StmtNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.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/TemplateKinds.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/Visibility.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/XRayLists.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitBuilder.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/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/ClangOptionDocs.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/Multilib.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Options.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/Tool.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/Edit/EditedSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.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/CompilerInstance.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.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/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexSymbol.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.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/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/PPCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.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/Token.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/Rewrite/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.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/ParsedTemplate.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/Template.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.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/Module.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/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/CommonBugCategories.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/Checker.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.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/ConstraintManager.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/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/SValBuilder.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/SimpleConstraintManager.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/SubEngine.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/StaticAnalyzer/Core/PathSensitive/TaintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/FixIt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.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/ARCMigrate/ObjCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.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/CXXInheritance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Comment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.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/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/ExternalASTMerger.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Mangle.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/RecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtCXX.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/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/ASTMatchers/Dynamic/Diagnostics.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/ASTMatchers/Dynamic/VariantValue.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/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/OSLog.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.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/ThreadSafetyTIL.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Attributes.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/LangOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/MemoryBufferCache.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/SourceLocation.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.cpp
/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/ABIInfo.h
/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/CGBuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDABuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.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/CGCall.h
/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/CGGPUBuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.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/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/CGStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.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/CodeGenPGO.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
/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/ConstantBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ConstantInitBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
/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/SwiftCallingConv.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/Driver/Arch
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.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/MSVCToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Multilib.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
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.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/Gnu.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h
/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/NetBSD.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tools.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.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/Comments.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Comments.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/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/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/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.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/CreateInvocationFromCommandLine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.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/FrontendOptions.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/LangStandards.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.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/InclusionRewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteMacros.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/SerializedDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.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/altivec.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/arm_acle.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.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/avx512vldqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/clzerointrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cpuid.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/float.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.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/lwpintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/module.modulemap
/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/prfchwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdarg.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdatomic.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdint.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tgmath.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vecintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/x86intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xopintrin.h
/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/IndexingContext.h
/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/PPExpressions.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/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/ScratchBuffer.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/ParseInit.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/Parse/RAIIObjectsForParser.h
/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/CoroutineStmtBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.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/ScopeInfo.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/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.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/ASTReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
/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/GeneratePCH.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.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/CXXSelfAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.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/DeadStoresChecker.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/IteratorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorPastEndChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.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/NoReturnFunctionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.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/SelectorExtras.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.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/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/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.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/ExprEngineCallAndReturn.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.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/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/RangedConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
/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/Z3ConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
/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/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.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/ClangDiagnosticsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.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/CMakeLists.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/DLL.h
/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/Librarian.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MapFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MapFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/ModuleDef.cpp
/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/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/ELF/Arch
/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/ICF.h
/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/Mips.cpp
/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/README.md
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Parallel.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Reader.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/TargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Support
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Reader.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/DarwinLdDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.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/WriterMachO.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/tools/lld/lld.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.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/SBDefines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBError.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.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/SBTrace.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTraceOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Stoppoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Baton.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Connection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ConstString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataBufferHeap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataBufferMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataEncoder.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Error.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FastDemangle.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Flags.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/History.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Listener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Log.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Logging.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.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/ModuleChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Opcode.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/RegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RegularExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/State.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Stream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamTee.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/VMRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectRegister.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/dwarf.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Materializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Config.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Endian.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/IOObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PosixApi.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ThisThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/XML.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.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/NativeRegisterContextRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeThreadProtocol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeWatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/SoftwareBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/Config.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostThreadFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/Config.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostThreadNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/openbsd
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/MainLoopPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Property.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.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/LineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ModuleCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.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/ProcessStructReader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ConvertEnum.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Endian.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FastDemangle.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Flags.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/History.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/IOObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.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/NameMatches.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/PriorityPointerPair.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Range.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SafeMachO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.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/Stream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TaskPool.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TildeExpressionResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timeout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TraceOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UriParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Utils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.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-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBlock.cpp
/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/SBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommunication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBEvent.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpecList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBListener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModuleSpec.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/SBQueue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTrace.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTraceOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBWatchpoint.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/BreakpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.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/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.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/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.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/AddressResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Baton.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Connection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ConstString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataBufferHeap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataBufferMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataEncoder.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Event.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FastDemangle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FileLineResolver.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/History.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Listener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Log.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Logging.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Mangled.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/Opcode.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/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/State.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Stream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Timer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UserID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/VMRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.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/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSystem.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/HostNativeThreadBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/IOObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.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/NativeRegisterContextRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/PipeBase.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/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ThisThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/freebsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/freebsd/HostThreadFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/freebsd/ThisThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/HostThreadNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/ThisThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/openbsd
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/MainLoopPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosix.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/CommandAlias.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.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/CommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Options.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/MacOSX-arm/ABIMacOSX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/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-arm64/ABISysV_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
/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-i386/ABISysV_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/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-ppc/ABISysV_ppc.h
/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-ppc64/ABISysV_ppc64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
/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/ABI/SysV-x86_64/ABISysV_x86_64.h
/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/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
/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/AuxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.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/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/ClangExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.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/EmulateInstructionARM.h
/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/ARM64/EmulateInstructionARM64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/ThreadSanitizerRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/ThreadSanitizerRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
/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/LibCxxAtomic.h
/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/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/CPlusPlus/LibStdcpp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h
/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/NSDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.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/AppleObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
/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/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.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/ELFHeader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.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/OperatingSystem/Go/OperatingSystemGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.h
/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/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.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/DarwinProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.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/ProcessFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.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/DynamicRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.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/NetBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/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_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.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/RegisterContextThreadMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.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_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.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/ThreadMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
/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.h
/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_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/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/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/GDBRemoteCommunicationServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.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/GDBRemoteCommunicationServerCommon.h
/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/GDBRemoteCommunicationServerPlatform.h
/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/GDBRemoteRegisterContext.h
/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/ProcessGDBRemoteLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.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/gdb-remote/ThreadGDBRemote.h
/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.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/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/StructuredData/DarwinLog/StructuredDataDarwinLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.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/DWARFDIECollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
/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/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.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/DWARFDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.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/HashedNameToDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.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/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
/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/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.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.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/Block.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.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/Declaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/OCamlASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.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/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/VariableList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/FileAction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.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/ProcessInfo.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/RegisterNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackID.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/TargetList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Baton.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Connection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.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/FastDemangle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/FileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/History.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/IOObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.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/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ModuleCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/NameMatches.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/PseudoTerminal.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Range.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/RegisterNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/RegularExpression.cpp
/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/Stream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringList.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/TildeExpressionResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Timer.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/Utility/UriParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UserID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/argdumper/argdumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/intel-mpx
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.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-mi/MIUtilString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.h
/freebsd-11-stable/contrib/llvm/tools/lli/RemoteJITUtils.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-bcanalyzer/llvm-bcanalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp
/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.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/gcov.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/DifferenceEngine.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-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil
/freebsd-11-stable/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.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/CodeView.h
/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/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
/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/xray-account.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-extract.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-extract.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph-diff.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph-diff.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.cc
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-sleds.h
/freebsd-11-stable/contrib/llvm/tools/opt/BreakpointPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/GraphPrinters.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/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/CodeEmitterGen.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/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/CodeGenMapTable.cpp
/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/CodeGenTarget.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenTarget.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.h
/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/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/GlobalISelEmitter.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/SearchableTableEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.h
/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/Types.cpp
/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/X86ModRMFilters.h
/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/Config/Version.inc
/freebsd-11-stable/lib/clang/include/lldb
/freebsd-11-stable/lib/clang/include/llvm/Config/abi-breaking.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/DataTypes.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/clang/llvm.build.mk
Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/asan/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/ubsan_standalone/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/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/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbdump
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-xray/Makefile
316423 02-Apr-2017 dim

Update clang, llvm, lld, lldb, compiler-rt and libc++ to 4.0.0 release:

MFC r309142 (by emaste):

Add WITH_LLD_AS_LD build knob

If set it installs LLD as /usr/bin/ld. LLD (as of version 3.9) is not
capable of linking the world and kernel, but can self-host and link many
substantial applications. GNU ld continues to be used for the world and
kernel build, regardless of how this knob is set.

It is on by default for arm64, and off for all other CPU architectures.

Sponsored by: The FreeBSD Foundation

MFC r310840:

Reapply 310775, now it also builds correctly if lldb is disabled:

Move llvm-objdump from CLANG_EXTRAS to installed by default

We currently install three tools from binutils 2.17.50: as, ld, and
objdump. Work is underway to migrate to a permissively-licensed
tool-chain, with one goal being the retirement of binutils 2.17.50.

LLVM's llvm-objdump is intended to be compatible with GNU objdump
although it is currently missing some options and may have formatting
differences. Enable it by default for testing and further investigation.
It may later be changed to install as /usr/bin/objdump, it becomes a
fully viable replacement.

Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D8879

MFC r312855 (by emaste):

Rename LLD_AS_LD to LLD_IS_LD, for consistency with CLANG_IS_CC

Reported by: Dan McGregor <dan.mcgregor usask.ca>

MFC r313559 | glebius | 2017-02-10 18:34:48 +0100 (Fri, 10 Feb 2017) | 5 lines

Don't check struct rtentry on FreeBSD, it is an internal kernel structure.
On other systems it may be API structure for SIOCADDRT/SIOCDELRT.

Reviewed by: emaste, dim

MFC r314152 (by jkim):

Remove an assembler flag, which is redundant since r309124. The upstream
took care of it by introducing a macro NO_EXEC_STACK_DIRECTIVE.

http://llvm.org/viewvc/llvm-project?rev=273500&view=rev

Reviewed by: dim

MFC r314564:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
4.0.0 (branches/release_40 296509). The release will follow soon.

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

Also note that as of 4.0.0, lld should be able to link the base system
on amd64 and aarch64. See the WITH_LLD_IS_LLD setting in src.conf(5).
Though please be aware that this is work in progress.

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

Thanks to Ed Maste, Jan Beich, Antoine Brodin and Eric Fiselier for
their help.

Relnotes: yes
Exp-run: antoine
PR: 215969, 216008

MFC r314708:

For now, revert r287232 from upstream llvm trunk (by Daniil Fukalov):

[SCEV] limit recursion depth of CompareSCEVComplexity

Summary:
CompareSCEVComplexity goes too deep (50+ on a quite a big unrolled
loop) and runs almost infinite time.

Added cache of "equal" SCEV pairs to earlier cutoff of further
estimation. Recursion depth limit was also introduced as a parameter.

Reviewers: sanjoy

Subscribers: mzolotukhin, tstellarAMD, llvm-commits

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

This commit is the cause of excessive compile times on skein_block.c
(and possibly other files) during kernel builds on amd64.

We never saw the problematic behavior described in this upstream commit,
so for now it is better to revert it. An upstream bug has been filed
here: https://bugs.llvm.org/show_bug.cgi?id=32142

Reported by: mjg

MFC r314795:

Reapply r287232 from upstream llvm trunk (by Daniil Fukalov):

[SCEV] limit recursion depth of CompareSCEVComplexity

Summary:
CompareSCEVComplexity goes too deep (50+ on a quite a big unrolled
loop) and runs almost infinite time.

Added cache of "equal" SCEV pairs to earlier cutoff of further
estimation. Recursion depth limit was also introduced as a parameter.

Reviewers: sanjoy

Subscribers: mzolotukhin, tstellarAMD, llvm-commits

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

Pull in r296992 from upstream llvm trunk (by Sanjoy Das):

[SCEV] Decrease the recursion threshold for CompareValueComplexity

Fixes PR32142.

r287232 accidentally increased the recursion threshold for
CompareValueComplexity from 2 to 32. This change reverses that
change by introducing a separate flag for CompareValueComplexity's
threshold.

The latter revision fixes the excessive compile times for skein_block.c.

MFC r314907 | mmel | 2017-03-08 12:40:27 +0100 (Wed, 08 Mar 2017) | 7 lines

Unbreak ARMv6 world.

The new compiler_rt library imported with clang 4.0.0 have several fatal
issues (non-functional __udivsi3 for example) with ARM specific instrict
functions. As temporary workaround, until upstream solve these problems,
disable all thumb[1][2] related feature.

MFC r315016:

Update clang, llvm, lld, lldb, compiler-rt and libc++ to 4.0.0 release.
We were already very close to the last release candidate, so this is a
pretty minor update.

Relnotes: yes

MFC r316005:

Revert r314907, and pull in r298713 from upstream compiler-rt trunk (by
Weiming Zhao):

builtins: Select correct code fragments when compiling for Thumb1/Thum2/ARM ISA.

Summary:
Value of __ARM_ARCH_ISA_THUMB isn't based on the actual compilation
mode (-mthumb, -marm), it reflect's capability of given CPU.

Due to this:
- use __tbumb__ and __thumb2__ insteand of __ARM_ARCH_ISA_THUMB
- use '.thumb' directive consistently in all affected files
- decorate all thumb functions using
DEFINE_COMPILERRT_THUMB_FUNCTION()

---------
Note: This patch doesn't fix broken Thumb1 variant of __udivsi3 !

Reviewers: weimingz, rengolin, compnerd

Subscribers: aemerson, dim

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

Discussed with: mmel


/freebsd-11-stable/Makefile.inc1
/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/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/xray
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation_flags.inc
/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_debugging.cc
/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_fake_stack.h
/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_globals.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_globals_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_globals_win.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_win.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_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_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/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/weak_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/adddf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_uidivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_uldivmod.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/divdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/extendsfdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixsfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunsdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunssfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/modsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/muldf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/mulsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/truncdfsf2vfp.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/arm/unorddf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/assembly.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clear_cache.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mingw_fixfloat.c
/freebsd-11-stable/contrib/compiler-rt/lib/cfi/cfi.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan.h
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/done_abilist.txt
/freebsd-11-stable/contrib/compiler-rt/lib/esan/cache_frag.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_flags.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_hashtable.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_interceptors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_linux.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/esan/esan_shadow.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.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_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_linux.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/InstrProfiling.h
/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/InstrProfilingPort.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingRuntime.cc
/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/WindowsMMap.c
/freebsd-11-stable/contrib/compiler-rt/lib/safestack/safestack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sancov
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_addrhashmap.h
/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_bytemap.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_internal.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_secondary.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_allocator_stats.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic.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_format.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_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_dbghelp.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/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_libc.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.h
/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_linux_mips64.S
/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_malloc_mac.inc
/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_linux.cc
/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_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_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_quarantine.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.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_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.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_symbolizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/weak_symbols.txt
/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_secondary.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_crc32.cpp
/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.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_interceptors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_new_delete.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_termination.cpp
/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_client.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan.syms.extra
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
/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.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutexset.h
/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_platform_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc
/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_mips64.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_proc.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_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.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/ubsan/ubsan_diag.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_init.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/weak_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/xray
/freebsd-11-stable/contrib/libc++/CREDITS.TXT
/freebsd-11-stable/contrib/libc++/LICENSE.TXT
/freebsd-11-stable/contrib/libc++/include/__bit_reference
/freebsd-11-stable/contrib/libc++/include/__config
/freebsd-11-stable/contrib/libc++/include/__debug
/freebsd-11-stable/contrib/libc++/include/__functional_03
/freebsd-11-stable/contrib/libc++/include/__functional_base
/freebsd-11-stable/contrib/libc++/include/__hash_table
/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/__nullptr
/freebsd-11-stable/contrib/libc++/include/__refstring
/freebsd-11-stable/contrib/libc++/include/__sso_allocator
/freebsd-11-stable/contrib/libc++/include/__std_stream
/freebsd-11-stable/contrib/libc++/include/__string
/freebsd-11-stable/contrib/libc++/include/__threading_support
/freebsd-11-stable/contrib/libc++/include/__tree
/freebsd-11-stable/contrib/libc++/include/__tuple
/freebsd-11-stable/contrib/libc++/include/__undef___deallocate
/freebsd-11-stable/contrib/libc++/include/algorithm
/freebsd-11-stable/contrib/libc++/include/any
/freebsd-11-stable/contrib/libc++/include/array
/freebsd-11-stable/contrib/libc++/include/atomic
/freebsd-11-stable/contrib/libc++/include/bitset
/freebsd-11-stable/contrib/libc++/include/chrono
/freebsd-11-stable/contrib/libc++/include/cmath
/freebsd-11-stable/contrib/libc++/include/codecvt
/freebsd-11-stable/contrib/libc++/include/complex
/freebsd-11-stable/contrib/libc++/include/cstdio
/freebsd-11-stable/contrib/libc++/include/cstdlib
/freebsd-11-stable/contrib/libc++/include/cwchar
/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/any
/freebsd-11-stable/contrib/libc++/include/experimental/dynarray
/freebsd-11-stable/contrib/libc++/include/experimental/filesystem
/freebsd-11-stable/contrib/libc++/include/experimental/iterator
/freebsd-11-stable/contrib/libc++/include/experimental/memory_resource
/freebsd-11-stable/contrib/libc++/include/experimental/numeric
/freebsd-11-stable/contrib/libc++/include/experimental/optional
/freebsd-11-stable/contrib/libc++/include/experimental/propagate_const
/freebsd-11-stable/contrib/libc++/include/experimental/string_view
/freebsd-11-stable/contrib/libc++/include/experimental/type_traits
/freebsd-11-stable/contrib/libc++/include/experimental/utility
/freebsd-11-stable/contrib/libc++/include/ext/__hash
/freebsd-11-stable/contrib/libc++/include/ext/hash_map
/freebsd-11-stable/contrib/libc++/include/ext/hash_set
/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/initializer_list
/freebsd-11-stable/contrib/libc++/include/inttypes.h
/freebsd-11-stable/contrib/libc++/include/iomanip
/freebsd-11-stable/contrib/libc++/include/ios
/freebsd-11-stable/contrib/libc++/include/iosfwd
/freebsd-11-stable/contrib/libc++/include/istream
/freebsd-11-stable/contrib/libc++/include/iterator
/freebsd-11-stable/contrib/libc++/include/limits
/freebsd-11-stable/contrib/libc++/include/limits.h
/freebsd-11-stable/contrib/libc++/include/list
/freebsd-11-stable/contrib/libc++/include/locale
/freebsd-11-stable/contrib/libc++/include/locale.h
/freebsd-11-stable/contrib/libc++/include/map
/freebsd-11-stable/contrib/libc++/include/math.h
/freebsd-11-stable/contrib/libc++/include/memory
/freebsd-11-stable/contrib/libc++/include/module.modulemap
/freebsd-11-stable/contrib/libc++/include/mutex
/freebsd-11-stable/contrib/libc++/include/new
/freebsd-11-stable/contrib/libc++/include/numeric
/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/stdexcept
/freebsd-11-stable/contrib/libc++/include/stdint.h
/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/thread
/freebsd-11-stable/contrib/libc++/include/tuple
/freebsd-11-stable/contrib/libc++/include/type_traits
/freebsd-11-stable/contrib/libc++/include/typeindex
/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/valarray
/freebsd-11-stable/contrib/libc++/include/variant
/freebsd-11-stable/contrib/libc++/include/vector
/freebsd-11-stable/contrib/libc++/src/algorithm.cpp
/freebsd-11-stable/contrib/libc++/src/any.cpp
/freebsd-11-stable/contrib/libc++/src/chrono.cpp
/freebsd-11-stable/contrib/libc++/src/condition_variable.cpp
/freebsd-11-stable/contrib/libc++/src/debug.cpp
/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/experimental/filesystem/path.cpp
/freebsd-11-stable/contrib/libc++/src/experimental/memory_resource.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/ios.cpp
/freebsd-11-stable/contrib/libc++/src/iostream.cpp
/freebsd-11-stable/contrib/libc++/src/locale.cpp
/freebsd-11-stable/contrib/libc++/src/memory.cpp
/freebsd-11-stable/contrib/libc++/src/mutex.cpp
/freebsd-11-stable/contrib/libc++/src/new.cpp
/freebsd-11-stable/contrib/libc++/src/optional.cpp
/freebsd-11-stable/contrib/libc++/src/random.cpp
/freebsd-11-stable/contrib/libc++/src/stdexcept.cpp
/freebsd-11-stable/contrib/libc++/src/string.cpp
/freebsd-11-stable/contrib/libc++/src/strstream.cpp
/freebsd-11-stable/contrib/libc++/src/system_error.cpp
/freebsd-11-stable/contrib/libc++/src/thread.cpp
/freebsd-11-stable/contrib/libc++/src/typeinfo.cpp
/freebsd-11-stable/contrib/libc++/src/variant.cpp
/freebsd-11-stable/contrib/llvm/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/include/llvm-c/Core.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/APSInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/AllocatorList.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/CachedHashString.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/EpochTracker.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/GraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableList.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntervalMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.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/PackedVector.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/PostOrderIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PriorityQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PriorityWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ScopeExit.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ScopedHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SetVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallString.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseMultiSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Statistic.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/StringRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringSwitch.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/ilist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_base.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node_base.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node_options.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/simple_ilist.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/CFGPrinter.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/CodeMetrics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ConstantFolding.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DemandedBits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/EHPersonalities.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GlobalsModRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IVUsers.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/IteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Loads.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/LoopIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopPassManager.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/ModuleSummaryAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.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/RegionInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.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/TargetFolder.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/TypeBasedAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitCodes.h
/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/BitcodeWriterPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Analysis.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/CallingConvLower.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CommandFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIEValue.def
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FastISel.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/IRTranslator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.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/RegBankSelect.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.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/LiveInterval.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveVariables.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LowLevelType.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/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/MachineFunctionAnalysis.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/MachineInstrBundleIterator.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/MachineOperand.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegionInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineValueType.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Math.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/PseudoSourceValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
/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/SelectionDAGISel.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.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/TargetLoweringObjectFileImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ByteStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVDebugRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewOStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/FieldListRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ListRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/MemoryTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/MethodListRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamInterface.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabase.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabaseVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumperBase.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.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/TypeRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecords.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.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/DWARFDebugAbbrev.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.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/DWARFDie.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.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/MSF
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/DirectoryStreamData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/GlobalsStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/IPDBFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/IPDBStreamData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/ISectionContribVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/IndexedStreamData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/ModInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/ModStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/MsfBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/MsfCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/NameHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/NameMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/NameMapBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/PublicsStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/RawConstants.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/RawError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/RawSession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/RawTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/SymbolStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/TpiHashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LogicalDylib.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.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/RPCChannel.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/RawByteChannel.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Attributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/AutoUpgrade.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CFG.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/Comdat.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Constant.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ConstantFolder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ConstantRange.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Constants.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/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DiagnosticPrinter.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/GVMaterializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRPrintingPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InlineAsm.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstIterator.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.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/IntrinsicsARM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.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/LegacyPassNameParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/MDBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Mangler.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Module.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/NoFolder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Operator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Statepoint.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SymbolTableListTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Use.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/UseListOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/User.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Value.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueHandle.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Verifier.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/LTOBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOModule.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/Linker/IRMover.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/ConstantPools.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/MCAssembler.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/MCELFStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCExpr.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFixup.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFragment.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrItineraries.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/AsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.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/MCSection.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWinCOFFStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SectionKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/StringTableBuilder.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/Decompressor.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/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/IRObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/MachOUniversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ModuleSummaryIndexObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ModuleSymbolTable.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/SymbolSize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/SymbolicFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Wasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/DWARFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/MachOYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/ArgList.h
/freebsd-11-stable/contrib/llvm/include/llvm/Pass.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassInfo.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/CoverageMappingWriter.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/InstrProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/ProfileCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/SampleProf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AlignOf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ArrayRecycler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AtomicOrdering.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/COFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CachePruning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Casting.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/CommandLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compression.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ConvertUTF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Debug.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Dwarf.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Dwarf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/AArch64.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/AMDGPU.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/BPF.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/RISCV.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/SystemZ.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Endian.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/Format.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatAdapters.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatProviders.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/GlobPattern.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GraphWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MD5.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachO.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MemoryBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MemoryObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/NativeFormatting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/OnDiskHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Options.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Path.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PrettyStackTrace.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/RWMutex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RandomNumberGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Recycler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RecyclingAllocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Regex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Registry.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SHA1.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SMLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SourceMgr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StreamingMemoryObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StringSaver.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SwapByteOrder.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/Threading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TimeValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Timer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrigramIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Wasm.h
/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/Support/xxhash.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/SetTheory.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/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/TargetGlobalISel.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetInstrInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetItinerary.td
/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/TargetRecip.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/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/GCOVProfiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.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/GlobalOpt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/GlobalSplit.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Inliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Internalize.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/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstrProfiling.h
/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/DCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.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/GuardWidening.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.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/LICM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.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/LoopPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.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/LowerGuardIntrinsic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.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/PartiallyInlineLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Reassociate.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/SimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Sink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.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/BreakCriticalEdges.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/EscapeEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LCSSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LowerInvoke.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/MemorySSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyInstructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.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/Vectorize/LoopVectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay
/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/AliasAnalysisSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Analysis.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/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/DependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/EHPersonalities.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVUsers.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/IteratedDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBranchProbabilityInfo.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/LoopPassManager.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/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/ObjCARCInstKind.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PHITransAddr.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/RegionInfo.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/ScalarEvolutionAliasAnalysis.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/StratifiedSets.h
/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/TypeBasedAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TypeMetadataUtils.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/Bitcode/Reader/BitReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.h
/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/BitWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
/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/AsmPrinter/ARMException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
/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/DIEHash.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
/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/DwarfException.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/DwarfUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.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/AsmPrinter/WinException.h
/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/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/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/FuncletLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCMetadataPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCStrategy.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/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/InlineSpiller.cpp
/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/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/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/LiveRegMatrix.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/LowLevelType.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/MIParser.h
/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/MachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.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/MachineLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineModuleInfo.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/OptimizePHIs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PHIElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PHIEliminationUtils.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/PostRASchedulerList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PrologEpilogInserter.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/RegisterCoalescer.cpp
/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/SafeStackLayout.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/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/ScheduleDAGRRList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.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/StatepointLowering.cpp
/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/SjLjEHPrepare.cpp
/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/ByteStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/FieldListRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ListRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/MemoryTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/MethodListRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/StreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/StreamWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabase.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabaseVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecord.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordBuilder.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/TypeTableBuilder.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/DWARFDebugFrame.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.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/DWARFDie.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.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/MSF
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBContext.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/DbiStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/GSI.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/GSI.h
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/GlobalsStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/IndexedStreamData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/ModStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/MsfBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/MsfCommon.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/NameMap.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/NameMapBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/PDBFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/PublicsStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/RawError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/RawSession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/SymbolStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/TpiHashing.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/TpiStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw/TpiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle
/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/GDBRegistrationListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/NullResolver.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/Orc/OrcRemoteTargetRPCAPI.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.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/RuntimeDyldCOFFX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.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/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeSetNode.h
/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/ConstantFold.h
/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/ConstantsContext.h
/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/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/Mangler.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Module.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Operator.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Pass.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassRegistry.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/SymbolTableListTraitsImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/Type.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/LibDriver/LibDriver.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/IRMover.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/LinkModules.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ConstantPools.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/MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoDarwin.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/MCCodeView.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCContext.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDwarf.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/MCInst.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachOStreamer.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/MCAsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSection.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionMachO.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCTargetOptions.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCValue.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/SubtargetFeature.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WinCOFFStreamer.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/Binary.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Decompressor.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ELF.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/IRObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/MachOObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/MachOUniversal.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ModuleSummaryIndexObjectFile.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/SymbolSize.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/SymbolicFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/WasmObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFYAML.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/ObjectYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/ArgList.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/InstrProf.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProf.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/ARMBuildAttrs.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/CommandLine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Compression.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTF.c
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTF.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DataStream.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Debug.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DeltaAlgorithm.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Dwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DynamicLibrary.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/FileUtilities.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/Host.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/IntrusiveRefCntPtr.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LockFileManager.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/MemoryObject.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/NativeFormatting.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Path.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/PrettyStackTrace.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/RandomNumberGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Regex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SHA1.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ScaledNumber.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ScopedPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SmallPtrSet.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/StreamingMemoryObject.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/StringSaver.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/Threading.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TimeValue.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Timer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TrigramIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Twine.cpp
/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/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/TimeValue.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Unix.h
/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/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/TimeValue.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLParser.cpp
/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/xxhash.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/TableGen/TGLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGLexer.h
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.h
/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/AArch64AddressTypePromotion.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/AArch64BranchRelaxation.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.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/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/AArch64FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
/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/AArch64InstructionSelector.h
/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/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/AArch64RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedM1.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedVulcan.td
/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/AArch64TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
/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/Disassembler/AArch64Disassembler.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/AArch64MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.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/AArch64TargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
/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/AMDGPUAlwaysInlinePass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
/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/AMDGPUCallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
/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/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/AMDGPUInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
/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/AMDGPURuntimeMetadata.h
/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/AMDGPUTargetObjectFile.h
/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/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/GCNSchedStrategy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
/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/AMDGPUELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.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/AMDGPURuntimeMD.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.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/R600MCCodeEmitter.cpp
/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/R600EmitClauseMarkers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.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/R600MachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
/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/SIAnnotateControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.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/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/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/SIIntrinsics.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/SIOptimizeExecMasking.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/SISchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SITypeRewriter.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/AMDKernelCodeTInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VIInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VIInstructions.td
/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/VOPCInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOPInstructions.td
/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/ARMBasicBlockInfo.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.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/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.cpp
/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/ARMInstructionSelector.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/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/ARMRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
/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/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.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/MCTargetDesc/ARMAsmBackend.cpp
/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/ARMMCCodeEmitter.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/ARMMachObjectWriter.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/Thumb1InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
/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/AVR/AVR.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVR.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRDevices.td
/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/AVRISelDAGToDAG.cpp
/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/AVRInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrumentFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMCInstLower.h
/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/AVRTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AsmParser
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/Disassembler
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/InstPrinter
/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/AVRMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.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/README.md
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
/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/BPFISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.cpp
/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/BPFTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/Disassembler
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp
/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/BPFMCAsmInfo.h
/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.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/HexagonBranchRelaxation.cpp
/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/HexagonConstPropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
/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/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/HexagonHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.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/HexagonInstrAlias.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.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/HexagonInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
/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/HexagonIntrinsicsV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIsetDx.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
/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/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/HexagonOptimizeSZextends.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRDF.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRDF.h
/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/HexagonSelectCCInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
/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/HexagonSystemInst.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.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/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/HexagonMCAsmInfo.cpp
/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/HexagonMCCompound.cpp
/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/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/RDFCopy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFCopy.h
/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/TargetInfo/HexagonTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Lanai.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiAluCode.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.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/LanaiTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.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/LanaiMCCodeEmitter.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/MCTargetDesc/MSP430MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.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/MSP430ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
/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/MSP430TargetMachine.cpp
/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/MipsABIInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.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/MipsMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
/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/Mips.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
/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/MipsAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsHazardSchedule.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
/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/MipsInstrFormats.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/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
/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/MipsSEISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
/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/MipsSchedule.td
/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/MipsTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/ManagedStringPool.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFavorNonGenericAddrSpaces.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
/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/NVPTXInferAddressSpaces.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/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/NVPTXLowerAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.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/NVPTXReplaceImageHandles.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.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/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/NVPTXUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.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/PPCMCCodeEmitter.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/P9InstrResources.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPC.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.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/PPCCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.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/PPCHazardRecognizers.cpp
/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/PPCInstrQPX.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/PPCQPXLoadSplat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.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/PPCTargetObjectFile.cpp
/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/PPCVSXCopy.cpp
/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/RISCV
/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/Disassembler/SparcDisassembler.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/SparcMCCodeEmitter.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/SparcAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/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.td
/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/SparcTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
/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/Disassembler/SystemZDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h
/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.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
/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/SystemZInstrBuilder.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/SystemZInstrVector.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.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/SystemZOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.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/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/TargetIntrinsicInfo.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/TargetRecip.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.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/README.txt
/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/WebAssemblyArgumentMove.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/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/WebAssemblyInstrCall.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/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/WebAssemblyInstrInteger.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.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/WebAssemblyRegNumbering.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/WebAssemblyRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.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/WebAssemblyTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
/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/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/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/TargetInfo/X86TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallingConv.td
/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/X86FixupSetCC.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/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/X86InstrAVX512.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrBuilder.h
/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/X86InstrFMA.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.h
/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/X86InstrSSE.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/X86InstrTablesInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrXOP.td
/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/X86MCInstLower.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/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/X86SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
/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/Disassembler/XCoreDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
/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/XCoreFrameToArgsOffsetElim.cpp
/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/XCoreInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.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/XCoreSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines
/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/CrossDSOCFI.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.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/InlineAlways.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/Internalize.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/StripSymbols.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/CFGMST.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.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/MemorySanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
/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/PtrState.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/BDCE.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/DCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Float2Int.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/GuardWidening.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/IVUsersPrinter.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/JumpThreading.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LICM.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoadCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopAccessAnalysisPrinter.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/LoopPassManager.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/LoopSimplifyCFG.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/LowerExpectIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.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/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/SimplifyCFGPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.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/BreakCriticalEdges.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.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/EscapeEnumerator.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/GlobalStatus.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.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/LibCallsShrinkWrap.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/LoopVersioning.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerInvoke.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/MemorySSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/NameAnonFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/NameAnonGlobals.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/SimplifyInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.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/XRay
/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/ListReducer.h
/freebsd-11-stable/contrib/llvm/tools/bugpoint/Miscompilation.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/ToolRunner.h
/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/APValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Attr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h
/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/CommentLexer.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/DeclFriend.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclGroup.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/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/Mangle.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/MangleNumberingContext.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/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/StmtCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.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/AST/VTableBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.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/Registry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.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/FormatString.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/OSLog.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/ThreadSafetyUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.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/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/BuiltinsAMDGPU.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.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/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/DiagnosticDocs.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
/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/DiagnosticLexKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.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/FileManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
/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/Linkage.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.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/StmtNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.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/Version.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Action.h
/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/Multilib.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/Tool.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/Rewriters.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/CompilerInstance.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.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/FrontendPluginRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/CommentToXML.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexSymbol.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.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/LiteralSupport.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/PPCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.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/PreprocessorOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.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/DeclSpec.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.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/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/Sema/Template.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.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/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.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/MPIFunctionClassifier.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
/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/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/Checker.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.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/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/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/ProgramStateTrait.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.def
/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/SubEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.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/ARCMigrate/ARCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/APValue.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.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/ASTTypeTraits.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/AttrImpl.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/Comment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.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/DeclGroup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.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/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
/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/NestedNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/OpenMPClause.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtObjC.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/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/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/ASTMatchers/Dynamic/VariantValue.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/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/Consumed.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/OSLog.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/UninitializedValues.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/LangOptions.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/SourceLocation.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.cpp
/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/CodeGen/ABIInfo.h
/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/CGBlocks.h
/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/CGCUDABuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.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/CGCall.h
/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/CGCleanup.h
/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/CGLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.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/CGObjCRuntime.h
/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/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/CGVTables.h
/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/CodeGenPGO.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/ConstantBuilder.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/EHScopeStack.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/SwiftCallingConv.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/CodeGen/VarBypassDetector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Action.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.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/Job.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Multilib.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tool.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tools.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Types.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Comments.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Comments.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Encoding.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Format.cpp
/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/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/WhitespaceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.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/CreateInvocationFromCommandLine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.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/FrontendOptions.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/ModuleDependencyCollector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.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/HTMLPrint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.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/Rewrite/RewriteTest.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.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_builtin_vars.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.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/__wmmintrin_aes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/altivec.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ammintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/armintr.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.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/avx512vlbwintrin.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/avxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cuda_wrappers
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/float.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/fxsrintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ia32intrin.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/lzcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/module.modulemap
/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/popcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdatomic.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
/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/IndexingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexingContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/HeaderMap.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/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/PPExpressions.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/TokenConcatenation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseAST.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/ParseInit.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/DelayedDiagnostic.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/ScopeInfo.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/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.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/Sema/TypeLocBuilder.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/GeneratePCH.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleFileExtension.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/AnalysisOrderChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.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/DynamicTypeChecker.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/GTestChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorPastEndChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.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/PointerArithChecker.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/StdLibraryFunctionsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.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/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/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.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/MemRegion.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
/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/RegionStore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
/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/StaticAnalyzer/Frontend/CheckerRegistration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Lookup.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/JSONCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.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/cc1_main.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/ClangASTNodesEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.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/CMakeLists.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/Librarian.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/ModuleDef.cpp
/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/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/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/MarkLive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Mips.cpp
/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/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/SymbolListFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/SymbolListFile.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/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Writer.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Config/Version.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Config/Version.inc.in
/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/LinkingContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Node.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Parallel.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Pass.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/Reference.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Reproduce.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Simple.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SymbolTable.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Support
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Config/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Config/Version.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/DefinedAtom.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/LinkingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Reader.cpp
/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/Writer.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_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
/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/DebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.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/MachO/TLVPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Support
/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/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBlock.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/SBBroadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommunication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDeclaration.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/SBEvent.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBHostOS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBModule.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBQueue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBQueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSourceManager.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/SBSymbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContextList.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/API/SBThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeNameSpecifier.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSummary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.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/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Stoppoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointCallbackContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Baton.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ClangForward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Connection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ConnectionMachPort.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ConnectionSharedMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ConstString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/CxaDemangle.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataBufferHeap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataBufferMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataEncoder.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.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/Error.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FastDemangle.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Flags.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/History.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOStreamMacros.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Listener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Log.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Logging.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.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/ModuleChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Opcode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/PluginInterface.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/RegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RegularExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/STLUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/State.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Stream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamTee.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/VMRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectRegister.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/dwarf.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/CXXFunctionPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionTypeSystemHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Materializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Condition.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Config.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Debug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Endian.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostGetOpt.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/IOObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Mutex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/OptionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Pipe.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PosixApi.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Predicate.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Terminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ThisThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Time.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/TimeValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/XML.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/GetOptInc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.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/NativeRegisterContextRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeThreadProtocol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeWatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/SoftwareBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/Config.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostThreadFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostThreadNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/MainLoopPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArgs.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValues.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Property.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.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/LineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/LineTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TaggedASTType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/VariableList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/VerifyDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.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/Queue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallOnFunctionExit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanRunToAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOut.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepThrough.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepUntil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanTracer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnwindAssembly.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/CleanUp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ConvertEnum.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Either.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/NameMatches.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/PriorityPointerPair.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Range.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SafeMachO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharedCluster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TaskPool.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timeout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-defines.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-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-public.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-versioning.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBlock.cpp
/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/SBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommunication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBEvent.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpecList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBListener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModuleSpec.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/SBQueue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbolContextList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/liblldb-private.exports
/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/BreakpointLocationCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Stoppoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/StoppointCallbackContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.h
/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/CommandObjectBreakpointCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h
/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/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h
/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/Commands/CommandObjectThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h
/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/AddressResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Baton.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Connection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ConnectionMachPort.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ConnectionSharedMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ConstString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/CxaDemangle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataBufferHeap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataBufferMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataEncoder.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Event.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FastDemangle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FileLineResolver.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/History.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Listener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Log.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Logging.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Mangled.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ModuleChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Opcode.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/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/State.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Stream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Timer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UserID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/VMRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatClasses.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Expression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.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/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Condition.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/GetOptInc.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/HostNativeThreadBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Mutex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.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/NativeRegisterContextRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/OptionParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/PipeBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ProcessRunLock.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Terminal.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ThisThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TimeValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.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/freebsd/HostInfoFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/freebsd/HostThreadFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/freebsd/ThisThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/HostThreadNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/ThisThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/MainLoopPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.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/CommandObjectRegexCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandOptionValidators.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Property.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/embedded_interpreter.py
/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/MacOSX-arm/ABIMacOSX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/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-arm64/ABISysV_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
/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-i386/ABISysV_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/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-ppc/ABISysV_ppc.h
/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-ppc64/ABISysV_ppc64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
/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/ABI/SysV-x86_64/ABISysV_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
/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/ClangDiagnostic.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/ClangExpressionHelper.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/ClangExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/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/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.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/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoAST.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/gen_go_ast.py
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/ThreadSanitizerRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/ThreadSanitizerRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
/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/LibCxxAtomic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h
/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/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/CPlusPlus/LibStdcpp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h
/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/NSDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
/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.cpp
/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/AppleObjCRuntimeV1.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.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/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h
/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/ELFHeader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.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/Go/OperatingSystemGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
/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/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.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/ProcessFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
/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_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.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/POSIX/CrashReason.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMDefines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMUtils.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/DynamicRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InstructionUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.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/RegisterContextDarwin_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.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/RegisterContextLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.h
/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_arm.h
/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_i386.h
/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/RegisterContextMach_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.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/RegisterContextThreadMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.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_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.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_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.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_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.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/StopInfoMachException.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-s390x-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-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_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/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/GDBRemoteClientBase.h
/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/GDBRemoteCommunicationServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.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/GDBRemoteCommunicationServerCommon.h
/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/GDBRemoteCommunicationServerPlatform.h
/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/GDBRemoteRegisterContext.h
/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/ProcessGDBRemoteLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.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/gdb-remote/ThreadGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
/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/DWARFDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
/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/DWARFDebugArangeSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.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/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.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/DWARFDebugRanges.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
/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/HashedNameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.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/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.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/UniqueDWARFASTType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.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/PDBASTParser.h
/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/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h
/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/UnwindAssembly-x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.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/Block.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDeclContext.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/DebugMacros.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Declaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/OCamlASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.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/TypeList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/VariableList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/VerifyDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/FileAction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoaderList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/OperatingSystem.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/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Queue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StructuredDataPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/KQueue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/KQueue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ModuleCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/NameMatches.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/PseudoTerminal.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Range.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/RegisterNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TaskPool.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TimeSpecTimeout.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TimeSpecTimeout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UriParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/lldb.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/argdumper/argdumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilParse.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilParse.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Darwin
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/ChildTarget/ChildTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.h
/freebsd-11-stable/contrib/llvm/tools/lli/RemoteJITUtils.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/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/llvm-cov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxfilt
/freebsd-11-stable/contrib/llvm/tools/llvm-dis/llvm-dis.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
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-modextract
/freebsd-11-stable/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/ELFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/WasmDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/BuiltinDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/BuiltinDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/CompilandDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/CompilandDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/EnumDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/EnumDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/FunctionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/FunctionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LLVMOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PdbYaml.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PdbYaml.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyEnumDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyEnumDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyVariableDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PrettyVariableDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypedefDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypedefDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/VariableDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/VariableDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YAMLOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YAMLOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YamlSerializationContext.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YamlSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YamlSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YamlTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YamlTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/llvm-pdbdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/llvm-pdbdump.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/ELFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Error.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/StackMapPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
/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
/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/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/CTagsEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeEmitterGen.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/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/CodeGenMapTable.cpp
/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/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/DAGISelMatcherGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/GlobalISelEmitter.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/PseudoLoweringEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SearchableTableEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.h
/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/Types.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/Types.h
/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/gnu/usr.bin/binutils/ld/Makefile
/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/Config/Version.inc
/freebsd-11-stable/lib/clang/include/llvm/Config/abi-breaking.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/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/clang/llvm.build.mk
Makefile
/freebsd-11-stable/lib/libc/gdtoa/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/asan/Makefile
/freebsd-11-stable/lib/libclang_rt/asan_dynamic/Makefile
/freebsd-11-stable/lib/libclang_rt/safestack/Makefile
/freebsd-11-stable/lib/libclang_rt/stats/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile
/freebsd-11-stable/share/mk/bsd.sys.mk
/freebsd-11-stable/share/mk/src.opts.mk
/freebsd-11-stable/sys/conf/kern.mk
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/tools/build/options/WITHOUT_LLD_IS_LD
/freebsd-11-stable/tools/build/options/WITH_LLD_IS_LD
/freebsd-11-stable/usr.bin/clang/Makefile
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cov/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cxxfilt
/freebsd-11-stable/usr.bin/clang/llvm-lto2
/freebsd-11-stable/usr.bin/clang/llvm-modextract
/freebsd-11-stable/usr.bin/clang/llvm-objdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-xray
313538 10-Feb-2017 ngie

MFC r312452-r312512:

r312452-r312512:

- Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones

This simplifies pathing in make/displayed output

- Use .CURDIR:H instead of .CURDIR to simplify pathing in output, etc


/freebsd-11-stable/lib/csu/aarch64/Makefile
/freebsd-11-stable/lib/csu/amd64/Makefile
/freebsd-11-stable/lib/csu/arm/Makefile
/freebsd-11-stable/lib/csu/i386/Makefile
/freebsd-11-stable/lib/csu/mips/Makefile
/freebsd-11-stable/lib/csu/powerpc/Makefile
/freebsd-11-stable/lib/csu/powerpc64/Makefile
/freebsd-11-stable/lib/csu/riscv/Makefile
/freebsd-11-stable/lib/csu/sparc64/Makefile
/freebsd-11-stable/lib/libalias/libalias/Makefile
/freebsd-11-stable/lib/libalias/modules/Makefile
/freebsd-11-stable/lib/libalias/modules/Makefile.inc
/freebsd-11-stable/lib/libarchive/Makefile
/freebsd-11-stable/lib/libauditd/Makefile
/freebsd-11-stable/lib/libbegemot/Makefile
/freebsd-11-stable/lib/libblocksruntime/Makefile
/freebsd-11-stable/lib/libbluetooth/Makefile
/freebsd-11-stable/lib/libbsm/Makefile
/freebsd-11-stable/lib/libbsnmp/libbsnmp/Makefile
/freebsd-11-stable/lib/libbz2/Makefile
Makefile
/freebsd-11-stable/lib/libc_nonshared/Makefile
/freebsd-11-stable/lib/libcam/Makefile
/freebsd-11-stable/lib/libcom_err/Makefile
/freebsd-11-stable/lib/libcompat/Makefile
/freebsd-11-stable/lib/libcrypt/Makefile
/freebsd-11-stable/lib/libcxxrt/Makefile
/freebsd-11-stable/lib/libdevdctl/tests/Makefile
/freebsd-11-stable/lib/libdwarf/Makefile
/freebsd-11-stable/lib/libelf/Makefile
/freebsd-11-stable/lib/libevent/Makefile
/freebsd-11-stable/lib/libexecinfo/Makefile
/freebsd-11-stable/lib/libexpat/Makefile
/freebsd-11-stable/lib/libgssapi/Makefile
/freebsd-11-stable/lib/libiconv_modules/Makefile.inc
/freebsd-11-stable/lib/libiconv_modules/mapper_parallel/Makefile
/freebsd-11-stable/lib/libkiconv/Makefile
/freebsd-11-stable/lib/libldns/Makefile
/freebsd-11-stable/lib/liblzma/Makefile
/freebsd-11-stable/lib/libmagic/Makefile
/freebsd-11-stable/lib/libmd/Makefile
/freebsd-11-stable/lib/libmilter/Makefile
/freebsd-11-stable/lib/libmp/Makefile
/freebsd-11-stable/lib/libngatm/Makefile
/freebsd-11-stable/lib/libnv/Makefile
/freebsd-11-stable/lib/libopie/Makefile
/freebsd-11-stable/lib/libpam/libpam/Makefile
/freebsd-11-stable/lib/libpam/modules/Makefile.inc
/freebsd-11-stable/lib/libpam/modules/pam_passwdqc/Makefile
/freebsd-11-stable/lib/libpam/modules/pam_ssh/Makefile
/freebsd-11-stable/lib/libpam/static_libpam/Makefile
/freebsd-11-stable/lib/libpcap/Makefile
/freebsd-11-stable/lib/libpe/Makefile
/freebsd-11-stable/lib/libproc/Makefile
/freebsd-11-stable/lib/libprocstat/zfs/Makefile
/freebsd-11-stable/lib/librpcsec_gss/Makefile
/freebsd-11-stable/lib/librpcsvc/Makefile
/freebsd-11-stable/lib/librt/Makefile
/freebsd-11-stable/lib/libsbuf/Makefile
/freebsd-11-stable/lib/libsm/Makefile
/freebsd-11-stable/lib/libsmb/Makefile
/freebsd-11-stable/lib/libsmdb/Makefile
/freebsd-11-stable/lib/libsmutil/Makefile
/freebsd-11-stable/lib/libsqlite3/Makefile
/freebsd-11-stable/lib/libstdthreads/Makefile
/freebsd-11-stable/lib/libsysdecode/Makefile
/freebsd-11-stable/lib/libtelnet/Makefile
/freebsd-11-stable/lib/libthr/Makefile
/freebsd-11-stable/lib/libthr/support/Makefile.inc
/freebsd-11-stable/lib/libthread_db/Makefile
/freebsd-11-stable/lib/libufs/Makefile
/freebsd-11-stable/lib/libulog/Makefile
/freebsd-11-stable/lib/libunbound/Makefile
/freebsd-11-stable/lib/libutil/Makefile
/freebsd-11-stable/lib/libypclnt/Makefile
/freebsd-11-stable/lib/ncurses/config.mk
/freebsd-11-stable/lib/ncurses/form/Makefile
/freebsd-11-stable/lib/ncurses/formw/Makefile
/freebsd-11-stable/lib/ncurses/menu/Makefile
/freebsd-11-stable/lib/ncurses/menuw/Makefile
/freebsd-11-stable/lib/ncurses/ncurses/Makefile
/freebsd-11-stable/lib/ncurses/ncursesw/Makefile
/freebsd-11-stable/lib/ncurses/panel/Makefile
/freebsd-11-stable/lib/ncurses/panelw/Makefile
310618 26-Dec-2016 dim

MFC r309124:

Upgrade our copies of clang, llvm, lldb, compiler-rt and libc++ to 3.9.0
release, and add lld 3.9.0. Also completely revamp the build system for
clang, llvm, lldb and their related tools.

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

Release notes for llvm, clang and lld are available here:
<http://llvm.org/releases/3.9.0/docs/ReleaseNotes.html>
<http://llvm.org/releases/3.9.0/tools/clang/docs/ReleaseNotes.html>
<http://llvm.org/releases/3.9.0/tools/lld/docs/ReleaseNotes.html>

Thanks to Ed Maste, Bryan Drewery, Andrew Turner, Antoine Brodin and Jan
Beich for their help.

Relnotes: yes

MFC r309147:

Pull in r282174 from upstream llvm trunk (by Krzysztof Parzyszek):

[PPC] Set SP after loading data from stack frame, if no red zone is
present

Follow-up to r280705: Make sure that the SP is only restored after
all data is loaded from the stack frame, if there is no red zone.

This completes the fix for
https://llvm.org/bugs/show_bug.cgi?id=26519.

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

Reported by: Mark Millard
PR: 214433

MFC r309149:

Pull in r283060 from upstream llvm trunk (by Hal Finkel):

[PowerPC] Refactor soft-float support, and enable PPC64 soft float

This change enables soft-float for PowerPC64, and also makes
soft-float disable all vector instruction sets for both 32-bit and
64-bit modes. This latter part is necessary because the PPC backend
canonicalizes many Altivec vector types to floating-point types, and
so soft-float breaks scalarization support for many operations. Both
for embedded targets and for operating-system kernels desiring
soft-float support, it seems reasonable that disabling hardware
floating-point also disables vector instructions (embedded targets
without hardware floating point support are unlikely to have Altivec,
etc. and operating system kernels desiring not to use floating-point
registers to lower syscall cost are unlikely to want to use vector
registers either). If someone needs this to work, we'll need to
change the fact that we promote many Altivec operations to act on
v4f32. To make it possible to disable Altivec when soft-float is
enabled, hardware floating-point support needs to be expressed as a
positive feature, like the others, and not a negative feature,
because target features cannot have dependencies on the disabling of
some other feature. So +soft-float has now become -hard-float.

Fixes PR26970.

Pull in r283061 from upstream clang trunk (by Hal Finkel):

[PowerPC] Enable soft-float for PPC64, and +soft-float -> -hard-float

Enable soft-float support on PPC64, as the backend now supports it.
Also, the backend now uses -hard-float instead of +soft-float, so set
the target features accordingly.

Fixes PR26970.

Reported by: Mark Millard
PR: 214433

MFC r309212:

Add a few missed clang 3.9.0 files to OptionalObsoleteFiles.

MFC r309262:

Fix packaging for clang, lldb and lld 3.9.0

During the upgrade of clang/llvm etc to 3.9.0 in r309124, the PACKAGE
directive in the usr.bin/clang/*.mk files got dropped accidentally.

Restore it, with a few minor changes and additions:
* Correct license in clang.ucl to NCSA
* Add PACKAGE=clang for clang and most of the "ll" tools
* Put lldb in its own package
* Put lld in its own package

Reviewed by: gjb, jmallett
Differential Revision: https://reviews.freebsd.org/D8666

MFC r309656:

During the bootstrap phase, when building the minimal llvm library on
PowerPC, add lib/Support/Atomic.cpp. This is needed because upstream
llvm revision r271821 disabled the use of std::call_once, which causes
some fallback functions from Atomic.cpp to be used instead.

Reported by: Mark Millard
PR: 214902

MFC r309835:

Tentatively apply https://reviews.llvm.org/D18730 to work around gcc PR
70528 (bogus error: constructor required before non-static data member).
This should fix buildworld with the external gcc package.

Reported by: https://jenkins.freebsd.org/job/FreeBSD_HEAD_amd64_gcc/

MFC r310194:

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
3.9.1 release.

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

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

Relnotes: yes


/freebsd-11-stable/Makefile.inc1
/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/compiler-rt/LICENSE.TXT
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/allocator_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/esan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/linux_syscall_hooks.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_fake_stack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_fake_stack.h
/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_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_interface_internal.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_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_win.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_posix.cc
/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_stack.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_suppressions.cc
/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/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/adddf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3vfp.S
/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_dcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.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/aeabi_uldivmod.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/divdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/extendsfdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixsfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunsdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunssfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/modsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/muldf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/mulsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/restore_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/save_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch16.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch32.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switchu8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_synchronize.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/truncdfsf2vfp.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/arm/unorddf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.S
/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/cpu_model.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/emutls.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatdidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatundidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/divdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/lshrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/moddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/muldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/udivdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/umoddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/restFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/saveFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/unwind-ehabi-helpers.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/cfi/cfi.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/esan
/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.cc
/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_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.h
/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_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_linux.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/InstrProfiling.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingBuffer.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/InstrProfilingMerge.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingMergeFile.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformDarwin.c
/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.h
/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_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.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_nolibc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_mapping_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/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_libc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h
/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_linux_s390.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_list.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
/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_linux.cc
/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_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_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_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.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_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_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.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_symbolizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
/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_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo
/freebsd-11-stable/contrib/compiler-rt/lib/stats
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/test.c
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
/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.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.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_mutex.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutex.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_platform_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_preinit.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_mutex.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.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_stat.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_diag.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_handlers_cxx.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_value.cc
/freebsd-11-stable/contrib/libc++/CREDITS.TXT
/freebsd-11-stable/contrib/libc++/LICENSE.TXT
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_defaults.h
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_fallbacks.h
/freebsd-11-stable/contrib/libc++/include/__config
/freebsd-11-stable/contrib/libc++/include/__functional_base
/freebsd-11-stable/contrib/libc++/include/__hash_table
/freebsd-11-stable/contrib/libc++/include/__mutex_base
/freebsd-11-stable/contrib/libc++/include/__threading_support
/freebsd-11-stable/contrib/libc++/include/__tree
/freebsd-11-stable/contrib/libc++/include/__tuple
/freebsd-11-stable/contrib/libc++/include/__undef___deallocate
/freebsd-11-stable/contrib/libc++/include/__undef_min_max
/freebsd-11-stable/contrib/libc++/include/algorithm
/freebsd-11-stable/contrib/libc++/include/array
/freebsd-11-stable/contrib/libc++/include/atomic
/freebsd-11-stable/contrib/libc++/include/bitset
/freebsd-11-stable/contrib/libc++/include/cctype
/freebsd-11-stable/contrib/libc++/include/cmath
/freebsd-11-stable/contrib/libc++/include/complex
/freebsd-11-stable/contrib/libc++/include/cstring
/freebsd-11-stable/contrib/libc++/include/cwchar
/freebsd-11-stable/contrib/libc++/include/deque
/freebsd-11-stable/contrib/libc++/include/exception
/freebsd-11-stable/contrib/libc++/include/experimental/__config
/freebsd-11-stable/contrib/libc++/include/experimental/__memory
/freebsd-11-stable/contrib/libc++/include/experimental/algorithm
/freebsd-11-stable/contrib/libc++/include/experimental/any
/freebsd-11-stable/contrib/libc++/include/experimental/deque
/freebsd-11-stable/contrib/libc++/include/experimental/dynarray
/freebsd-11-stable/contrib/libc++/include/experimental/filesystem
/freebsd-11-stable/contrib/libc++/include/experimental/forward_list
/freebsd-11-stable/contrib/libc++/include/experimental/functional
/freebsd-11-stable/contrib/libc++/include/experimental/iterator
/freebsd-11-stable/contrib/libc++/include/experimental/list
/freebsd-11-stable/contrib/libc++/include/experimental/map
/freebsd-11-stable/contrib/libc++/include/experimental/memory_resource
/freebsd-11-stable/contrib/libc++/include/experimental/optional
/freebsd-11-stable/contrib/libc++/include/experimental/propagate_const
/freebsd-11-stable/contrib/libc++/include/experimental/regex
/freebsd-11-stable/contrib/libc++/include/experimental/set
/freebsd-11-stable/contrib/libc++/include/experimental/string
/freebsd-11-stable/contrib/libc++/include/experimental/string_view
/freebsd-11-stable/contrib/libc++/include/experimental/tuple
/freebsd-11-stable/contrib/libc++/include/experimental/unordered_map
/freebsd-11-stable/contrib/libc++/include/experimental/unordered_set
/freebsd-11-stable/contrib/libc++/include/experimental/vector
/freebsd-11-stable/contrib/libc++/include/ext/hash_map
/freebsd-11-stable/contrib/libc++/include/ext/hash_set
/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/iomanip
/freebsd-11-stable/contrib/libc++/include/ios
/freebsd-11-stable/contrib/libc++/include/iosfwd
/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/queue
/freebsd-11-stable/contrib/libc++/include/shared_mutex
/freebsd-11-stable/contrib/libc++/include/stack
/freebsd-11-stable/contrib/libc++/include/stdbool.h
/freebsd-11-stable/contrib/libc++/include/stdexcept
/freebsd-11-stable/contrib/libc++/include/streambuf
/freebsd-11-stable/contrib/libc++/include/string
/freebsd-11-stable/contrib/libc++/include/string.h
/freebsd-11-stable/contrib/libc++/include/thread
/freebsd-11-stable/contrib/libc++/include/tuple
/freebsd-11-stable/contrib/libc++/include/type_traits
/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/vector
/freebsd-11-stable/contrib/libc++/include/wchar.h
/freebsd-11-stable/contrib/libc++/src/algorithm.cpp
/freebsd-11-stable/contrib/libc++/src/bind.cpp
/freebsd-11-stable/contrib/libc++/src/condition_variable.cpp
/freebsd-11-stable/contrib/libc++/src/experimental
/freebsd-11-stable/contrib/libc++/src/locale.cpp
/freebsd-11-stable/contrib/libc++/src/memory.cpp
/freebsd-11-stable/contrib/libc++/src/mutex.cpp
/freebsd-11-stable/contrib/libc++/src/regex.cpp
/freebsd-11-stable/contrib/libc++/src/strstream.cpp
/freebsd-11-stable/contrib/libc++/src/system_error.cpp
/freebsd-11-stable/contrib/libc++/src/thread.cpp
/freebsd-11-stable/contrib/llvm/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Disassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Linker.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Target.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Types.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/BitmaskEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/FoldingSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/GraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Hashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerEmbeddedInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PostOrderIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PriorityWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Sequence.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SetVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Statistic.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/StringRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringSet.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/ilist.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/CFLAliasAnalysis.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/CallPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CodeMetrics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ConstantFolding.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DemandedBits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/EHPersonalities.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GlobalsModRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IVUsers.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/IteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Loads.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.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/LoopPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.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/ModuleSummaryAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Passes.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/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/ScalarEvolutionAliasAnalysis.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/TypeBasedAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/AsmParser/Parser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Analysis.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/CallingConvLower.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CommandFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIEValue.def
/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/GCMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.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/LiveVariables.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRParser/MIRParser.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/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/MachineFunctionPass.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/MachineInstrBundleIterator.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/MachineModuleInfoImpls.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOperand.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/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ParallelCG.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/RegAllocPBQP.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.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.h
/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/ScheduleDAGMutation.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAG.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/StackProtector.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TailDuplicator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/UnreachableBlockElim.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.td
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ByteStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolTypes.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/FieldListRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/Line.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ListRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/MemoryTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamInterface.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.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/TypeRecords.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DIContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.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/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.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/PDB/ConcreteSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.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/DIASourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.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/IPDBSourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDB.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.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/GenericValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcArchitectureSupport.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/RPCChannel.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Argument.h
/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/AutoUpgrade.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CFG.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/Comdat.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/Constants.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/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedTypes.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/FunctionInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GVMaterializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRPrintingPasses.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.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/IntrinsicsARM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsMips.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.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/Mangler.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Module.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSummaryIndex.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/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ProfileSummary.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Statepoint.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SymbolTableListTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TrackingMDRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TypeFinder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Use.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/UseListOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/User.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/ValueMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueSymbolTable.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/LTO.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/LTOModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy
/freebsd-11-stable/contrib/llvm/include/llvm/LibDriver/LibDriver.h
/freebsd-11-stable/contrib/llvm/include/llvm/LineEditor/LineEditor.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/Linker/IRMover.h
/freebsd-11-stable/contrib/llvm/include/llvm/Linker/Linker.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/MCAsmInfoELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAssembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCCodeGenInfo.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/MCDirectives.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler.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/MCExternalSymbolizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFragment.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCLinkerOptimizationHint.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/MCObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.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/MCRelocationInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSchedule.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSection.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionELF.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/MCSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolMachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWin64EH.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWinEH.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SectionKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/StringTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SubtargetFeature.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/YAML.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/COFFYAML.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/ELFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/FunctionIndexObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/IRObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/MachOUniversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ModuleSummaryIndexObjectFile.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/SymbolicFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptParser.td
/freebsd-11-stable/contrib/llvm/include/llvm/Option/Option.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/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
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/CoverageMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/CoverageMappingReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/CoverageMappingWriter.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/InstrProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/ProfileCommon.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/ProfileData/SampleProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AIXDataTypesFix.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AlignOf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Atomic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AtomicOrdering.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BranchProbability.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/COFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CachePruning.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/CommandLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ConvertUTF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataTypes.h.in
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Dwarf.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Dwarf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/AMDGPU.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/BPF.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/Hexagon.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/Lanai.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/Mips.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/i386.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/x86_64.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Endian.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/EndianStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorOr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileSystem.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Format.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GenericDomTree.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/JamCRC.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Locale.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LockFileManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MD5.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachO.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/OnDiskHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Path.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PrettyStackTrace.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/RandomNumberGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Registry.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RegistryParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SHA1.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScaledNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScopedPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Signals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StreamingMemoryObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SwapByteOrder.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/Threading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Timer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TypeName.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Unicode.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Valgrind.h
/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_sha1_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/thread.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/type_traits.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/SearchableTable.td
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringToOffsetTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GenericOpcodes.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/TargetCallingConv.td
/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/TargetRecip.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/GCOVProfiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ConstantMerge.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.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/ForceFunctionAttrs.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/InferFunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Internalize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/LowerBitSets.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/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstrProfiling.h
/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/AlignmentFromAssumptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/BDCE.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/DCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Float2Int.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GuardWidening.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/LICM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.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/LoopRotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerAtomic.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/MergedLoadStoreMotion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Reassociate.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/SimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Sink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.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/BuildLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Evaluator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LCSSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/MemorySSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.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/SanitizerStats.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyInstructions.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/UnrollLoop.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/module.modulemap
/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/AliasAnalysisSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Analysis.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/CFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLAliasAnalysis.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/CallPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CaptureTracking.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/Delinearization.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DemandedBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DomPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/EHPersonalities.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVUsers.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/IteratedDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.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/LoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemDepPrinter.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/MemoryLocation.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/ObjCARCInstKind.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PHITransAddr.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/RegionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.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/StratifiedSets.h
/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/TypeMetadataUtils.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/AsmParser/module.modulemap
/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/BitstreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.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/Bitcode/module.modulemap
/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/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.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/AsmPrinterHandler.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
/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/DIEHash.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
/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/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/DwarfException.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/DwarfUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h
/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/BranchFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchFolding.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BuiltinGCs.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/CoreCLRGC.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/EarlyIfConversion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ErlangGC.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/ExpandPostRAPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FuncletLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel
/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/InlineSpiller.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LLVMTargetMachine.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/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/LiveRangeUtils.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveStackAnalysis.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/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/MIParser.h
/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/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/MachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPass.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/MachineLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineRegionInfo.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/OcamlGC.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/Passes.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/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/RegisterCoalescer.cpp
/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/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/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/InstrEmitter.h
/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/ScheduleDAGRRList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.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/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/SelectionDAG/TargetSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SjLjEHPrepare.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/StatepointExampleGC.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/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/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/CodeGen/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ByteStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/FieldListRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ListRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/MemoryTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/MethodListRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/StreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/StreamWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecord.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.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/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.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/DIASourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBContext.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/PDBSymDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.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/MCJIT/MCJIT.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.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/OrcArchitectureSupport.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.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/Orc/OrcRemoteTargetRPCAPI.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
/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/RuntimeDyldCOFFX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeSetNode.h
/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/Comdat.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantFold.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantFold.h
/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/ConstantsContext.h
/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/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/FunctionInfo.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/Mangler.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Module.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Operator.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/PassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassRegistry.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ProfileSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Statepoint.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Type.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/TypeFinder.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/IR/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/LTO/LTO.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/LibDriver/LibDriver.cpp
/freebsd-11-stable/contrib/llvm/lib/LineEditor/LineEditor.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/IRMover.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/LinkModules.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ConstantPools.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/MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoELF.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/MCCodeGenInfo.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/MCDisassembler/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDwarf.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/MCInst.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachOStreamer.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/MCAsmLexer.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/MCSection.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCValue.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWin64EH.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWinEH.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/SubtargetFeature.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/YAML.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/Binary.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFYAML.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/ELFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/FunctionIndexObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/IRObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/MachOObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/MachOUniversal.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Object.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/ObjectYAML
/freebsd-11-stable/contrib/llvm/lib/Option/OptTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/Option.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
/freebsd-11-stable/contrib/llvm/lib/ProfileData/CoverageMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/CoverageMappingReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/CoverageMappingWriter.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/InstrProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProf.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/APFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APSInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMBuildAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Atomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BranchProbability.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CachePruning.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CommandLine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CrashRecoveryContext.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Dwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ErrorHandling.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FoldingSet.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Host.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/IntEqClasses.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/JamCRC.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Locale.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LockFileManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ManagedStatic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Path.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/PrettyStackTrace.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Process.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SHA1.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ScaledNumber.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/SpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Statistic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StreamingMemoryObject.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/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/Triple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Twine.cpp
/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/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/DynamicLibrary.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/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLParser.cpp
/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/TableGen/Record.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/SetTheory.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/module.modulemap
/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/AArch64AddressTypePromotion.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/AArch64BranchRelaxation.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.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/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/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/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/AArch64LoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
/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/AArch64RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.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/AArch64SchedKryo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedM1.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedVulcan.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h
/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/AArch64TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
/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/Disassembler/AArch64Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
/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/AArch64AddressingModes.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/AArch64MCCodeEmitter.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/Utils/AArch64BaseInfo.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/AMDGPUAlwaysInlinePass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
/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/AMDGPUCallLowering.h
/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/AMDGPUDiagnosticInfoUnsupported.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUDiagnosticInfoUnsupported.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
/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/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/AMDGPUInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUOpenCLImageTypeLoweringPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURuntimeMetadata.h
/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/AMDGPUTargetObjectFile.h
/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/AMDILCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
/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/Disassembler
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/EvergreenInstructions.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/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/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/AMDGPUFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.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/R600MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
/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/R600Defines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.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/R600ISelLowering.h
/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/R600Intrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
/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/R600RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600TextureIntrinsicsReplacer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRLiveRanges.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/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/SIIntrinsics.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/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/SISchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SITypeRewriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
/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/AMDKernelCodeTInfo.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/VIInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VIInstructions.td
/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/ARMCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallingConv.td
/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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.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/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA8.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
/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/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.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/ARMFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
/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/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/Thumb2ITBlockPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h
/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/AVR/AVR.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVR.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRConfig.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
/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/AVRSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSubtarget.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/AVRTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/TODO.md
/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/BPFInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMCInstLower.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/MCTargetDesc/BPFAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
/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/CppBackend
/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.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
/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/HexagonBranchRelaxation.cpp
/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/HexagonCopyToCombine.cpp
/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/HexagonExpandPredSpillCode.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/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/HexagonISelDAGToDAG.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/HexagonInstrAlias.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.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/HexagonInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
/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/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/HexagonOptimizeSZextends.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRDF.h
/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/HexagonScheduleV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
/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/HexagonSystemInst.td
/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/HexagonTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.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/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/HexagonFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
/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/HexagonMCDuplexInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.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/HexagonMCTargetDesc.cpp
/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/RDFDeadCode.h
/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/Lanai
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.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.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.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/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/InstPrinter/MipsInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h
/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/MipsBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.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/MipsMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.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/MicroMipsDSPInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.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/Mips.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.h
/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/Mips32r6InstrFormats.td
/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/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/MipsCallingConv.td
/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/MipsDSPInstrFormats.td
/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/MipsEVAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFrameLowering.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/MipsISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
/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/MipsInstrFormats.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/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOs16.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/MipsSEISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
/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/MipsSEInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSchedule.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/MipsTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.h
/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/NVPTXAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFavorNonGenericAddrSpaces.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/NVPTXGenericToNVVM.cpp
/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/NVPTXImageOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInferAddressSpaces.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/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/NVPTXLowerAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
/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/NVPTXSection.h
/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/NVPTXUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.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/PPCMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPC.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPC.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCCState.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.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/PPCHazardRecognizers.cpp
/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/PPCLoopDataPrefetch.cpp
/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/PPCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/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/PPCTOCRegDeps.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.cpp
/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/PPCVSXCopy.cpp
/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/README_P9.txt
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/p9-instrs.txt
/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/Disassembler/SparcDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.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/SparcMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/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/SparcISelDAGToDAG.cpp
/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/SparcInstr64Bit.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/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/SparcMCInstLower.cpp
/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/SparcRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSchedule.td
/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/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.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/README.txt
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.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/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/SystemZInstrBuilder.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/SystemZLDCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.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/SystemZSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTDC.cpp
/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/Target.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/TargetRecip.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/LLVMBuild.txt
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/Makefile
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
/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/WebAssemblyMCAsmInfo.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/README.txt
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Relooper.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Relooper.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssembly.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.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/WebAssemblyISD.def
/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/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/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/WebAssemblyInstrInteger.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/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPEI.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.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/WebAssemblyRegNumbering.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/WebAssemblyReplacePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
/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/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/WebAssemblyTargetTransformInfo.h
/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/X86AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
/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/X86Disassembler.h
/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/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/X86ELFRelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
/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/X86MachORelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
/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/X86CallingConv.td
/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/X86FixupSetCC.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/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/X86InstrAVX512.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrBuilder.h
/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/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/X86InstrSSE.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSystem.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrVMX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrXOP.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h
/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/X86RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.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/X86SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
/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/Disassembler/XCoreDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.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/XCoreFrameToArgsOffsetElim.cpp
/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/XCoreLowerThreadLocal.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.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/XCoreTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.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/IPConstantPropagation.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/InlineAlways.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/Internalize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/LowerBitSets.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/StripDeadPrototypes.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/StripSymbols.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/EfficiencySanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.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/SafeStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Float2Int.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/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/JumpThreading.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LICM.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoadCombine.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/LoopRerollPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.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/LowerExpectIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.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/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/Reg2Mem.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/ScalarReplAggregates.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/SimplifyCFGPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.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/BuildLibCalls.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/CodeExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Evaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/GlobalStatus.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InstructionNamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/IntegerDivision.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/LoopUnrollRuntime.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopVersioning.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerInvoke.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/MemorySSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/NameAnonFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SanitizerStats.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/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.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/Vectorize.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/Miscompilation.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/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Index.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Attr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Availability.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/CanonicalType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CharUnits.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/DeclFriend.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/DeclarationName.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/ExprOpenMP.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/LambdaCapture.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LocInfoType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Mangle.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/RecordLayout.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.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/UnresolvedSet.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.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/Analysis/Analyses/Dominators.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.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/AttrKinds.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/BuiltinsPPC.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.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/DiagnosticASTKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
/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/DiagnosticParseKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Lambda.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/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PragmaKinds.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/Specifiers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.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/VersionTuple.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Action.h
/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/Driver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Job.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Multilib.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/Types.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.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/CompilerInstance.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.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/LangStandards.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.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/Index/IndexingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMapTypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.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/ModuleMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Token.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CleanupInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/LocInfoType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.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/ParsedTemplate.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/Sema/SemaLambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.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/Module.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/SValExplainer.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/PathDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.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/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/Regions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.def
/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/SubEngine.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/StaticAnalyzer/Core/PathSensitive/Symbols.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.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/FixIt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.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/ARCMigrate/ARCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/APValue.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.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/ASTTypeTraits.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Comment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.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/DeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.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/ItaniumMangle.cpp
/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/OpenMPClause.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ParentMap.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/StmtCXX.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/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/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/Consumed.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.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/LangOptions.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/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
/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/CodeGen/ABIInfo.h
/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/CGCUDABuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.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/CGCleanup.h
/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/CGExprConstant.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.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/CGObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
/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/CGRecordLayout.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/CodeGenPGO.h
/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/CodeGenTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.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/EHScopeStack.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/SwiftCallingConv.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/Driver/Action.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Job.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/MSVCToolChain.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.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tools.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Types.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.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/Encoding.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Format.cpp
/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/SortJavaScriptImports.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/SortJavaScriptImports.h
/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/UnwrappedLineParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.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/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.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/CreateInvocationFromCommandLine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.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/HeaderIncludeGen.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/LayoutOverrideSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.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/HTMLPrint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.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/SerializedDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/Intrin.h
/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/__wmmintrin_aes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/altivec.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ammintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/arm_acle.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx2intrin.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/avx512erintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512pfintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.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/avxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/clflushoptintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cpuid.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/f16cintrin.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/htmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ia32intrin.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/inttypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/msa.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mwaitxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pkuintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tbmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/unwind.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/x86intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xopintrin.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/IndexingContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/HeaderMap.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/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/PPExpressions.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/Pragma.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseAST.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/ParseInit.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/Rewrite/RewriteRope.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/IdentifierResolver.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/ScopeInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.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/Sema/TypeLocBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.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/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/GeneratePCH.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.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/IvarInvalidationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.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/PointerArithChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.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/CheckerHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.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/MemRegion.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.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/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/FixIt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring.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/cc1_main.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/ClangDiagnosticsEmitter.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/llc/llc.cpp
/freebsd-11-stable/contrib/llvm/tools/lld
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBHostOS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.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/SBTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValue.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/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ConstString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/History.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Listener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Logging.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/ModuleList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamTee.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
/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/HostNativeProcessBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/OptionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.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/LineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.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/ProcessLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharedCluster.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-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBlock.cpp
/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/SBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBListener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/liblldb.exports
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.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/BreakpointLocationCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.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/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.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/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ConnectionSharedMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ConstString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/CxaDemangle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataBufferHeap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataBufferMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataEncoder.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Event.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FastDemangle.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/Listener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Log.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Logging.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Mangled.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/Opcode.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/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Timer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.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/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSpec.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/HostProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/OptionParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.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/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Options.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/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/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-hexagon/ABISysV_hexagon.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-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/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-s390x
/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/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
/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/ClangDiagnostic.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/ClangExpressionHelper.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.cpp
/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/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.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/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoAST.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.h
/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/MIPS/EmulateInstructionMIPS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.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/LibCxxAtomic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h
/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/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/CPlusPlus/LibStdcpp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
/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/NSError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
/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/AppleObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
/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/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.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/ELFHeader.cpp
/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/OperatingSystem/Go/OperatingSystemGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
/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/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.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/RegisterContextFreeBSD_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.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_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.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/lldb-mips-linux-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-s390x-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_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/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/GDBRemoteCommunication.cpp
/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/GDBRemoteCommunicationServerCommon.h
/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/GDBRemoteCommunicationServerPlatform.h
/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/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.h
/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/DWARFDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.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/DWARFDeclContext.h
/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/HashedNameToDIE.cpp
/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/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.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/PDB
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ArmUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Block.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDeclContext.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/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.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/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoaderList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/OperatingSystem.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/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Queue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TaskPool.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/ChildTarget/ChildTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.h
/freebsd-11-stable/contrib/llvm/tools/lli/RemoteJITUtils.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/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.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageViewOptions.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/RenderingSupport.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/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/gcov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/llvm-cov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffConsumer.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffLog.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/llvm-diff.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-dis/llvm-dis.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-mc/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
/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-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/BuiltinDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/BuiltinDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/CompilandDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/CompilandDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/EnumDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/EnumDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/FunctionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/FunctionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LLVMOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LinePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LinePrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/OutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PdbYaml.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PdbYaml.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypedefDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypedefDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/VariableDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/VariableDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YAMLOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YAMLOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/llvm-pdbdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/llvm-pdbdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/CodeView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/MachODumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/StreamWriter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/StreamWriter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Win64EHDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Win64EHDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
/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/opt/AnalysisWrappers.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/BreakpointPrinter.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/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/AsmWriterInst.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmWriterInst.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/Attributes.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeEmitterGen.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/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/CodeGenMapTable.cpp
/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/DAGISelMatcher.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.h
/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/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.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/RegisterInfoEmitter.cpp
/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/X86RecognizableInstr.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/module.modulemap
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/lib/clang/Makefile
/freebsd-11-stable/lib/clang/clang.build.mk
/freebsd-11-stable/lib/clang/clang.lib.mk
/freebsd-11-stable/lib/clang/clang.pre.mk
/freebsd-11-stable/lib/clang/freebsd_cc_version.h
/freebsd-11-stable/lib/clang/headers
/freebsd-11-stable/lib/clang/headers/Makefile
/freebsd-11-stable/lib/clang/include/AArch64GenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/AArch64GenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/AArch64GenAsmWriter1.inc
/freebsd-11-stable/lib/clang/include/AArch64GenCallingConv.inc
/freebsd-11-stable/lib/clang/include/AArch64GenDAGISel.inc
/freebsd-11-stable/lib/clang/include/AArch64GenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/AArch64GenFastISel.inc
/freebsd-11-stable/lib/clang/include/AArch64GenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/AArch64GenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/AArch64GenMCPseudoLowering.inc
/freebsd-11-stable/lib/clang/include/AArch64GenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/AArch64GenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/ARMGenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/ARMGenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/ARMGenCallingConv.inc
/freebsd-11-stable/lib/clang/include/ARMGenCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/ARMGenDAGISel.inc
/freebsd-11-stable/lib/clang/include/ARMGenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/ARMGenFastISel.inc
/freebsd-11-stable/lib/clang/include/ARMGenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/ARMGenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/ARMGenMCPseudoLowering.inc
/freebsd-11-stable/lib/clang/include/ARMGenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/ARMGenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/AttributesCompatFunc.inc
/freebsd-11-stable/lib/clang/include/Checkers.inc
/freebsd-11-stable/lib/clang/include/Makefile
/freebsd-11-stable/lib/clang/include/Makefile.depend
/freebsd-11-stable/lib/clang/include/MipsGenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/MipsGenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/MipsGenCallingConv.inc
/freebsd-11-stable/lib/clang/include/MipsGenCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/MipsGenDAGISel.inc
/freebsd-11-stable/lib/clang/include/MipsGenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/MipsGenFastISel.inc
/freebsd-11-stable/lib/clang/include/MipsGenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/MipsGenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/MipsGenMCPseudoLowering.inc
/freebsd-11-stable/lib/clang/include/MipsGenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/MipsGenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/PPCGenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/PPCGenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/PPCGenCallingConv.inc
/freebsd-11-stable/lib/clang/include/PPCGenCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/PPCGenDAGISel.inc
/freebsd-11-stable/lib/clang/include/PPCGenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/PPCGenFastISel.inc
/freebsd-11-stable/lib/clang/include/PPCGenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/PPCGenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/PPCGenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/PPCGenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/SparcGenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/SparcGenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/SparcGenCallingConv.inc
/freebsd-11-stable/lib/clang/include/SparcGenCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/SparcGenDAGISel.inc
/freebsd-11-stable/lib/clang/include/SparcGenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/SparcGenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/SparcGenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/SparcGenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/SparcGenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/X86GenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/X86GenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/X86GenAsmWriter1.inc
/freebsd-11-stable/lib/clang/include/X86GenCallingConv.inc
/freebsd-11-stable/lib/clang/include/X86GenDAGISel.inc
/freebsd-11-stable/lib/clang/include/X86GenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/X86GenFastISel.inc
/freebsd-11-stable/lib/clang/include/X86GenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/X86GenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/X86GenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/clang/AST
/freebsd-11-stable/lib/clang/include/clang/Basic/AttrHasAttributeImpl.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/AttrList.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticASTKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticAnalysisKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticCommentKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticCommonKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticDriverKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticFrontendKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticGroups.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticIndexName.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticLexKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticParseKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticSemaKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticSerializationKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/arm_neon.inc
/freebsd-11-stable/lib/clang/include/clang/Config/config.h
/freebsd-11-stable/lib/clang/include/clang/Driver
/freebsd-11-stable/lib/clang/include/clang/Parse
/freebsd-11-stable/lib/clang/include/clang/Sema
/freebsd-11-stable/lib/clang/include/clang/Serialization
/freebsd-11-stable/lib/clang/include/lld
/freebsd-11-stable/lib/clang/include/llvm/Config/AsmParsers.def
/freebsd-11-stable/lib/clang/include/llvm/Config/AsmPrinters.def
/freebsd-11-stable/lib/clang/include/llvm/Config/Disassemblers.def
/freebsd-11-stable/lib/clang/include/llvm/Config/Targets.def
/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/IR
/freebsd-11-stable/lib/clang/include/llvm/Support/DataTypes.h
/freebsd-11-stable/lib/clang/libclang
/freebsd-11-stable/lib/clang/libclanganalysis
/freebsd-11-stable/lib/clang/libclangarcmigrate
/freebsd-11-stable/lib/clang/libclangast
/freebsd-11-stable/lib/clang/libclangbasic
/freebsd-11-stable/lib/clang/libclangcodegen
/freebsd-11-stable/lib/clang/libclangdriver
/freebsd-11-stable/lib/clang/libclangedit
/freebsd-11-stable/lib/clang/libclangformat
/freebsd-11-stable/lib/clang/libclangfrontend
/freebsd-11-stable/lib/clang/libclangfrontendtool
/freebsd-11-stable/lib/clang/libclanglex
/freebsd-11-stable/lib/clang/libclangparse
/freebsd-11-stable/lib/clang/libclangrewrite
/freebsd-11-stable/lib/clang/libclangrewritefrontend
/freebsd-11-stable/lib/clang/libclangsema
/freebsd-11-stable/lib/clang/libclangserialization
/freebsd-11-stable/lib/clang/libclangstaticanalyzercheckers
/freebsd-11-stable/lib/clang/libclangstaticanalyzercore
/freebsd-11-stable/lib/clang/libclangstaticanalyzerfrontend
/freebsd-11-stable/lib/clang/libclangtoolingcore
/freebsd-11-stable/lib/clang/liblldb/Makefile
/freebsd-11-stable/lib/clang/liblldb/Makefile.depend
/freebsd-11-stable/lib/clang/liblldbAPI
/freebsd-11-stable/lib/clang/liblldbBreakpoint
/freebsd-11-stable/lib/clang/liblldbCommands
/freebsd-11-stable/lib/clang/liblldbCore
/freebsd-11-stable/lib/clang/liblldbDataFormatters
/freebsd-11-stable/lib/clang/liblldbExpression
/freebsd-11-stable/lib/clang/liblldbHostCommon
/freebsd-11-stable/lib/clang/liblldbHostFreeBSD
/freebsd-11-stable/lib/clang/liblldbHostPOSIX
/freebsd-11-stable/lib/clang/liblldbInitialization
/freebsd-11-stable/lib/clang/liblldbInterpreter
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_arm
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_arm64
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_i386
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_mips
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_mips64
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_ppc
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_ppc64
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_x86_64
/freebsd-11-stable/lib/clang/liblldbPluginCXXItaniumABI
/freebsd-11-stable/lib/clang/liblldbPluginDisassemblerLLVM
/freebsd-11-stable/lib/clang/liblldbPluginDynamicLoaderPosixDYLD
/freebsd-11-stable/lib/clang/liblldbPluginDynamicLoaderStatic
/freebsd-11-stable/lib/clang/liblldbPluginExpressionParserClang
/freebsd-11-stable/lib/clang/liblldbPluginExpressionParserGo
/freebsd-11-stable/lib/clang/liblldbPluginInstructionARM
/freebsd-11-stable/lib/clang/liblldbPluginInstructionARM64
/freebsd-11-stable/lib/clang/liblldbPluginInstructionMIPS
/freebsd-11-stable/lib/clang/liblldbPluginInstructionMIPS64
/freebsd-11-stable/lib/clang/liblldbPluginInstrumentationRuntimeAddressSanitizer
/freebsd-11-stable/lib/clang/liblldbPluginJITLoaderGDB
/freebsd-11-stable/lib/clang/liblldbPluginLanguageCPlusPlus
/freebsd-11-stable/lib/clang/liblldbPluginLanguageObjC
/freebsd-11-stable/lib/clang/liblldbPluginMemoryHistoryASan
/freebsd-11-stable/lib/clang/liblldbPluginObjectContainerBSDArchive
/freebsd-11-stable/lib/clang/liblldbPluginObjectFileELF
/freebsd-11-stable/lib/clang/liblldbPluginObjectFileJIT
/freebsd-11-stable/lib/clang/liblldbPluginPlatformFreeBSD
/freebsd-11-stable/lib/clang/liblldbPluginPlatformGDB
/freebsd-11-stable/lib/clang/liblldbPluginProcessElfCore
/freebsd-11-stable/lib/clang/liblldbPluginProcessFreeBSD
/freebsd-11-stable/lib/clang/liblldbPluginProcessGDBRemote
/freebsd-11-stable/lib/clang/liblldbPluginProcessPOSIX
/freebsd-11-stable/lib/clang/liblldbPluginProcessUtility
/freebsd-11-stable/lib/clang/liblldbPluginScriptInterpreterNone
/freebsd-11-stable/lib/clang/liblldbPluginSymbolFileDWARF
/freebsd-11-stable/lib/clang/liblldbPluginSymbolFileSymtab
/freebsd-11-stable/lib/clang/liblldbPluginSymbolVendorELF
/freebsd-11-stable/lib/clang/liblldbPluginUnwindAssemblyInstEmulation
/freebsd-11-stable/lib/clang/liblldbPluginUnwindAssemblyX86
/freebsd-11-stable/lib/clang/liblldbSymbol
/freebsd-11-stable/lib/clang/liblldbTarget
/freebsd-11-stable/lib/clang/liblldbUtility
/freebsd-11-stable/lib/clang/libllvm
/freebsd-11-stable/lib/clang/libllvmaarch64asmparser
/freebsd-11-stable/lib/clang/libllvmaarch64asmprinter
/freebsd-11-stable/lib/clang/libllvmaarch64codegen
/freebsd-11-stable/lib/clang/libllvmaarch64desc
/freebsd-11-stable/lib/clang/libllvmaarch64disassembler
/freebsd-11-stable/lib/clang/libllvmaarch64info
/freebsd-11-stable/lib/clang/libllvmaarch64utils
/freebsd-11-stable/lib/clang/libllvmanalysis
/freebsd-11-stable/lib/clang/libllvmarmasmparser
/freebsd-11-stable/lib/clang/libllvmarmasmprinter
/freebsd-11-stable/lib/clang/libllvmarmcodegen
/freebsd-11-stable/lib/clang/libllvmarmdesc
/freebsd-11-stable/lib/clang/libllvmarmdisassembler
/freebsd-11-stable/lib/clang/libllvmarminfo
/freebsd-11-stable/lib/clang/libllvmasmparser
/freebsd-11-stable/lib/clang/libllvmasmprinter
/freebsd-11-stable/lib/clang/libllvmbitreader
/freebsd-11-stable/lib/clang/libllvmbitwriter
/freebsd-11-stable/lib/clang/libllvmcodegen
/freebsd-11-stable/lib/clang/libllvmcore
/freebsd-11-stable/lib/clang/libllvmdebuginfodwarf
/freebsd-11-stable/lib/clang/libllvmdebuginfopdb
/freebsd-11-stable/lib/clang/libllvmexecutionengine
/freebsd-11-stable/lib/clang/libllvminstcombine
/freebsd-11-stable/lib/clang/libllvminstrumentation
/freebsd-11-stable/lib/clang/libllvminterpreter
/freebsd-11-stable/lib/clang/libllvmipo
/freebsd-11-stable/lib/clang/libllvmirreader
/freebsd-11-stable/lib/clang/libllvmlibdriver
/freebsd-11-stable/lib/clang/libllvmlinker
/freebsd-11-stable/lib/clang/libllvmlto
/freebsd-11-stable/lib/clang/libllvmmc
/freebsd-11-stable/lib/clang/libllvmmcdisassembler
/freebsd-11-stable/lib/clang/libllvmmcjit
/freebsd-11-stable/lib/clang/libllvmmcparser
/freebsd-11-stable/lib/clang/libllvmminimal
/freebsd-11-stable/lib/clang/libllvmminimal/Makefile
/freebsd-11-stable/lib/clang/libllvmmipsasmparser
/freebsd-11-stable/lib/clang/libllvmmipsasmprinter
/freebsd-11-stable/lib/clang/libllvmmipscodegen
/freebsd-11-stable/lib/clang/libllvmmipsdesc
/freebsd-11-stable/lib/clang/libllvmmipsdisassembler
/freebsd-11-stable/lib/clang/libllvmmipsinfo
/freebsd-11-stable/lib/clang/libllvmmirparser
/freebsd-11-stable/lib/clang/libllvmobjcarcopts
/freebsd-11-stable/lib/clang/libllvmobject
/freebsd-11-stable/lib/clang/libllvmoption
/freebsd-11-stable/lib/clang/libllvmorcjit
/freebsd-11-stable/lib/clang/libllvmpasses
/freebsd-11-stable/lib/clang/libllvmpowerpcasmparser
/freebsd-11-stable/lib/clang/libllvmpowerpcasmprinter
/freebsd-11-stable/lib/clang/libllvmpowerpccodegen
/freebsd-11-stable/lib/clang/libllvmpowerpcdesc
/freebsd-11-stable/lib/clang/libllvmpowerpcdisassembler
/freebsd-11-stable/lib/clang/libllvmpowerpcinfo
/freebsd-11-stable/lib/clang/libllvmprofiledata
/freebsd-11-stable/lib/clang/libllvmruntimedyld
/freebsd-11-stable/lib/clang/libllvmscalaropts
/freebsd-11-stable/lib/clang/libllvmselectiondag
/freebsd-11-stable/lib/clang/libllvmsparcasmparser
/freebsd-11-stable/lib/clang/libllvmsparcasmprinter
/freebsd-11-stable/lib/clang/libllvmsparccodegen
/freebsd-11-stable/lib/clang/libllvmsparcdesc
/freebsd-11-stable/lib/clang/libllvmsparcdisassembler
/freebsd-11-stable/lib/clang/libllvmsparcinfo
/freebsd-11-stable/lib/clang/libllvmsupport
/freebsd-11-stable/lib/clang/libllvmsymbolize
/freebsd-11-stable/lib/clang/libllvmtablegen
/freebsd-11-stable/lib/clang/libllvmtarget
/freebsd-11-stable/lib/clang/libllvmtransformutils
/freebsd-11-stable/lib/clang/libllvmvectorize
/freebsd-11-stable/lib/clang/libllvmx86asmparser
/freebsd-11-stable/lib/clang/libllvmx86asmprinter
/freebsd-11-stable/lib/clang/libllvmx86codegen
/freebsd-11-stable/lib/clang/libllvmx86desc
/freebsd-11-stable/lib/clang/libllvmx86disassembler
/freebsd-11-stable/lib/clang/libllvmx86info
/freebsd-11-stable/lib/clang/libllvmx86utils
/freebsd-11-stable/lib/clang/lldb.lib.mk
/freebsd-11-stable/lib/clang/lldb.pre.mk
/freebsd-11-stable/lib/clang/llvm.build.mk
/freebsd-11-stable/lib/clang/llvm.pre.mk
Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/asan-preinit/Makefile
/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
/freebsd-11-stable/lib/libclang_rt/stats_client
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone_cxx/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/release/packages/clang.ucl
/freebsd-11-stable/release/packages/lld.ucl
/freebsd-11-stable/release/packages/lldb.ucl
/freebsd-11-stable/share/mk/local.gendirdeps.mk
/freebsd-11-stable/share/mk/src.opts.mk
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/targets/pseudo/clang/Makefile.depend
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/tools/build/options/WITHOUT_LLD
/freebsd-11-stable/tools/build/options/WITH_LLD
/freebsd-11-stable/usr.bin/clang/Makefile
/freebsd-11-stable/usr.bin/clang/Makefile.inc
/freebsd-11-stable/usr.bin/clang/bugpoint/Makefile
/freebsd-11-stable/usr.bin/clang/bugpoint/Makefile.depend
/freebsd-11-stable/usr.bin/clang/clang-format/Makefile
/freebsd-11-stable/usr.bin/clang/clang-format/Makefile.depend
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile.depend
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile.depend.host
/freebsd-11-stable/usr.bin/clang/clang.prog.mk
/freebsd-11-stable/usr.bin/clang/clang/Makefile
/freebsd-11-stable/usr.bin/clang/clang/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llc/Makefile
/freebsd-11-stable/usr.bin/clang/llc/Makefile.depend
/freebsd-11-stable/usr.bin/clang/lld
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/Makefile.depend
/freebsd-11-stable/usr.bin/clang/lli/Makefile
/freebsd-11-stable/usr.bin/clang/lli/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-ar/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-ar/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-as/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-as/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-bcanalyzer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-bcanalyzer/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-cov/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cov/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-cxxdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cxxdump/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-diff/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-diff/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-dis/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-dis/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-dwarfdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-dwarfdump/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-extract/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-extract/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-link/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-link/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-lto/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-lto/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-mc/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-mc/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-nm/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-nm/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-objdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objdump/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-pdbdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbdump/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-profdata/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-profdata/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-rtdyld/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-rtdyld/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile.depend.host
/freebsd-11-stable/usr.bin/clang/llvm.prog.mk
/freebsd-11-stable/usr.bin/clang/opt/Makefile
/freebsd-11-stable/usr.bin/clang/opt/Makefile.depend
302408 08-Jul-2016 gjb

Copy head@r302406 to stable/11 as part of the 11.0-RELEASE cycle.
Prune svn:mergeinfo from the new branch, as nothing has been merged
here.

Additional commits post-branch will follow.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


/freebsd-11-stable/MAINTAINERS
/freebsd-11-stable/cddl
/freebsd-11-stable/cddl/contrib/opensolaris
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zfs
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs
/freebsd-11-stable/contrib/amd
/freebsd-11-stable/contrib/apr
/freebsd-11-stable/contrib/apr-util
/freebsd-11-stable/contrib/atf
/freebsd-11-stable/contrib/binutils
/freebsd-11-stable/contrib/bmake
/freebsd-11-stable/contrib/byacc
/freebsd-11-stable/contrib/bzip2
/freebsd-11-stable/contrib/com_err
/freebsd-11-stable/contrib/compiler-rt
/freebsd-11-stable/contrib/dialog
/freebsd-11-stable/contrib/dma
/freebsd-11-stable/contrib/dtc
/freebsd-11-stable/contrib/ee
/freebsd-11-stable/contrib/elftoolchain
/freebsd-11-stable/contrib/elftoolchain/ar
/freebsd-11-stable/contrib/elftoolchain/brandelf
/freebsd-11-stable/contrib/elftoolchain/elfdump
/freebsd-11-stable/contrib/expat
/freebsd-11-stable/contrib/file
/freebsd-11-stable/contrib/gcc
/freebsd-11-stable/contrib/gcclibs/libgomp
/freebsd-11-stable/contrib/gdb
/freebsd-11-stable/contrib/gdtoa
/freebsd-11-stable/contrib/groff
/freebsd-11-stable/contrib/ipfilter
/freebsd-11-stable/contrib/ldns
/freebsd-11-stable/contrib/ldns-host
/freebsd-11-stable/contrib/less
/freebsd-11-stable/contrib/libarchive
/freebsd-11-stable/contrib/libarchive/cpio
/freebsd-11-stable/contrib/libarchive/libarchive
/freebsd-11-stable/contrib/libarchive/libarchive_fe
/freebsd-11-stable/contrib/libarchive/tar
/freebsd-11-stable/contrib/libc++
/freebsd-11-stable/contrib/libc-vis
/freebsd-11-stable/contrib/libcxxrt
/freebsd-11-stable/contrib/libexecinfo
/freebsd-11-stable/contrib/libpcap
/freebsd-11-stable/contrib/libstdc++
/freebsd-11-stable/contrib/libucl
/freebsd-11-stable/contrib/libxo
/freebsd-11-stable/contrib/llvm
/freebsd-11-stable/contrib/llvm/projects/libunwind
/freebsd-11-stable/contrib/llvm/tools/clang
/freebsd-11-stable/contrib/llvm/tools/lldb
/freebsd-11-stable/contrib/llvm/tools/llvm-dwarfdump
/freebsd-11-stable/contrib/llvm/tools/llvm-lto
/freebsd-11-stable/contrib/mdocml
/freebsd-11-stable/contrib/mtree
/freebsd-11-stable/contrib/ncurses
/freebsd-11-stable/contrib/netcat
/freebsd-11-stable/contrib/ntp
/freebsd-11-stable/contrib/nvi
/freebsd-11-stable/contrib/one-true-awk
/freebsd-11-stable/contrib/openbsm
/freebsd-11-stable/contrib/openpam
/freebsd-11-stable/contrib/openresolv
/freebsd-11-stable/contrib/pf
/freebsd-11-stable/contrib/sendmail
/freebsd-11-stable/contrib/serf
/freebsd-11-stable/contrib/sqlite3
/freebsd-11-stable/contrib/subversion
/freebsd-11-stable/contrib/tcpdump
/freebsd-11-stable/contrib/tcsh
/freebsd-11-stable/contrib/tnftp
/freebsd-11-stable/contrib/top
/freebsd-11-stable/contrib/top/install-sh
/freebsd-11-stable/contrib/tzcode/stdtime
/freebsd-11-stable/contrib/tzcode/zic
/freebsd-11-stable/contrib/tzdata
/freebsd-11-stable/contrib/unbound
/freebsd-11-stable/contrib/vis
/freebsd-11-stable/contrib/wpa
/freebsd-11-stable/contrib/xz
/freebsd-11-stable/crypto/heimdal
/freebsd-11-stable/crypto/openssh
/freebsd-11-stable/crypto/openssl
/freebsd-11-stable/gnu/lib
/freebsd-11-stable/gnu/usr.bin/binutils
/freebsd-11-stable/gnu/usr.bin/cc/cc_tools
/freebsd-11-stable/gnu/usr.bin/gdb
/freebsd-11-stable/lib/libc/locale/ascii.c
/freebsd-11-stable/sys/cddl/contrib/opensolaris
/freebsd-11-stable/sys/contrib/dev/acpica
/freebsd-11-stable/sys/contrib/ipfilter
/freebsd-11-stable/sys/contrib/libfdt
/freebsd-11-stable/sys/contrib/octeon-sdk
/freebsd-11-stable/sys/contrib/x86emu
/freebsd-11-stable/sys/contrib/xz-embedded
/freebsd-11-stable/usr.sbin/bhyve/atkbdc.h
/freebsd-11-stable/usr.sbin/bhyve/bhyvegc.c
/freebsd-11-stable/usr.sbin/bhyve/bhyvegc.h
/freebsd-11-stable/usr.sbin/bhyve/console.c
/freebsd-11-stable/usr.sbin/bhyve/console.h
/freebsd-11-stable/usr.sbin/bhyve/pci_fbuf.c
/freebsd-11-stable/usr.sbin/bhyve/pci_xhci.c
/freebsd-11-stable/usr.sbin/bhyve/pci_xhci.h
/freebsd-11-stable/usr.sbin/bhyve/ps2kbd.c
/freebsd-11-stable/usr.sbin/bhyve/ps2kbd.h
/freebsd-11-stable/usr.sbin/bhyve/ps2mouse.c
/freebsd-11-stable/usr.sbin/bhyve/ps2mouse.h
/freebsd-11-stable/usr.sbin/bhyve/rfb.c
/freebsd-11-stable/usr.sbin/bhyve/rfb.h
/freebsd-11-stable/usr.sbin/bhyve/sockstream.c
/freebsd-11-stable/usr.sbin/bhyve/sockstream.h
/freebsd-11-stable/usr.sbin/bhyve/usb_emul.c
/freebsd-11-stable/usr.sbin/bhyve/usb_emul.h
/freebsd-11-stable/usr.sbin/bhyve/usb_mouse.c
/freebsd-11-stable/usr.sbin/bhyve/vga.c
/freebsd-11-stable/usr.sbin/bhyve/vga.h
300943 29-May-2016 bdrewery

GCC External: Revert r300886, r300904, r300917, r300918

The fix in r300873 is mostly enough. A fix for lib32 will be
committed.separately.


300905 28-May-2016 bdrewery

Use a relative symlink for proper --sysroot support.

Sponsored by: EMC / Isilon Storage Division


300886 27-May-2016 bdrewery

Move external GCC compiler hacks to bsd.sys.mk.

This allows respecting -nostdinc, -nostdinc++ and -nostdlib before
making the decision to add in -isystem, etc. The -isystem flags
are problematic for building lib/libc++ and lib/libcxxrt which wants
to only use its own headers.

More information the need of these flags can be found at
https://gcc.gnu.org/ml/gcc/2016-03/msg00219.html

This also reverts r300873.

Sponsored by: EMC / Isilon Storage Division


300873 27-May-2016 dim

After r300770, for libc++ and libcxxrt, use -isystem instead of -I.
This should fix builds with external gcc toolchains from ports, which
also use -isystem to work around problems with gcc's --sysroot
implementation. Thanks to Bryan Drewery for this workaround.


300770 26-May-2016 dim

Update libc++ to 3.8.0. Excerpted list of fixes (with upstream revision
numbers):

r242679 Implement the plugin-based version of std::search. There are no
searchers yet; those are coming soon.
r242682 Implement the default searcher for std::experimental::search.
r243728 Add <experimental/any> v2.
r245330 implement more of N4258 - Cleaning up noexcept in the standard
library. Specifically add new noexcept stuff to vector and
string's move-assignment operations
r245334 Fix PR22606 - Leak pthread_key with static storage duration to
ensure all of thread-local destructors are called.
r245335 Fix PR23589: std::function doesn't recognize null pointer to
varargs function.
r247036 Implementation of Boyer-Moore and Boyer-Moore-Horspool
searchers for the LFTS.
r249325 Implement LWG#2063, and update the issues links to point to the
github generated pages
r249738 Split <ctype.h> out of <cctype>.
r249739 Split <errno.h> out of <cerrno>.
r249740 Split <float.h> out of <cfloat>.
r249741 Split <inttypes.h> out of <cinttypes>.
r249742 Split <math.h> out of <cmath>.
r249743 Split <setjmp.h> out of <csetjmp>.
r249761 Split <stddef.h> out of <cstddef>.
r249798 Split <stdio.h> out of <cstdio>.
r249800 Split <stdlib.h> out of <cstdlib>.
r249889 Split <wchar.h> out of <cwchar>.
r249890 Split <wctype.h> out of <cwctype>.
r249929 Split <string.h> out of <cstring>.
r250254 ABI versioning macros for libc++.
r251246 Fix LWG#2244: basic_istream::seekg
r251247 Fix LWG#2127: Move-construction with raw_storage_iterator.
r251253 Fix LWG#2476: scoped_allocator_adaptor is not assignable
r251257 Fix LWG#2489: mem_fn() should be noexcept
r251618 Implement P0004R1 'Remove Deprecated iostreams aliases'
r251766 Implement the first part of P0006R0: Adopt Type Traits Variable
Templates for C++17.
r252195 Implement P0092R1 for C++1z
r252350 Allow deque to handle incomplete types.
r252406 More of P0006R0: type traits variable aliases for C++17.
r252407 Implement LWG#2353: std::next is over-constrained
r252905 Implement P0074: Making owner_less more flexible
r253215 Implement P0013R1: Logical Operator Type Traits.
r253274 Implement P0007: Constant View: A proposal for a std::as_const
helper function template.
r254119 Add static_assert to set/multiset/map/multimap/forward_list/deque
that the allocator's value_type match the container's value_type.
r254283 Implement more of P0006; Type Traits Variable Templates.
r255941 LWG2485: get() should be overloaded for const tuple&&.
r256325 Fix LWG Issue #2367 - Fixing std::tuple and std::pair's default
constructors.
r256652 Fix for ALL undefined behavior in <list>.
r256859 First half of LWG#2354: 'Unnecessary copying when inserting
into maps with braced-init syntax'

Exp-run: antoine
Relnotes: yes


298107 16-Apr-2016 gjb

Merge the projects/release-pkg branch to head.

This allows packaging the base system with pkg(8), including
but not limited to providing the ability to provide upstream
binary update possibilities for non-tier-1 architectures.

This merge is a requirement of the 11.0-RELEASE, and as such,
thank you to everyone that has tested the project branch.

Documentation in build(7) etc. is still somewhat sparse, but
updates to those parts will follow.

Sponsored by: The FreeBSD Foundation


296707 11-Mar-2016 bdrewery

Add missing CLEANFILES.

MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division


295989 24-Feb-2016 bdrewery

DIRDEPS_BUILD: Regenerate without local dependencies.

These are no longer needed after the recent 'beforebuild: depend' changes
and hooking DIRDEPS_BUILD into a subset of FAST_DEPEND which supports
skipping 'make depend'.

Sponsored by: EMC / Isilon Storage Division


294031 14-Jan-2016 andrew

Set -mlong-calls where needed to get a static clang and lldb 3.8.0
linking. These are too large for a branch instruction to branch from an
earlier point in the code to somewhere later.

This will also allow these to be build with Thumb-2 when we get this
infrastructure.

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


291734 04-Dec-2015 bdrewery

Replace ln -s calls with INSTALL_SYMLINK

Sponsored by: EMC / Isilon Storage Division


291620 01-Dec-2015 bdrewery

Don't override LIB*DIR variables from src.libnames.mk.

In some cases switch to the LIB*SRCDIR value.

These recently were defined in r291327 and r291619.

Sponsored by: EMC / Isilon Storage Division


291550 01-Dec-2015 bdrewery

META MODE: Libc++ does in fact need Libcxxrt.

There seems to be no cyclic dependency here. This partially reverts r283595
which had no explanation for the change.

Sponsored by: EMC / Isilon Storage Division


291320 25-Nov-2015 bdrewery

META MODE: Don't create .meta files when symlinking sources into the obj directory.

Tracking these leads to situations where meta mode will consider the
file to be out of date if /bin/sh or /bin/ln are newer than the source
file. There's no reason for meta mode to do this as make is already
handling the rebuild dependency fine.

Sponsored by: EMC / Isilon Storage Division


288953 06-Oct-2015 dim

Stop linking libc++.so verbosely, there is no need to.

MFC after: 3 days


288943 06-Oct-2015 dim

Upgrade our copies of clang, llvm, lldb, compiler-rt and libc++ to 3.7.0
release.

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

Release notes for llvm and clang can be found here:
<http://llvm.org/releases/3.7.0/docs/ReleaseNotes.html>
<http://llvm.org/releases/3.7.0/tools/clang/docs/ReleaseNotes.html>

Thanks to Ed Maste, Andrew Turner and Antoine Brodin for their help.

Exp-run: antoine
Relnotes: yes


284345 13-Jun-2015 sjg

Add META_MODE support.

Off by default, build behaves normally.
WITH_META_MODE we get auto objdir creation, the ability to
start build from anywhere in the tree.

Still need to add real targets under targets/ to build packages.

Differential Revision: D2796
Reviewed by: brooks imp


277217 15-Jan-2015 dim

Import libc++ trunk r224926. This fixes a number of bugs, completes
C++14 support[1], adds more C++1z features[2], and fixes the following
LWG issues[3]:

1450: Contradiction in regex_constants
2003: String exception inconsistency in erase.
2075: Progress guarantees, lock-free property, and scheduling
assumptions
2104: unique_lock move-assignment should not be noexcept
2112: User-defined classes that cannot be derived from
2132: std::function ambiguity
2135: Unclear requirement for exceptions thrown in
condition_variable::wait()
2142: packaged_task::operator() synchronization too broad?
2182: Container::[const_]reference types are misleadingly specified
2186: Incomplete action on async/launch::deferred
2188: Reverse iterator does not fully support targets that overload
operator&
2193: Default constructors for standard library containers are explicit
2205: Problematic postconditions of regex_match and regex_search
2213: Return value of std::regex_replace
2240: Probable misuse of term "function scope" in [thread.condition]
2252: Strong guarantee on vector::push_back() still broken with C++11?
2257: Simplify container requirements with the new algorithms
2258: a.erase(q1, q2) unable to directly return q2
2263: Comparing iterators and allocator pointers with different
const-character
2268: Setting a default argument in the declaration of a member
function assign of std::basic_string
2271: regex_traits::lookup_classname specification unclear
2272: quoted should use char_traits::eq for character comparison
2278: User-defined literals for Standard Library types
2280: begin / end for arrays should be constexpr and noexcept
2285: make_reverse_iterator
2288: Inconsistent requirements for shared mutexes
2291: std::hash is vulnerable to collision DoS attack
2293: Wrong facet used by num_put::do_put
2299: Effects of inaccessible key_compare::is_transparent type are not
clear
2301: Why is std::tie not constexpr?
2304: Complexity of count in unordered associative containers
2306: match_results::reference should be value_type&, not const
value_type&
2308: Clarify container destructor requirements w.r.t. std::array
2313: tuple_size should always derive from integral_constant<size_t, N>
2314: apply() should return decltype(auto) and use decay_t before
tuple_size
2315: weak_ptr should be movable
2316: weak_ptr::lock() should be atomic
2317: The type property queries should be UnaryTypeTraits returning
size_t
2320: select_on_container_copy_construction() takes allocators, not
containers
2322: Associative(initializer_list, stuff) constructors are
underspecified
2323: vector::resize(n, t)'s specification should be simplified
2324: Insert iterator constructors should use addressof()
2329: regex_match()/regex_search() with match_results should forbid
temporary strings
2330: regex("meow", regex::icase) is technically forbidden but should
be permitted
2332: regex_iterator/regex_token_iterator should forbid temporary
regexes
2339: Wording issue in nth_element
2341: Inconsistency between basic_ostream::seekp(pos) and
basic_ostream::seekp(off, dir)
2344: quoted()'s interaction with padding is unclear
2346: integral_constant's member functions should be marked noexcept
2350: min, max, and minmax should be constexpr
2356: Stability of erasure in unordered associative containers
2357: Remaining "Assignable" requirement
2359: How does regex_constants::nosubs affect basic_regex::mark_count()?
2360: reverse_iterator::operator*() is unimplementable

[1] http://libcxx.llvm.org/cxx1y_status.html
[2] http://libcxx.llvm.org/cxx1z_status.html
[3] http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html

Exp-run: antoine
MFC after: 1 month


275024 25-Nov-2014 bapt

Convert libraries to use LIBADD
While here reduce a bit overlinking


273407 21-Oct-2014 bapt

When using an external gcc 4.8+ and not building libstdc++ then create in the objectdir a
fake libstdc++.so and libstdc++.a which is a symlink on libc++ that allow g++ to satisfy
its links dependencies in the least hackish way.
Please note that this hacky libstds++ never get installed on the final system

Reviewed by: imp


270522 25-Aug-2014 rdivacky

The standard we compile libc++ with is called c++11 not c++0x.


261283 30-Jan-2014 dim

Import libc++ 3.4 release. This contains a lot of bugfixes, and some
preliminary support for C++1y.

MFC after: 3 weeks


255206 04-Sep-2013 theraven

Add a c++/v1/tr1 include directory containing symlinks to all of the standard
headrs.

Lots of third-party code expects to find C++03 headers under tr1 because that's
where GNU decided to hide them. This should fix ports that expect them there.

MFC after: 1 week


253917 03-Aug-2013 dim

After r253839, which modifies ld's behaviour to not automatically pull
in needed libraries, change libc++.so into a linker script, so it can
automatically pull in libcxxrt.so.

MFC after: 1 week


242472 02-Nov-2012 dim

Fix broken macro checking in the libc++ Makefile, introduced in r241909.
This caused -std=c++0x not to be passed to the build by default.

Pointy hat to: dim
MFC after: 3 days


241909 22-Oct-2012 dim

Allow building libc++ with any custom -std=xxx flag. Note that using
-std=gnu++98 will give a lot of warnings with clang, so please use
-std=c++0x or higher, or use NO_WERROR.

MFC after: 1 week


239680 25-Aug-2012 dim

Add libcxxrt's objects (prefixing them with cxxrt_ to avoid collisions)
to libc++.a and libc++_p.a, to make static linking of C++ executables
with libc++ easier. This is similar to the approach used in libstdc++.

MFC after: 2 weeks


236444 02-Jun-2012 dim

Install libcxxrt's C++ ABI and unwind headers. This is done in libc++'s
Makefile, so these headers go into the same destination directory as
libc++'s own headers, currently /usr/include/c++/v1.

MFC after: 3 days


236442 02-Jun-2012 dim

Tabify libcxxrt and libc++'s Makefiles.

MFC after: 3 days


233098 17-Mar-2012 peter

Make sure libgcc_s is finished building in _startup_libs before
building libcxxrt with high -j levels. The workaround in
libc++/Makefile isn't necessary once that race is solved.

Reviewed by: theravin


232950 14-Mar-2012 theraven

Import new versions of libcxxrt and libc++.
Please tests any C++ code you care about with -stdlib=libc++!

Approved by: dim (mentor)


227983 25-Nov-2011 theraven

Import libc++ / libcxxrt into base. Not build by default yet (use
MK_LIBCPLUSPLUS=yes to enable). This is a work-in-progress. It works for
me, but is not guaranteed to work for anyone else and may eat your dog.

To build C++ using libc++, add -stdlib=libc++ to your CXX and LD flags.

Bug reports welcome, bug fixes even more welcome...

Approved by: dim (mentor)