History log of /freebsd-11-stable/contrib/llvm-project/llvm/include/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
363496 24-Jul-2020 dim

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
10.0.1 final (aka llvmorg-10.0.1-0-gef32c611aa2).

MFC r360702:

Merge commit 4ca2cad94 from llvm git (by Justin Hibbits):

[PowerPC] Add clang -msvr4-struct-return for 32-bit ELF

Summary:

Change the default ABI to be compatible with GCC. For 32-bit ELF
targets other than Linux, Clang now returns small structs in
registers r3/r4. This affects FreeBSD, NetBSD, OpenBSD. There is no
change for 32-bit Linux, where Clang continues to return all structs
in memory.

Add clang options -maix-struct-return (to return structs in memory)
and -msvr4-struct-return (to return structs in registers) to be
compatible with gcc. These options are only for PPC32; reject them on
PPC64 and other targets. The options are like -fpcc-struct-return and
-freg-struct-return for X86_32, and use similar code.

To actually return a struct in registers, coerce it to an integer of
the same size. LLVM may optimize the code to remove unnecessary
accesses to memory, and will return i32 in r3 or i64 in r3:r4.

Fixes PR#40736

Patch by George Koehler!

Reviewed By: jhibbits, nemanjai
Differential Revision: https://reviews.llvm.org/D73290

Requested by: jhibbits

MFC r361410:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
llvmorg-10.0.1-rc1-0-gf79cd71e145 (aka 10.0.1 rc1).

MFC r362235 (by kp):

llvm: Default to -mno-relax on RISC-V

Compiling on a RISC-V system fails with 'relocation R_RISCV_ALIGN
requires unimplemented linker relaxation; recompile with -mno-relax'.

Our default linker (ld.lld) doesn't support relaxation, so default to
no-relax so we don't generate object files the linker can't handle.

Reviewed by: mhorne
Sponsored by: Axiado
Differential Revision: https://reviews.freebsd.org/D25210

MFC r362445:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
llvmorg-10.0.0-97-g6f71678ecd2 (not quite 10.0.1 rc2, as more fixes are
still pending).

MFC r362587 (by cem):

Add WITH_CLANG_FORMAT option

clang-format is enabled conditional on either WITH_CLANG_EXTRAS or
WITH_CLANG_FORMAT. Some sources in libclang are build conditional on
either rule, and obviously the clang-format binary itself depends on the
rule.

clang-format could still use a manual page.

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

MFC r362609:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
llvmorg-10.0.0-129-gd24d5c8e308. Getting closer to 10.0.1-rc2.

MFC r362679:

Regenerate ReStructuredText based manpages for llvm-project tools:

* bugpoint.1
* clang.1
* llc.1
* lldb.1
* lli.1
* llvm-ar.1
* llvm-as.1
* llvm-bcanalyzer.1
* llvm-cov.1
* llvm-diff.1
* llvm-dis.1
* llvm-dwarfdump.1
* llvm-extract.1
* llvm-link.1
* llvm-mca.1
* llvm-nm.1
* llvm-pdbutil.1
* llvm-profdata.1
* llvm-symbolizer.1
* llvm-tblgen.1
* opt.1

Add newly generated manpages for:

* llvm-addr2line.1 (this is an alias of llvm-symbolizer)
* llvm-cxxfilt.1
* llvm-objcopy.1
* llvm-ranlib.1 (this is an alias of llvm-ar)

Note that llvm-objdump.1 is an exception, as upstream has both a plain
.1 file, and a .rst variant. These will have to be reconciled upstream
first.

MFC r362680:

Follow-up to r362679, add more entries to OptionalObsoleteFiles.inc

MFC r362719:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
llvmorg-10.0.1-rc2-0-g77d76b71d7d.

Also add a few more llvm utilities under WITH_CLANG_EXTRAS:

* llvm-dwp, a utility for merging DWARF 5 Split DWARF .dwo files into
.dwp (DWARF package files)
* llvm-size, a size(1) replacement
* llvm-strings, a strings(1) replacement

MFC r362733:

Remove older llvm-ranlib.1 entry from ObsoleteFiles.inc, as it has
gotten its own manpage now, and should be no longer be removed by "make
delete-old".

MFC r362734:

Fix llvm-strings.1 not installing, this was a copy/paste error.

MFC r363401:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
10.0.1 final (aka llvmorg-10.0.1-0-gef32c611aa2).

There were no changes since rc2, except in the upstream regression
tests, which we do not ship.

Relnotes: yes


/freebsd-11-stable/Makefile.inc1
/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/AST/DeclBase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Attr.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Options.td
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclBase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprConstant.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/RawCommentList.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/PPC.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/TargetInfo.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/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.cpp
/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/Hurd.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.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/Format/TokenAnnotator.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/CompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplate.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/TreeTransform.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Tokens.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/riscv/int_mul_impl.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/riscv/muldi3.S
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/riscv/mulsi3.S
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/GCDAProfiling.c
/freebsd-11-stable/contrib/llvm-project/libcxx
/freebsd-11-stable/contrib/llvm-project/libcxx/include/array
/freebsd-11-stable/contrib/llvm-project/lld
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Chunks.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/DLL.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Driver.cpp
/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/OutputSections.cpp
/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/Writer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/llvm
llvm/Analysis/ValueLattice.h
llvm/CodeGen/RDFGraph.h
llvm/CodeGen/RDFLiveness.h
llvm/CodeGen/RDFRegisters.h
llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
llvm/IR/IntrinsicsPowerPC.td
llvm/Support/AArch64TargetParser.def
llvm/Support/ManagedStatic.h
llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LazyValueInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ValueLattice.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/BranchFolding.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineSink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RDFGraph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RDFLiveness.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RDFRegisters.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/LegalizeIntegerTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/MergingTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/LTO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCObjectFileInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64BranchTargets.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedA53.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedA57.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedCyclone.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/AArch64SchedFalkor.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedKryo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedThunderX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedThunderX3T110.td
/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/BPF/BPFISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFMISimplifyPatchable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BTFDebug.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFCopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFCopy.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFDeadCode.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFGraph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFGraph.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFLiveness.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFLiveness.h
/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/PowerPC/P9InstrResources.td
/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/PPCISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrVSX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/ImmutableGraph.h
/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/X86FastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.cpp
/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/X86IndirectThunks.cpp
/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/X86InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86LoadValueInjectionLoadHardening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86LoadValueInjectionRetHardening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86MCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RetpolineThunks.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/Transforms/Coroutines/CoroSplit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-size
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-strings
/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/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/libllvm/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/share/mk/src.opts.mk
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/targets/pseudo/bootstrap-tools/Makefile
/freebsd-11-stable/targets/pseudo/clang/Makefile.depend
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/tools/build/options/WITH_CLANG_FORMAT
/freebsd-11-stable/usr.bin/clang/Makefile
/freebsd-11-stable/usr.bin/clang/bugpoint/bugpoint.1
/freebsd-11-stable/usr.bin/clang/clang/clang.1
/freebsd-11-stable/usr.bin/clang/llc/llc.1
/freebsd-11-stable/usr.bin/clang/lldb/lldb.1
/freebsd-11-stable/usr.bin/clang/lli/lli.1
/freebsd-11-stable/usr.bin/clang/llvm-ar/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-ar/llvm-ar.1
/freebsd-11-stable/usr.bin/clang/llvm-ar/llvm-ranlib.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-cxxfilt/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cxxfilt/llvm-cxxfilt.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-dwp
/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/llvm-mca.1
/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-objcopy/llvm-objcopy.1
/freebsd-11-stable/usr.bin/clang/llvm-objdump/llvm-objdump.1
/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-size
/freebsd-11-stable/usr.bin/clang/llvm-strings
/freebsd-11-stable/usr.bin/clang/llvm-strings/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/llvm-addr2line.1
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/llvm-symbolizer.1
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/llvm-tblgen.1
/freebsd-11-stable/usr.bin/clang/opt/opt.1
361947 09-Jun-2020 emaste

MFC r361739: llvm: Add DF_1_PIE

Sponsored by: The FreeBSD Foundation

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
llvm-c/Analysis.h
llvm-c/BitReader.h
llvm-c/BitWriter.h
llvm-c/Comdat.h
llvm-c/Core.h
llvm-c/DebugInfo.h
llvm-c/Disassembler.h
llvm-c/Error.h
llvm-c/ErrorHandling.h
llvm-c/ExecutionEngine.h
llvm-c/ExternC.h
llvm-c/IRReader.h
llvm-c/Initialization.h
llvm-c/LinkTimeOptimizer.h
llvm-c/Linker.h
llvm-c/Object.h
llvm-c/OrcBindings.h
llvm-c/Remarks.h
llvm-c/Support.h
llvm-c/Target.h
llvm-c/TargetMachine.h
llvm-c/Transforms/AggressiveInstCombine.h
llvm-c/Transforms/Coroutines.h
llvm-c/Transforms/IPO.h
llvm-c/Transforms/InstCombine.h
llvm-c/Transforms/PassManagerBuilder.h
llvm-c/Transforms/Scalar.h
llvm-c/Transforms/Utils.h
llvm-c/Transforms/Vectorize.h
llvm-c/Types.h
llvm-c/lto.h
llvm/ADT/APFloat.h
llvm/ADT/APInt.h
llvm/ADT/Any.h
llvm/ADT/ArrayRef.h
llvm/ADT/BitVector.h
llvm/ADT/DenseMap.h
llvm/ADT/DenseMapInfo.h
llvm/ADT/DirectedGraph.h
llvm/ADT/EnumeratedArray.h
llvm/ADT/FloatingPointMode.h
llvm/ADT/FoldingSet.h
llvm/ADT/Hashing.h
llvm/ADT/ImmutableSet.h
llvm/ADT/IntervalMap.h
llvm/ADT/Optional.h
llvm/ADT/PointerIntPair.h
llvm/ADT/PointerUnion.h
llvm/ADT/SCCIterator.h
llvm/ADT/STLExtras.h
llvm/ADT/SmallBitVector.h
llvm/ADT/SmallPtrSet.h
llvm/ADT/SmallSet.h
llvm/ADT/SmallVector.h
llvm/ADT/Statistic.h
llvm/ADT/StringExtras.h
llvm/ADT/StringMap.h
llvm/ADT/StringRef.h
llvm/ADT/StringSet.h
llvm/ADT/TinyPtrVector.h
llvm/ADT/Triple.h
llvm/ADT/Twine.h
llvm/ADT/VariadicFunction.h
llvm/ADT/iterator.h
llvm/ADT/iterator_range.h
llvm/Analysis/AliasAnalysis.h
llvm/Analysis/AliasSetTracker.h
llvm/Analysis/AssumptionCache.h
llvm/Analysis/BranchProbabilityInfo.h
llvm/Analysis/CFG.h
llvm/Analysis/CFLAndersAliasAnalysis.h
llvm/Analysis/CFLSteensAliasAnalysis.h
llvm/Analysis/CGSCCPassManager.h
llvm/Analysis/CaptureTracking.h
llvm/Analysis/DDG.h
llvm/Analysis/DOTGraphTraitsPass.h
llvm/Analysis/DependenceAnalysis.h
llvm/Analysis/DependenceGraphBuilder.h
llvm/Analysis/DivergenceAnalysis.h
llvm/Analysis/GlobalsModRef.h
llvm/Analysis/GuardUtils.h
llvm/Analysis/InstructionSimplify.h
llvm/Analysis/IntervalPartition.h
llvm/Analysis/LazyCallGraph.h
llvm/Analysis/LazyValueInfo.h
llvm/Analysis/LegacyDivergenceAnalysis.h
llvm/Analysis/Loads.h
llvm/Analysis/LoopAccessAnalysis.h
llvm/Analysis/LoopAnalysisManager.h
llvm/Analysis/LoopCacheAnalysis.h
llvm/Analysis/LoopInfo.h
llvm/Analysis/LoopInfoImpl.h
llvm/Analysis/LoopPass.h
llvm/Analysis/MemoryBuiltins.h
llvm/Analysis/MemoryDependenceAnalysis.h
llvm/Analysis/MemorySSA.h
llvm/Analysis/MemorySSAUpdater.h
llvm/Analysis/MustExecute.h
llvm/Analysis/Passes.h
llvm/Analysis/PhiValues.h
llvm/Analysis/PostDominators.h
llvm/Analysis/ProfileSummaryInfo.h
llvm/Analysis/PtrUseVisitor.h
llvm/Analysis/RegionInfoImpl.h
llvm/Analysis/ScalarEvolution.h
llvm/Analysis/ScalarEvolutionExpander.h
llvm/Analysis/TargetLibraryInfo.h
llvm/Analysis/TargetTransformInfo.h
llvm/Analysis/TargetTransformInfoImpl.h
llvm/Analysis/TypeMetadataUtils.h
llvm/Analysis/Utils/Local.h
llvm/Analysis/ValueTracking.h
llvm/Analysis/VecFuncs.def
llvm/Analysis/VectorUtils.h
llvm/BinaryFormat/COFF.h
llvm/BinaryFormat/Dwarf.def
llvm/BinaryFormat/Dwarf.h
llvm/BinaryFormat/ELF.h
llvm/BinaryFormat/ELFRelocs/AArch64.def
llvm/BinaryFormat/ELFRelocs/PowerPC64.def
llvm/BinaryFormat/MachO.h
llvm/BinaryFormat/Magic.h
llvm/BinaryFormat/Minidump.h
llvm/BinaryFormat/MinidumpConstants.def
llvm/BinaryFormat/Wasm.h
llvm/BinaryFormat/XCOFF.h
llvm/Bitcode/BitcodeAnalyzer.h
llvm/Bitcode/BitcodeWriter.h
llvm/Bitcode/LLVMBitCodes.h
llvm/Bitstream/BitCodes.h
llvm/Bitstream/BitstreamReader.h
llvm/CodeGen/AccelTable.h
llvm/CodeGen/AsmPrinter.h
llvm/CodeGen/BasicTTIImpl.h
llvm/CodeGen/CallingConvLower.h
llvm/CodeGen/CommandFlags.inc
llvm/CodeGen/DFAPacketizer.h
llvm/CodeGen/DIE.h
llvm/CodeGen/FastISel.h
llvm/CodeGen/FaultMaps.h
llvm/CodeGen/FunctionLoweringInfo.h
llvm/CodeGen/GlobalISel/CSEInfo.h
llvm/CodeGen/GlobalISel/CallLowering.h
llvm/CodeGen/GlobalISel/CombinerHelper.h
llvm/CodeGen/GlobalISel/CombinerInfo.h
llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
llvm/CodeGen/GlobalISel/GISelKnownBits.h
llvm/CodeGen/GlobalISel/IRTranslator.h
llvm/CodeGen/GlobalISel/InstructionSelector.h
llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
llvm/CodeGen/GlobalISel/Legalizer.h
llvm/CodeGen/GlobalISel/LegalizerHelper.h
llvm/CodeGen/GlobalISel/LegalizerInfo.h
llvm/CodeGen/GlobalISel/Localizer.h
llvm/CodeGen/GlobalISel/MIPatternMatch.h
llvm/CodeGen/GlobalISel/MachineIRBuilder.h
llvm/CodeGen/GlobalISel/RegisterBankInfo.h
llvm/CodeGen/GlobalISel/Utils.h
llvm/CodeGen/ISDOpcodes.h
llvm/CodeGen/LiveInterval.h
llvm/CodeGen/LiveIntervalUnion.h
llvm/CodeGen/LiveIntervals.h
llvm/CodeGen/LivePhysRegs.h
llvm/CodeGen/LiveRangeCalc.h
llvm/CodeGen/LiveRegUnits.h
llvm/CodeGen/LiveStacks.h
llvm/CodeGen/LiveVariables.h
llvm/CodeGen/LowLevelType.h
llvm/CodeGen/MIRFormatter.h
llvm/CodeGen/MIRParser/MIParser.h
llvm/CodeGen/MIRParser/MIRParser.h
llvm/CodeGen/MIRYamlMapping.h
llvm/CodeGen/MachineBasicBlock.h
llvm/CodeGen/MachineBlockFrequencyInfo.h
llvm/CodeGen/MachineBranchProbabilityInfo.h
llvm/CodeGen/MachineCombinerPattern.h
llvm/CodeGen/MachineDominators.h
llvm/CodeGen/MachineFrameInfo.h
llvm/CodeGen/MachineFunction.h
llvm/CodeGen/MachineInstr.h
llvm/CodeGen/MachineInstrBuilder.h
llvm/CodeGen/MachineInstrBundle.h
llvm/CodeGen/MachineLoopInfo.h
llvm/CodeGen/MachineLoopUtils.h
llvm/CodeGen/MachineMemOperand.h
llvm/CodeGen/MachineModuleInfo.h
llvm/CodeGen/MachineOperand.h
llvm/CodeGen/MachineOptimizationRemarkEmitter.h
llvm/CodeGen/MachineOutliner.h
llvm/CodeGen/MachinePipeliner.h
llvm/CodeGen/MachinePostDominators.h
llvm/CodeGen/MachineRegionInfo.h
llvm/CodeGen/MachineRegisterInfo.h
llvm/CodeGen/MachineScheduler.h
llvm/CodeGen/MachineSizeOpts.h
llvm/CodeGen/ModuloSchedule.h
llvm/CodeGen/NonRelocatableStringpool.h
llvm/CodeGen/PBQP/Math.h
llvm/CodeGen/ParallelCG.h
llvm/CodeGen/Passes.h
llvm/CodeGen/PseudoSourceValue.h
llvm/CodeGen/ReachingDefAnalysis.h
llvm/CodeGen/Register.h
llvm/CodeGen/RegisterClassInfo.h
llvm/CodeGen/RegisterPressure.h
llvm/CodeGen/RegisterScavenging.h
llvm/CodeGen/RegisterUsageInfo.h
llvm/CodeGen/ScheduleDAGInstrs.h
llvm/CodeGen/SelectionDAG.h
llvm/CodeGen/SelectionDAGISel.h
llvm/CodeGen/SelectionDAGNodes.h
llvm/CodeGen/SlotIndexes.h
llvm/CodeGen/StackMaps.h
llvm/CodeGen/StackProtector.h
llvm/CodeGen/SwitchLoweringUtils.h
llvm/CodeGen/TailDuplicator.h
llvm/CodeGen/TargetCallingConv.h
llvm/CodeGen/TargetFrameLowering.h
llvm/CodeGen/TargetInstrInfo.h
llvm/CodeGen/TargetLowering.h
llvm/CodeGen/TargetLoweringObjectFileImpl.h
llvm/CodeGen/TargetPassConfig.h
llvm/CodeGen/TargetRegisterInfo.h
llvm/CodeGen/TargetSchedule.h
llvm/CodeGen/TargetSubtargetInfo.h
llvm/CodeGen/ValueTypes.h
llvm/CodeGen/ValueTypes.td
llvm/CodeGen/VirtRegMap.h
llvm/DWARFLinker
llvm/DebugInfo/CodeView/CVTypeVisitor.h
llvm/DebugInfo/CodeView/CodeViewRecordIO.h
llvm/DebugInfo/CodeView/CodeViewRegisters.def
llvm/DebugInfo/CodeView/EnumTables.h
llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
llvm/DebugInfo/CodeView/SymbolDeserializer.h
llvm/DebugInfo/CodeView/SymbolRecord.h
llvm/DebugInfo/CodeView/TypeDeserializer.h
llvm/DebugInfo/CodeView/TypeRecord.h
llvm/DebugInfo/CodeView/TypeRecordHelpers.h
llvm/DebugInfo/CodeView/TypeRecordMapping.h
llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
llvm/DebugInfo/DIContext.h
llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
llvm/DebugInfo/DWARF/DWARFAddressRange.h
llvm/DebugInfo/DWARF/DWARFAttribute.h
llvm/DebugInfo/DWARF/DWARFContext.h
llvm/DebugInfo/DWARF/DWARFDataExtractor.h
llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
llvm/DebugInfo/DWARF/DWARFDebugAddr.h
llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
llvm/DebugInfo/DWARF/DWARFDebugAranges.h
llvm/DebugInfo/DWARF/DWARFDebugFrame.h
llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
llvm/DebugInfo/DWARF/DWARFDebugLine.h
llvm/DebugInfo/DWARF/DWARFDebugLoc.h
llvm/DebugInfo/DWARF/DWARFDebugMacro.h
llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
llvm/DebugInfo/DWARF/DWARFDie.h
llvm/DebugInfo/DWARF/DWARFExpression.h
llvm/DebugInfo/DWARF/DWARFFormValue.h
llvm/DebugInfo/DWARF/DWARFListTable.h
llvm/DebugInfo/DWARF/DWARFLocationExpression.h
llvm/DebugInfo/DWARF/DWARFObject.h
llvm/DebugInfo/DWARF/DWARFTypeUnit.h
llvm/DebugInfo/DWARF/DWARFUnit.h
llvm/DebugInfo/DWARF/DWARFUnitIndex.h
llvm/DebugInfo/DWARF/DWARFVerifier.h
llvm/DebugInfo/GSYM/FileEntry.h
llvm/DebugInfo/GSYM/FileWriter.h
llvm/DebugInfo/GSYM/FunctionInfo.h
llvm/DebugInfo/GSYM/GsymCreator.h
llvm/DebugInfo/GSYM/GsymReader.h
llvm/DebugInfo/GSYM/Header.h
llvm/DebugInfo/GSYM/InlineInfo.h
llvm/DebugInfo/GSYM/LineEntry.h
llvm/DebugInfo/GSYM/LineTable.h
llvm/DebugInfo/GSYM/LookupResult.h
llvm/DebugInfo/GSYM/Range.h
llvm/DebugInfo/GSYM/StringTable.h
llvm/DebugInfo/PDB/GenericError.h
llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
llvm/DebugInfo/PDB/Native/DbiModuleList.h
llvm/DebugInfo/PDB/Native/HashTable.h
llvm/DebugInfo/PDB/Native/SymbolCache.h
llvm/DebugInfo/PDB/PDBSymbol.h
llvm/DebugInfo/Symbolize/Symbolize.h
llvm/Demangle/Demangle.h
llvm/Demangle/DemangleConfig.h
llvm/Demangle/ItaniumDemangle.h
llvm/Demangle/MicrosoftDemangle.h
llvm/Demangle/MicrosoftDemangleNodes.h
llvm/Demangle/Utility.h
llvm/ExecutionEngine/JITLink/EHFrameSupport.h
llvm/ExecutionEngine/JITLink/JITLink.h
llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h
llvm/ExecutionEngine/JITLink/MachO_arm64.h
llvm/ExecutionEngine/JITLink/MachO_x86_64.h
llvm/ExecutionEngine/JITSymbol.h
llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
llvm/ExecutionEngine/Orc/CompileUtils.h
llvm/ExecutionEngine/Orc/Core.h
llvm/ExecutionEngine/Orc/DebugUtils.h
llvm/ExecutionEngine/Orc/ExecutionUtils.h
llvm/ExecutionEngine/Orc/IRCompileLayer.h
llvm/ExecutionEngine/Orc/IRTransformLayer.h
llvm/ExecutionEngine/Orc/IndirectionUtils.h
llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
llvm/ExecutionEngine/Orc/LLJIT.h
llvm/ExecutionEngine/Orc/LambdaResolver.h
llvm/ExecutionEngine/Orc/Layer.h
llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
llvm/ExecutionEngine/Orc/LazyReexports.h
llvm/ExecutionEngine/Orc/Legacy.h
llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
llvm/ExecutionEngine/Orc/OrcABISupport.h
llvm/ExecutionEngine/Orc/OrcError.h
llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
llvm/ExecutionEngine/Orc/RPC
llvm/ExecutionEngine/Orc/RPCSerialization.h
llvm/ExecutionEngine/Orc/RPCUtils.h
llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
llvm/ExecutionEngine/Orc/RawByteChannel.h
llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
llvm/ExecutionEngine/Orc/Speculation.h
llvm/ExecutionEngine/Orc/ThreadSafeModule.h
llvm/ExecutionEngine/RuntimeDyld.h
llvm/Frontend
llvm/IR/Argument.h
llvm/IR/Attributes.h
llvm/IR/Attributes.td
llvm/IR/AutoUpgrade.h
llvm/IR/BasicBlock.h
llvm/IR/CallSite.h
llvm/IR/CallingConv.h
llvm/IR/Constant.h
llvm/IR/ConstantRange.h
llvm/IR/Constants.h
llvm/IR/ConstrainedOps.def
llvm/IR/DIBuilder.h
llvm/IR/DataLayout.h
llvm/IR/DebugInfoFlags.def
llvm/IR/DebugInfoMetadata.h
llvm/IR/DerivedTypes.h
llvm/IR/DiagnosticInfo.h
llvm/IR/Dominators.h
llvm/IR/FPEnv.h
llvm/IR/FixedMetadataKinds.def
llvm/IR/Function.h
llvm/IR/GlobalAlias.h
llvm/IR/GlobalIFunc.h
llvm/IR/GlobalIndirectSymbol.h
llvm/IR/GlobalObject.h
llvm/IR/GlobalValue.h
llvm/IR/GlobalVariable.h
llvm/IR/IRBuilder.h
llvm/IR/IRPrintingPasses.h
llvm/IR/InstVisitor.h
llvm/IR/InstrTypes.h
llvm/IR/Instruction.def
llvm/IR/Instruction.h
llvm/IR/Instructions.h
llvm/IR/IntrinsicInst.h
llvm/IR/Intrinsics.h
llvm/IR/Intrinsics.td
llvm/IR/IntrinsicsAArch64.td
llvm/IR/IntrinsicsAMDGPU.td
llvm/IR/IntrinsicsARM.td
llvm/IR/IntrinsicsBPF.td
llvm/IR/IntrinsicsMips.td
llvm/IR/IntrinsicsNVVM.td
llvm/IR/IntrinsicsRISCV.td
llvm/IR/IntrinsicsWebAssembly.td
llvm/IR/IntrinsicsX86.td
llvm/IR/LLVMContext.h
llvm/IR/LegacyPassManager.h
llvm/IR/LegacyPassManagers.h
llvm/IR/MDBuilder.h
llvm/IR/Metadata.h
llvm/IR/Module.h
llvm/IR/ModuleSummaryIndex.h
llvm/IR/ModuleSummaryIndexYAML.h
llvm/IR/NoFolder.h
llvm/IR/Operator.h
llvm/IR/PassManager.h
llvm/IR/PassManagerInternal.h
llvm/IR/PatternMatch.h
llvm/IR/RemarkStreamer.h
llvm/IR/RuntimeLibcalls.def
llvm/IR/Type.h
llvm/IR/User.h
llvm/IR/Value.h
llvm/IR/ValueHandle.h
llvm/IR/ValueMap.h
llvm/InitializePasses.h
llvm/LTO/Config.h
llvm/LTO/LTO.h
llvm/LTO/LTOBackend.h
llvm/LTO/legacy/LTOCodeGenerator.h
llvm/LinkAllPasses.h
llvm/MC/MCAsmBackend.h
llvm/MC/MCAsmInfo.h
llvm/MC/MCAsmInfoELF.h
llvm/MC/MCAsmInfoXCOFF.h
llvm/MC/MCAsmMacro.h
llvm/MC/MCAssembler.h
llvm/MC/MCCodeEmitter.h
llvm/MC/MCCodePadder.h
llvm/MC/MCContext.h
llvm/MC/MCDirectives.h
llvm/MC/MCDisassembler/MCDisassembler.h
llvm/MC/MCDwarf.h
llvm/MC/MCELFStreamer.h
llvm/MC/MCExpr.h
llvm/MC/MCFixup.h
llvm/MC/MCFixupKindInfo.h
llvm/MC/MCFragment.h
llvm/MC/MCInst.h
llvm/MC/MCInstPrinter.h
llvm/MC/MCInstrAnalysis.h
llvm/MC/MCInstrDesc.h
llvm/MC/MCLinkerOptimizationHint.h
llvm/MC/MCMachObjectWriter.h
llvm/MC/MCObjectFileInfo.h
llvm/MC/MCObjectStreamer.h
llvm/MC/MCParser/AsmCond.h
llvm/MC/MCParser/MCParsedAsmOperand.h
llvm/MC/MCParser/MCTargetAsmParser.h
llvm/MC/MCRegister.h
llvm/MC/MCRegisterInfo.h
llvm/MC/MCSection.h
llvm/MC/MCSectionXCOFF.h
llvm/MC/MCStreamer.h
llvm/MC/MCSubtargetInfo.h
llvm/MC/MCSymbol.h
llvm/MC/MCSymbolWasm.h
llvm/MC/MCSymbolXCOFF.h
llvm/MC/MCTargetOptions.h
llvm/MC/MCTargetOptionsCommandFlags.inc
llvm/MC/MCWasmObjectWriter.h
llvm/MC/MCXCOFFStreamer.h
llvm/MC/StringTableBuilder.h
llvm/MC/SubtargetFeature.h
llvm/MCA/CodeEmitter.h
llvm/MCA/Context.h
llvm/MCA/HardwareUnits/LSUnit.h
llvm/MCA/HardwareUnits/RegisterFile.h
llvm/MCA/HardwareUnits/ResourceManager.h
llvm/MCA/HardwareUnits/RetireControlUnit.h
llvm/MCA/HardwareUnits/Scheduler.h
llvm/MCA/Instruction.h
llvm/MCA/SourceMgr.h
llvm/MCA/Stages/RetireStage.h
llvm/Object/Archive.h
llvm/Object/Binary.h
llvm/Object/COFF.h
llvm/Object/ELF.h
llvm/Object/ELFObjectFile.h
llvm/Object/ELFTypes.h
llvm/Object/MachO.h
llvm/Object/MachOUniversal.h
llvm/Object/Minidump.h
llvm/Object/ObjectFile.h
llvm/Object/StackMapParser.h
llvm/Object/TapiFile.h
llvm/Object/TapiUniversal.h
llvm/Object/Wasm.h
llvm/Object/WindowsResource.h
llvm/Object/XCOFFObjectFile.h
llvm/ObjectYAML/DWARFYAML.h
llvm/ObjectYAML/ELFYAML.h
llvm/ObjectYAML/MachOYAML.h
llvm/ObjectYAML/MinidumpYAML.h
llvm/ObjectYAML/WasmYAML.h
llvm/ObjectYAML/YAML.h
llvm/ObjectYAML/yaml2obj.h
llvm/Pass.h
llvm/Passes/PassBuilder.h
llvm/ProfileData/Coverage/CoverageMapping.h
llvm/ProfileData/Coverage/CoverageMappingWriter.h
llvm/ProfileData/InstrProf.h
llvm/ProfileData/InstrProfData.inc
llvm/ProfileData/InstrProfReader.h
llvm/ProfileData/SampleProf.h
llvm/ProfileData/SampleProfReader.h
llvm/ProfileData/SampleProfWriter.h
llvm/Remarks/BitstreamRemarkContainer.h
llvm/Remarks/BitstreamRemarkParser.h
llvm/Remarks/BitstreamRemarkSerializer.h
llvm/Remarks/Remark.h
llvm/Remarks/RemarkFormat.h
llvm/Remarks/RemarkLinker.h
llvm/Remarks/RemarkParser.h
llvm/Remarks/RemarkSerializer.h
llvm/Remarks/RemarkStringTable.h
llvm/Remarks/YAMLRemarkSerializer.h
llvm/Support/AArch64TargetParser.def
llvm/Support/AArch64TargetParser.h
llvm/Support/AMDGPUMetadata.h
llvm/Support/ARMTargetParser.def
llvm/Support/AlignOf.h
llvm/Support/Alignment.h
llvm/Support/Allocator.h
llvm/Support/Automaton.h
llvm/Support/BinaryStreamArray.h
llvm/Support/BinaryStreamReader.h
llvm/Support/BinaryStreamRef.h
llvm/Support/CRC.h
llvm/Support/CodeGen.h
llvm/Support/CommandLine.h
llvm/Support/Compiler.h
llvm/Support/CrashRecoveryContext.h
llvm/Support/DataExtractor.h
llvm/Support/Endian.h
llvm/Support/Error.h
llvm/Support/FileCheck.h
llvm/Support/FileCollector.h
llvm/Support/FileOutputBuffer.h
llvm/Support/FileSystem.h
llvm/Support/FileUtilities.h
llvm/Support/Format.h
llvm/Support/FormatVariadic.h
llvm/Support/GenericDomTree.h
llvm/Support/GenericDomTreeConstruction.h
llvm/Support/GlobPattern.h
llvm/Support/Host.h
llvm/Support/InitLLVM.h
llvm/Support/JSON.h
llvm/Support/JamCRC.h
llvm/Support/KnownBits.h
llvm/Support/LineIterator.h
llvm/Support/LockFileManager.h
llvm/Support/LowLevelTypeImpl.h
llvm/Support/MachineValueType.h
llvm/Support/ManagedStatic.h
llvm/Support/MathExtras.h
llvm/Support/Memory.h
llvm/Support/Mutex.h
llvm/Support/MutexGuard.h
llvm/Support/OnDiskHashTable.h
llvm/Support/Options.h
llvm/Support/Parallel.h
llvm/Support/Path.h
llvm/Support/Process.h
llvm/Support/RWMutex.h
llvm/Support/Regex.h
llvm/Support/Registry.h
llvm/Support/SHA1.h
llvm/Support/ScalableSize.h
llvm/Support/Signals.h
llvm/Support/SourceMgr.h
llvm/Support/SpecialCaseList.h
llvm/Support/SwapByteOrder.h
llvm/Support/TargetOpcodes.def
llvm/Support/TargetRegistry.h
llvm/Support/Threading.h
llvm/Support/TimeProfiler.h
llvm/Support/Timer.h
llvm/Support/TrailingObjects.h
llvm/Support/TypeSize.h
llvm/Support/UnicodeCharRanges.h
llvm/Support/UniqueLock.h
llvm/Support/VersionTuple.h
llvm/Support/VirtualFileSystem.h
llvm/Support/Win64EH.h
llvm/Support/Windows
llvm/Support/X86TargetParser.def
llvm/Support/YAMLTraits.h
llvm/Support/circular_raw_ostream.h
llvm/Support/raw_ostream.h
llvm/Support/type_traits.h
llvm/TableGen/Automaton.td
llvm/TableGen/Error.h
llvm/TableGen/Record.h
llvm/Target/GenericOpcodes.td
llvm/Target/GlobalISel/Combine.td
llvm/Target/GlobalISel/SelectionDAGCompat.td
llvm/Target/GlobalISel/Target.td
llvm/Target/Target.td
llvm/Target/TargetCallingConv.td
llvm/Target/TargetItinerary.td
llvm/Target/TargetLoweringObjectFile.h
llvm/Target/TargetMachine.h
llvm/Target/TargetOptions.h
llvm/Target/TargetSchedule.td
llvm/Target/TargetSelectionDAG.td
llvm/TextAPI/MachO/Architecture.h
llvm/TextAPI/MachO/ArchitectureSet.h
llvm/TextAPI/MachO/InterfaceFile.h
llvm/TextAPI/MachO/Platform.h
llvm/TextAPI/MachO/Symbol.h
llvm/TextAPI/MachO/Target.h
llvm/TextAPI/MachO/TextAPIReader.h
llvm/Transforms/CFGuard.h
llvm/Transforms/Coroutines.h
llvm/Transforms/IPO/Attributor.h
llvm/Transforms/IPO/FunctionImport.h
llvm/Transforms/IPO/GlobalDCE.h
llvm/Transforms/IPO/HotColdSplitting.h
llvm/Transforms/IPO/LowerTypeTests.h
llvm/Transforms/IPO/MergeFunctions.h
llvm/Transforms/IPO/PassManagerBuilder.h
llvm/Transforms/IPO/WholeProgramDevirt.h
llvm/Transforms/InstCombine/InstCombine.h
llvm/Transforms/InstCombine/InstCombineWorklist.h
llvm/Transforms/Instrumentation.h
llvm/Transforms/Instrumentation/InstrProfiling.h
llvm/Transforms/Instrumentation/MemorySanitizer.h
llvm/Transforms/Instrumentation/SanitizerCoverage.h
llvm/Transforms/Instrumentation/ThreadSanitizer.h
llvm/Transforms/Scalar.h
llvm/Transforms/Scalar/CallSiteSplitting.h
llvm/Transforms/Scalar/ConstantHoisting.h
llvm/Transforms/Scalar/Float2Int.h
llvm/Transforms/Scalar/GVN.h
llvm/Transforms/Scalar/GVNExpression.h
llvm/Transforms/Scalar/JumpThreading.h
llvm/Transforms/Scalar/LICM.h
llvm/Transforms/Scalar/LoopPassManager.h
llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
llvm/Transforms/Scalar/LoopUnrollPass.h
llvm/Transforms/Scalar/LowerConstantIntrinsics.h
llvm/Transforms/Scalar/LowerMatrixIntrinsics.h
llvm/Transforms/Scalar/MergedLoadStoreMotion.h
llvm/Transforms/Scalar/Reassociate.h
llvm/Transforms/Scalar/SCCP.h
llvm/Transforms/Utils.h
llvm/Transforms/Utils/BasicBlockUtils.h
llvm/Transforms/Utils/BuildLibCalls.h
llvm/Transforms/Utils/BypassSlowDivision.h
llvm/Transforms/Utils/CodeExtractor.h
llvm/Transforms/Utils/CodeMoverUtils.h
llvm/Transforms/Utils/Debugify.h
llvm/Transforms/Utils/FunctionImportUtils.h
llvm/Transforms/Utils/GuardUtils.h
llvm/Transforms/Utils/InjectTLIMappings.h
llvm/Transforms/Utils/Local.h
llvm/Transforms/Utils/LoopUtils.h
llvm/Transforms/Utils/MisExpect.h
llvm/Transforms/Utils/ModuleUtils.h
llvm/Transforms/Utils/PredicateInfo.h
llvm/Transforms/Utils/SimplifyLibCalls.h
llvm/Transforms/Utils/SizeOpts.h
llvm/Transforms/Utils/UnifyFunctionExitNodes.h
llvm/Transforms/Utils/UnrollLoop.h
llvm/Transforms/Utils/ValueMapper.h
llvm/Transforms/Vectorize.h
llvm/Transforms/Vectorize/LoopVectorizationLegality.h
llvm/Transforms/Vectorize/LoopVectorize.h
llvm/Transforms/Vectorize/SLPVectorizer.h
llvm/XRay/FDRRecordProducer.h
llvm/XRay/FDRRecords.h
llvm/XRay/FileHeaderReader.h
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
/freebsd-11-stable/lib/libc++/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
360661 05-May-2020 dim

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
9.0.1 final release c1a0a213378a458fbea1a5c77b315c7dce08fd05, and a
number of follow-ups.

MFC r355948:

Bootstrap mergeinfo for contrib/llvm-project

Merge (record-only) the following paths to contrib/llvm-project:
* ^/vendor/llvm-project/master
* ^/vendor/llvm-project/release-8.x
* ^/vendor/llvm-project/release-9.x

MFC r355951:

Merge empty dir updates from r355950 in vendor/llvm-project.

MFC r355957:

Merge diff elimination updates from r355953 into vendor/llvm-project.

MFC r355959:

Consolidate FREEBSD-Xlist files of different llvm sub-projects into one.

MFC r356004:

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

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

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

PR: 240629

MFC r356005:

Merge commit f97936fab from llvm git (by Eric Fiselier):

[libc++] Cleanup and enable multiple warnings.

Too many warnings are being disabled too quickly. Warnings are
important to keeping libc++ correct. This patch re-enables two
warnings: -Wconstant-evaluated and -Wdeprecated-copy.

In future, all warnings disabled for the test suite should require an
attached bug. The bug should state the plan for re-enabling that
warning, or a strong case why it should remain disabled.

This should fix a number of new g++ 9 warnings.

Requested by: rlibby

MFC r356100:

Merge commit d3aeac8e2 from llvm git (by Justin Hibbits)

[PowerPC] Only use PLT annotations if using PIC relocation model

Summary:
The default static (non-PIC, non-PIE) model for 32-bit powerpc does
not use @PLT annotations and relocations in GCC. LLVM shouldn't use
@PLT annotations either, because it breaks secure-PLT linking with
(some versions of?) GNU LD.

Update the available-externally.ll test to reflect that default mode
should be the same as the static relocation, by using the same check
prefix.

Reviewed by: sfertile
Differential Revision: https://reviews.llvm.org/D70570

Reviewed by: jhibbits
Differential Revision: https://reviews.freebsd.org/D22913

MFC r356104 (by jhibbits):

[PowerPC] enable atomic.c in compiler_rt and do not check and forces
lock/lock_free decisions in compiled time

Summary:
Enables atomic.c in compiler_rt and forces clang to not emit a call for runtime
decision about lock/lock_free. At compiling time, if clang can't decide if
atomic operation can be lock free, it emits calls to external functions like
`__atomic_is_lock_free`, `__c11_atomic_is_lock_free` and
`__atomic_always_lock_free`, postponing decision to a runtime check. According
to LLVM code documentation, the mechanism exists due to differences between
x86_64 processors that can't be decided at runtime.

On PowerPC and PowerPCSPE (32 bits), we already know in advance it can't be lock
free, so we force the decision at compile time and avoid having to implement it
in an external library.

This patch was made after 32 bit users testing the PowePC32 bit ISO reported
llvm could not be compiled with in-base llvm due to `__atomic_load8` not
implemented.

Submitted by: alfredo.junior_eldorado.org.br
Reviewed by: jhibbits, dim

Differential Revision: https://reviews.freebsd.org/D22549

MFC r356112 (by jhibbits):

[PowerPC64] Starting from FreeBSD 13.0, default to ELFv2 ABI

This changes the LLVM default powerpc64 ABI to ELFv2, if target OS is
FreeBSD >= 13.0

This will also be sent upstream.

Submitted by: alfredo.junior_eldorado.org.br
Reviewed by: dim, luporl
Relnotes: YES
Differential Revision: https://reviews.freebsd.org/D20383

MFC r356256:

Merge commit 468a0cb5f from llvm git (by Craig Topper):

[X86] Add X87 FCMOV support to X86FlagsCopyLowering.

Fixes PR44396

Merge commit 86f48999f from llvm git (by Craig Topper):

[X86] Fix typo in getCMovOpcode.

The 64-bit HasMemoryOperand line was using CMOV32rm instead of
CMOV64rm. Not sure how to test this. We have no test coverage that
passes true for HasMemoryOperand.

This fixes 'Assertion failed: (MI.findRegisterDefOperand(X86::EFLAGS) &&
"Expected a def of EFLAGS for this instruction!"), function
runOnMachineFunction' when compiling the misc/gpsim port for i386.

Reported by: yuri
Upstream PR: https://bugs.llvm.org/show_bug.cgi?id=44396

MFC r356329:

Merge commit 41449c58c from llvm git (by Roger Ferrer Ibanez):

[RISCV] Fix evaluation of %pcrel_lo

The following testcase

function:
.Lpcrel_label1:
auipc a0, %pcrel_hi(other_function)
addi a1, a0, %pcrel_lo(.Lpcrel_label1)
.p2align 2 # Causes a new fragment to be emitted

.type other_function,@function
other_function:
ret

exposes an odd behaviour in which only the %pcrel_hi relocation is
evaluated but not the %pcrel_lo.

$ llvm-mc -triple riscv64 -filetype obj t.s | llvm-objdump -d -r -

<stdin>: file format ELF64-riscv

Disassembly of section .text:
0000000000000000 function:
0: 17 05 00 00 auipc a0, 0
4: 93 05 05 00 mv a1, a0
0000000000000004: R_RISCV_PCREL_LO12_I other_function+4

0000000000000008 other_function:
8: 67 80 00 00 ret

The reason seems to be that in RISCVAsmBackend::shouldForceRelocation
we only consider the fragment but in RISCVMCExpr::evaluatePCRelLo we
consider the section. This usually works but there are cases where
the section may still be the same but the fragment may be another
one. In that case we end forcing a %pcrel_lo relocation without any
%pcrel_hi.

This patch makes RISCVAsmBackend::shouldForceRelocation use the
section, if any, to determine if the relocation must be forced or
not.

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

This is a prerequisite for building and linking hard- and soft-float
riscv worlds with clang and lld.

Requested by: jhb

MFC r356330:

Merge commit da7b129b1 from llvm git (by James Clarke):

[RISCV] Don't force Local Exec TLS for non-PIC

Summary:

Forcing Local Exec TLS requires the use of copy relocations. Copy
relocations need special handling in the runtime linker when being
used against TLS symbols, which is present in glibc, but not in
FreeBSD nor musl, and so cannot be relied upon. Moreover, copy
relocations are a hack that embed the size of an object in the ABI
when it otherwise wouldn't be, and break protected symbols (which are
expected to be DSO local), whilst also wasting space, thus they
should be avoided whenever possible. As discussed in D70398, RISC-V
should move away from forcing Local Exec, and instead use Initial
Exec like other targets, with possible linker relaxation to follow.
The RISC-V GCC maintainers also intend to adopt this
more-conventional behaviour (see
https://github.com/riscv/riscv-elf-psabi-doc/issues/122).

Reviewers: asb, MaskRay

Reviewed By: MaskRay

Subscribers: emaste, krytarowski, hiraditya, rbar, johnrusso,
simoncook, sabuasal, niosHD, kito-cheng, shiva0217, zzheng,
edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe,
PkmX, jocewei, psnobl, benna, Jim, lenary, s.egerton, pzheng,
sameer.abuasal, apazos, llvm-commits, bsdjhb

Tags: #llvm

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

This is a prerequisite for building and linking hard- and soft-float
riscv worlds with clang and lld.

Requested by: jhb

MFC r356331:

?Merge commit c6b09bff5 from llvm git (by Lu?s Marques):

[RISCV] Fix wrong CFI directives

Summary: Removes CFI CFA directives that could incorrectly propagate
beyond the basic block they were inteded for. Specifically it removes
the epilogue CFI directives. See the branch_and_tail_call test for an
example of the issue. Should fix the stack unwinding issues caused by
the incorrect directives.

Reviewers: asb, lenary, shiva0217
Reviewed By: lenary
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D69723

This is a prerequisite for building and linking hard- and soft-float
riscv worlds with clang and lld.

Requested by: jhb

MFC r356332:

?Merge commit d7be3eab5 from llvm git (by Lu?s Marques):

[RISCV] Handle fcopysign(f32, f64) and fcopysign(f64, f32)

Summary: Adds tablegen patterns to explicitly handle fcopysign where
the magnitude and sign arguments have different types, due to the
sign value casts being removed the by DAGCombiner. Support for RV32IF
follows in a separate commit. Adds tests for all relevant scenarios
except RV32IF.

Reviewers: lenary
Reviewed By: lenary
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D70678

This is a prerequisite for building and linking hard- and soft-float
riscv worlds with clang and lld.

Requested by: jhb

MFC r356333:

?Merge commit 189b7393d from llvm git (by John Baldwin):

[lld][RISCV] Use an e_flags of 0 if there are only binary input files.

Summary:
If none of the input files are ELF object files (for example, when
generating an object file from a single binary input file via "-b
binary"), use a fallback value for the ELF header flags instead of
crashing with an assertion failure.

Reviewers: MaskRay, ruiu, espindola

Reviewed By: MaskRay, ruiu

Subscribers: kevans, grimar, emaste, arichardson, asb, rbar,
johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217,
zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o,
rkruppe, PkmX, jocewei, psnobl, benna, Jim, lenary, s.egerton,
pzheng, sameer.abuasal, apazos, luismarques, llvm-commits, jrtc27

Tags: #llvm

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

This is a prerequisite for building and linking hard- and soft-float
riscv worlds with clang and lld.

Requested by: jhb

MFC r356701:

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

[mips] Use less registers to load address of TargetExternalSymbol

There is no pattern matched `add hi, (MipsLo texternalsym)`. As a
result, loading an address of 32-bit symbol requires two registers
and one more additional instruction:
```
addiu $1, $zero, %lo(foo)
lui $2, %hi(foo)
addu $25, $2, $1
```

This patch adds the missed pattern and enables generation more
effective set of instructions:
```
lui $1, %hi(foo)
addiu $25, $1, %lo(foo)
```

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

llvm-svn: 370196

Merge commit 59bb3609f from llvm git (by Simon Atanasyan):

[mips] Fix 64-bit address loading in case of applying 32-bit mask to
the result

If result of 64-bit address loading combines with 32-bit mask, LLVM
tries to optimize the code and remove "redundant" loading of upper
32-bits of the address. It leads to incorrect code on MIPS64 targets.

MIPS backend creates the following chain of commands to load 64-bit
address in the `MipsTargetLowering::getAddrNonPICSym64` method:
```
(add (shl (add (shl (add %highest(sym), %higher(sym)),
16),
%hi(sym)),
16),
%lo(%sym))
```

If the mask presents, LLVM decides to optimize the chain of commands.
It really does not make sense to load upper 32-bits because the
0x0fffffff mask anyway clears them. After removing redundant commands
we get this chain:
```
(add (shl (%hi(sym), 16), %lo(%sym))
```

There is no patterns matched `(MipsHi (i64 symbol))`. Due a bug in
`SYM_32` predicate definition, backend incorrectly selects a pattern
for a 32-bit symbols and uses the `lui` instruction for loading
`%hi(sym)`.

As a result we get incorrect set of instructions with unnecessary
16-bit left shifting:
```
lui at,0x0
R_MIPS_HI16 foo
dsll at,at,0x10
daddiu at,at,0
R_MIPS_LO16 foo
```

This patch resolves two problems:
- Fix `SYM_32/SYM_64` predicates to prevent selection of patterns
dedicated to 32-bit symbols in case of using N64 ABI.
- Add missed patterns for 64-bit symbols for `%hi/%lo`.

Fix PR42736.

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

llvm-svn: 370268

These two commits fix a miscompilation of the kernel for mips64, and
should allow clang to be used as the default compiler for mips64.

Requested by: arichards

MFC r356789 (by arichardson):

Merge commit 894f742acb from llvm git (by me):

[MIPS][ELF] Use PC-relative relocations in .eh_frame when possible

When compiling position-independent executables, we now use
DW_EH_PE_pcrel | DW_EH_PE_sdata4. However, the MIPS ABI does not define a
64-bit PC-relative ELF relocation so we cannot use sdata8 for the large
code model case. When using the large code model, we fall back to the
previous behaviour of generating absolute relocations.

With this change clang-generated .o files can be linked by LLD without
having to pass -Wl,-z,notext (which creates text relocations).
This is simpler than the approach used by ld.bfd, which rewrites the
.eh_frame section to convert absolute relocations into relative references.

I saw in D13104 that apparently ld.bfd did not accept pc-relative relocations
for MIPS ouput at some point. However, I also checked that recent ld.bfd
can process the clang-generated .o files so this no longer seems true.

Reviewed By: atanasyan
Differential Revision: https://reviews.llvm.org/D72228

Merge commit 8e8ccf47 from llvm git (by me)

[MIPS] Don't emit R_(MICRO)MIPS_JALR relocations against data symbols

The R_(MICRO)MIPS_JALR optimization only works when used against functions.
Using the relocation against a data symbol (e.g. function pointer) will
cause some linkers that don't ignore the hint in this case (e.g. LLD prior
to commit 5bab291) to generate a relative branch to the data symbol
which crashes at run time. Before this patch, LLVM was erroneously emitting
these relocations against local-dynamic TLS function pointers and global
function pointers with internal visibility.

Reviewers: atanasyan, jrtc27, vstefanovic
Reviewed By: atanasyan
Differential Revision: https://reviews.llvm.org/D72571

These two changes should allow using lld for MIPS64 (and maybe also MIPS32)
by default.
The second commit is not strictly necessary for clang+lld since LLD9 will
not perform the R_MIPS_JALR optimization (it was only added for 10) but it
is probably required in order to use recent ld.bfd.

Reviewed By: dim, emaste
Differential Revision: https://reviews.freebsd.org/D23203

MFC r356929:

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

Add 8548 CPU definition and attributes

8548 CPU is GCC's name for the e500v2, so accept this in clang. The
e500v2 doesn't support lwsync, so define __NO_LWSYNC__ for this as
well, as GCC does.

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

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

[PowerPC]: Add powerpcspe target triple subarch component

Summary:
This allows the use of '-target powerpcspe-unknown-linux-gnu' or
'powerpcspe-unknown-freebsd' to be used, instead of '-target
powerpc-unknown-linux-gnu -mspe'.

Reviewed By: dim
Differential Revision: https://reviews.llvm.org/D72014

Merge commit ba91dffaf from llvm git (by Fangrui Song):

[Driver][PowerPC] Move powerpcspe logic from cc1 to Driver

Follow-up of D72014. It is more appropriate to use a target feature
instead of a SubTypeArch to express the difference.

Reviewed By: #powerpc, jhibbits

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

commit 36eedfcb3 from llvm git (by Justin Hibbits):

[PowerPC] Fix powerpcspe subtarget enablement in llvm backend

Summary:

As currently written, -target powerpcspe will enable SPE regardless
of disabling the feature later on in the command line. Instead,
change this to just set a default CPU to 'e500' instead of a generic
CPU.

As part of this, add FeatureSPE to the e500 definition.

Reviewed By: MaskRay
Differential Revision: https://reviews.llvm.org/D72673

These are needed to unbreak the build for powerpcspe.

Requested by: jhibbits

MFC r358711:

Merge commit f75939599 from llvm git (by Erich Keane):

Reland r374450 with Richard Smith's comments and test fixed.

The behavior from the original patch has changed, since we're no
longer allowing LLVM to just ignore the alignment. Instead, we're
just assuming the maximum possible alignment.

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

llvm-svn: 374562

This fixes 'Assertion failed: (Alignment != 0 && "Invalid Alignment"),
function CreateAlignmentAssumption', when building recent versions of
v8, which invoke __builtin_assume_aligned() with its alignment argument
set to 4GiB or more.

Clang will now report a warning, and show the maximum possible alignment
instead, e.g.:

huge-align.cpp:1:27: warning: requested alignment must be 536870912 bytes or smaller; maximum alignment assumed [-Wbuiltin-assume-aligned-alignment]
void *f(void *g) { return __builtin_assume_aligned(g, 4294967296); }
^ ~~~~~~~~~~

Upstream PR: https://bugs.llvm.org/show_bug.cgi?id=43839
Reported by: cem


/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/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprConstant.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/ARM.cpp
/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/Version.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGBuiltin.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCall.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExpr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprScalar.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGStmtOpenMP.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/MicrosoftCXXABI.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/PPC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaChecking.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaType.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/atomic.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.c
/freebsd-11-stable/contrib/llvm-project/libcxx
/freebsd-11-stable/contrib/llvm-project/libcxx/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/libcxx/FREEBSD-upgrade
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__bit_reference
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__errc
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__hash_table
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__tree
/freebsd-11-stable/contrib/llvm-project/libcxx/include/errno.h
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ext/hash_map
/freebsd-11-stable/contrib/llvm-project/libcxx/include/random
/freebsd-11-stable/contrib/llvm-project/libcxx/include/valarray
/freebsd-11-stable/contrib/llvm-project/libunwind
/freebsd-11-stable/contrib/llvm-project/libunwind/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/lld
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Symbols.h
/freebsd-11-stable/contrib/llvm-project/lld/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/lld/docs/ReleaseNotes.rst
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/lldb/FREEBSD-Xlist
/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/Symbol/Symtab.cpp
/freebsd-11-stable/contrib/llvm-project/llvm
/freebsd-11-stable/contrib/llvm-project/llvm/FREEBSD-Xlist
llvm/ADT/Triple.h
llvm/CodeGen/MachineFunction.h
llvm/CodeGen/MachineInstr.h
llvm/CodeGen/StackProtector.h
llvm/Demangle/MicrosoftDemangleNodes.h
llvm/Transforms/Scalar/GVN.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineInstr.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/ScheduleDAGSDNodes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackProtector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCObjectFileInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ELFObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/RelocationResolver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ARMTargetParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARM.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMPredicates.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips64InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/P9InstrResources.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/InstPrinter
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FlagsCopyLowering.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/X86InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVN.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SROA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
/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/opt/opt.cpp
/freebsd-11-stable/contrib/llvm-project/openmp
/freebsd-11-stable/contrib/llvm-project/openmp/FREEBSD-Xlist
/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/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/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
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
/freebsd-11-stable/lib/libc++/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
355940 20-Dec-2019 dim

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.


354469 07-Nov-2019 dim

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 after: 1 month
X-MFC-With: r353358


353358 09-Oct-2019 dim

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 after: 1 month


352171 10-Sep-2019 imp

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


352170 10-Sep-2019 imp

Remove dir empty since r327952


352168 10-Sep-2019 imp

Remove dirs empty since r280031


349583 01-Jul-2019 dim

Pull in r360968 from upstream llvm trunk (by Philip Reames):

Clarify comments on helpers used by LFTR [NFC]

I'm slowly wrapping my head around this code, and am making comment
improvements where I can.

Pull in r360972 from upstream llvm trunk (by Philip Reames):

[LFTR] Factor out a helper function for readability purpose [NFC]

Pull in r360976 from upstream llvm trunk (by Philip Reames):

[IndVars] Don't reimplement Loop::isLoopInvariant [NFC]

Using dominance vs a set membership check is indistinguishable from a
compile time perspective, and the two queries return equivelent
results. Simplify code by using the existing function.

Pull in r360978 from upstream llvm trunk (by Philip Reames):

[LFTR] Strengthen assertions in genLoopLimit [NFCI]

Pull in r362292 from upstream llvm trunk (by Nikita Popov):

[IndVarSimplify] Fixup nowrap flags during LFTR (PR31181)

Fix for https://bugs.llvm.org/show_bug.cgi?id=31181 and partial fix
for LFTR poison handling issues in general.

When LFTR moves a condition from pre-inc to post-inc, it may now
depend on value that is poison due to nowrap flags. To avoid this, we
clear any nowrap flag that SCEV cannot prove for the post-inc addrec.

Additionally, LFTR may switch to a different IV that is dynamically
dead and as such may be arbitrarily poison. This patch will correct
nowrap flags in some but not all cases where this happens. This is
related to the adoption of IR nowrap flags for the pre-inc addrec.
(See some of the switch_to_different_iv tests, where flags are not
dropped or insufficiently dropped.)

Finally, there are likely similar issues with the handling of GEP
inbounds, but we don't have a test case for this yet.

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

Pull in r362971 from upstream llvm trunk (by Philip Reames):

Prepare for multi-exit LFTR [NFC]

This change does the plumbing to wire an ExitingBB parameter through
the LFTR implementation, and reorganizes the code to work in terms of
a set of individual loop exits. Most of it is fairly obvious, but
there's one key complexity which makes it worthy of consideration.
The actual multi-exit LFTR patch is in D62625 for context.

Specifically, it turns out the existing code uses the backedge taken
count from before a IV is widened. Oddly, we can end up with a
different (more expensive, but semantically equivelent) BE count for
the loop when requerying after widening. For the nestedIV example
from elim-extend, we end up with the following BE counts:
BEFORE: (-2 + (-1 * %innercount) + %limit)
AFTER: (-1 + (sext i32 (-1 + %limit) to i64) + (-1 * (sext i32 %innercount to i64))<nsw>)

This is the only test in tree which seems sensitive to this
difference. The actual result of using the wider BETC on this example
is that we actually produce slightly better code. :)

In review, we decided to accept that test change. This patch is
structured to preserve the old behavior, but a separate change will
immediate follow with the behavior change. (I wanted it separate for
problem attribution purposes.)

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

Pull in r362975 from upstream llvm trunk (by Philip Reames):

[LFTR] Use recomputed BE count

This was discussed as part of D62880. The basic thought is that
computing BE taken count after widening should produce (on average)
an equally good backedge taken count as the one before widening.
Since there's only one test in the suite which is impacted by this
change, and it's essentially equivelent codegen, that seems to be a
reasonable assertion. This change was separated from r362971 so that
if this turns out to be problematic, the triggering piece is obvious
and easily revertable.

For the nestedIV example from elim-extend.ll, we end up with the
following BE counts:
BEFORE: (-2 + (-1 * %innercount) + %limit)
AFTER: (-1 + (sext i32 (-1 + %limit) to i64) + (-1 * (sext i32 %innercount to i64))<nsw>)

Note that before is an i32 type, and the after is an i64. Truncating
the i64 produces the i32.

Pull in r362980 from upstream llvm trunk (by Philip Reames):

Factor out a helper function for readability and reuse in a future
patch [NFC]

Pull in r363613 from upstream llvm trunk (by Philip Reames):

Fix a bug w/inbounds invalidation in LFTR (recommit)

Recommit r363289 with a bug fix for crash identified in pr42279.
Issue was that a loop exit test does not have to be an icmp, leading
to a null dereference crash when new logic was exercised for that
case. Test case previously committed in r363601.

Original commit comment follows:

This contains fixes for two cases where we might invalidate inbounds
and leave it stale in the IR (a miscompile). Case 1 is when switching
to an IV with no dynamically live uses, and case 2 is when doing
pre-to-post conversion on the same pointer type IV.

The basic scheme used is to prove that using the given IV (pre or
post increment forms) would have to already trigger UB on the path to
the test we're modifying. As such, our potential UB triggering use
does not change the semantics of the original program.

As was pointed out in the review thread by Nikita, this is defending
against a separate issue from the hasConcreteDef case. This is about
poison, that's about undef. Unfortunately, the two are different, see
Nikita's comment for a fuller explanation, he explains it well.

(Note: I'm going to address Nikita's last style comment in a separate
commit just to minimize chance of subtle bugs being introduced due to
typos.)

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

Pull in r363875 from upstream llvm trunk (by Philip Reames):

[LFTR] Rename variable to minimize confusion [NFC]

(Recommit of r363293 which was reverted when a dependent patch was.)

As pointed out by Nikita in D62625, BackedgeTakenCount is generally
used to refer to the backedge taken count of the loop. A conditional
backedge taken count - one which only applies if a particular exit is
taken - is called a ExitCount in SCEV code, so be consistent here.

Pull in r363877 from upstream llvm trunk (by Philip Reames):

[LFTR] Stylistic cleanup as suggested in last review comment of
D62939 [NFC]

(Resumbit of r363292 which was reverted along w/an earlier patch)

Pull in r364346 from upstream llvm trunk (by Philip Reames):

[LFTR] Adjust debug output to include extensions (if any)

Pull in r364693 from upstream llvm trunk (by Philip Reames):

[IndVars] Remove a bit of manual constant folding [NFC]

SCEV is more than capable of folding (add x, trunc(0)) to x.

Pull in r364709 from upstream llvm trunk (by Nikita Popov):

[LFTR] Fix post-inc pointer IV with truncated exit count (PR41998)

Fixes https://bugs.llvm.org/show_bug.cgi?id=41998. Usually when we
have a truncated exit count we'll truncate the IV when comparing
against the limit, in which case exit count overflow in post-inc form
doesn't matter. However, for pointer IVs we don't do that, so we have
to be careful about incrementing the IV in the wide type.

I'm fixing this by removing the IVCount variable (which was ExitCount
or ExitCount+1) and replacing it with a UsePostInc flag, and then
moving the actual limit adjustment to the individual cases (which
are: pointer IV where we add to the wide type, integer IV where we
add to the narrow type, and constant integer IV where we add to the
wide type).

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

Together, these should fix a hang when building the textproc/htmldoc
port, due to an incorrect loop optimization.

PR: 237515
MFC after: 1 week


344951 09-Mar-2019 dim

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 after: 1 month
X-MFC-With: r344779


344779 04-Mar-2019 dim

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 after: 1 month


344056 12-Feb-2019 dim

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.


341825 11-Dec-2018 dim

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 after: 2 months


336970 31-Jul-2018 emaste

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


336969 31-Jul-2018 emaste

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


335799 29-Jun-2018 dim

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

Relnotes: yes
MFC after: 2 weeks


332833 20-Apr-2018 dim

Recommit r332501, with an additional upstream fix for "Cannot lower
EFLAGS copy that lives out of a basic block!" errors on i386.

Pull in r325446 from upstream clang trunk (by me):

[X86] Add 'sahf' CPU feature to frontend

Summary:
Make clang accept `-msahf` (and `-mno-sahf`) flags to activate the
`+sahf` feature for the backend, for bug 36028 (Incorrect use of
pushf/popf enables/disables interrupts on amd64 kernels). This was
originally submitted in bug 36037 by Jonathan Looney
<jonlooney@gmail.com>.

As described there, GCC also uses `-msahf` for this feature, and the
backend already recognizes the `+sahf` feature. All that is needed is
to teach clang to pass this on to the backend.

The mapping of feature support onto CPUs may not be complete; rather,
it was chosen to match LLVM's idea of which CPUs support this feature
(see lib/Target/X86/X86.td).

I also updated the affected test case (CodeGen/attr-target-x86.c) to
match the emitted output.

Reviewers: craig.topper, coby, efriedma, rsmith

Reviewed By: craig.topper

Subscribers: emaste, cfe-commits

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

Pull in r328944 from upstream llvm trunk (by Chandler Carruth):

[x86] Expose more of the condition conversion routines in the public
API for X86's instruction information. I've now got a second patch
under review that needs these same APIs. This bit is nicely
orthogonal and obvious, so landing it. NFC.

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

[X86] Merge itineraries for CLC, CMC, and STC.

These are very simple flag setting instructions that appear to only
be a single uop. They're unlikely to need this separation.

Pull in r329657 from upstream llvm trunk (by Chandler Carruth):

[x86] Introduce a pass to begin more systematically fixing PR36028
and similar issues.

The key idea is to lower COPY nodes populating EFLAGS by scanning the
uses of EFLAGS and introducing dedicated code to preserve the
necessary state in a GPR. In the vast majority of cases, these uses
are cmovCC and jCC instructions. For such cases, we can very easily
save and restore the necessary information by simply inserting a
setCC into a GPR where the original flags are live, and then testing
that GPR directly to feed the cmov or conditional branch.

However, things are a bit more tricky if arithmetic is using the
flags. This patch handles the vast majority of cases that seem to
come up in practice: adc, adcx, adox, rcl, and rcr; all without
taking advantage of partially preserved EFLAGS as LLVM doesn't
currently model that at all.

There are a large number of operations that techinaclly observe
EFLAGS currently but shouldn't in this case -- they typically are
using DF. Currently, they will not be handled by this approach.
However, I have never seen this issue come up in practice. It is
already pretty rare to have these patterns come up in practical code
with LLVM. I had to resort to writing MIR tests to cover most of the
logic in this pass already. I suspect even with its current amount
of coverage of arithmetic users of EFLAGS it will be a significant
improvement over the current use of pushf/popf. It will also produce
substantially faster code in most of the common patterns.

This patch also removes all of the old lowering for EFLAGS copies,
and the hack that forced us to use a frame pointer when EFLAGS copies
were found anywhere in a function so that the dynamic stack
adjustment wasn't a problem. None of this is needed as we now lower
all of these copies directly in MI and without require stack
adjustments.

Lots of thanks to Reid who came up with several aspects of this
approach, and Craig who helped me work out a couple of things
tripping me up while working on this.

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

Pull in r329673 from upstream llvm trunk (by Chandler Carruth):

[x86] Model the direction flag (DF) separately from the rest of
EFLAGS.

This cleans up a number of operations that only claimed te use EFLAGS
due to using DF. But no instructions which we think of us setting
EFLAGS actually modify DF (other than things like popf) and so this
needlessly creates uses of EFLAGS that aren't really there.

In fact, DF is so restrictive it is pretty easy to model. Only STD,
CLD, and the whole-flags writes (WRFLAGS and POPF) need to model
this.

I've also somewhat cleaned up some of the flag management instruction
definitions to be in the correct .td file.

Adding this extra register also uncovered a failure to use the
correct datatype to hold X86 registers, and I've corrected that as
necessary here.

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

Pull in r330264 from upstream llvm trunk (by Chandler Carruth):

[x86] Fix PR37100 by teaching the EFLAGS copy lowering to rewrite
uses across basic blocks in the limited cases where it is very
straight forward to do so.

This will also be useful for other places where we do some limited
EFLAGS propagation across CFG edges and need to handle copy rewrites
afterward. I think this is rapidly approaching the maximum we can and
should be doing here. Everything else begins to require either heroic
analysis to prove how to do PHI insertion manually, or somehow
managing arbitrary PHI-ing of EFLAGS with general PHI insertion.
Neither of these seem at all promising so if those cases come up,
we'll almost certainly need to rewrite the parts of LLVM that produce
those patterns.

We do now require dominator trees in order to reliably diagnose
patterns that would require PHI nodes. This is a bit unfortunate but
it seems better than the completely mysterious crash we would get
otherwise.

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

Together, these should ensure clang does not use pushf/popf sequences to
save and restore flags, avoiding problems with unrelated flags (such as
the interrupt flag) being restored unexpectedly.

Requested by: jtl
PR: 225330
MFC after: 1 week


332503 14-Apr-2018 dim

Revert r332501 for now, as it can cause build failures on i386.
Reported upstream as <https://bugs.llvm.org/show_bug.cgi?id=37133>.

Reported by: emaste, ci.freebsd.org
PR: 225330


332501 14-Apr-2018 dim

Pull in r325446 from upstream clang trunk (by me):

[X86] Add 'sahf' CPU feature to frontend

Summary:
Make clang accept `-msahf` (and `-mno-sahf`) flags to activate the
`+sahf` feature for the backend, for bug 36028 (Incorrect use of
pushf/popf enables/disables interrupts on amd64 kernels). This was
originally submitted in bug 36037 by Jonathan Looney
<jonlooney@gmail.com>.

As described there, GCC also uses `-msahf` for this feature, and the
backend already recognizes the `+sahf` feature. All that is needed is
to teach clang to pass this on to the backend.

The mapping of feature support onto CPUs may not be complete; rather,
it was chosen to match LLVM's idea of which CPUs support this feature
(see lib/Target/X86/X86.td).

I also updated the affected test case (CodeGen/attr-target-x86.c) to
match the emitted output.

Reviewers: craig.topper, coby, efriedma, rsmith

Reviewed By: craig.topper

Subscribers: emaste, cfe-commits

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

Pull in r328944 from upstream llvm trunk (by Chandler Carruth):

[x86] Expose more of the condition conversion routines in the public
API for X86's instruction information. I've now got a second patch
under review that needs these same APIs. This bit is nicely
orthogonal and obvious, so landing it. NFC.

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

[X86] Merge itineraries for CLC, CMC, and STC.

These are very simple flag setting instructions that appear to only
be a single uop. They're unlikely to need this separation.

Pull in r329657 from upstream llvm trunk (by Chandler Carruth):

[x86] Introduce a pass to begin more systematically fixing PR36028
and similar issues.

The key idea is to lower COPY nodes populating EFLAGS by scanning the
uses of EFLAGS and introducing dedicated code to preserve the
necessary state in a GPR. In the vast majority of cases, these uses
are cmovCC and jCC instructions. For such cases, we can very easily
save and restore the necessary information by simply inserting a
setCC into a GPR where the original flags are live, and then testing
that GPR directly to feed the cmov or conditional branch.

However, things are a bit more tricky if arithmetic is using the
flags. This patch handles the vast majority of cases that seem to
come up in practice: adc, adcx, adox, rcl, and rcr; all without
taking advantage of partially preserved EFLAGS as LLVM doesn't
currently model that at all.

There are a large number of operations that techinaclly observe
EFLAGS currently but shouldn't in this case -- they typically are
using DF. Currently, they will not be handled by this approach.
However, I have never seen this issue come up in practice. It is
already pretty rare to have these patterns come up in practical code
with LLVM. I had to resort to writing MIR tests to cover most of the
logic in this pass already. I suspect even with its current amount
of coverage of arithmetic users of EFLAGS it will be a significant
improvement over the current use of pushf/popf. It will also produce
substantially faster code in most of the common patterns.

This patch also removes all of the old lowering for EFLAGS copies,
and the hack that forced us to use a frame pointer when EFLAGS copies
were found anywhere in a function so that the dynamic stack
adjustment wasn't a problem. None of this is needed as we now lower
all of these copies directly in MI and without require stack
adjustments.

Lots of thanks to Reid who came up with several aspects of this
approach, and Craig who helped me work out a couple of things
tripping me up while working on this.

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

Pull in r329673 from upstream llvm trunk (by Chandler Carruth):

[x86] Model the direction flag (DF) separately from the rest of
EFLAGS.

This cleans up a number of operations that only claimed te use EFLAGS
due to using DF. But no instructions which we think of us setting
EFLAGS actually modify DF (other than things like popf) and so this
needlessly creates uses of EFLAGS that aren't really there.

In fact, DF is so restrictive it is pretty easy to model. Only STD,
CLD, and the whole-flags writes (WRFLAGS and POPF) need to model
this.

I've also somewhat cleaned up some of the flag management instruction
definitions to be in the correct .td file.

Adding this extra register also uncovered a failure to use the
correct datatype to hold X86 registers, and I've corrected that as
necessary here.

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

Together, these should ensure clang does not use pushf/popf sequences to
save and restore flags, avoiding problems with unrelated flags (such as
the interrupt flag) being restored unexpectedly.

Requested by: jtl
PR: 225330
MFC after: 1 week


331366 22-Mar-2018 dim

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

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

This patch starts simplifying the handling of .symver.

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

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

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

Delay creating an alias for @@@.

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

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

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

Object: Move attribute calculation into RecordStreamer. NFC

Summary: Preparation for D44274

Reviewers: pcc, espindola

Subscribers: hiraditya

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

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

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

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

Fixes PR36623

Reviewers: pcc, espindola

Subscribers: mehdi_amini, hiraditya

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

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

Reported by: Shawn Webb <shawn.webb@hardenedbsd.org>
MFC after: 3 months
X-MFC-With: r327952


329983 25-Feb-2018 dim

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

MFC after: 3 months
X-MFC-With: r327952
PR: 224669


329410 16-Feb-2018 dim

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

MFC after: 3 months
X-MFC-With: r327952
PR: 224669


328817 02-Feb-2018 dim

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

MFC after: 3 months
X-MFC-With: r327952
PR: 224669


328753 01-Feb-2018 dim

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

MFC after: 3 months
X-MFC-With: r327952
PR: 224669


328596 30-Jan-2018 emaste

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

Use a MCExpr for the size of MCFillFragment.

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

Requested by: royger


328594 30-Jan-2018 emaste

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

Make one of the emitFill methods non virtual. NFC.

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


328381 24-Jan-2018 dim

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

MFC after: 3 months
X-MFC-With: r327952
PR: 224669


327952 14-Jan-2018 dim

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

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

MFC after: 3 months


326496 03-Dec-2017 dim

Upgrade our copies of clang, llvm, lldb and libc++ to r319231 from the
upstream release_50 branch. This corresponds to 5.0.1 rc2.

MFC after: 2 weeks


323112 01-Sep-2017 dim

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 after: 2 months
X-MFC-with: r321369


322855 24-Aug-2017 dim

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 after: 2 months
X-MFC-with: r321369


322740 21-Aug-2017 dim

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

MFC after: 2 months
X-MFC-with: r321369


322320 09-Aug-2017 dim

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

MFC after: 2 months
X-MFC-with: r321369


321723 30-Jul-2017 dim

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 after: 2 months
X-MFC-with: r321369


321369 22-Jul-2017 dim

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 after: 2 months


318655 22-May-2017 dim

Pull in r302416 from upstream llvm trunk (by Martin Storsjö):

[ARM] Clear the constant pool cache on explicit .ltorg directives

Multiple ldr pseudoinstructions with the same constant value will
reuse the same constant pool entry. However, if the constant pool is
explicitly flushed with a .ltorg directive, we should not try to
reference constants in the previous pool any longer, since they may
be out of range.

This fixes assembling hand-written assembler source which repeatedly
loads the same constant value, across a binary size larger than the
pc-relative fixup range for ldr instructions (4096 bytes). Such
assembler source already uses explicit .ltorg instructions to emit
constant pools with regular intervals. However if we try to reuse
constants emitted in earlier pools, they end up out of range.

This makes the output of the testcase match what binutils gas does
(prior to this patch, it would fail to assemble).

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

This should fix "out of range pc-relative fixup value" errors, when
compiling certain ARM inline assembly for www/webkit-gtk[23].

Reported by: mmel
MFC after: 3 days


317458 26-Apr-2017 dim

Pull in r294458 from upstream llvm trunk (by Sanne Wouda):

[Assembler] Enable nicer diagnostics for inline assembly.

Fixed test.

Summary:
Enables source location in diagnostic messages from the backend.
This is after parsing, during finalization. This requires the
SourceMgr, the inline assembly string buffer, and DiagInfo to still
be alive after EmitInlineAsm returns.

This patch creates a single SourceMgr for inline assembly inside the
AsmPrinter. MCContext gets a pointer to this SourceMgr. Using one
SourceMgr per call to EmitInlineAsm would make it difficult for
MCContext to figure out in which SourceMgr the SMLoc is located,
while a single SourceMgr can figure it out if it has multiple
buffers.

The Str argument to EmitInlineAsm is copied into a buffer and owned
by the inline asm SourceMgr. This ensures that DiagHandlers won't
print garbage. (Clang emits a "note: instantiated into assembly
here", which refers to this string.)

The AsmParser gets destroyed before finalization, which means that
the DiagHandlers the AsmParser installs into the SourceMgr will be
stale. Restore the saved DiagHandlers.

Since now we're using just one SourceMgr for multiple inline asm
strings, we need to tell the AsmParser which buffer it needs to parse
currently. Hand a buffer id -- returned from SourceMgr::
AddNewSourceBuffer -- to the AsmParser.

Reviewers: rnk, grosbach, compnerd, rengolin, rovka, anemet

Reviewed By: rnk

Subscribers: llvm-commits

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

This improves error reporting for some inline assembly constructs that
clang does not approve of: instead of crashing with a "fatal backend
error", it will now show a normal error message, and point out the
location of the problematic assembly.

Reported by: mmel
MFC after: 1 week


314564 02-Mar-2017 dim

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 after: 1 month


312832 26-Jan-2017 dim

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

Recommit "Use ValueOffsetPair to enhance value reuse during SCEV
expansion".

The fix for PR28705 will be committed consecutively.

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

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

Fix the runtime error caused by "Use ValueOffsetPair to enhance value
reuse during SCEV expansion".

The patch is to fix the bug in PR28705. It was caused by setting
wrong return value for SCEVExpander::findExistingExpansion. The
return values of findExistingExpansion have different meanings when
the function is used in different ways so it is easy to make mistake.
The fix creates two new interfaces to replace
SCEVExpander::findExistingExpansion, and specifies where each
interface is expected to be used.

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

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

Create a getelementptr instead of sub expr for ValueOffsetPair if the
value is a pointer.

This patch is to fix PR30213. When expanding an expr based on
ValueOffsetPair, if the value is of pointer type, we can only create
a getelementptr instead of sub expr.

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

This should fix assertion failures when building OpenCV >= 3.1, and also
allow building lang/spidermonkey24 without any further assertions.

PR: 215649
MFC after: 1 week


312831 26-Jan-2017 dim

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

Reported by: antoine
PR: 215649


312765 25-Jan-2017 dim

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 after: 3 days


310194 17-Dec-2016 dim

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
MFC after: 2 weeks
X-MFC-with: r309124


309124 24-Nov-2016 dim

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 after: 1 month


297244 24-Mar-2016 dim

Pull in r264335 from upstream llvm trunk:

Add <atomic> to ThreadPool.h, since std::atomic is used

Summary:
Apparently, when compiling with gcc 5.3.2 for powerpc64, the order of
headers is such that it gets an error about std::atomic<> use in
ThreadPool.h, since this header is not included explicitly. See also:

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

Fix this by including <atomic>. Patch by Bryan Drewery.

Reviewers: chandlerc, joker.eph

Subscribers: bdrewery, llvm-commits

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


296418 05-Mar-2016 dim

Convert two llvm source files to native line ending, which was also done
upstream. Merging doesn't automatically do this, unfortunately.


296417 05-Mar-2016 dim

Upgrade our copies of clang, llvm, lldb and compiler-rt to 3.8.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 will soon be available here:
<http://llvm.org/releases/3.8.0/docs/ReleaseNotes.html>
<http://llvm.org/releases/3.8.0/tools/clang/docs/ReleaseNotes.html>

Thanks to Ed Maste, Roman Divacky, Davide Italiano and Antoine Brodin
for their help.

Relnotes: yes


292735 25-Dec-2015 dim

Upgrade our copies of clang and llvm to 3.7.1 release. This is a
bugfix-only release, with no new features.

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


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


283526 25-May-2015 dim

Upgrade our copy of clang and llvm to 3.6.1 release.

This release contains the following cherry-picked revisions from
upstream trunk:

226124 226151 226164 226165 226166 226407 226408 226409 226652
226905 226983 227084 227087 227089 227208 227209 227210 227211
227212 227213 227214 227269 227430 227482 227503 227519 227574
227822 227986 227987 227988 227989 227990 228037 228038 228039
228040 228188 228189 228190 228273 228372 228373 228374 228403
228765 228848 228918 229223 229225 229226 229227 229228 229230
229234 229235 229236 229238 229239 229413 229507 229680 229750
229751 229752 229911 230146 230147 230235 230253 230255 230469
230500 230564 230603 230657 230742 230748 230956 231219 231237
231245 231259 231280 231451 231563 231601 231658 231659 231662
231984 231986 232046 232085 232142 232176 232179 232189 232382
232386 232389 232425 232438 232443 232675 232786 232797 232943
232957 233075 233080 233351 233353 233409 233410 233508 233584
233819 233904 234629 234636 234891 234975 234977 235524 235641
235662 235931 236099 236306 236307

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


280400 23-Mar-2015 dim

Pull in r230348 from upstream llvm trunk (by Tim Northover):

ARM: treat [N x i32] and [N x i64] as AAPCS composite types

The logic is almost there already, with our special homogeneous
aggregate handling. Tweaking it like this allows front-ends to emit
AAPCS compliant code without ever having to count registers or add
discarded padding arguments.

Only arrays of i32 and i64 are needed to model AAPCS rules, but I
decided to apply the logic to all integer arrays for more consistency.

This fixes a possible "Unexpected member type for HA" error when
compiling lib/msun/bsdsrc/b_tgamma.c for armv6.

Reported by: Jakub Palider <jpa@semihalf.com>


280031 15-Mar-2015 dim

Upgrade our copy of clang, llvm and lldb to 3.6.0 release.

Please note that from 3.5.0 onwards, clang/llvm/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.6.0/docs/ReleaseNotes.html>
<http://llvm.org/releases/3.6.0/tools/clang/docs/ReleaseNotes.html>

Thanks to Ed Maste for the lldb part of this upgrade.

Exp-run: antoine


277320 18-Jan-2015 dim

Upgrade our copy of clang and llvm to 3.5.1 release. This is a bugfix
only release, no new features have been added.

Please note that this version requires 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.5.1/docs/ReleaseNotes.html>
<http://llvm.org/releases/3.5.1/tools/clang/docs/ReleaseNotes.html>

MFC after: 1 month
X-MFC-With: 276479


276479 31-Dec-2014 dim

Upgrade our copy of clang, llvm and lldb to 3.5.0 release.

Please note that this version now requires 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.5.0/docs/ReleaseNotes.html>
<http://llvm.org/releases/3.5.0/tools/clang/docs/ReleaseNotes.html>

Thanks to Ed Maste, Roman Divacky, Andrew Turner, Justin Hibbits and
Antoine Brodin for their invaluable help with this import.

Approved by: portmgr (antoine)
MFC after: 1 month


274442 12-Nov-2014 dim

Pull in r221709 from upstream llvm trunk (by Frédéric Riss):

Totally forget deallocated SDNodes in SDDbgInfo.

What would happen before that commit is that the SDDbgValues associated with
a deallocated SDNode would be marked Invalidated, but SDDbgInfo would keep
a map entry keyed by the SDNode pointer pointing to this list of invalidated
SDDbgNodes. As the memory gets reused, the list might get wrongly associated
with another new SDNode. As the SDDbgValues are cloned when they are transfered,
this can lead to an exponential number of SDDbgValues being produced during
DAGCombine like in http://llvm.org/bugs/show_bug.cgi?id=20893

Note that the previous behavior wasn't really buggy as the invalidation made
sure that the SDDbgValues won't be used. This commit can be considered a
memory optimization and as such is really hard to validate in a unit-test.

This should fix abnormally large memory usage and resulting OOM crashes
when compiling certain ports with debug information.

Reported by: Dmitry Marakasov <amdmi3@amdmi3.ru>
Upstream PRs: http://llvm.org/PR19031 http://llvm.org/PR20893
MFC after: 1 week


270147 18-Aug-2014 rdivacky

Backport r197824, r213427 and r213960 from LLVM trunk:

r197824 | rdivacky | 2013-12-20 19:08:54 +0100 (Fri, 20 Dec 2013) | 2 lines

Implement initial-exec TLS for PPC32.

r213427 | hfinkel | 2014-07-19 01:29:49 +0200 (Sat, 19 Jul 2014) | 7 lines

[PowerPC] 32-bit ELF PIC support

This adds initial support for PPC32 ELF PIC (Position Independent Code; the
-fPIC variety), thus rectifying a long-standing deficiency in the PowerPC
backend.

Patch by Justin Hibbits!

r213960 | hfinkel | 2014-07-25 19:47:22 +0200 (Fri, 25 Jul 2014) | 3 lines

[PowerPC] Support TLS on PPC32/ELF

Patch by Justin Hibbits!

Reviewed by: jhibbits
Approved by: dim


265925 12-May-2014 dim

Upgrade our copy of llvm/clang to 3.4.1 release. This release contains
mostly fixes, for the following upstream bugs:

http://llvm.org/PR16365 http://llvm.org/PR17473 http://llvm.org/PR18000
http://llvm.org/PR18068 http://llvm.org/PR18102 http://llvm.org/PR18165
http://llvm.org/PR18260 http://llvm.org/PR18290 http://llvm.org/PR18316
http://llvm.org/PR18460 http://llvm.org/PR18473 http://llvm.org/PR18515
http://llvm.org/PR18526 http://llvm.org/PR18600 http://llvm.org/PR18762
http://llvm.org/PR18773 http://llvm.org/PR18860 http://llvm.org/PR18994
http://llvm.org/PR19007 http://llvm.org/PR19010 http://llvm.org/PR19033
http://llvm.org/PR19059 http://llvm.org/PR19144 http://llvm.org/PR19326

MFC after: 2 weeks


264826 23-Apr-2014 emaste

Merge LLVM r202188:

Debug info: Support variadic functions.
Variadic functions have an unspecified parameter tag after the last
argument. In IR this is represented as an unspecified parameter in the
subroutine type.

Paired commit with CFE r202185.

rdar://problem/13690847

This re-applies r202184 + a bugfix in DwarfDebug's argument handling.

This merge includes a change to use the LLVM 3.4 API in
lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp:

DwarfUnit -> CompileUnit

Sponsored by: DARPA, AFRL


263312 18-Mar-2014 dim

Pull in r196939 from upstream llvm trunk (by Reid Kleckner):

Reland "Fix miscompile of MS inline assembly with stack realignment"

This re-lands commit r196876, which was reverted in r196879.

The tests have been fixed to pass on platforms with a stack alignment
larger than 4.

Update to clang side tests will land shortly.

Pull in r196986 from upstream llvm trunk (by Reid Kleckner):

Revert the backend fatal error from r196939

The combination of inline asm, stack realignment, and dynamic allocas
turns out to be too common to reject out of hand.

ASan inserts empy inline asm fragments and uses aligned allocas.
Compiling any trivial function containing a dynamic alloca with ASan is
enough to trigger the check.

XFAIL the test cases that would be miscompiled and add one that uses the
relevant functionality.

Pull in r202930 from upstream llvm trunk (by Hans Wennborg):

Check for dynamic allocas and inline asm that clobbers sp before building
selection dag (PR19012)

In X86SelectionDagInfo::EmitTargetCodeForMemcpy we check with MachineFrameInfo
to make sure that ESI isn't used as a base pointer register before we choose to
emit rep movs (which clobbers esi).

The problem is that MachineFrameInfo wouldn't know about dynamic allocas or
inline asm that clobbers the stack pointer until SelectionDAGBuilder has
encountered them.

This patch fixes the problem by checking for such things when building the
FunctionLoweringInfo.

Differential Revision: http://llvm-reviews.chandlerc.com/D2954

Together, these commits fix the problem encountered in the devel/emacs
port on the i386 architecture, where a combination of stack realignment,
alloca() and memcpy() could incidentally clobber the %esi register,
leading to segfaults in the temacs build-time utility.

See also: http://llvm.org/PR18171 and http://llvm.org/PR19012

Reported by: ashish
PR: ports/183064
MFC after: 1 week


262613 28-Feb-2014 dim

Merge the projects/clang-sparc64 branch back to head. This brings in
several updates from the llvm and clang trunks to make the sparc64
backend fully functional.

Apart from one patch to sys/sparc64/include/pcpu.h which is still under
discussion, this makes it possible to let clang fully build world and
kernel for sparc64.

Any assistance with testing this on actual sparc64 hardware is greatly
appreciated, as there will unavoidably be bugs left.

Many thanks go to Roman Divacky for his upstream work on getting the
sparc64 backend into shape.

MFC after: 1 month


262611 28-Feb-2014 dim

Pull in r196874 from upstream llvm trunk:

Fix a crash that occurs when PWD is invalid.

MCJIT needs to be able to run in hostile environments, even when PWD
is invalid. There's no need to crash MCJIT in this case.

The obvious fix is to simply leave MCContext's CompilationDir empty
when PWD can't be determined. This way, MCJIT clients,
and other clients that link with LLVM don't need a valid working directory.

If we do want to guarantee valid CompilationDir, that should be done
only for clients of getCompilationDir(). This is as simple as checking
for an empty string.

The only current use of getCompilationDir is EmitGenDwarfInfo, which
won't conceivably run with an invalid working dir. However, in the
purely hypothetically and untestable case that this happens, the
AT_comp_dir will be omitted from the compilation_unit DIE.

This should help fix assertions occurring with ports-mgmt/tinderbox,
when it is using jails, and sometimes invalidates clang's current
working directory.

Reported by: decke
MFC after: 2 weeks
X-MFC-With: r261991


261991 16-Feb-2014 dim

Upgrade our copy of llvm/clang to 3.4 release. This version supports
all of the features in the current working draft of the upcoming C++
standard, provisionally named C++1y.

The code generator's performance is greatly increased, and the loop
auto-vectorizer is now enabled at -Os and -O2 in addition to -O3. The
PowerPC backend has made several major improvements to code generation
quality and compile time, and the X86, SPARC, ARM32, Aarch64 and SystemZ
backends have all seen major feature work.

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

MFC after: 1 month


258005 11-Nov-2013 emaste

Merge upstream LLVM r192118:

Formally added an explicit enum for DWARF TLS support. No functionality
change.

Reviewed by: dim@
Sponsored by: DARPA, AFRL


258003 11-Nov-2013 emaste

Merge upstream LLVM r182803:

[Mips] Add Mips specific dynamic table entry tags.

This is to support an upcoming LLDB snapshot update.

Reviewed by: dim@
Sponsored by: DARPA, AFRL


256030 03-Oct-2013 dim

Pull in r189644 from upstream llvm trunk:

Add ms_abi and sysv_abi attribute handling.

Based on a patch by Benno Rice!

This will help to develop EFI support.

Approved by: re (kib)
Verified by: benno
MFC after: 1 week


254790 24-Aug-2013 emaste

Import llvm r187614 (git 44c8e34), for lldb's use:

Author: Daniel Malea <daniel.malea@intel.com>
Date: Thu Aug 1 21:18:16 2013 +0000

Fixed the Intel-syntax X86 disassembler to respect the (existing)
option for hexadecimal immediates, to match AT&T syntax. This also
brings a new option for C-vs-MASM-style hex.

Patch by Richard Mitton
Reviewed: http://llvm-reviews.chandlerc.com/D1243


252720 04-Jul-2013 dim

Pull in r185594 from llvm trunk:

Add MachineBasicBlock::addLiveIn().

This function adds a live-in physical register to an MBB and ensures
that it is copied to a virtual register immediately.

Pull in r185615 from llvm trunk:

Live-in copies go *after* EH_LABELs.

This will soon be tested by exception handling working at all.

Pull in r185617 from llvm trunk:

Simplify landing pad lowering.

Stop using the ISD::EXCEPTIONADDR and ISD::EHSELECTION when lowering
landing pad arguments. These nodes were previously legalized into
CopyFromReg nodes, but that never worked properly because the
CopyFromReg node weren't guaranteed to be scheduled at the top of the
basic block.

This meant the exception pointer and selector registers could be
clobbered before being copied to a virtual register.

This patch copies the two physical registers to virtual registers at
the beginning of the basic block, and lowers the landingpad instruction
directly to two CopyFromReg nodes reading the *virtual* registers. This
is safe because virtual registers don't get clobbered.

A future patch will remove the ISD::EXCEPTIONADDR and ISD::EHSELECTION
nodes.

Together, these changes fix llvm PR 16038 ('qt4 webcore file results in
"Bad machine code: Using an undefined physical register"'), and should
make it possible again to compile the www/qt4-webkit port again on the
i386 arch, without using a CPUTYPE=i686 or higher setting.


251662 12-Jun-2013 dim

Upgrade our copy of llvm/clang to 3.3 release.

Release notes are still in the works, these will follow soon.

MFC after: 1 month


249423 12-Apr-2013 dim

Upgrade our copy of llvm/clang to trunk r178860, in preparation of the
upcoming 3.3 release (branching and freezing expected in a few weeks).

Preliminary release notes can be found at the usual location:
<http://llvm.org/docs/ReleaseNotes.html>

An MFC is planned once the actual 3.3 release is finished.


244628 23-Dec-2012 dim

Upgrade our copy of llvm/clang to 3.2 release.

Release notes for llvm:
http://llvm.org/releases/3.2/docs/ReleaseNotes.html

Release notes for clang:
http://llvm.org/releases/3.2/tools/clang/docs/ReleaseNotes.html

MFC after: 2 weeks


243830 03-Dec-2012 dim

Upgrade our copy of llvm/clang to r168974, from upstream's release_32
branch. This is effectively llvm/clang 3.2 RC2; the 3.2 release is
coming soon.


241430 10-Oct-2012 dim

Pull in r164132 from upstream llvm trunk:

When creating MCAsmBackend pass the CPU string as well. In X86AsmBackend
store this and use it to not emit long nops when the CPU is geode which
doesnt support them.

Fixes PR11212.

Pull in r164133 from upstream clang trunk:

Follow up on llvm r164132.

This should prevent illegal instructions when building world on Geode
CPUs (e.g. Soekris).

MFC after: 3 days


239462 20-Aug-2012 dim

Upgrade our copy of llvm/clang to trunk r162107. With thanks to
Benjamin Kramer and Joerg Sonnenberger for their input and fixes.


236260 29-May-2012 dim

Pull in r156591 from upstream llvm trunk:

Allow unique_file to take a mode for file permissions, but default
to user only read/write.

and r156592 from upstream clang trunk:

For final output files create them with mode 0664 to match other
compilers and expected defaults.

This should fix clang creating files with mode 0600.

Reported by: James <james@hicag.org>
MFC after: 3 days


234982 03-May-2012 dim

Upgrade our copy of llvm/clang to r155985, from upstream's release_31
branch. This brings us very close to the 3.1 release, which is planned
for May 14th.

MFC after: 2 weeks


234353 16-Apr-2012 dim

Upgrade our copy of llvm/clang to trunk r154661, in preparation of the
upcoming 3.1 release (expected in a few weeks). Preliminary release
notes can be found at: <http://llvm.org/docs/ReleaseNotes.html>

MFC after: 2 weeks


226633 22-Oct-2011 dim

Upgrade our copy of llvm/clang to r142614, from upstream's release_30
branch. This brings us very close to the 3.0 release, which is expected
in a week or two.

MFC after: 1 week


224145 17-Jul-2011 dim

Upgrade our copy of llvm/clang to r135360, from upstream's trunk.


223017 12-Jun-2011 dim

Upgrade our copy of llvm/clang to r132879, from upstream's trunk.


221345 02-May-2011 dim

Upgrade our copy of llvm/clang to r130700, from upstream's trunk.


219077 27-Feb-2011 dim

Update llvm/clang to trunk r126547.

There are several bugfixes in this update, but the most important one is
to ensure __start_ and __stop_ symbols for linker sets and kernel module
metadata are always emitted in object files:

http://llvm.org/bugs/show_bug.cgi?id=9292

Before this fix, if you compiled kernel modules with clang, they would
not be properly processed by kldxref, and if they had any dependencies,
the kernel would fail to load those. Another problem occurred when
attempting to mount a tmpfs filesystem, which would result in 'operation
not supported by device'.


218893 20-Feb-2011 dim

Upgrade our copy of llvm/clang to r126079, from upstream's trunk.

This contains many improvements, primarily better C++ support, an
integrated assembler for x86 and support for -pg.


213695 11-Oct-2010 dim

Remove more unneeded files and directories from contrib/llvm. This
still allows us to build tblgen and clang, and further reduces the
footprint in the tree.

Approved by: rpaulo (mentor)


213534 07-Oct-2010 dim

Upgrade Clang and LLVM to the 2.8 release. See here for release notes:
http://llvm.org/releases/2.8/docs/ReleaseNotes.html

Approved by: rpaulo (mentor)


212904 20-Sep-2010 dim

Upgrade our Clang in base to r114020, from upstream's release_28 branch.

Approved-by: rpaulo (mentor)


210299 20-Jul-2010 ed

Upgrade our Clang in base to r108428.

This commit merges the latest LLVM sources from the vendor space. It
also updates the build glue to match the new sources. Clang's version
number is changed to match LLVM's, which means /usr/include/clang/2.0
has been renamed to /usr/include/clang/2.8.

Obtained from: projects/clangbsd


208954 09-Jun-2010 rdivacky

Import LLVM/clang from vendor stripped of docs/ test/ website/ www/ examples/
in llvm/ and/or llvm/contrib/clang/ respectively.

Approved by: ed (mentor)
Approved by: core


208599 27-May-2010 rdivacky

Update LLVM to r104832.


207618 04-May-2010 rdivacky

Update LLVM to r103004.


206274 06-Apr-2010 rdivacky

Update LLVM to r100520.


206124 03-Apr-2010 rdivacky

Update LLVM to r100285.


206083 02-Apr-2010 rdivacky

Update LLVM to r100181.


205407 21-Mar-2010 rdivacky

Update LLVM to r99115.


205218 16-Mar-2010 rdivacky

Update LLVM to r98631.


204961 10-Mar-2010 rdivacky

Update LLVM to r98164.


204792 06-Mar-2010 rdivacky

Update LLVM to r97873.


204642 03-Mar-2010 rdivacky

Update LLVM to 97654.


203954 16-Feb-2010 rdivacky

Update LLVM to r96341.


202878 23-Jan-2010 rdivacky

Update LLVM to r94309.


202375 15-Jan-2010 rdivacky

Update LLVM to 93512.


201360 01-Jan-2010 rdivacky

Update LLVM to 92395.


200581 15-Dec-2009 rdivacky

Update LLVM to 91430.


199989 01-Dec-2009 rdivacky

Update LLVM to r90226.


199513 19-Nov-2009 rdivacky

Remove includes that were removed upstream.


199511 19-Nov-2009 rdivacky

Update LLVM to r89337.


199481 18-Nov-2009 rdivacky

Update LLVM to r89205.


198953 05-Nov-2009 rdivacky

Update LLVM to r86140.


198892 04-Nov-2009 rdivacky

Update LLVM to r86025.


198403 23-Oct-2009 rdivacky

These files does not belong here.


198396 23-Oct-2009 rdivacky

Update LLVM to r84949.


198138 15-Oct-2009 rdivacky

Delete all stale files.


198113 15-Oct-2009 rdivacky

Update llvm to r84175.


198090 14-Oct-2009 rdivacky

Update llvm to r84119.


195340 04-Jul-2009 ed

Import LLVM 74788.


195098 27-Jun-2009 ed

Import LLVM r74383.


194754 23-Jun-2009 ed

Import LLVM r73984.

It seems I keep importing sources at very unlucky moments. Let's see
what this revision of LLVM does.


194710 23-Jun-2009 ed

Import LLVM r73954.


194612 22-Jun-2009 ed

Update LLVM sources to r73879.


194178 14-Jun-2009 ed

Import LLVM r73340.


193724 08-Jun-2009 ed

Import LLVM r73070.

Now I'm going to stop importing code for a while. I spent a lot of time
the last couple of days figuring out which LLVM commit caused g++ to
miscompile, which in its turn caused Clang to miscompile the next build.
I had to run `make buildworld' twice each time I bisected a revision.


193630 07-Jun-2009 ed

Import LLVM r73021.


193574 06-Jun-2009 ed

Import LLVM, at r72995.

We should now have support for #pragma weak.


193399 03-Jun-2009 ed

Import LLVM, at r72805, which fixes PR4315 and PR4316.

Normally I'm not updating sources this often, but I want to get rid of
this breakage, because right now I can't offer a proper source snapshot
yet.


193378 03-Jun-2009 ed

Import LLVM, at r72770.

This should fix LLVM PR4225.


193323 02-Jun-2009 ed

Import LLVM, at r72732.