History log of /freebsd-11-stable/contrib/llvm-project/lld/ELF/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
367704 15-Nov-2020 dim

MFC r367623:

Merge commit 8df4e6094 from llvm git (by Fangrui Song):

[ELF] Don't consider SHF_ALLOC ".debug*" sections debug sections

Fixes PR48071

* The Rust compiler produces SHF_ALLOC `.debug_gdb_scripts` (which
normally does not have the flag)
* `.debug_gdb_scripts` sections are removed from `inputSections` due
to --strip-debug/--strip-all
* When processing --gc-sections, pieces of a SHF_MERGE section can be
marked live separately

`=>` segfault when marking liveness of a `.debug_gdb_scripts` which
is not split into pieces (because it is not in `inputSections`)

This patch circumvents the problem by not treating SHF_ALLOC
".debug*" as debug sections (to prevent --strip-debug's stripping)
(which is still useful on its own).

Reviewed By: grimar

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

This should fix lld segfaulting when linking the rust-based parts of the
devel/py-maturin port.

Reported by: Nick Venenga <nijave@gmail.com>
PR: 250783

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
Driver.cpp
InputSection.cpp
InputSection.h
OutputSections.cpp
ScriptLexer.cpp
ScriptParser.cpp
Writer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/llvm
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ValueLattice.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RDFGraph.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RDFLiveness.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RDFRegisters.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsPowerPC.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/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
361948 09-Jun-2020 emaste

MFC r361740: lld: Set DF_1_PIE for -pie

DF_1_PIE originated from Solaris[1].

GNU ld[2] sets the flag on non-Solaris platforms.

It can help distinguish PIE from ET_DYN.
eu-classify from elfutils uses this to recognize PIE[3].

glibc uses this flag to reject dlopen'ing a PIE[4]

[1] https://docs.oracle.com/cd/E36784_01/html/E36857/chapter6-42444.html
[2] https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=5fe2850dd96483f176858fd75c098313d5b20bc2
[3] https://sourceware.org/git/?p=elfutils.git;a=commit;h=3f489b5c7c78df6d52f8982f79c36e9a220e8951
[4] https://sourceware.org/bugzilla/show_bug.cgi?id=24323

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
AArch64ErrataFix.cpp
ARMErrataFix.cpp
ARMErrataFix.h
Arch/AArch64.cpp
Arch/AMDGPU.cpp
Arch/ARM.cpp
Arch/AVR.cpp
Arch/Hexagon.cpp
Arch/MSP430.cpp
Arch/Mips.cpp
Arch/MipsArchTree.cpp
Arch/PPC.cpp
Arch/PPC64.cpp
Arch/RISCV.cpp
Arch/SPARCV9.cpp
Arch/X86.cpp
Arch/X86_64.cpp
CMakeLists.txt
CallGraphSort.cpp
Config.h
DWARF.cpp
DWARF.h
Driver.cpp
DriverUtils.cpp
EhFrame.cpp
ICF.cpp
InputFiles.cpp
InputFiles.h
InputSection.cpp
InputSection.h
LTO.cpp
LinkerScript.cpp
LinkerScript.h
MapFile.cpp
MarkLive.cpp
Options.td
OutputSections.cpp
OutputSections.h
Relocations.cpp
Relocations.h
ScriptLexer.cpp
ScriptParser.cpp
SymbolTable.cpp
SymbolTable.h
Symbols.cpp
Symbols.h
SyntheticSections.cpp
SyntheticSections.h
Target.cpp
Target.h
Thunks.cpp
Thunks.h
Writer.cpp
Writer.h
/freebsd-11-stable/contrib/llvm-project/lld/docs/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/docs/Driver.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/NewLLD.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/ReleaseNotes.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/WebAssembly.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/conf.py
/freebsd-11-stable/contrib/llvm-project/lld/docs/index.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/ld.lld.1
/freebsd-11-stable/contrib/llvm-project/lld/docs/windows_support.rst
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/DWARF.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/Driver.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/ErrorHandler.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/LLVM.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/Strings.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/TargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Atom.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Error.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/File.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Instrumentation.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Reference.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/UndefinedAtom.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/ReaderWriter/MachOLinkingContext.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/Resolver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/Driver/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/Driver/DarwinLdDriver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/FileArchive.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/DebugInfo.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/File.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/GOTPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ShimPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/TLVPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
/freebsd-11-stable/contrib/llvm-project/lld/tools/lld/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/tools/lld/lld.cpp
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/lldb/bindings
/freebsd-11-stable/contrib/llvm-project/lldb/docs/lldb.1
/freebsd-11-stable/contrib/llvm-project/lldb/docs/man
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBBreakpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointLocation.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointName.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBCommandReturnObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBDebugger.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBDefines.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBError.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBInstructionList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBProcess.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBReproducer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBStream.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBStructuredData.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBThread.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBThreadPlan.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointID.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocation.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointOptions.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/Watchpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointOptions.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Address.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/AddressRange.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverFileLine.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverName.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ClangForward.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Disassembler.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/FileLineResolver.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/FileSpecList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/FormatEntity.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Highlighter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/IOHandlerCursesGUI.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/LoadedModuleInfoList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Mangled.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Module.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ModuleChild.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ModuleList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/PluginManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/PropertiesBase.td
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/STLUtils.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/SourceManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/StreamFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/StructuredDataImpl.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeDenseMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/dwarf.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/DataVisualization.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatClasses.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/LanguageCategory.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/StringPrinter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategory.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeValidator.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/Expression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/Materializer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/REPL.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/FileCache.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/LZMA.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Socket.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/SocketAddress.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Terminal.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/XML.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/NativeProcessProtocol.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandCompletions.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandReturnObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionGroupPythonClassWithDict.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueArch.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueBoolean.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueProperties.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueRegex.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueUUID.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/Options.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/Property.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CallFrameInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTMetadata.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/DebugMacros.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/DeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Declaration.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Function.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/LineEntry.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/LineTable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/PostfixExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/TypeList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/VariableList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/VerifyDecl.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Platform.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Process.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Queue.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/RemoteAwarePlatform.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/StopInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepOut.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepRange.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Unwind.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/AnsiTerminal.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ArchSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Args.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Baton.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Broadcaster.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/CleanUp.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/CompletionRequest.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Connection.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ConstString.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/DataEncoder.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/DataExtractor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/FileCollector.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/FileSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Flags.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/GDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/IOObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/JSON.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Log.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Logging.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Predicate.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ProcessInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/RangeMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/RegularExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Reproducer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ReproducerInstrumentation.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Scalar.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Status.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Stream.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringLexer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StructuredData.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/UUID.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/VMRange.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-enumerations.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-forward.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-private-enumerations.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpointName.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpointOptionCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBCompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBDeclaration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBEvent.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBLineEntry.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBProcess.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBReproducer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBReproducerPrivate.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBStream.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBSymbolContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBThreadPlan.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBTypeCategory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/Utils.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/Breakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointIDList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointOptions.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/Watchpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/WatchpointOptions.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectDisassemble.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectGUI.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectType.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectVersion.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/Options.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/OptionsBase.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Address.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/AddressRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/AddressResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/CoreProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/DumpDataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/FileLineResolver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/FileSpecList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/FormatEntity.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Highlighter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/IOHandlerCursesGUI.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Mangled.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Module.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ModuleList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/PluginManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/SourceManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/StreamFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectCast.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectChild.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectRegister.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/DataVisualization.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormatCache.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormatClasses.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/LanguageCategory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeValidator.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/VectorType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/Expression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/IRExecutionUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/IRInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/FileCache.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/FileSystem.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Host.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/HostInfoBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/HostNativeThreadBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/LZMA.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/MainLoop.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/NativeProcessProtocol.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/NativeRegisterContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/PseudoTerminal.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Socket.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Terminal.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/UDPSocket.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/XML.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/netbsd/Host.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/FileSystemPosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/PipePosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandAlias.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/InterpreterProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionArgParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupArchitecture.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupOutputFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupUUID.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupVariable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueArch.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueBoolean.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueEnumeration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueRegex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueUUID.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/Options.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/Property.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/ScriptInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arc
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ModuleDependencyCollector.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDBProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSArray.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSError.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/MachException.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/AuxVector.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLogProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ArmUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Block.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangASTMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompilerDecl.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompilerDeclContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompilerType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CxxModuleHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/DWARFCallFrameInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/DeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Declaration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFileMacOSX.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/PostfixExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/SymbolVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Symtab.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Type.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/TypeMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/VerifyDecl.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/MemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Platform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Process.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/RemoteAwarePlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StackFrameRecognizer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/TargetProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanCallFunction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanRunToAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOut.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepUntil.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanTracer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Args.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Baton.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/CompletionRequest.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/ConstString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/DataBufferLLVM.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/DataEncoder.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Environment.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/FileCollector.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/FileSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/GDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/LLDBAssert.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Listener.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Log.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Logging.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/PPC64LE_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/RegisterValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Reproducer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Scalar.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/SelectHelper.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Status.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Stream.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StreamString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StringLexer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StringList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StructuredData.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/VMRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/argdumper/argdumper.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/compact-unwind/compact-unwind-dumper.c
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/Options.td
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-instr/Instrument.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnConfig.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDataTypes.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMain.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIExtensions.txt
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIReadMe.txt
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/module.modulemap
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/LLDBServerUtilities.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/lldb-platform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/lldb-server.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBOptionDefEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGen.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenBackends.h
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Analysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/BitReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/BitWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Comdat.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/DebugInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Disassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Error.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/ErrorHandling.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/ExternC.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/IRReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Initialization.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/LinkTimeOptimizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Linker.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Remarks.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Support.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Target.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/InstCombine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Types.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/lto.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/APFloat.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/APInt.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Any.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ArrayRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/BitVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/DirectedGraph.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/EnumeratedArray.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/FloatingPointMode.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/FoldingSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Hashing.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ImmutableSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/IntervalMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Optional.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/PointerIntPair.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/PointerUnion.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Statistic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringExtras.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/TinyPtrVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Triple.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Twine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/VariadicFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/iterator_range.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/AliasAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/AliasSetTracker.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/AssumptionCache.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CFG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CGSCCPassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CaptureTracking.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DDG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceGraphBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/GlobalsModRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/GuardUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/InstructionSimplify.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/IntervalPartition.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/Loads.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAnalysisManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopCacheAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfoImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryBuiltins.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSA.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSAUpdater.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MustExecute.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/Passes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/PhiValues.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/PostDominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/PtrUseVisitor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/RegionInfoImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TargetLibraryInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/Local.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/VecFuncs.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/COFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/AArch64.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MachO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Magic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Minidump.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MinidumpConstants.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Wasm.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/XCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeAnalyzer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/BitCodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/BitstreamReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/AccelTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/BasicTTIImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/CallingConvLower.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/CommandFlags.inc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/DFAPacketizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/FastISel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/FaultMaps.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/GISelKnownBits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ISDOpcodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervals.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LivePhysRegs.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRangeCalc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRegUnits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveStacks.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveVariables.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LowLevelType.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRFormatter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRYamlMapping.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBasicBlock.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineDominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFrameInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBundle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineMemOperand.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineModuleInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOperand.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOutliner.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePipeliner.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePostDominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineScheduler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineSizeOpts.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ModuloSchedule.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/NonRelocatableStringpool.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/Math.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ParallelCG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/Passes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PseudoSourceValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/Register.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterClassInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterScavenging.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGISel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SlotIndexes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/StackMaps.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/StackProtector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TailDuplicator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetCallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetPassConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSchedule.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/VirtRegMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DIContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFLocationExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymCreator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Header.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LookupResult.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Range.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/StringTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/GenericError.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/Demangle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/DemangleConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/ItaniumDemangle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/Utility.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_arm64.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Core.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/DebugUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Speculation.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Frontend
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Argument.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Attributes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Attributes.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/AutoUpgrade.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/CallSite.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/CallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Constant.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ConstantRange.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Constants.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ConstrainedOps.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DIBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DataLayout.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DerivedTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DiagnosticInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Dominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/FPEnv.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/FixedMetadataKinds.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Function.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IRPrintingPasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/InstVisitor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/InstrTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Instruction.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Instruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Instructions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicInst.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAArch64.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsARM.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsBPF.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsMips.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsRISCV.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsX86.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/LLVMContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManagers.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/MDBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Module.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/NoFolder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Operator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/PassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/RemarkStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/RuntimeLibcalls.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/User.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Value.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ValueHandle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ValueMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/InitializePasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/Config.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/LTO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/LTOBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LinkAllPasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoELF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoXCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmMacro.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAssembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCCodeEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCCodePadder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDirectives.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDwarf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCELFStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCExpr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCFixup.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCFixupKindInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCFragment.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInst.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInstrAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCMachObjectWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCObjectFileInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCObjectStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/AsmCond.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCRegister.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSection.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSectionXCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSubtargetInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolWasm.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolXCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCWasmObjectWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCXCOFFStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/StringTableBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/SubtargetFeature.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/CodeEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Context.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RegisterFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ResourceManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RetireControlUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Instruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/SourceMgr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/RetireStage.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Archive.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Binary.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/COFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ELF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ELFObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ELFTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/MachO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/MachOUniversal.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Minidump.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/StackMapParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/TapiFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/TapiUniversal.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Wasm.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/WindowsResource.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/XCOFFObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/DWARFYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ELFYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MachOYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MinidumpYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/WasmYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/YAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/yaml2obj.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Pass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Passes/PassBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfData.inc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkContainer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkSerializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/Remark.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkFormat.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkLinker.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkSerializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkStringTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/YAMLRemarkSerializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AMDGPUMetadata.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AlignOf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Alignment.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Automaton.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamArray.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CRC.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CodeGen.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CommandLine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CrashRecoveryContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/DataExtractor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Endian.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileCheck.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileCollector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileOutputBuffer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileSystem.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileUtilities.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Format.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FormatVariadic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTree.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTreeConstruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/GlobPattern.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/InitLLVM.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/JSON.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/JamCRC.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/KnownBits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/LineIterator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/LockFileManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/LowLevelTypeImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/MachineValueType.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Memory.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Mutex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/MutexGuard.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/OnDiskHashTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Options.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Parallel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Path.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Process.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/RWMutex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Regex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Registry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SHA1.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ScalableSize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Signals.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SourceMgr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SpecialCaseList.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SwapByteOrder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TargetOpcodes.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TargetRegistry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Threading.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TimeProfiler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Timer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TypeSize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/UnicodeCharRanges.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/UniqueLock.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/VersionTuple.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Win64EH.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Windows
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/X86TargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/YAMLTraits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/circular_raw_ostream.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/raw_ostream.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/type_traits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/Automaton.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/Error.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GenericOpcodes.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Combine.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Target.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/Target.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetItinerary.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetLoweringObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetOptions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Architecture.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/ArchitectureSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/InterfaceFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Platform.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Symbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Target.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/TextAPIReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/CFGuard.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/Attributor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/FunctionImport.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/MergeFunctions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/SanitizerCoverage.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Float2Int.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVN.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LICM.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerConstantIntrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerMatrixIntrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Reassociate.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/SCCP.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeMoverUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Debugify.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/GuardUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/InjectTLIMappings.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/MisExpect.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SizeOpts.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecordProducer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecords.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/FileHeaderReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/module.modulemap
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/AliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/Analysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/AssumptionCache.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/BasicAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/BlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/BranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CFGPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CallPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CaptureTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ConstantFolding.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/CostModel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DDG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/Delinearization.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DemandedBits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DependenceGraphBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DomPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DomTreeUpdater.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/DominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/IVDescriptors.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/IVUsers.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/InlineCost.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/InstCount.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/InstructionSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/IntervalPartition.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LazyCallGraph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LazyValueInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/Lint.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/Loads.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopAccessAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopAnalysisManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopCacheAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemDepPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemDerefPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemoryBuiltins.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemoryLocation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemorySSA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MemorySSAUpdater.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/MustExecute.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/OrderedInstructions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/PhiValues.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/PostDominators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ProfileSummaryInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/RegionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/RegionPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolution.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ScopedNoAliasAA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/StackSafetyAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/TargetLibraryInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/TypeMetadataUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/VFABIDemangling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ValueTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/VectorUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/LLLexer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/LLParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/LLParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/LLToken.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/Parser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/Dwarf.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/Magic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/XCOFF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/BitstreamReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/Analysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AtomicExpandPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/BranchFolding.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/BranchFolding.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/BranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/BreakFalseDeps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CFGuardLongjmp.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CFIInstrInserter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CalcSpillWeights.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CallingConvLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CodeGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/DFAPacketizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/DetectDeadLanes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/DwarfEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/EarlyIfConversion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/EdgeBundles.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ExecutionDomainFix.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ExpandMemCmp.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ExpandReductions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/FEntryInserter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/FaultMaps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/FinalizeISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/FuncletLayout.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GCMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GCRootLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Utils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalMerge.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/HardwareLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/IfConversion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ImplicitNullChecks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/IndirectBrExpandPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/InlineSpiller.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/InterleavedAccessPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/IntrinsicLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LLVMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LexicalScopes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugVariables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveInterval.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveIntervals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LivePhysRegs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeCalc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeCalc.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeEdit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeShrink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRegMatrix.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveRegUnits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveStacks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LowLevelType.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/LowerEmuTLS.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRNamerPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MILexer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MILexer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MIParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRPrintingPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineBasicBlock.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineBlockPlacement.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineCSE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineCombiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineCopyPropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineDominators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineFrameInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineInstr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineInstrBundle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineLICM.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineModuleInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineOperand.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineOutliner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachinePipeliner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachinePostDominators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineRegionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineSSAUpdater.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineSink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineSizeOpts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineTraceMetrics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MachineVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MacroFusion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ModuloSchedule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/NonRelocatableStringpool.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/OptimizePHIs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PHIElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ParallelCG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PatchableFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PeepholeOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PostRASchedulerList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PrologEpilogInserter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/PseudoSourceValue.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegAllocBase.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegAllocFast.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegAllocGreedy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegAllocPBQP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegisterClassInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegisterCoalescer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegisterPressure.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RegisterScavenging.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SafeStack.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SjLjEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SlotIndexes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SpillPlacement.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SplitKit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SplitKit.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackColoring.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackMaps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackProtector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/StackSlotColoring.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SwiftErrorValueTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SwitchLoweringUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TailDuplication.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TailDuplicator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetLoweringBase.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetOptionsImpl.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetPassConfig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetSchedule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/TypePromotion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/UnreachableBlockElim.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ValueTypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/VirtRegMap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/WasmEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/WinEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/XRayInstrumentation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DWARFLinker
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAddressRange.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFLocationExpression.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FileWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FunctionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Header.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/InlineInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LineTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LookupResult.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Range.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/GenericError.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/Hash.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Demangle/ItaniumDemangle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Demangle/MicrosoftDemangle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/BasicGOTAndStubsBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/EHFrameSupportImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkGeneric.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkGeneric.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOAtomGraphBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOAtomGraphBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/CompileUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Core.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/DebugUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Layer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/SpeculateAnalyses.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Speculation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OrcError
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFAArch64.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/TargetSelect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend
/freebsd-11-stable/contrib/llvm-project/llvm/lib/FuzzMutate/FuzzerCLI.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/AttributeImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Attributes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/AutoUpgrade.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/BasicBlock.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ConstantFold.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ConstantRange.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Constants.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ConstantsContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Core.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DIBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DataLayout.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DebugInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DebugInfoMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/DiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Dominators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/FPEnv.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Function.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Globals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/IRBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/IRPrintingPasses.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/InlineAsm.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Instruction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Instructions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/IntrinsicInst.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/LLVMContext.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/LLVMContextImpl.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/LLVMContextImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/LegacyPassManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/MDBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Module.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Pass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/RemarkStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/SafepointIRVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Type.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/TypeFinder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/User.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Value.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/Verifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/Caching.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/LTO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/LTOBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/LTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/LTOModule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/SummaryBasedOptimizations.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/IRMover.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/LinkModules.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmInfoELF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmInfoXCOFF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmMacro.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAsmStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCAssembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCCodePadder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCContext.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDwarf.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCFragment.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCInstrAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCMachOStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCObjectFileInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCObjectStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/AsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/COFFAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/WasmAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCSection.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCSectionXCOFF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCSymbolELF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCTargetOptions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCValue.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCWasmStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCXCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/StringTableBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/WasmObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/XCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/CodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Context.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/LSUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/RegisterFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/RetireControlUnit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/Scheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/InstrBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Instruction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/DispatchStage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/EntryStage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/ExecuteStage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/InstructionTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/RetireStage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Archive.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ArchiveWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Binary.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/COFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Decompressor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ELF.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ELFObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/MachOObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/MachOUniversal.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Minidump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ModuleSymbolTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/RelocationResolver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/SymbolicFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/TapiFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/TapiUniversal.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/WasmObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/WindowsResource.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/XCOFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/COFFEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/DWARFEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/ELFEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/ELFYAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/MachOEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/MachOYAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpYAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/WasmEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/WasmYAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/YAML.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/yaml2obj.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/ArgList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/PassBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/PassRegistry.def
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/GCOV.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/InstrProf.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/InstrProfReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/InstrProfWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/SampleProf.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/SampleProfReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/SampleProfWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkSerializer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkFormat.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkLinker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkSerializer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/RemarkStringTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkSerializer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/AArch64TargetParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ABIBreak.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/AMDGPUMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/APFloat.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/APInt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ARMAttributeParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ARMTargetParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/BinaryStreamReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CRC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CachePruning.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CodeGenCoverage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CommandLine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/CrashRecoveryContext.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ErrorHandling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileCheck.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileCheckImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileCollector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileOutputBuffer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/FileUtilities.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/GlobPattern.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Host.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/InitLLVM.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/JSON.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/JamCRC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/KnownBits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/LockFileManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ManagedStatic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Mutex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Options.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Parallel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Path.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/PrettyStackTrace.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Process.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/RWMutex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/RandomNumberGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Regex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/SHA1.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Signals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Signposts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/SpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Statistic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/StringExtras.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/StringRef.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/TargetParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Threading.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/TimeProfiler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Timer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Memory.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Mutex.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Path.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Process.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Program.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/RWMutex.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Signals.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Threading.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/Unix.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/VirtualFileSystem.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Host.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Memory.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Mutex.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Path.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Process.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Program.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/RWMutex.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Signals.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/ThreadLocal.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/Threading.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/explicit_symbols.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/YAMLParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/YAMLTraits.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Z3Solver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/raw_ostream.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/regcomp.c
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/Error.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/Main.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/Record.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/SetTheory.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/TGLexer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/TGLexer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/TGParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/TGParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Combine.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SIMDInstrOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM5.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackOffset.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTaggingPreRA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Subtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SystemOperands.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/SVEInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPU.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPU.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/BUFInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/CaymanInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/DSInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/FLATInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNNSAReassign.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegPressure.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MIMGInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600FrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600Instructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIDefines.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIPreAllocateWWMRegs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIProgramInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SMInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/SOPInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUPALMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP1Instructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP2Instructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP3Instructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOPCInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOPInstructions.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCBranchFinalize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/ARCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/A15SDOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARM.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARM.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBasicBlockInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMFastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMHazardRecognizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrMVE.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrNEON.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrThumb.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrThumb2.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrVFP.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMParallelDSP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMPredicates.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMScheduleA9.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMScheduleM4.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MLxExpansionPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MVEGatherScatterLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MVETailPredication.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MVEVPTBlockPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AVRTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPF.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFAbstractMemberAccess.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFCORE.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFMIChecking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFMIPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFMISimplifyPatchable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BPFTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BTF.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BTFDebug.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/BTFDebug.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/BitTracker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonDepOperands.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPatterns.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPseudo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVExtract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFCopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFGraph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFLiveness.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFRegisters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFRegisters.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430FrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430Subtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips64InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsCondMov.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsFastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrFPU.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsLegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsMCInstLower.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsPfmCounters.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBanks.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsScheduleGeneric.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsScheduleP5600.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MipsTargetStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/ManagedStringPool.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTX.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/P9InstrResources.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCBranchCoalescing.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrHTM.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrVSX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopInstrFormPrep.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLowerMASSVEntries.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCV.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCV.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBanks.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket32.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket64.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedule.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSubtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSubtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/LeonPasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstr64Bit.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZ.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZCallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrFP.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrVector.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZOperands.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZPatterns.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZPostRewrite.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZProcessors.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZSchedule.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleArch13.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleZ15.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTDC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/TargetLoweringObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/TargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/TargetMachineC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/VE
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssembly.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrBulkMemory.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86Operand.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86AsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidTrailingCall.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CallLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CmovConversion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86CondBrFolding.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86DomainReassignment.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86EvexToVex.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FastISel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FixupBWInsts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FixupLEAs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FixupSetCC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FloatingPoint.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ISelLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86IndirectBranchTracking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InsertPrefetch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrAVX512.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrArithmetic.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrCMovSetCC.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrCompiler.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrControl.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrExtension.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFMA.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFPStack.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFoldTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFoldTables.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFormats.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrMMX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrMPX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrSSE.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrSystem.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrTSX.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstrXOP.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86IntrinsicsInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86LegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86MCInstLower.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86MacroFusion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86PadShortFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86PfmCounters.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86RetpolineThunks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedBroadwell.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedHaswell.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedPredicates.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSandyBridge.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSkylakeClient.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSkylakeServer.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86Schedule.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleAtom.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleBdVer2.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleBtVer2.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleSLM.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver1.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver2.td
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86Subtarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86Subtarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86VZeroUpper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/X86WinEHState.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreISelLowering.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/Architecture.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/InterfaceFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/Platform.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/Symbol.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStub.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStubCommon.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStubCommon.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/CFGuard
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroElide.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroInstr.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroInternal.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/Coroutines.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/Attributor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/BlockExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ConstantMerge.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/FunctionImport.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalDCE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalSplit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/IPO.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/InlineSimple.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/Inliner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/Internalize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/LoopExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/MergeFunctions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/PartialInlining.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/PruneEH.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/SCCP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/SampleProfile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/StripSymbols.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAtomicRMW.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/CFGMST.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrOrderFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PoisonChecking.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfilePlugins.inc
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/PtrState.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ADCE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/BDCE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ConstantProp.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/DCE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/DivRemPairs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Float2Int.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVN.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVNHoist.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVNSink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/GuardWidening.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/InstSimplifyPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/JumpThreading.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LICM.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopFuse.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopPredication.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopRotation.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopSink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerConstantIntrinsics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerMatrixIntrinsics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerWidenableCondition.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/MergeICmps.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/NewGVN.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Reassociate.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SCCP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SROA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Scalar.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Scalarizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/Sink.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CloneFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CloneModule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeMoverUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Debugify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Evaluator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/FlattenCFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/InjectTLIMappings.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/InstructionNamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Local.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopSimplify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnroll.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopVersioning.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LowerInvoke.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/LowerSwitch.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Mem2Reg.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/MetaRenamer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/MisExpect.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ModuleUtils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/PredicateInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/SizeOpts.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/Utils.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/VNCoercion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlan.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlan.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/FDRRecordProducer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/FileHeaderReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/InstrumentationMap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/Profile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/RecordInitializer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/Trace.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/BugDriver.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/CrashDebugger.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/ExtractFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/OptimizerDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/ToolRunner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/bugpoint.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llc/llc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/RemoteJITUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/lli.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-ar/llvm-ar.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-as/llvm-as.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/CodeCoverage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/CoverageExporterJson.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/SourceCoverageView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxmap/llvm-cxxmap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-diff/DifferenceEngine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dis/llvm-dis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/Statistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-extract/llvm-extract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-link/llvm-link.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto/llvm-lto.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto2/llvm-lto2.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/DispatchStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/ResourcePressureView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/SchedulerStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/SummaryView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/llvm-mca.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-modextract/llvm-modextract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/llvm-nm.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Reader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Writer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/CommonOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/InstallNameToolOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ObjcopyOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/StripOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/ELFDump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-profdata/llvm-profdata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/COFFDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ELFDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/MachODumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/WasmDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/Win64EHDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/XCOFFDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-stress/llvm-stress.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/func-id-helper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-account.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-converter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-extract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-fdr-dump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph-diff.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-stacks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/Debugify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/Debugify.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/NewPMDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/PassPrinters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/PassPrinters.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/opt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/AsmMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/AsmWriterEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/AsmWriterInst.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CallingConvEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeEmitterGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenMapTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenSchedule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcher.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GICombinerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISelEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InstrDocsEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InstrInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/IntrinsicEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptParserEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptRSTEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/RegisterInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SearchableTableEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SequenceToOffsetTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SubtargetEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86DisassemblerTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86FoldTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86RecognizableInstr.cpp
/freebsd-11-stable/contrib/llvm-project/openmp
/freebsd-11-stable/contrib/llvm-project/openmp/CREDITS.txt
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/extractExternal.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/i18n/en_US.txt
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/include/omp_lib.f.var
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_affinity.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_affinity.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_alloc.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_atomic.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_barrier.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_csupport.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_dispatch.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_dispatch_hier.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_ftn_entry.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_ftn_os.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_global.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_gsupport.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_itt.inl
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_lock.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_lock.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_os.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_platform.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_runtime.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_settings.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_stats.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_str.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_stub.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_taskdeps.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_tasking.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_taskq.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_wait_release.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_getpid.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_malloc.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-event-specific.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-general.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-internal.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-specific.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-specific.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_config.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.c
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/legacy/ittnotify.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/z_Linux_asm.S
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/z_Linux_util.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/z_Windows_NT_util.cpp
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/lib/clang/freebsd_cc_version.h
/freebsd-11-stable/lib/clang/headers/Makefile
/freebsd-11-stable/lib/clang/include/VCSVersion.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-11-stable/lib/clang/include/clang/Config/config.h
/freebsd-11-stable/lib/clang/include/lld/Common/Version.inc
/freebsd-11-stable/lib/clang/include/lldb/Host/Config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/llvm-config.h
/freebsd-11-stable/lib/clang/include/llvm/Support/Extension.def
/freebsd-11-stable/lib/clang/include/llvm/Support/VCSRevision.h
/freebsd-11-stable/lib/clang/libclang/Makefile
/freebsd-11-stable/lib/clang/liblldb/Makefile
/freebsd-11-stable/lib/clang/libllvm/Makefile
/freebsd-11-stable/lib/clang/libllvmminimal/Makefile
/freebsd-11-stable/lib/clang/llvm.build.mk
/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
Arch/RISCV.cpp
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
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Triple.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/StackProtector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/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.


353738 18-Oct-2019 dim

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

[mips] Support elf32btsmipn32_fbsd / elf32ltsmipn32_fbsd emulations

Patch by Kyle Evans.

Requested by: kevans
MFC 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


350467 31-Jul-2019 luporl

[PPC64] Backport fix for missing IRELATIVE relocations

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

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

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

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

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

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


349971 13-Jul-2019 dim

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

[ELF] Handle non-glob patterns before glob patterns in version
scripts & fix a corner case of --dynamic-list

This fixes PR38549, which is silently accepted by ld.bfd.
This seems correct because it makes sense to let non-glob patterns
take precedence over glob patterns.

lld issues an error because
`assignWildcardVersion(ver, VER_NDX_LOCAL);` is processed before
`assignExactVersion(ver, v.id, v.name);`.

Move all assignWildcardVersion() calls after assignExactVersion()
calls to fix this.

Also, move handleDynamicList() to the bottom. computeBinding() called
by includeInDynsym() has this cryptic rule:

if (versionId == VER_NDX_LOCAL && isDefined() && !isPreemptible)
return STB_LOCAL;

Before the change:

* foo's version is set to VER_NDX_LOCAL due to `local: *`
* handleDynamicList() is called
- foo.computeBinding() is STB_LOCAL
- foo.includeInDynsym() is false
- foo.isPreemptible is not set (wrong)
* foo's version is set to V1

After the change:

* foo's version is set to VER_NDX_LOCAL due to `local: *`
* foo's version is set to V1
* handleDynamicList() is called
- foo.computeBinding() is STB_GLOBAL
- foo.includeInDynsym() is true
- foo.isPreemptible is set (correct)

Reviewed By: ruiu

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

This makes it longer necessary to patch the version scripts for the
samba ports, to avoid "duplicate symbol 'pdb_search_init' in version
script" errors.

PR: 230602
MFC after: 3 days


349793 06-Jul-2019 dim

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt, libc++,
libunwind and openmp to the upstream release_80 branch r364487
(effectively, 8.0.1 rc3). The 8.0.1 release will most likely
have no further changes.

MFC after: 1 week
X-MFC-With: r349004


349004 12-Jun-2019 dim

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt, libc++,
libunwind and openmp to the upstream release_80 branch r363030
(effectively, 8.0.1 rc2). The 8.0.1 release should follow this within a
week or so.

MFC after: 2 weeks


345349 20-Mar-2019 dim

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

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

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

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

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

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

Reviewers: ruiu, grimar, pcc, espindola

Reviewed By: ruiu

Subscribers: joerg, emaste, arichardson, llvm-commits

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

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

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

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

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

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

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

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

Reviewers: ruiu, grimar, pcc, espindola

Reviewed By: ruiu

Subscribers: llvm-commits, emaste, arichardson

Tags: #llvm

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

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

Reported by: jbeich
PR: 236062, 236141
MFC 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


344444 21-Feb-2019 dim

Pull in r353299 from upstream lld trunk (by George Rimar):

Recommit r353293 "[LLD][ELF] - Set DF_STATIC_TLS flag for i386 target."

With the following changes:
1) Compilation fix:
std::atomic<bool> HasStaticTlsModel = false; ->
std::atomic<bool> HasStaticTlsModel{false};

2) Adjusted the comment in code.

Initial commit message:

DF_STATIC_TLS flag indicates that the shared object or executable
contains code using a static thread-local storage scheme.

Patch checks if IE/LE relocations were used to check if the code uses
a static model. If so it sets the DF_STATIC_TLS flag.

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

Pull in r353378 from upstream lld trunk (by George Rimar):

[LLD][ELF] - Set DF_STATIC_TLS flag for X64 target

This is the same as D57749, but for x64 target.

"ELF Handling For Thread-Local Storage" p41 says
(https://www.akkadia.org/drepper/tls.pdf):
R_X86_64_GOTTPOFF relocation is used for IE TLS models.
Hence if linker sees this relocation we should add DF_STATIC_TLS flag.

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

This adds support to lld for the DF_STATIC_TLS flag in shared objects,
which signals to the dynamic linker that the shared object requires
static thread local storage.

See also: https://reviews.freebsd.org/D19072
MFC after: 1 week


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


339304 11-Oct-2018 emaste

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

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

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

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


339013 29-Sep-2018 dim

Pull in r329557 from upstream lld trunk (by George Rimar):

[ELF] - Allow LLD to produce file symbols.

This is for PR36716 and
this enables emitting STT_FILE symbols.

Output size affect is minor:
lld binary size changes from 52,883,408 to 52,949,400
clang binary size changes from 83,136,456 to 83,219,600

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

This fixes a regression in lld that made it stop emitting STT_FILE
symbols, which ctfmerge relies upon to uniquify function table entries
that reference STB_LOCAL symbols. Consequently, ctfmerge stopped
emitting entries for static functions into the function table, and
dtrace no longer gets type info for them.

Approved by: re (kib)
Reported by: markj
PR: 230444
MFC after: 3 days


338682 14-Sep-2018 emaste

lld: add -z interpose support

-z interpose sets the DF_1_INTERPOSE flag, marking the object as an
interposer.

Committed upstream as LLVM r342239.

PR: 230604
Reported by: jbeich
Reviewed by: markj
Approved by: re (kib)
MFC after: 1 week
Relnotes: Yes
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D17172


338251 23-Aug-2018 markj

Add an lld option to emit PC-relative relocations for ifunc calls.

The current kernel ifunc implementation creates a PLT entry for each
ifunc definition. ifunc calls therefore consist of a call to the
PLT entry followed by an indirect jump. The jump target is written
during boot when the kernel linker resolves R_[*]_IRELATIVE relocations.
This implementation is defined by requirements for userland code, where
text relocations are avoided. This requirement is not present for the
kernel, so the implementation has avoidable overhead (namely, an extra
indirect jump per call).

Address this for now by adding a special option to the static linker
to inhibit PLT creation for ifuncs. Instead, relocations to ifunc call
sites are passed through to the output file, so the kernel linker can
enumerate such call sites and apply PC-relative relocations directly
to the text section. Thus the overhead of an ifunc call becomes exactly
the same as that of an ordinary function call. This option is only for
use by the kernel and will not work for regular programs.

The final form of this optimization is up for debate; for now, this
change is simple and static enough to be acceptable as an interim
solution.

Reviewed by: emaste
Discussed with: arichardson, dim
MFC after: 1 month
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D16748


337282 04-Aug-2018 alc

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

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


336972 31-Jul-2018 emaste

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

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

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

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

We use the attribute in two ways:

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

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

* Set the EF_ARM_ABI_FLOAT_SOFT or EF_ARM_ABI_FLOAT_HARD ELF header flag

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

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

Fixes LLVM PR36009

PR: 229050
Obtained from: llvm r338377 by Peter Smith


336664 24-Jul-2018 emaste

lld: fix addends with partial linking

[ELF] Update addends in non-allocatable sections for REL targets when
creating a relocatable output.

LLVM PR: 37735
LLVM Differential Revision: https://reviews.llvm.org/D48929

PR: 225128
Obtained from: LLVM r336799 by Igor Kudrin


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


333401 09-May-2018 emaste

lld: Omit PT_NOTE for SHT_NOTE without SHF_ALLOC

A non-alloc note section should not have a PT_NOTE program header.

Found while linking ghc (Haskell compiler) with lld on FreeBSD. Haskell
emits a .debug-ghc-link-info note section (as the name suggests, it
contains link info) as a SHT_NOTE section without SHF_ALLOC set.

For this case ld.bfd does not emit a PT_NOTE segment for
.debug-ghc-link-info. lld previously emitted a PT_NOTE with p_vaddr = 0
and FreeBSD's rtld segfaulted when trying to parse a note at address 0.

LLVM PR: https://llvm.org/pr37361
LLVM review: https://reviews.llvm.org/D46623

PR: 226872
Reviewed by: dim
Sponsored by: The FreeBSD Foundation


331731 29-Mar-2018 dim

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

Strip @VER suffices from the LTO output.

This fixes pr36623.

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

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

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

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

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


328548 29-Jan-2018 emaste

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

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

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

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


328547 29-Jan-2018 emaste

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

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

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

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

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

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

Obtained from: LLVM r323456 by Rafael Espindola


328546 29-Jan-2018 emaste

lld: Improve LMARegion handling.

This fixes the crash reported at [LLVM] PR36083.

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

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

Obtained from: LLVM r323449 by Rafael Espindola


328545 29-Jan-2018 emaste

lld: Simplify. NFC.

Obtained from: LLVM r323440 by Rafael Espindola


328544 29-Jan-2018 emaste

lld: Remove MemRegionOffset. NFC.

We can just use a member variable in MemoryRegion.

Obtained from: LLVM r323399 by Rafael Espindola


328543 29-Jan-2018 emaste

lld: Only lookup LMARegion once. NFC.

This is similar to how we handle MemRegion.

Obtained from: LLVM r323396 by Rafael Espindola


328542 29-Jan-2018 emaste

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

Obtained from: LLVM r323395 by Rafael Espindola


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


328286 23-Jan-2018 emaste

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

Obtained from: LLVM r323221 by Rafael Espíndola


328144 18-Jan-2018 emaste

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

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

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

Obtained from: LLVM r322421 by Rafael Espindola


328143 18-Jan-2018 emaste

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

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

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


328141 18-Jan-2018 emaste

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

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

Should fix [upstream LLVM] PR35684.

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

Obtained from: LLVM r322359 by George Rimar


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


326957 19-Dec-2017 emaste

lld: Don't write preemptible symbol values to the .got.

It is not necessary and matches what bfd and gold do.

This was a regression from [LLVM] r315658.

Obtained from: LLVM r321023 by Rafael Espíndola


326897 16-Dec-2017 emaste

lld: Slightly simplify code and add comment.

Cherry-pick lld r315658 by Rui Ueyama:
This is not a mechanical transformation. Even though I believe this
patch is correct, I'm not 100% sure if lld with this patch behaves
exactly the same way as before on all edge cases. At least all tests
still pass.

I'm submitting this patch because it took almost a day to understand
this function, and I don't want to lose it.

This fixes jemalloc assertion failures observed at startup with i386
binaries and an lld-linked libc.so.

Reviewed by: dim
Obtained from: LLVM r315658
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D13503


326879 15-Dec-2017 emaste

lld: Simplify a boolean expression by De Morgan's laws.

Cherry-pick lld r315653 by Rui Ueyama:
I don't really understand what exactly this expression means,
but at least I can mechanically transform it.

Obtained from: LLVM r315653
MFC after: 1 week


326831 13-Dec-2017 dim

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

Don't create a dummy __tls_get_addr.

We just don't need one with the current setup.

We only error on undefined references that are used by some
relocation.

If we managed to relax all uses of __tls_get_addr, no relocation uses
it and we don't produce an error.

This is less code and fixes the case were we fail to relax. Before we
would produce a broken output, but now we produce an error.

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

Create reserved symbols early so they can be versioned.

This fixes pr35570.

We were creating these symbols after parsing version scripts, so they
could not be versioned.

We cannot move the version script parsing later because we need it for
lto.

One option is to move both addReservedSymbols and
createSyntheticSections earlier. The disadvantage is that some
sections created by createSyntheticSections replace other input
sections. For example, gdb index replaces .debug_gnu_pubnames, so it
wants to run after gc sections so that it can set S->Live to false.

What this patch does instead is to move just the ElfHeader creation
early.

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

Handle symbols pointing to output sections.

Now that gc sections runs after linker defined symbols are added it
can see symbols that point to an OutputSection.

Should fix a bot failure.

Pull in r320431 from upstream lld trunk (by Peter Collingbourne):

ELF: Do not follow relocation edges to output sections during GC.

This fixes an assertion error introduced by r320390.

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

Together these fix handling of reserved symbols, in particular _end,
which is needed to make brk(2) and sbrk(2) work correctly. This
unbreaks the emacs ports on amd64, and also appears to unbreak most of
world on i386.

MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D13466


326547 05-Dec-2017 emaste

lld: make -v behave similarly to GNU ld.bfd

Previously, lld exited with an error status if the only option given to
the command was -v. GNU linkers gracefully exit in that case. This patch
makes lld behave like GNU.

Note that even with this patch, lld's -v and --version options behave
slightly differently than GNU linkers' counterparts. For example,
if you run ld.bfd -v -v, the version string is printed out twice.
But that is an edge case that I don't think we need to take care of.

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

Obtained from: LLVM r319717
MFC after: 1 week


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


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


322474 13-Aug-2017 emaste

lld: Add `-z muldefs` option.

Obtained from: LLVM r310757


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


319957 14-Jun-2017 emaste

lld: Add armelf emulation mode

Obtained from: LLD r305375


319956 14-Jun-2017 emaste

lld: Fix weak symbols on arm and aarch64

Given

.weak target
.global _start
_start:
b target

The intention is that the branch goes to the instruction after the
branch, effectively turning it on a nop. The branch adds the runtime
PC, but we were adding it statically too.

I noticed the oddity by inspection, but llvm-objdump seems to agree,
since it now prints things like:

b #-4 <_start+0x4>

Obtained from: LLD commit r305212
Differential Revision: https://reviews.freebsd.org/D11191

Reviewed by: dim, Rafael Espíndola
Obtained from: LLD r305212
MFC after: 3 days


319955 14-Jun-2017 emaste

lld: sort relocations

No functional change; applied to facilitate merge of later LLD commit.

Reviewed by: dim, Rafael Espíndola
Obtained from: LLD r298797
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D11190


319891 13-Jun-2017 emaste

lld: revert accidentally committed change from r319887

This change is a portion of LLD rev 305212 which accidentally ended
up in my svn tree. We do want to backport the change to LLD 4.0, but
it needs additional work and was not supposed to be included in
r319887.


319887 13-Jun-2017 emaste

hexdump: actually enter capability mode on last file

Reviewed by: cem, Kyle Evans
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D10897


319885 13-Jun-2017 emaste

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

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

Obtained from: LLD commit r292578
MFC after: 3 days


316029 27-Mar-2017 emaste

lld: hack version and help output for compatibility with libtool

GNU libtool checks the output from invoking the linker with --version
and --help, in order to determine the linker "flavour" and the command-
ine arguments to use for various link operations (e.g. generating shared
libraries). To detect GNU ld it looks for the strings "GNU" and
"supported targets:.*elf". Since LLD is compatible with GNU ld we
include those same strings to fool libtool.

Quoting from a comment in the change:
This is somewhat ugly hack, but in reality, we had no choice other
than doing this. Considering the very long release cycle of Libtool,
it is not easy to improve it to recognize LLD as a GNU compatible
linker in a timely manner. Even if we can make it, there are still a
lot of "configure" scripts out there that are generated by old
version of Libtool. We cannot convince every software developer to
migrate to the latest version and re-generate scripts. So we have
this hack.

Upstream LLVM revisions r298532, r298568, r298591

Obtained from: LLVM
MFC after: 1 week
Sponsored by: The FreeBSD Foundation


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


313458 08-Feb-2017 emaste

lld: Allow arbitrary code alignment in .eh_frame

According to the specification, CIE code alignment factor is an
arbitrary unsigned LEB128 encoded value.

PR: 216908
Reported by: Wolfgang Meyer
Obtained from: Upstream LLD r277105
MFC after: 1 week


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


305072 30-Aug-2016 emaste

Include Options.inc using path from lld src top

Otherwise we will encoutner conflicts with libllvm's Options.inc in the
bmake lld build.


305067 30-Aug-2016 emaste

Bring lld (release_39 branch, r279477) to contrib


304767 24-Aug-2016 dim

Vendor import of lld release_39 branch r279477:
https://llvm.org/svn/llvm-project/lld/branches/release_39@279477


303239 23-Jul-2016 dim

Vendor import of lld release_39 branch r276489:
https://llvm.org/svn/llvm-project/lld/branches/release_39@276489


293846 13-Jan-2016 dim

Vendor import of lld trunk r257626:
https://llvm.org/svn/llvm-project/lld/trunk@257626


293258 06-Jan-2016 dim

Vendor import of lld trunk r256945:
https://llvm.org/svn/llvm-project/lld/trunk@256945


292934 30-Dec-2015 dim

Vendor import of lld trunk r256633:
https://llvm.org/svn/llvm-project/lld/trunk@256633