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

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

MFC r360702:

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

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

Summary:

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

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

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

Fixes PR#40736

Patch by George Koehler!

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

Requested by: jhibbits

MFC r361410:

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

MFC r362235 (by kp):

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

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

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

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

MFC r362445:

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

MFC r362587 (by cem):

Add WITH_CLANG_FORMAT option

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

clang-format could still use a manual page.

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

MFC r362609:

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

MFC r362679:

Regenerate ReStructuredText based manpages for llvm-project tools:

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

Add newly generated manpages for:

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

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

MFC r362680:

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

MFC r362719:

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

Also add a few more llvm utilities under WITH_CLANG_EXTRAS:

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

MFC r362733:

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

MFC r362734:

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

MFC r363401:

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

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

Relnotes: yes


/freebsd-11-stable/Makefile.inc1
/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/llvm-project/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/clang
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclBase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Attr.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Options.td
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclBase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprConstant.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/RawCommentList.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/PPC.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/SanitizerArgs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChain.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/TokenAnnotator.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/CompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/TreeTransform.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Tokens.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/riscv/int_mul_impl.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/riscv/muldi3.S
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/riscv/mulsi3.S
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/GCDAProfiling.c
/freebsd-11-stable/contrib/llvm-project/libcxx
/freebsd-11-stable/contrib/llvm-project/libcxx/include/array
/freebsd-11-stable/contrib/llvm-project/lld
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Chunks.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/DLL.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputSection.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputSection.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/OutputSections.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ScriptLexer.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ScriptParser.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Writer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/llvm
/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
pseudo/bootstrap-tools/Makefile
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
356775 16-Jan-2020 kevans

MFC r356356, r356358, r356422: replace gcclibs' libssp

r356356:
Provide libssp based on libc

For libssp.so, rebuild stack_protector.c with FORTIFY_SOURCE stubs that just
abort built into it.

For libssp_nonshared.a, steal stack_protector_compat.c from
^/lib/libc/secure and massage it to maintain that __stack_chk_fail_local
is a hidden symbol.

libssp is now built unconditionally regardless of {WITH,WITHOUT}_SSP in the
build environment, and the gcclibs version has been disconnected from the
build in favor of this one.

r356358:
libssp: fix FORTIFY_SOURCE stub declarations

The LSB 4.1 that I referenced omitted the varargs, and I failed to catch it.
The __vsnprintf_chk error was from just downright misreading the page. GCC6
caught all of these, but I had only tested GCC4.2.

r356422:
Update libssp paths in various Makefile.depend* files

I've been advised that the model that uses these are fairly resilient, but
we do know the proper path to use (or remove, in the case of ^/targets/...),
so go ahead and update them to reflect that.

355131 27-Nov-2019 cy

MFC r315223, r325182:

Disconnect ipftest and ipresend from the build until it can be verified
that they still work. These utilities have become out of sync with the
code in the kernel and need work to bring them back into shape.
Most people test on real systems or VMs on real networks.

Suggested by: glebius

331769 30-Mar-2018 hselasky

MFC r303505, r303506, r303512, r303513, r303646, r320418, r323082,
r326169, r326563, r326649, r326716, r326764, r326765 and r329222:

RoCE/infiniband/iWarp upgrade to Linux 4.9 for kernel and userspace.
This commit merges projects/bsd_rdma_4_9 to 11-stable.

Compatibility wrappers have been made for existing 11-stable ibcore
APIs, including ib_reg_phys_mr().
Refer to "sys/ofed/include/rdma/ib_verbs_compat.h" for more information.

The iw_cxgb driver has not been updated and has been disconnected from
the build.

Sponsored by: Mellanox Technologies

MFC r326169 and r326563:
RoCE/infiniband upgrade to Linux v4.9 for kernel and userspace.

List of kernel sources used:
============================

1) kernel sources were cloned from git://github.com/torvalds/linux.git
Top commit 69973b830859bc6529a7a0468ba0d80ee5117826 - tag: v4.9, linux-4.9

2) krping was cloned from https://github.com/larrystevenwise/krping
Top commit 292a2f1abf0348285e678a82264740d52e4dcfe4

List of userspace sources used:
===============================

1) rdma-core was cloned from https://github.com/linux-rdma/rdma-core.git
Top commit d65138ef93af30b3ea249f3a84aa6a24ba7f8a75

2) OpenSM was cloned from git://git.openfabrics.org/~halr/opensm.git
Top commit 85f841cf209f791c89a075048a907020e924528d

3) libibmad was cloned from git://git.openfabrics.org/~iraweiny/libibmad.git
Tag 1.3.13 with some additional patches from Mellanox.

4) infiniband-diags was cloned from git://git.openfabrics.org/~iraweiny/infiniband-diags.git
Tag 1.6.7 with some additional patches from Mellanox.

NOTES:
======

1) The mthca driver has been removed from userspace.
2) All GPLv2 only sources have been removed and where applicable
rewritten from scratch under a BSD license.
3) List of fully supported drivers in userspace and kernel:
a) iw_cxgbe (Chelsio)
b) mlx4ib (Mellanox)
c) mlx5ib (Mellanox)
4) WITH_OFED=YES is still required by make in order to build
OFED userspace and kernel code.
5) Full support has been added for routable RoCE, RoCE v2.

MFC r326649:
Disconnect OFED after r326169 broke all DIRDEPS support for it.

MFC r326716:
Correctly define the unordered_map namespace in ofed/libibnetdisc .

This should fix ofed/libibnetdisc compilation with C-compilers
different from clang and GCC v4.2.1.

Submitted by: kib
Sponsored by: Mellanox Technologies

MFC r326764:
ofed: Remove duplicated symbols from the version file.

ld.bfd accepts multiple listing of the same symbol in the version script.
lld is stricter and errors out. Since arm64 and sometimes amd64 use lld,
we should correct this cosmetic issue.

Sponsored by: Mellanox Technologies
Reviewed by: hselasky
Differential revision: https://reviews.freebsd.org/D13329

MFC r326765:
ofed: Define barriers for mips and arm.

I used the strongest barriers available on the architectures, so if
the future analysis show that it is excessive, the barriers could be
relaxed. Still, it is unlikely that it is meaningful to run IB on 32bit
ARM or current MIPS machines, so the change is to make WITH_OFED to pass
tinderbox.

Sponsored by: Mellanox Technologies
Reviewed by: hselasky
Differential revision: https://reviews.freebsd.org/D13329

MFC r303505:
sdp: Use an mbufq for received control packets.

This is simpler than the hand-rolled queue, and fixes a use-after-free.

Sponsored by: EMC / Isilon Storage Division

MFC r303506:
sdp: Destroy the PCB lock before freeing to the zone.

Sponsored by: EMC / Isilon Storage Division

MFC r303512:
sdp: Use malloc(9) instead of the Linux compat layer.

SDP transmit and receive rings are always created in a sleepable context,
so we can use M_WAITOK and remove error checks.

Sponsored by: EMC / Isilon Storage Division

MFC r303513:
sdp: Destroy the RDMA ID after destroying the connection's queue pair.

This is the ordering documented by rdma_destroy_qp(). Also add a useful
KASSERT to sdp_pcbfree().

Sponsored by: EMC / Isilon Storage Division

MFC r303646:
ipoib: Bound the number of egress mbufs buffered during pathrec lookups.

In pathological situations where the master subnet manager becomes
unresponsive for an extended period, we may otherwise end up queuing all
of the system's mbufs while waiting for a response to a path record lookup.

This addresses the same issue as commit 1e85b806f9 in Linux.

Reviewed by: cem, ngie
Sponsored by: EMC / Isilon Storage Division

MFC r329222:
Import the mthca kernel side infiniband driver from Linux 4.9 and fix
compilation under FreeBSD. The mthca driver was temporarily removed as
part of the Linux 4.9 RoCE/infinband upgrade.

Top commit in Linux source tree:
69973b830859bc6529a7a0468ba0d80ee5117826

Sponsored by: Mellanox Technologies

MFC r320418. Note that the socket lock _is_ the same as so_rcv's lock
in 11 and this is a no-op in this branch.

Sponsored by: Chelsio Communications

MFC r323082:
cxgbe/iw_cxgbe: Set TCP_NODELAY before initiating connection so that
t4_tom picks it up right away. This is less work than waiting for
the connection to be established before applying the setting.

Sponsored by: Chelsio Communications


/freebsd-11-stable/Makefile.inc1
/freebsd-11-stable/contrib/ofed/Makefile
/freebsd-11-stable/contrib/ofed/include/Makefile
/freebsd-11-stable/contrib/ofed/include/byteorder.h
/freebsd-11-stable/contrib/ofed/include/byteswap.h
/freebsd-11-stable/contrib/ofed/include/endian.h
/freebsd-11-stable/contrib/ofed/include/infiniband
/freebsd-11-stable/contrib/ofed/include/rdma
/freebsd-11-stable/contrib/ofed/include/types.h
/freebsd-11-stable/contrib/ofed/include/udma_barrier.h
/freebsd-11-stable/contrib/ofed/infiniband-diags
/freebsd-11-stable/contrib/ofed/libcxgb4/AUTHORS
/freebsd-11-stable/contrib/ofed/libcxgb4/COPYING
/freebsd-11-stable/contrib/ofed/libcxgb4/ChangeLog
/freebsd-11-stable/contrib/ofed/libcxgb4/Makefile
/freebsd-11-stable/contrib/ofed/libcxgb4/README
/freebsd-11-stable/contrib/ofed/libcxgb4/config.h
/freebsd-11-stable/contrib/ofed/libcxgb4/cq.c
/freebsd-11-stable/contrib/ofed/libcxgb4/cxgb4-abi.h
/freebsd-11-stable/contrib/ofed/libcxgb4/cxgb4.driver
/freebsd-11-stable/contrib/ofed/libcxgb4/dev.c
/freebsd-11-stable/contrib/ofed/libcxgb4/libcxgb4.h
/freebsd-11-stable/contrib/ofed/libcxgb4/qp.c
/freebsd-11-stable/contrib/ofed/libcxgb4/src
/freebsd-11-stable/contrib/ofed/libcxgb4/t4.h
/freebsd-11-stable/contrib/ofed/libcxgb4/t4_chip_type.h
/freebsd-11-stable/contrib/ofed/libcxgb4/t4_pci_id_tbl.h
/freebsd-11-stable/contrib/ofed/libcxgb4/t4_regs.h
/freebsd-11-stable/contrib/ofed/libcxgb4/t4fw_api.h
/freebsd-11-stable/contrib/ofed/libcxgb4/t4fw_ri_api.h
/freebsd-11-stable/contrib/ofed/libcxgb4/verbs.c
/freebsd-11-stable/contrib/ofed/libibcm
/freebsd-11-stable/contrib/ofed/libibcm/AUTHORS
/freebsd-11-stable/contrib/ofed/libibcm/COPYING
/freebsd-11-stable/contrib/ofed/libibcm/ChangeLog
/freebsd-11-stable/contrib/ofed/libibcm/INSTALL
/freebsd-11-stable/contrib/ofed/libibcm/Makefile
/freebsd-11-stable/contrib/ofed/libibcm/Makefile.am
/freebsd-11-stable/contrib/ofed/libibcm/Makefile.in
/freebsd-11-stable/contrib/ofed/libibcm/NEWS
/freebsd-11-stable/contrib/ofed/libibcm/README
/freebsd-11-stable/contrib/ofed/libibcm/aclocal.m4
/freebsd-11-stable/contrib/ofed/libibcm/cm.c
/freebsd-11-stable/contrib/ofed/libibcm/cm.h
/freebsd-11-stable/contrib/ofed/libibcm/cm_abi.h
/freebsd-11-stable/contrib/ofed/libibcm/config
/freebsd-11-stable/contrib/ofed/libibcm/config.h
/freebsd-11-stable/contrib/ofed/libibcm/config.h.in
/freebsd-11-stable/contrib/ofed/libibcm/configure
/freebsd-11-stable/contrib/ofed/libibcm/configure.in
/freebsd-11-stable/contrib/ofed/libibcm/include
/freebsd-11-stable/contrib/ofed/libibcm/libibcm.map
/freebsd-11-stable/contrib/ofed/libibcm/libibcm.spec
/freebsd-11-stable/contrib/ofed/libibcm/libibcm.spec.in
/freebsd-11-stable/contrib/ofed/libibcm/src
/freebsd-11-stable/contrib/ofed/libibmad
/freebsd-11-stable/contrib/ofed/libibnetdisc
/freebsd-11-stable/contrib/ofed/libibumad
/freebsd-11-stable/contrib/ofed/libibverbs
/freebsd-11-stable/contrib/ofed/libibverbs/AUTHORS
/freebsd-11-stable/contrib/ofed/libibverbs/COPYING
/freebsd-11-stable/contrib/ofed/libibverbs/ChangeLog
/freebsd-11-stable/contrib/ofed/libibverbs/Makefile
/freebsd-11-stable/contrib/ofed/libibverbs/Makefile.am
/freebsd-11-stable/contrib/ofed/libibverbs/README
/freebsd-11-stable/contrib/ofed/libibverbs/alloca.h
/freebsd-11-stable/contrib/ofed/libibverbs/arch.h
/freebsd-11-stable/contrib/ofed/libibverbs/autogen.sh
/freebsd-11-stable/contrib/ofed/libibverbs/cmd.c
/freebsd-11-stable/contrib/ofed/libibverbs/compat-1_0.c
/freebsd-11-stable/contrib/ofed/libibverbs/config
/freebsd-11-stable/contrib/ofed/libibverbs/config.h
/freebsd-11-stable/contrib/ofed/libibverbs/configure.in
/freebsd-11-stable/contrib/ofed/libibverbs/debian
/freebsd-11-stable/contrib/ofed/libibverbs/device.c
/freebsd-11-stable/contrib/ofed/libibverbs/driver.h
/freebsd-11-stable/contrib/ofed/libibverbs/enum_strs.c
/freebsd-11-stable/contrib/ofed/libibverbs/examples
/freebsd-11-stable/contrib/ofed/libibverbs/examples/asyncwatch.c
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/Makefile
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/Makefile.inc
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/asyncwatch/Makefile
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/device_list
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/devices
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/devinfo/Makefile
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/rc_pingpong/Makefile
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/srq_pingpong/Makefile
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/uc_pingpong/Makefile
/freebsd-11-stable/contrib/ofed/libibverbs/examples/build/ud_pingpong/Makefile
/freebsd-11-stable/contrib/ofed/libibverbs/examples/device_list.c
/freebsd-11-stable/contrib/ofed/libibverbs/examples/devinfo.c
/freebsd-11-stable/contrib/ofed/libibverbs/examples/pingpong.c
/freebsd-11-stable/contrib/ofed/libibverbs/examples/pingpong.h
/freebsd-11-stable/contrib/ofed/libibverbs/examples/rc_pingpong.c
/freebsd-11-stable/contrib/ofed/libibverbs/examples/srq_pingpong.c
/freebsd-11-stable/contrib/ofed/libibverbs/examples/uc_pingpong.c
/freebsd-11-stable/contrib/ofed/libibverbs/examples/ud_pingpong.c
/freebsd-11-stable/contrib/ofed/libibverbs/examples/xsrq_pingpong.c
/freebsd-11-stable/contrib/ofed/libibverbs/fixes
/freebsd-11-stable/contrib/ofed/libibverbs/ibverbs.h
/freebsd-11-stable/contrib/ofed/libibverbs/include
/freebsd-11-stable/contrib/ofed/libibverbs/init.c
/freebsd-11-stable/contrib/ofed/libibverbs/kern-abi.h
/freebsd-11-stable/contrib/ofed/libibverbs/libibverbs.map
/freebsd-11-stable/contrib/ofed/libibverbs/libibverbs.spec.in
/freebsd-11-stable/contrib/ofed/libibverbs/man
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_alloc_mw.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_alloc_pd.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_asyncwatch.1
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_attach_mcast.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_bind_mw.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_ah.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_ah_from_wc.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_comp_channel.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_cq.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_cq_ex.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_flow.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_qp.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_qp_ex.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_rwq_ind_table.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_srq.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_srq_ex.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_wq.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_create_xrc_rcv_qp.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_devices.1
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_devinfo.1
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_event_type_str.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_fork_init.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_get_async_event.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_get_cq_event.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_get_device_guid.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_get_device_list.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_get_device_name.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_get_srq_num.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_inc_rkey.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_modify_qp.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_modify_srq.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_modify_wq.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_modify_xrc_rcv_qp.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_open_device.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_open_qp.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_open_xrc_domain.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_open_xrcd.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_poll_cq.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_post_recv.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_post_send.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_post_srq_recv.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_query_device.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_query_device_ex.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_query_gid.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_query_pkey.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_query_port.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_query_qp.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_query_rt_values_ex.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_query_srq.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_query_xrc_rcv_qp.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_rate_to_mbps.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_rate_to_mult.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_rc_pingpong.1
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_reg_mr.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_reg_xrc_rcv_qp.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_req_notify_cq.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_rereg_mr.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_resize_cq.3
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_srq_pingpong.1
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_uc_pingpong.1
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_ud_pingpong.1
/freebsd-11-stable/contrib/ofed/libibverbs/man/ibv_xsrq_pingpong.1
/freebsd-11-stable/contrib/ofed/libibverbs/man/verbs.7
/freebsd-11-stable/contrib/ofed/libibverbs/marshall.c
/freebsd-11-stable/contrib/ofed/libibverbs/marshall.h
/freebsd-11-stable/contrib/ofed/libibverbs/memory.c
/freebsd-11-stable/contrib/ofed/libibverbs/neigh.c
/freebsd-11-stable/contrib/ofed/libibverbs/neigh.h
/freebsd-11-stable/contrib/ofed/libibverbs/nl1_compat.h
/freebsd-11-stable/contrib/ofed/libibverbs/opcode.h
/freebsd-11-stable/contrib/ofed/libibverbs/sa-kern-abi.h
/freebsd-11-stable/contrib/ofed/libibverbs/sa.h
/freebsd-11-stable/contrib/ofed/libibverbs/src
/freebsd-11-stable/contrib/ofed/libibverbs/sysfs.c
/freebsd-11-stable/contrib/ofed/libibverbs/verbs.c
/freebsd-11-stable/contrib/ofed/libibverbs/verbs.h
/freebsd-11-stable/contrib/ofed/libmlx4
/freebsd-11-stable/contrib/ofed/libmlx4/AUTHORS
/freebsd-11-stable/contrib/ofed/libmlx4/COPYING
/freebsd-11-stable/contrib/ofed/libmlx4/Makefile
/freebsd-11-stable/contrib/ofed/libmlx4/Makefile.am
/freebsd-11-stable/contrib/ofed/libmlx4/README
/freebsd-11-stable/contrib/ofed/libmlx4/autogen.sh
/freebsd-11-stable/contrib/ofed/libmlx4/buf.c
/freebsd-11-stable/contrib/ofed/libmlx4/config
/freebsd-11-stable/contrib/ofed/libmlx4/config.h
/freebsd-11-stable/contrib/ofed/libmlx4/configure.in
/freebsd-11-stable/contrib/ofed/libmlx4/cq.c
/freebsd-11-stable/contrib/ofed/libmlx4/dbrec.c
/freebsd-11-stable/contrib/ofed/libmlx4/debian
/freebsd-11-stable/contrib/ofed/libmlx4/doorbell.h
/freebsd-11-stable/contrib/ofed/libmlx4/fixes
/freebsd-11-stable/contrib/ofed/libmlx4/libmlx4.spec.in
/freebsd-11-stable/contrib/ofed/libmlx4/mlx4-abi.h
/freebsd-11-stable/contrib/ofed/libmlx4/mlx4.c
/freebsd-11-stable/contrib/ofed/libmlx4/mlx4.driver
/freebsd-11-stable/contrib/ofed/libmlx4/mlx4.h
/freebsd-11-stable/contrib/ofed/libmlx4/mmio.h
/freebsd-11-stable/contrib/ofed/libmlx4/qp.c
/freebsd-11-stable/contrib/ofed/libmlx4/src
/freebsd-11-stable/contrib/ofed/libmlx4/srq.c
/freebsd-11-stable/contrib/ofed/libmlx4/verbs.c
/freebsd-11-stable/contrib/ofed/libmlx4/wqe.h
/freebsd-11-stable/contrib/ofed/libmlx5
/freebsd-11-stable/contrib/ofed/libmthca
/freebsd-11-stable/contrib/ofed/librdmacm
/freebsd-11-stable/contrib/ofed/librdmacm/AUTHORS
/freebsd-11-stable/contrib/ofed/librdmacm/COPYING
/freebsd-11-stable/contrib/ofed/librdmacm/ChangeLog
/freebsd-11-stable/contrib/ofed/librdmacm/INSTALL
/freebsd-11-stable/contrib/ofed/librdmacm/Makefile
/freebsd-11-stable/contrib/ofed/librdmacm/Makefile.am
/freebsd-11-stable/contrib/ofed/librdmacm/Makefile.in
/freebsd-11-stable/contrib/ofed/librdmacm/NEWS
/freebsd-11-stable/contrib/ofed/librdmacm/README
/freebsd-11-stable/contrib/ofed/librdmacm/aclocal.m4
/freebsd-11-stable/contrib/ofed/librdmacm/acm.c
/freebsd-11-stable/contrib/ofed/librdmacm/addrinfo.c
/freebsd-11-stable/contrib/ofed/librdmacm/cma.c
/freebsd-11-stable/contrib/ofed/librdmacm/cma.h
/freebsd-11-stable/contrib/ofed/librdmacm/config
/freebsd-11-stable/contrib/ofed/librdmacm/config.h
/freebsd-11-stable/contrib/ofed/librdmacm/config.h.in
/freebsd-11-stable/contrib/ofed/librdmacm/configure
/freebsd-11-stable/contrib/ofed/librdmacm/configure.in
/freebsd-11-stable/contrib/ofed/librdmacm/examples
/freebsd-11-stable/contrib/ofed/librdmacm/examples/build/Makefile
/freebsd-11-stable/contrib/ofed/librdmacm/examples/build/Makefile.inc
/freebsd-11-stable/contrib/ofed/librdmacm/examples/build/cmatose
/freebsd-11-stable/contrib/ofed/librdmacm/examples/build/mckey/Makefile
/freebsd-11-stable/contrib/ofed/librdmacm/examples/build/rping/Makefile
/freebsd-11-stable/contrib/ofed/librdmacm/examples/build/ucmatose
/freebsd-11-stable/contrib/ofed/librdmacm/examples/build/udaddy/Makefile
/freebsd-11-stable/contrib/ofed/librdmacm/examples/cmatose.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/cmtime.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/common.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/common.h
/freebsd-11-stable/contrib/ofed/librdmacm/examples/mckey.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/rcopy.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/rdma_client.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/rdma_server.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/rdma_xclient.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/rdma_xserver.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/riostream.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/rping.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/rstream.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/udaddy.c
/freebsd-11-stable/contrib/ofed/librdmacm/examples/udpong.c
/freebsd-11-stable/contrib/ofed/librdmacm/ib.h
/freebsd-11-stable/contrib/ofed/librdmacm/include
/freebsd-11-stable/contrib/ofed/librdmacm/indexer.c
/freebsd-11-stable/contrib/ofed/librdmacm/indexer.h
/freebsd-11-stable/contrib/ofed/librdmacm/librdmacm.map
/freebsd-11-stable/contrib/ofed/librdmacm/librdmacm.spec
/freebsd-11-stable/contrib/ofed/librdmacm/librdmacm.spec.in
/freebsd-11-stable/contrib/ofed/librdmacm/librspreload.map
/freebsd-11-stable/contrib/ofed/librdmacm/man
/freebsd-11-stable/contrib/ofed/librdmacm/man/CMakeLists.txt
/freebsd-11-stable/contrib/ofed/librdmacm/man/cmtime.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/mckey.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/rcopy.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_accept.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_ack_cm_event.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_bind_addr.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_client.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_cm.7
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_connect.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_create_ep.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_create_event_channel.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_create_id.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_create_qp.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_create_srq.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_dereg_mr.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_destroy_ep.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_destroy_event_channel.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_destroy_id.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_destroy_qp.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_destroy_srq.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_disconnect.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_event_str.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_free_devices.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_get_cm_event.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_get_devices.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_get_dst_port.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_get_local_addr.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_get_peer_addr.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_get_recv_comp.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_get_request.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_get_send_comp.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_get_src_port.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_getaddrinfo.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_join_multicast.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_leave_multicast.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_listen.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_migrate_id.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_notify.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_post_read.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_post_readv.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_post_recv.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_post_recvv.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_post_send.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_post_sendv.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_post_ud_send.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_post_write.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_post_writev.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_reg_msgs.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_reg_read.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_reg_write.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_reject.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_resolve_addr.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_resolve_route.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_server.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_set_option.3
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_xclient.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/rdma_xserver.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/riostream.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/rping.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/rsocket.7.in
/freebsd-11-stable/contrib/ofed/librdmacm/man/rstream.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/ucmatose.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/udaddy.1
/freebsd-11-stable/contrib/ofed/librdmacm/man/udpong.1
/freebsd-11-stable/contrib/ofed/librdmacm/preload.c
/freebsd-11-stable/contrib/ofed/librdmacm/rdma_cma.h
/freebsd-11-stable/contrib/ofed/librdmacm/rdma_cma_abi.h
/freebsd-11-stable/contrib/ofed/librdmacm/rdma_verbs.h
/freebsd-11-stable/contrib/ofed/librdmacm/rsocket.c
/freebsd-11-stable/contrib/ofed/librdmacm/rsocket.h
/freebsd-11-stable/contrib/ofed/librdmacm/src
/freebsd-11-stable/contrib/ofed/libsdp
/freebsd-11-stable/contrib/ofed/management
/freebsd-11-stable/contrib/ofed/opensm
/freebsd-11-stable/contrib/ofed/usr.bin/Makefile
/freebsd-11-stable/contrib/ofed/usr.bin/Makefile.inc
/freebsd-11-stable/contrib/ofed/usr.bin/ibaddr
/freebsd-11-stable/contrib/ofed/usr.bin/ibnetdiscover
/freebsd-11-stable/contrib/ofed/usr.bin/ibping
/freebsd-11-stable/contrib/ofed/usr.bin/ibportstate
/freebsd-11-stable/contrib/ofed/usr.bin/ibroute
/freebsd-11-stable/contrib/ofed/usr.bin/ibsendtrap
/freebsd-11-stable/contrib/ofed/usr.bin/ibstat
/freebsd-11-stable/contrib/ofed/usr.bin/ibsysstat
/freebsd-11-stable/contrib/ofed/usr.bin/ibtracert
/freebsd-11-stable/contrib/ofed/usr.bin/opensm
/freebsd-11-stable/contrib/ofed/usr.bin/osmtest
/freebsd-11-stable/contrib/ofed/usr.bin/perfquery
/freebsd-11-stable/contrib/ofed/usr.bin/saquery
/freebsd-11-stable/contrib/ofed/usr.bin/sminfo
/freebsd-11-stable/contrib/ofed/usr.bin/smpdump
/freebsd-11-stable/contrib/ofed/usr.bin/smpquery
/freebsd-11-stable/contrib/ofed/usr.bin/vendstat
/freebsd-11-stable/contrib/ofed/usr.lib/0
/freebsd-11-stable/contrib/ofed/usr.lib/1
/freebsd-11-stable/contrib/ofed/usr.lib/2
/freebsd-11-stable/contrib/ofed/usr.lib/3
/freebsd-11-stable/contrib/ofed/usr.lib/Makefile
/freebsd-11-stable/contrib/ofed/usr.lib/Makefile.inc
/freebsd-11-stable/contrib/ofed/usr.lib/libcxgb4
/freebsd-11-stable/contrib/ofed/usr.lib/libibcm
/freebsd-11-stable/contrib/ofed/usr.lib/libibcommon
/freebsd-11-stable/contrib/ofed/usr.lib/libibmad
/freebsd-11-stable/contrib/ofed/usr.lib/libibumad
/freebsd-11-stable/contrib/ofed/usr.lib/libibverbs
/freebsd-11-stable/contrib/ofed/usr.lib/libmlx4
/freebsd-11-stable/contrib/ofed/usr.lib/libmthca
/freebsd-11-stable/contrib/ofed/usr.lib/libopensm
/freebsd-11-stable/contrib/ofed/usr.lib/libosmcomp
/freebsd-11-stable/contrib/ofed/usr.lib/libosmvendor
/freebsd-11-stable/contrib/ofed/usr.lib/librdmacm
/freebsd-11-stable/contrib/ofed/usr.lib/libsdp
/freebsd-11-stable/share/mk/bsd.libnames.mk
/freebsd-11-stable/share/mk/src.libnames.mk
/freebsd-11-stable/sys/amd64/conf/NOTES
/freebsd-11-stable/sys/conf/files
/freebsd-11-stable/sys/conf/kern.pre.mk
/freebsd-11-stable/sys/contrib/rdma/krping/krping.c
/freebsd-11-stable/sys/contrib/rdma/krping/krping.h
/freebsd-11-stable/sys/contrib/rdma/krping/krping_dev.c
/freebsd-11-stable/sys/contrib/rdma/krping_compat
/freebsd-11-stable/sys/dev/cxgbe/adapter.h
/freebsd-11-stable/sys/dev/cxgbe/common/common.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_hw.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cm.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cq.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/device.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/mem.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/provider.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/qp.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/t4.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/user.h
/freebsd-11-stable/sys/dev/cxgbe/offload.h
/freebsd-11-stable/sys/dev/cxgbe/t4_main.c
/freebsd-11-stable/sys/dev/iser/icl_iser.c
/freebsd-11-stable/sys/dev/iser/icl_iser.h
/freebsd-11-stable/sys/dev/iser/iser_memory.c
/freebsd-11-stable/sys/dev/iser/iser_verbs.c
/freebsd-11-stable/sys/dev/mlx4/device.h
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_exp.h
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib.h
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_ah.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_cm.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_exp.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_mcg.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/mlx4_ib_sysfs.c
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/user.h
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib.h
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_ah.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_cq.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_doorbell.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_gsi.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_mad.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_roce.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/mlx5_ib_virt.c
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/user.h
/freebsd-11-stable/sys/dev/mlx5/qp.h
/freebsd-11-stable/sys/dev/mthca
/freebsd-11-stable/sys/i386/conf/NOTES
/freebsd-11-stable/sys/modules/Makefile
/freebsd-11-stable/sys/modules/cxgb/Makefile
/freebsd-11-stable/sys/modules/cxgbe/iw_cxgbe/Makefile
/freebsd-11-stable/sys/modules/ibcore/Makefile
/freebsd-11-stable/sys/modules/ipoib/Makefile
/freebsd-11-stable/sys/modules/iser/Makefile
/freebsd-11-stable/sys/modules/mlx4/Makefile
/freebsd-11-stable/sys/modules/mlx4ib/Makefile
/freebsd-11-stable/sys/modules/mlx5ib/Makefile
/freebsd-11-stable/sys/modules/mthca/Makefile
/freebsd-11-stable/sys/modules/rdma/krping/Makefile
/freebsd-11-stable/sys/modules/rdma/krping_compat
/freebsd-11-stable/sys/ofed/drivers/infiniband/Kconfig
/freebsd-11-stable/sys/ofed/drivers/infiniband/Makefile
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/addr.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/agent.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/agent.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/cache.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/cm.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/cm_msgs.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/cma.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/core_priv.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/device.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/fmr_pool.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_addr.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_agent.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_cache.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_cm.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_cma.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_cq.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_device.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_iwcm.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_iwpm_msg.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_iwpm_util.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_mad.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_mad_rmpp.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_multicast.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_packer.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_roce_gid_mgmt.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_sa_query.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_smi.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_sysfs.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_ucm.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_ucma.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_ud_header.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_umem.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_umem_odp.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_user_mad.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_uverbs_marshall.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ib_verbs.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/iwcm.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/iwcm.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/iwpm_util.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/mad.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/mad_priv.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/mad_rmpp.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/multicast.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/opa_smi.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/packer.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/peer_mem.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/sa_query.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/smi.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/smi.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/sysfs.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ucm.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ucma.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/ud_header.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/umem.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/user_mad.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/uverbs.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/uverbs_cmd.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/uverbs_main.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/uverbs_marshall.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/verbs.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/debug/Makefile
/freebsd-11-stable/sys/ofed/drivers/infiniband/debug/memtrack.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/debug/memtrack.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/debug/mtrack.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/hw
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/Kconfig
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_verbs.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp_cma.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp_proc.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/util/Kconfig
/freebsd-11-stable/sys/ofed/include/rdma/ib.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_addr.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_cache.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_cm.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_hdrs.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_mad.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_pack.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_peer_mem.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_pma.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_sa.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_smi.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_umem.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_umem_odp.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_user_cm.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_user_mad.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_user_sa.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_user_verbs.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_user_verbs_exp.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_verbs.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_verbs_compat.h
/freebsd-11-stable/sys/ofed/include/rdma/ib_verbs_exp.h
/freebsd-11-stable/sys/ofed/include/rdma/iw_cm.h
/freebsd-11-stable/sys/ofed/include/rdma/iw_portmap.h
/freebsd-11-stable/sys/ofed/include/rdma/opa_port_info.h
/freebsd-11-stable/sys/ofed/include/rdma/opa_smi.h
/freebsd-11-stable/sys/ofed/include/rdma/peer_mem.h
/freebsd-11-stable/sys/ofed/include/rdma/rdma_cm.h
/freebsd-11-stable/sys/ofed/include/rdma/rdma_user_cm.h
/freebsd-11-stable/sys/ofed/include/rdma/rdma_vt.h
/freebsd-11-stable/sys/ofed/include/rdma/rdmavt_cq.h
/freebsd-11-stable/sys/ofed/include/rdma/rdmavt_mr.h
/freebsd-11-stable/sys/ofed/include/rdma/rdmavt_qp.h
/freebsd-11-stable/sys/ofed/include/rdma/sdp_socket.h
/freebsd-11-stable/sys/ofed/include/uapi
pseudo/userland/Makefile.depend
pseudo/userland/lib/Makefile.depend
331586 26-Mar-2018 hselasky

MFC r330653:
Add kernel and userspace code to dump the firmware state of supported
ConnectX-4/5 devices in mlx5core.

The dump is obtained by reading a predefined register map from the
non-destructive crspace, accessible by the vendor-specific PCIe
capability (VSC). The dump is stored in preallocated kernel memory and
managed by the mlx5tool(8), which communicates with the driver using a
character device node.

The utility allows to store the dump in format
<address> <value>
into a file, to reset the dump content, and to manually initiate the
dump.

A call to mlx5_fwdump() should be added at the places where a dump
must be fetched automatically. The most likely place is right before a
firmware reset request.

Submitted by: kib@
Sponsored by: Mellanox Technologies

330478 05-Mar-2018 eadler

MFC r325353:

chase removal of csup in r267863 from 2014..

329011 08-Feb-2018 kevans

MFC r307322,r307323,r307324,r307326,r307327,r307338,r307879,r307908,r307911,
r307942,r307950,r307951,r307954,r307955,r308125,r308195,r308476,r308534,
r308535,r308776,r308843,r310236,r310726: Loader fixes, 2016q4

r307322: Remove /boot/boot.conf, deprecated for 16 years

r307323: Remove fetching of pInterp.

r307324: Create a new linker set, Xficl_compile_set which contains a list of
functions to call to register new forth words.

r307326: In UEFI mode expose the SMBIOS anchor base address via kenv

r307327: Update i386 build of loader.efi (but leave it disabled) so that we
at least build it now.

r307338: Create a pcibios-version environment FORTH word.

r307879: Preliminary support for EFI in boot loader.

r307908: Fix the build on both arm64 and when WITHOUT_FORTH is defined.

r307911: Add better comment...

r307942: Really make WITHOUT_FORTH (MK_FORTH==no) work.

r307950: Add it (Makefile.ficl) to the right place

r307951: Fix two backwards tests.

r307954: Back out the move to the loader script from -N.

r307955: LIBSTAND goes last, so put it last here too.

r308125: In loader.efi, instead of exiting directly, try to fallback.

r308195: efinet_dev_print should honor verbose option.

r308476: boot/forth spelling issue in forth word

r308534: The file_loadraw function grew an argument, update install function

r308535: Add support for LOADER_RC setting in the pkgfs manifes

r308776: loader: zfs toplevel vdev must have spa set.

r308843: loader: smbios version check is not correct

r310236: Renumber license clauses to avoid skipping #3

r310726: cdboot: add explict suffix to ambiguous or instruction

PR: 214375


/freebsd-11-stable/sys/boot/Makefile.ficl
/freebsd-11-stable/sys/boot/common/Makefile.inc
/freebsd-11-stable/sys/boot/common/bootstrap.h
/freebsd-11-stable/sys/boot/common/install.c
/freebsd-11-stable/sys/boot/common/interp.c
/freebsd-11-stable/sys/boot/common/interp_forth.c
/freebsd-11-stable/sys/boot/common/loader.8
/freebsd-11-stable/sys/boot/common/newvers.sh
/freebsd-11-stable/sys/boot/common/pnp.c
/freebsd-11-stable/sys/boot/efi/libefi/Makefile
/freebsd-11-stable/sys/boot/efi/libefi/efinet.c
/freebsd-11-stable/sys/boot/efi/libefi/env.c
/freebsd-11-stable/sys/boot/efi/loader/Makefile
/freebsd-11-stable/sys/boot/efi/loader/arch/amd64/ldscript.amd64
/freebsd-11-stable/sys/boot/efi/loader/arch/arm/ldscript.arm
/freebsd-11-stable/sys/boot/efi/loader/arch/arm64/ldscript.arm64
/freebsd-11-stable/sys/boot/efi/loader/arch/i386/efimd.c
/freebsd-11-stable/sys/boot/efi/loader/arch/i386/elf32_freebsd.c
/freebsd-11-stable/sys/boot/efi/loader/arch/i386/exec.c
/freebsd-11-stable/sys/boot/efi/loader/arch/i386/ldscript.i386
/freebsd-11-stable/sys/boot/efi/loader/main.c
/freebsd-11-stable/sys/boot/ficl/Makefile
/freebsd-11-stable/sys/boot/ficl/efi.c
/freebsd-11-stable/sys/boot/ficl/ficl.h
/freebsd-11-stable/sys/boot/ficl/i386/sysdep.c
/freebsd-11-stable/sys/boot/ficl/loader.c
/freebsd-11-stable/sys/boot/ficl32/Makefile
/freebsd-11-stable/sys/boot/forth/Makefile.inc
/freebsd-11-stable/sys/boot/forth/efi.4th
/freebsd-11-stable/sys/boot/forth/loader.4th
/freebsd-11-stable/sys/boot/forth/support.4th
/freebsd-11-stable/sys/boot/i386/Makefile.inc
/freebsd-11-stable/sys/boot/i386/cdboot/cdboot.S
/freebsd-11-stable/sys/boot/i386/gptboot/Makefile
/freebsd-11-stable/sys/boot/i386/gptzfsboot/Makefile
/freebsd-11-stable/sys/boot/i386/libi386/Makefile
/freebsd-11-stable/sys/boot/i386/libi386/biospci.c
/freebsd-11-stable/sys/boot/i386/libi386/libi386.h
/freebsd-11-stable/sys/boot/i386/libi386/smbios.c
/freebsd-11-stable/sys/boot/i386/loader/Makefile
/freebsd-11-stable/sys/boot/mips/beri/loader/loader.ldscript
/freebsd-11-stable/sys/boot/pc98/libpc98/Makefile
/freebsd-11-stable/sys/boot/zfs/zfsimpl.c
pseudo/userland/misc/Makefile.depend
321391 23-Jul-2017 ngie

MFC r316603,r321214:

r316603:

META_MODE: add additional reachover relative paths to DIRDEPS_BUILD

These additional entries are being added, after their addition to the
source tree.

r321214:

Update targets/pseudo/tests/Makefile.depend after recent additions/subtractions
from the FreeBSD test suite.

MFC with: r316603

319388 01-Jun-2017 ngie

MFC r314579,r314785:

r314579 (by np):

Add cxgbetool(8) to the base system.

Move cxgbetool from tools/tools to usr.sbin. Compile and install it on
platforms where cxgbe(4) is built by default. Knobs (WITH_CXGBETOOL and
WITHOUT_CXGBETOOL) have been added so that the user can override the
default setting.

r314785:

Fix some trivial manlint warnings

Sentences should begin on new lines, per manlint.

Bump .Dd for the change

318115 09-May-2017 bdrewery

DIRDEPS_BUILD: Connect new directories.

This is a direct commit since MFCing these changes is impractical.

Sponsored by: Dell EMC Isilon

315723 22-Mar-2017 bdrewery

MFC r314886,r314943,r314944:

r314886:
pwait: Add a -t flag to specify a timeout before exiting, and tests.
r314943:
Remove unneeded -x from tests.
r314944:
Rename some tests to end in _test.

311188 03-Jan-2017 bdrewery

MFC r305258:

DIRDEPS_BUILD: Build crunchide for the host.

311183 03-Jan-2017 bdrewery

MFC r305148:

DIRDEPS_BUILD: Add some missing dirctories to the build.

311182 03-Jan-2017 bdrewery

MFC r305255:

DIRDEPS_BUILD: Fix 'make bootstrap-tools' not using the proper tblgen
binaries.

311179 03-Jan-2017 bdrewery

MFC r305244:

DIRDEPS_BUILD: Add missing crunchgen host tool.

310618 26-Dec-2016 dim

MFC r309124:

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

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

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

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

Relnotes: yes

MFC r309147:

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

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

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

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

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

Reported by: Mark Millard
PR: 214433

MFC r309149:

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

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

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

Fixes PR26970.

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

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

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

Fixes PR26970.

Reported by: Mark Millard
PR: 214433

MFC r309212:

Add a few missed clang 3.9.0 files to OptionalObsoleteFiles.

MFC r309262:

Fix packaging for clang, lldb and lld 3.9.0

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

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

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

MFC r309656:

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

Reported by: Mark Millard
PR: 214902

MFC r309835:

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

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

MFC r310194:

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

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

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

Relnotes: yes


/freebsd-11-stable/Makefile.inc1
/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/compiler-rt/LICENSE.TXT
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/allocator_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/esan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/linux_syscall_hooks.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_fake_stack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_fake_stack.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_globals.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_init_version.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_memory_profile.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_scariness_score.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_stack.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/adddf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_dcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memcpy.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memmove.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memset.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_uidivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_uldivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/bswapdi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/bswapsi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/clzdi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/clzsi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/comparesf2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/extendsfdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixsfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunsdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunssfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/modsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/muldf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/mulsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/restore_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/save_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch16.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch32.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switchu8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_synchronize.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/truncdfsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/udivmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/udivsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/umodsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unorddf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/assembly.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clear_cache.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cpu_model.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/emutls.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatdidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatundidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/divdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/lshrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/moddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/muldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/udivdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/umoddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/restFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/saveFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/unwind-ehabi-helpers.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/cfi/cfi.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/esan
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_win.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/profile/GCDAProfiling.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfData.inc
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfiling.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfiling.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingBuffer.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingFile.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingInternal.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingMerge.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingMergeFile.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformDarwin.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformLinux.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformOther.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPort.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingValue.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingWriter.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/WindowsMMap.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_mapping_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_list.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo
/freebsd-11-stable/contrib/compiler-rt/lib/stats
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/test.c
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutex.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutex.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_preinit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_diag.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_value.cc
/freebsd-11-stable/contrib/libc++/CREDITS.TXT
/freebsd-11-stable/contrib/libc++/LICENSE.TXT
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_defaults.h
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_fallbacks.h
/freebsd-11-stable/contrib/libc++/include/__config
/freebsd-11-stable/contrib/libc++/include/__functional_base
/freebsd-11-stable/contrib/libc++/include/__hash_table
/freebsd-11-stable/contrib/libc++/include/__mutex_base
/freebsd-11-stable/contrib/libc++/include/__threading_support
/freebsd-11-stable/contrib/libc++/include/__tree
/freebsd-11-stable/contrib/libc++/include/__tuple
/freebsd-11-stable/contrib/libc++/include/__undef___deallocate
/freebsd-11-stable/contrib/libc++/include/__undef_min_max
/freebsd-11-stable/contrib/libc++/include/algorithm
/freebsd-11-stable/contrib/libc++/include/array
/freebsd-11-stable/contrib/libc++/include/atomic
/freebsd-11-stable/contrib/libc++/include/bitset
/freebsd-11-stable/contrib/libc++/include/cctype
/freebsd-11-stable/contrib/libc++/include/cmath
/freebsd-11-stable/contrib/libc++/include/complex
/freebsd-11-stable/contrib/libc++/include/cstring
/freebsd-11-stable/contrib/libc++/include/cwchar
/freebsd-11-stable/contrib/libc++/include/deque
/freebsd-11-stable/contrib/libc++/include/exception
/freebsd-11-stable/contrib/libc++/include/experimental/__config
/freebsd-11-stable/contrib/libc++/include/experimental/__memory
/freebsd-11-stable/contrib/libc++/include/experimental/algorithm
/freebsd-11-stable/contrib/libc++/include/experimental/any
/freebsd-11-stable/contrib/libc++/include/experimental/deque
/freebsd-11-stable/contrib/libc++/include/experimental/dynarray
/freebsd-11-stable/contrib/libc++/include/experimental/filesystem
/freebsd-11-stable/contrib/libc++/include/experimental/forward_list
/freebsd-11-stable/contrib/libc++/include/experimental/functional
/freebsd-11-stable/contrib/libc++/include/experimental/iterator
/freebsd-11-stable/contrib/libc++/include/experimental/list
/freebsd-11-stable/contrib/libc++/include/experimental/map
/freebsd-11-stable/contrib/libc++/include/experimental/memory_resource
/freebsd-11-stable/contrib/libc++/include/experimental/optional
/freebsd-11-stable/contrib/libc++/include/experimental/propagate_const
/freebsd-11-stable/contrib/libc++/include/experimental/regex
/freebsd-11-stable/contrib/libc++/include/experimental/set
/freebsd-11-stable/contrib/libc++/include/experimental/string
/freebsd-11-stable/contrib/libc++/include/experimental/string_view
/freebsd-11-stable/contrib/libc++/include/experimental/tuple
/freebsd-11-stable/contrib/libc++/include/experimental/unordered_map
/freebsd-11-stable/contrib/libc++/include/experimental/unordered_set
/freebsd-11-stable/contrib/libc++/include/experimental/vector
/freebsd-11-stable/contrib/libc++/include/ext/hash_map
/freebsd-11-stable/contrib/libc++/include/ext/hash_set
/freebsd-11-stable/contrib/libc++/include/forward_list
/freebsd-11-stable/contrib/libc++/include/fstream
/freebsd-11-stable/contrib/libc++/include/functional
/freebsd-11-stable/contrib/libc++/include/future
/freebsd-11-stable/contrib/libc++/include/iomanip
/freebsd-11-stable/contrib/libc++/include/ios
/freebsd-11-stable/contrib/libc++/include/iosfwd
/freebsd-11-stable/contrib/libc++/include/istream
/freebsd-11-stable/contrib/libc++/include/iterator
/freebsd-11-stable/contrib/libc++/include/list
/freebsd-11-stable/contrib/libc++/include/locale
/freebsd-11-stable/contrib/libc++/include/map
/freebsd-11-stable/contrib/libc++/include/memory
/freebsd-11-stable/contrib/libc++/include/mutex
/freebsd-11-stable/contrib/libc++/include/queue
/freebsd-11-stable/contrib/libc++/include/shared_mutex
/freebsd-11-stable/contrib/libc++/include/stack
/freebsd-11-stable/contrib/libc++/include/stdbool.h
/freebsd-11-stable/contrib/libc++/include/stdexcept
/freebsd-11-stable/contrib/libc++/include/streambuf
/freebsd-11-stable/contrib/libc++/include/string
/freebsd-11-stable/contrib/libc++/include/string.h
/freebsd-11-stable/contrib/libc++/include/thread
/freebsd-11-stable/contrib/libc++/include/tuple
/freebsd-11-stable/contrib/libc++/include/type_traits
/freebsd-11-stable/contrib/libc++/include/unordered_map
/freebsd-11-stable/contrib/libc++/include/unordered_set
/freebsd-11-stable/contrib/libc++/include/utility
/freebsd-11-stable/contrib/libc++/include/vector
/freebsd-11-stable/contrib/libc++/include/wchar.h
/freebsd-11-stable/contrib/libc++/src/algorithm.cpp
/freebsd-11-stable/contrib/libc++/src/bind.cpp
/freebsd-11-stable/contrib/libc++/src/condition_variable.cpp
/freebsd-11-stable/contrib/libc++/src/experimental
/freebsd-11-stable/contrib/libc++/src/locale.cpp
/freebsd-11-stable/contrib/libc++/src/memory.cpp
/freebsd-11-stable/contrib/libc++/src/mutex.cpp
/freebsd-11-stable/contrib/libc++/src/regex.cpp
/freebsd-11-stable/contrib/libc++/src/strstream.cpp
/freebsd-11-stable/contrib/libc++/src/system_error.cpp
/freebsd-11-stable/contrib/libc++/src/thread.cpp
/freebsd-11-stable/contrib/llvm/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Disassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Linker.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Target.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Types.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/lto.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/APFloat.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/APInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ArrayRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/BitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/BitmaskEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/FoldingSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/GraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Hashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerEmbeddedInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PostOrderIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PriorityWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Sequence.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SetVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Statistic.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/TinyPtrVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Triple.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AssumptionCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CallGraphSCCPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CallPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CodeMetrics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ConstantFolding.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DemandedBits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/EHPersonalities.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GlobalsModRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IVUsers.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InlineCost.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Interval.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Loads.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemoryLocation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Passes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PostDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/SparsePropagation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/AsmParser/Parser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Analysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CommandFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIEValue.def
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FastISel.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FaultMaps.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveVariables.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineFunction.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineFunctionPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstr.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstrBundleIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOperand.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineSSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineValueType.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ParallelCG.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Passes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/StackMaps.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/StackProtector.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TailDuplicator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/UnreachableBlockElim.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.td
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ByteStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolTypes.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/FieldListRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/Line.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ListRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/MemoryTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamInterface.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecords.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DIContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDB.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Raw
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/GenericValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCChannel.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Argument.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Attributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Attributes.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/AutoUpgrade.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CallSite.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CallingConv.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Comdat.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Constant.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ConstantRange.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Constants.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DIBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DataLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Dominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Function.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/FunctionInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GVMaterializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRPrintingPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InlineAsm.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstrTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instruction.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicInst.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Intrinsics.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Intrinsics.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsAArch64.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsARM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsMips.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsX86.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LLVMContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Mangler.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Module.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSummaryIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Operator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/OptBisect.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ProfileSummary.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Statepoint.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SymbolTableListTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TrackingMDRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TypeFinder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Use.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/UseListOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/User.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Value.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Value.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueSymbolTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Verifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/IRReader/IRReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/InitializePasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/LTO.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/LTOModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy
/freebsd-11-stable/contrib/llvm/include/llvm/LibDriver/LibDriver.h
/freebsd-11-stable/contrib/llvm/include/llvm/LineEditor/LineEditor.h
/freebsd-11-stable/contrib/llvm/include/llvm/LinkAllIR.h
/freebsd-11-stable/contrib/llvm/include/llvm/LinkAllPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/Linker/IRMover.h
/freebsd-11-stable/contrib/llvm/include/llvm/Linker/Linker.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAssembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCCodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDirectives.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDwarf.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCELFStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCExpr.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCExternalSymbolizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFragment.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCObjectStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCRelocationInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSchedule.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSection.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolMachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWin64EH.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWinEH.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SectionKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/StringTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SubtargetFeature.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/YAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Archive.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ArchiveWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Binary.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/COFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/COFFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELFObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELFTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/FunctionIndexObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/IRObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/MachOUniversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ModuleSummaryIndexObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/RelocVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/StackMapParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/SymbolicFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptParser.td
/freebsd-11-stable/contrib/llvm/include/llvm/Option/Option.h
/freebsd-11-stable/contrib/llvm/include/llvm/Pass.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassAnalysisSupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassSupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/Passes/PassBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/Coverage
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/CoverageMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/CoverageMappingReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/CoverageMappingWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProf.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProfData.inc
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/ProfileCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/SampleProf.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/SampleProfReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/SampleProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AIXDataTypesFix.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AlignOf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Atomic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AtomicOrdering.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BranchProbability.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/COFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CachePruning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CodeGen.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CodeGenCWrappers.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CommandLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ConvertUTF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataTypes.h.in
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Dwarf.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Dwarf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/AMDGPU.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/BPF.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/Hexagon.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/Lanai.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/Mips.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/i386.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ELFRelocs/x86_64.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Endian.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/EndianStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorOr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileSystem.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Format.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GenericDomTree.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/JamCRC.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Locale.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LockFileManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MD5.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachO.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/OnDiskHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Path.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PrettyStackTrace.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Printable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Process.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Program.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RandomNumberGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Registry.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RegistryParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SHA1.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScaledNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScopedPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Signals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StreamingMemoryObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SwapByteOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Threading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Timer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TypeName.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Unicode.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Valgrind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/YAMLParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/YAMLTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/raw_sha1_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/thread.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/type_traits.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/SearchableTable.td
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringToOffsetTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GenericOpcodes.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/Target.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetCallingConv.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetCallingConv.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetFrameLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetInstrInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetOpcodes.def
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetOpcodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetRecip.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/GCOVProfiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ConstantMerge.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ElimAvailExtern.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ForceFunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/FunctionImport.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/GlobalOpt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Internalize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/LowerBitSets.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/PartialInlining.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstrProfiling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/PGOInstrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/SampleProfile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/ADCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/BDCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/DCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Float2Int.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GuardWidening.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LICM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopIdiomRecognize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerAtomic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Reassociate.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SROA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Sink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Evaluator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LCSSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/MemorySSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SanitizerStats.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyInstructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SplitModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Analysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AssumptionCache.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLGraph.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CGSCCPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CallGraphSCCPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CallPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CaptureTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CodeMetrics.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ConstantFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CostModel.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Delinearization.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DemandedBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DomPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/EHPersonalities.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVUsers.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InlineCost.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Interval.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IntervalPartition.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyCallGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyValueInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Lint.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Loads.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemDepPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemDerefPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryLocation.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ObjCARCInstKind.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PHITransAddr.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PostDominators.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ProfileSummaryInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/SparsePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/StratifiedSets.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Trace.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TypeMetadataUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ValueTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/VectorUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLParser.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLParser.h
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLToken.h
/freebsd-11-stable/contrib/llvm/lib/AsmParser/Parser.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h
/freebsd-11-stable/contrib/llvm/lib/Bitcode/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/Analysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AntiDepBreaker.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchFolding.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BuiltinGCs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CallingConvLower.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CodeGen.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CoreCLRGC.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DetectDeadLanes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ErlangGC.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FuncletLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalMerge.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/IfConversion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InlineSpiller.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LexicalScopes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveDebugValues.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveDebugVariables.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveInterval.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeCalc.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeUtils.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LowerEmuTLS.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MILexer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MILexer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MIParser.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MIParser.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineCSE.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineDominators.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineInstr.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineLICM.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineSink.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/OcamlGC.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PHIElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ParallelCG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/Passes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PatchableFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBase.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocFast.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterUsageInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStack.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackColoring.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackLayout.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/TargetSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SlotIndexes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SpillPlacement.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SpillPlacement.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/Spiller.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SplitKit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SplitKit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackMaps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackProtector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StatepointExampleGC.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TailDuplication.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TailDuplicator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetPassConfig.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetSchedule.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/XRayInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ByteStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/FieldListRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ListRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/MemoryTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/MethodListRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/StreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/StreamWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecord.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBContext.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Raw
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcABISupport.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcArchitectureSupport.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeSetNode.h
/freebsd-11-stable/contrib/llvm/lib/IR/Attributes.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AutoUpgrade.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/BasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Comdat.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantFold.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantFold.h
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantRange.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Constants.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantsContext.h
/freebsd-11-stable/contrib/llvm/lib/IR/Core.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DIBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DataLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DebugInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DebugInfoMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DebugLoc.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Dominators.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Function.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/FunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/GCOV.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Globals.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/IRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/IRPrintingPasses.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/InlineAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Instruction.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Instructions.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/IntrinsicInst.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/LLVMContext.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/LLVMContextImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/LLVMContextImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/LegacyPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/MDBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Mangler.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Module.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Operator.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/OptBisect.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Pass.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassRegistry.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ProfileSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Statepoint.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Type.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/TypeFinder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Value.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ValueSymbolTable.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ValueTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Verifier.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/LTO/LTO.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTOModule.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/UpdateCompilerUsed.cpp
/freebsd-11-stable/contrib/llvm/lib/LibDriver/LibDriver.cpp
/freebsd-11-stable/contrib/llvm/lib/LineEditor/LineEditor.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/IRMover.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/LinkModules.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ConstantPools.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAssembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCCodeGenInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCCodeView.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCContext.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCFragment.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInst.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachOStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCObjectFileInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCObjectStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSection.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCValue.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWin64EH.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWinEH.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/StringTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/SubtargetFeature.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/YAML.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Archive.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ArchiveWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Binary.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ELF.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ELFObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ELFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/FunctionIndexObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/IRObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/MachOObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/MachOUniversal.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Object.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/RecordStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/RecordStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Object/SymbolicFile.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML
/freebsd-11-stable/contrib/llvm/lib/Option/OptTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/Option.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassRegistry.def
/freebsd-11-stable/contrib/llvm/lib/ProfileData/Coverage
/freebsd-11-stable/contrib/llvm/lib/ProfileData/CoverageMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/CoverageMappingReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/CoverageMappingWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProf.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProf.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProfReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APSInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMBuildAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Atomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BranchProbability.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CachePruning.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CommandLine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CrashRecoveryContext.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Dwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ErrorHandling.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FoldingSet.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Host.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/IntEqClasses.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/JamCRC.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Locale.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LockFileManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ManagedStatic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Path.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/PrettyStackTrace.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Process.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SHA1.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ScaledNumber.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ScopedPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Signals.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SmallPtrSet.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Statistic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StreamingMemoryObject.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringMap.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TargetParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TargetRegistry.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ThreadPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Threading.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Timer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Twine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Memory.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Path.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Process.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Path.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Process.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLTraits.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/raw_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/Record.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/SetTheory.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64BranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA53.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedKryo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedM1.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedVulcan.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SystemOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPU.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPU.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUDiagnosticInfoUnsupported.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUDiagnosticInfoUnsupported.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUOpenCLImageTypeLoweringPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURuntimeMetadata.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/CIInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/CaymanInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Disassembler
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Processors.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Defines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Intrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600TextureIntrinsicsReplacer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRLiveRanges.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInsertWaits.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SISchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SITypeRewriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VIInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VIInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARM.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARM.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA8.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVR.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVR.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRConfig.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/TODO.md
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/CppBackend
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/BitTracker.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/Hexagon.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrAlias.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRDF.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSystemInst.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFCopy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFCopy.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFGraph.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFLiveness.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFLiveness.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips64r6InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips64r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsDSPInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCondMov.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsEVAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsHazardSchedule.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsScheduleP5600.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFavorNonGenericAddrSpaces.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInferAddressSpaces.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPC.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPC.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCCState.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCLoopDataPrefetch.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/README_P9.txt
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/p9-instrs.txt
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonPasses.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonPasses.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/README.txt
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTDC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetMachineC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetRecip.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/LLVMBuild.txt
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/Makefile
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/README.txt
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Relooper.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Relooper.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssembly.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPEI.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86Operand.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFRelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachORelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86AsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FixupBWInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FixupSetCC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrAVX512.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrCompiler.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrMMX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrMPX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSSE.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSystem.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrVMX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrXOP.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Subtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86WinEHState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/FunctionImport.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/IPO.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/Inliner.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/Internalize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/LowerBitSets.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/CFGMST.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/SafeStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Float2Int.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GVN.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GVNHoist.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GuardWidening.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LICM.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoadCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SROA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Scalarizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Evaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/GlobalStatus.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InstructionNamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Local.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopVersioning.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Mem2Reg.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/MemorySSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/NameAnonFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SanitizerStats.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SplitModule.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/BugDriver.h
/freebsd-11-stable/contrib/llvm/tools/bugpoint/CrashDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ExtractFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/Miscompilation.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ToolRunner.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/bugpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Index.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Attr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Availability.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Decl.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Expr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExprOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LambdaCapture.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LocInfoType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Mangle.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TemplateName.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Type.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Attr.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AttrDocs.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PragmaKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Action.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Job.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Multilib.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Options.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexSymbol.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMapTypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Token.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CleanupInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/LocInfoType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Scope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Sema.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaLambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Regions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymExpr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Symbols.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/QualTypeNames.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/FixIt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/APValue.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Comment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Decl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Expr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Mangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/OpenMPClause.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Type.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Cuda.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Version.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDABuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Action.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Job.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tools.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Types.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Encoding.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Format.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatToken.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatToken.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/SortJavaScriptImports.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/Intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/altivec.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ammintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/arm_acle.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512cdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512erintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512pfintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlcdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/clflushoptintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cpuid.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/float.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ia32intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/immintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/inttypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/msa.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mwaitxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pkuintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tbmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/unwind.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/x86intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xopintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/CodegenNameGenerator.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/CommentToXML.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexBody.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexingAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexingContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPCaching.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/Parser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Scope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/QualTypeNames.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/FixIt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/driver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm/tools/llc/llc.cpp
/freebsd-11-stable/contrib/llvm/tools/lld
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBHostOS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ConstString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/History.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Listener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Logging.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/MappedHash.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Module.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamTee.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/OptionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/GoASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/JavaASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/LineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Process.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharedCluster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-defines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBlock.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBListener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/liblldb.exports
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Address.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ConnectionSharedMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ConstString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/CxaDemangle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataBufferHeap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataBufferMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataEncoder.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Event.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FastDemangle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FileSpecList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Listener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Log.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Logging.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Mangled.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Opcode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/RegisterValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Timer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/OptionParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoAST.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-s390x-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ArmUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Block.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Type.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoaderList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/OperatingSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/PathMappingList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Process.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Queue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TaskPool.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/ChildTarget/ChildTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.cpp
/freebsd-11-stable/contrib/llvm/tools/lli/OrcLazyJIT.h
/freebsd-11-stable/contrib/llvm/tools/lli/RemoteJITUtils.h
/freebsd-11-stable/contrib/llvm/tools/lli/lli.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-ar/llvm-ar.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-as/llvm-as.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageFilters.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageReport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageReport.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageViewOptions.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/RenderingSupport.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/gcov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/llvm-cov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffConsumer.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffLog.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/llvm-diff.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-dis/llvm-dis.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-extract/llvm-extract.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-link/llvm-link.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-lto/llvm-lto.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/BuiltinDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/BuiltinDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/CompilandDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/CompilandDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/EnumDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/EnumDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/FunctionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/FunctionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LLVMOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LinePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/LinePrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/OutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PdbYaml.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/PdbYaml.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypedefDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/TypedefDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/VariableDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/VariableDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YAMLOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/YAMLOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/llvm-pdbdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbdump/llvm-pdbdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/CodeView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/MachODumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/StreamWriter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/StreamWriter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Win64EHDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Win64EHDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
/freebsd-11-stable/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-stress/llvm-stress.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/AnalysisWrappers.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/BreakpointPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/NewPMDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/NewPMDriver.h
/freebsd-11-stable/contrib/llvm/tools/opt/opt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmWriterInst.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmWriterInst.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/Attributes.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenInstruction.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenRegisters.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenSchedule.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenTarget.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenTarget.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SearchableTableEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/module.modulemap
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/lib/clang/Makefile
/freebsd-11-stable/lib/clang/clang.build.mk
/freebsd-11-stable/lib/clang/clang.lib.mk
/freebsd-11-stable/lib/clang/clang.pre.mk
/freebsd-11-stable/lib/clang/freebsd_cc_version.h
/freebsd-11-stable/lib/clang/headers
/freebsd-11-stable/lib/clang/headers/Makefile
/freebsd-11-stable/lib/clang/include/AArch64GenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/AArch64GenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/AArch64GenAsmWriter1.inc
/freebsd-11-stable/lib/clang/include/AArch64GenCallingConv.inc
/freebsd-11-stable/lib/clang/include/AArch64GenDAGISel.inc
/freebsd-11-stable/lib/clang/include/AArch64GenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/AArch64GenFastISel.inc
/freebsd-11-stable/lib/clang/include/AArch64GenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/AArch64GenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/AArch64GenMCPseudoLowering.inc
/freebsd-11-stable/lib/clang/include/AArch64GenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/AArch64GenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/ARMGenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/ARMGenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/ARMGenCallingConv.inc
/freebsd-11-stable/lib/clang/include/ARMGenCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/ARMGenDAGISel.inc
/freebsd-11-stable/lib/clang/include/ARMGenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/ARMGenFastISel.inc
/freebsd-11-stable/lib/clang/include/ARMGenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/ARMGenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/ARMGenMCPseudoLowering.inc
/freebsd-11-stable/lib/clang/include/ARMGenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/ARMGenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/AttributesCompatFunc.inc
/freebsd-11-stable/lib/clang/include/Checkers.inc
/freebsd-11-stable/lib/clang/include/Makefile
/freebsd-11-stable/lib/clang/include/Makefile.depend
/freebsd-11-stable/lib/clang/include/MipsGenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/MipsGenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/MipsGenCallingConv.inc
/freebsd-11-stable/lib/clang/include/MipsGenCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/MipsGenDAGISel.inc
/freebsd-11-stable/lib/clang/include/MipsGenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/MipsGenFastISel.inc
/freebsd-11-stable/lib/clang/include/MipsGenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/MipsGenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/MipsGenMCPseudoLowering.inc
/freebsd-11-stable/lib/clang/include/MipsGenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/MipsGenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/PPCGenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/PPCGenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/PPCGenCallingConv.inc
/freebsd-11-stable/lib/clang/include/PPCGenCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/PPCGenDAGISel.inc
/freebsd-11-stable/lib/clang/include/PPCGenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/PPCGenFastISel.inc
/freebsd-11-stable/lib/clang/include/PPCGenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/PPCGenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/PPCGenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/PPCGenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/SparcGenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/SparcGenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/SparcGenCallingConv.inc
/freebsd-11-stable/lib/clang/include/SparcGenCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/SparcGenDAGISel.inc
/freebsd-11-stable/lib/clang/include/SparcGenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/SparcGenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/SparcGenMCCodeEmitter.inc
/freebsd-11-stable/lib/clang/include/SparcGenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/SparcGenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/X86GenAsmMatcher.inc
/freebsd-11-stable/lib/clang/include/X86GenAsmWriter.inc
/freebsd-11-stable/lib/clang/include/X86GenAsmWriter1.inc
/freebsd-11-stable/lib/clang/include/X86GenCallingConv.inc
/freebsd-11-stable/lib/clang/include/X86GenDAGISel.inc
/freebsd-11-stable/lib/clang/include/X86GenDisassemblerTables.inc
/freebsd-11-stable/lib/clang/include/X86GenFastISel.inc
/freebsd-11-stable/lib/clang/include/X86GenInstrInfo.inc
/freebsd-11-stable/lib/clang/include/X86GenRegisterInfo.inc
/freebsd-11-stable/lib/clang/include/X86GenSubtargetInfo.inc
/freebsd-11-stable/lib/clang/include/clang/AST
/freebsd-11-stable/lib/clang/include/clang/Basic/AttrHasAttributeImpl.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/AttrList.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticASTKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticAnalysisKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticCommentKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticCommonKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticDriverKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticFrontendKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticGroups.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticIndexName.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticLexKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticParseKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticSemaKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/DiagnosticSerializationKinds.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/arm_neon.inc
/freebsd-11-stable/lib/clang/include/clang/Config/config.h
/freebsd-11-stable/lib/clang/include/clang/Driver
/freebsd-11-stable/lib/clang/include/clang/Parse
/freebsd-11-stable/lib/clang/include/clang/Sema
/freebsd-11-stable/lib/clang/include/clang/Serialization
/freebsd-11-stable/lib/clang/include/lld
/freebsd-11-stable/lib/clang/include/llvm/Config/AsmParsers.def
/freebsd-11-stable/lib/clang/include/llvm/Config/AsmPrinters.def
/freebsd-11-stable/lib/clang/include/llvm/Config/Disassemblers.def
/freebsd-11-stable/lib/clang/include/llvm/Config/Targets.def
/freebsd-11-stable/lib/clang/include/llvm/Config/config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/llvm-config.h
/freebsd-11-stable/lib/clang/include/llvm/IR
/freebsd-11-stable/lib/clang/include/llvm/Support/DataTypes.h
/freebsd-11-stable/lib/clang/libclang
/freebsd-11-stable/lib/clang/libclanganalysis
/freebsd-11-stable/lib/clang/libclangarcmigrate
/freebsd-11-stable/lib/clang/libclangast
/freebsd-11-stable/lib/clang/libclangbasic
/freebsd-11-stable/lib/clang/libclangcodegen
/freebsd-11-stable/lib/clang/libclangdriver
/freebsd-11-stable/lib/clang/libclangedit
/freebsd-11-stable/lib/clang/libclangformat
/freebsd-11-stable/lib/clang/libclangfrontend
/freebsd-11-stable/lib/clang/libclangfrontendtool
/freebsd-11-stable/lib/clang/libclanglex
/freebsd-11-stable/lib/clang/libclangparse
/freebsd-11-stable/lib/clang/libclangrewrite
/freebsd-11-stable/lib/clang/libclangrewritefrontend
/freebsd-11-stable/lib/clang/libclangsema
/freebsd-11-stable/lib/clang/libclangserialization
/freebsd-11-stable/lib/clang/libclangstaticanalyzercheckers
/freebsd-11-stable/lib/clang/libclangstaticanalyzercore
/freebsd-11-stable/lib/clang/libclangstaticanalyzerfrontend
/freebsd-11-stable/lib/clang/libclangtoolingcore
/freebsd-11-stable/lib/clang/liblldb/Makefile
/freebsd-11-stable/lib/clang/liblldb/Makefile.depend
/freebsd-11-stable/lib/clang/liblldbAPI
/freebsd-11-stable/lib/clang/liblldbBreakpoint
/freebsd-11-stable/lib/clang/liblldbCommands
/freebsd-11-stable/lib/clang/liblldbCore
/freebsd-11-stable/lib/clang/liblldbDataFormatters
/freebsd-11-stable/lib/clang/liblldbExpression
/freebsd-11-stable/lib/clang/liblldbHostCommon
/freebsd-11-stable/lib/clang/liblldbHostFreeBSD
/freebsd-11-stable/lib/clang/liblldbHostPOSIX
/freebsd-11-stable/lib/clang/liblldbInitialization
/freebsd-11-stable/lib/clang/liblldbInterpreter
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_arm
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_arm64
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_i386
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_mips
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_mips64
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_ppc
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_ppc64
/freebsd-11-stable/lib/clang/liblldbPluginABISysV_x86_64
/freebsd-11-stable/lib/clang/liblldbPluginCXXItaniumABI
/freebsd-11-stable/lib/clang/liblldbPluginDisassemblerLLVM
/freebsd-11-stable/lib/clang/liblldbPluginDynamicLoaderPosixDYLD
/freebsd-11-stable/lib/clang/liblldbPluginDynamicLoaderStatic
/freebsd-11-stable/lib/clang/liblldbPluginExpressionParserClang
/freebsd-11-stable/lib/clang/liblldbPluginExpressionParserGo
/freebsd-11-stable/lib/clang/liblldbPluginInstructionARM
/freebsd-11-stable/lib/clang/liblldbPluginInstructionARM64
/freebsd-11-stable/lib/clang/liblldbPluginInstructionMIPS
/freebsd-11-stable/lib/clang/liblldbPluginInstructionMIPS64
/freebsd-11-stable/lib/clang/liblldbPluginInstrumentationRuntimeAddressSanitizer
/freebsd-11-stable/lib/clang/liblldbPluginJITLoaderGDB
/freebsd-11-stable/lib/clang/liblldbPluginLanguageCPlusPlus
/freebsd-11-stable/lib/clang/liblldbPluginLanguageObjC
/freebsd-11-stable/lib/clang/liblldbPluginMemoryHistoryASan
/freebsd-11-stable/lib/clang/liblldbPluginObjectContainerBSDArchive
/freebsd-11-stable/lib/clang/liblldbPluginObjectFileELF
/freebsd-11-stable/lib/clang/liblldbPluginObjectFileJIT
/freebsd-11-stable/lib/clang/liblldbPluginPlatformFreeBSD
/freebsd-11-stable/lib/clang/liblldbPluginPlatformGDB
/freebsd-11-stable/lib/clang/liblldbPluginProcessElfCore
/freebsd-11-stable/lib/clang/liblldbPluginProcessFreeBSD
/freebsd-11-stable/lib/clang/liblldbPluginProcessGDBRemote
/freebsd-11-stable/lib/clang/liblldbPluginProcessPOSIX
/freebsd-11-stable/lib/clang/liblldbPluginProcessUtility
/freebsd-11-stable/lib/clang/liblldbPluginScriptInterpreterNone
/freebsd-11-stable/lib/clang/liblldbPluginSymbolFileDWARF
/freebsd-11-stable/lib/clang/liblldbPluginSymbolFileSymtab
/freebsd-11-stable/lib/clang/liblldbPluginSymbolVendorELF
/freebsd-11-stable/lib/clang/liblldbPluginUnwindAssemblyInstEmulation
/freebsd-11-stable/lib/clang/liblldbPluginUnwindAssemblyX86
/freebsd-11-stable/lib/clang/liblldbSymbol
/freebsd-11-stable/lib/clang/liblldbTarget
/freebsd-11-stable/lib/clang/liblldbUtility
/freebsd-11-stable/lib/clang/libllvm
/freebsd-11-stable/lib/clang/libllvmaarch64asmparser
/freebsd-11-stable/lib/clang/libllvmaarch64asmprinter
/freebsd-11-stable/lib/clang/libllvmaarch64codegen
/freebsd-11-stable/lib/clang/libllvmaarch64desc
/freebsd-11-stable/lib/clang/libllvmaarch64disassembler
/freebsd-11-stable/lib/clang/libllvmaarch64info
/freebsd-11-stable/lib/clang/libllvmaarch64utils
/freebsd-11-stable/lib/clang/libllvmanalysis
/freebsd-11-stable/lib/clang/libllvmarmasmparser
/freebsd-11-stable/lib/clang/libllvmarmasmprinter
/freebsd-11-stable/lib/clang/libllvmarmcodegen
/freebsd-11-stable/lib/clang/libllvmarmdesc
/freebsd-11-stable/lib/clang/libllvmarmdisassembler
/freebsd-11-stable/lib/clang/libllvmarminfo
/freebsd-11-stable/lib/clang/libllvmasmparser
/freebsd-11-stable/lib/clang/libllvmasmprinter
/freebsd-11-stable/lib/clang/libllvmbitreader
/freebsd-11-stable/lib/clang/libllvmbitwriter
/freebsd-11-stable/lib/clang/libllvmcodegen
/freebsd-11-stable/lib/clang/libllvmcore
/freebsd-11-stable/lib/clang/libllvmdebuginfodwarf
/freebsd-11-stable/lib/clang/libllvmdebuginfopdb
/freebsd-11-stable/lib/clang/libllvmexecutionengine
/freebsd-11-stable/lib/clang/libllvminstcombine
/freebsd-11-stable/lib/clang/libllvminstrumentation
/freebsd-11-stable/lib/clang/libllvminterpreter
/freebsd-11-stable/lib/clang/libllvmipo
/freebsd-11-stable/lib/clang/libllvmirreader
/freebsd-11-stable/lib/clang/libllvmlibdriver
/freebsd-11-stable/lib/clang/libllvmlinker
/freebsd-11-stable/lib/clang/libllvmlto
/freebsd-11-stable/lib/clang/libllvmmc
/freebsd-11-stable/lib/clang/libllvmmcdisassembler
/freebsd-11-stable/lib/clang/libllvmmcjit
/freebsd-11-stable/lib/clang/libllvmmcparser
/freebsd-11-stable/lib/clang/libllvmminimal
/freebsd-11-stable/lib/clang/libllvmminimal/Makefile
/freebsd-11-stable/lib/clang/libllvmmipsasmparser
/freebsd-11-stable/lib/clang/libllvmmipsasmprinter
/freebsd-11-stable/lib/clang/libllvmmipscodegen
/freebsd-11-stable/lib/clang/libllvmmipsdesc
/freebsd-11-stable/lib/clang/libllvmmipsdisassembler
/freebsd-11-stable/lib/clang/libllvmmipsinfo
/freebsd-11-stable/lib/clang/libllvmmirparser
/freebsd-11-stable/lib/clang/libllvmobjcarcopts
/freebsd-11-stable/lib/clang/libllvmobject
/freebsd-11-stable/lib/clang/libllvmoption
/freebsd-11-stable/lib/clang/libllvmorcjit
/freebsd-11-stable/lib/clang/libllvmpasses
/freebsd-11-stable/lib/clang/libllvmpowerpcasmparser
/freebsd-11-stable/lib/clang/libllvmpowerpcasmprinter
/freebsd-11-stable/lib/clang/libllvmpowerpccodegen
/freebsd-11-stable/lib/clang/libllvmpowerpcdesc
/freebsd-11-stable/lib/clang/libllvmpowerpcdisassembler
/freebsd-11-stable/lib/clang/libllvmpowerpcinfo
/freebsd-11-stable/lib/clang/libllvmprofiledata
/freebsd-11-stable/lib/clang/libllvmruntimedyld
/freebsd-11-stable/lib/clang/libllvmscalaropts
/freebsd-11-stable/lib/clang/libllvmselectiondag
/freebsd-11-stable/lib/clang/libllvmsparcasmparser
/freebsd-11-stable/lib/clang/libllvmsparcasmprinter
/freebsd-11-stable/lib/clang/libllvmsparccodegen
/freebsd-11-stable/lib/clang/libllvmsparcdesc
/freebsd-11-stable/lib/clang/libllvmsparcdisassembler
/freebsd-11-stable/lib/clang/libllvmsparcinfo
/freebsd-11-stable/lib/clang/libllvmsupport
/freebsd-11-stable/lib/clang/libllvmsymbolize
/freebsd-11-stable/lib/clang/libllvmtablegen
/freebsd-11-stable/lib/clang/libllvmtarget
/freebsd-11-stable/lib/clang/libllvmtransformutils
/freebsd-11-stable/lib/clang/libllvmvectorize
/freebsd-11-stable/lib/clang/libllvmx86asmparser
/freebsd-11-stable/lib/clang/libllvmx86asmprinter
/freebsd-11-stable/lib/clang/libllvmx86codegen
/freebsd-11-stable/lib/clang/libllvmx86desc
/freebsd-11-stable/lib/clang/libllvmx86disassembler
/freebsd-11-stable/lib/clang/libllvmx86info
/freebsd-11-stable/lib/clang/libllvmx86utils
/freebsd-11-stable/lib/clang/lldb.lib.mk
/freebsd-11-stable/lib/clang/lldb.pre.mk
/freebsd-11-stable/lib/clang/llvm.build.mk
/freebsd-11-stable/lib/clang/llvm.pre.mk
/freebsd-11-stable/lib/libc++/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/asan-preinit/Makefile
/freebsd-11-stable/lib/libclang_rt/asan/Makefile
/freebsd-11-stable/lib/libclang_rt/asan_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/asan_dynamic/Makefile
/freebsd-11-stable/lib/libclang_rt/include/Makefile
/freebsd-11-stable/lib/libclang_rt/profile/Makefile
/freebsd-11-stable/lib/libclang_rt/safestack/Makefile
/freebsd-11-stable/lib/libclang_rt/stats
/freebsd-11-stable/lib/libclang_rt/stats_client
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone_cxx/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/release/packages/clang.ucl
/freebsd-11-stable/release/packages/lld.ucl
/freebsd-11-stable/release/packages/lldb.ucl
/freebsd-11-stable/share/mk/local.gendirdeps.mk
/freebsd-11-stable/share/mk/src.opts.mk
/freebsd-11-stable/sys/sys/param.h
pseudo/clang/Makefile.depend
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/tools/build/options/WITHOUT_LLD
/freebsd-11-stable/tools/build/options/WITH_LLD
/freebsd-11-stable/usr.bin/clang/Makefile
/freebsd-11-stable/usr.bin/clang/Makefile.inc
/freebsd-11-stable/usr.bin/clang/bugpoint/Makefile
/freebsd-11-stable/usr.bin/clang/bugpoint/Makefile.depend
/freebsd-11-stable/usr.bin/clang/clang-format/Makefile
/freebsd-11-stable/usr.bin/clang/clang-format/Makefile.depend
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile.depend
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile.depend.host
/freebsd-11-stable/usr.bin/clang/clang.prog.mk
/freebsd-11-stable/usr.bin/clang/clang/Makefile
/freebsd-11-stable/usr.bin/clang/clang/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llc/Makefile
/freebsd-11-stable/usr.bin/clang/llc/Makefile.depend
/freebsd-11-stable/usr.bin/clang/lld
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/Makefile.depend
/freebsd-11-stable/usr.bin/clang/lli/Makefile
/freebsd-11-stable/usr.bin/clang/lli/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-ar/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-ar/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-as/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-as/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-bcanalyzer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-bcanalyzer/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-cov/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cov/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-cxxdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cxxdump/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-diff/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-diff/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-dis/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-dis/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-dwarfdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-dwarfdump/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-extract/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-extract/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-link/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-link/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-lto/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-lto/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-mc/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-mc/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-nm/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-nm/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-objdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objdump/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-pdbdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbdump/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-profdata/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-profdata/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-rtdyld/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-rtdyld/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile.depend
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile.depend.host
/freebsd-11-stable/usr.bin/clang/llvm.prog.mk
/freebsd-11-stable/usr.bin/clang/opt/Makefile
/freebsd-11-stable/usr.bin/clang/opt/Makefile.depend
306487 30-Sep-2016 kib

MFC r306261:
Add proccontrol(1).

MFC r306281 (by bdrewery):
DIRDEPS_BUILD: Connect new directories.

302408 08-Jul-2016 gjb

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

Additional commits post-branch will follow.

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


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

Add clang-format under WITH_CLANG_EXTRAS.

Reviewed by: dim
Approved by: re (gjb)
Sponsored by: EMC / Isilon Storage Division
Differential Revision: https://reviews.freebsd.org/D6856


301469 05-Jun-2016 bdrewery

DIRDEPS_BUILD: Fix bootstrap-tools not handling CCACHE_DIR properly.

CCACHE_DIR needs to be resolved to its full path before processing
legacy.meta or meta mode may see the change to the stats file.

Sponsored by: EMC / Isilon Storage Division


301283 03-Jun-2016 bdrewery

DIRDEPS_BUILD: Connect new directories and update dependencies.

Sponsored by: EMC / Isilon Storage Division


300807 26-May-2016 bdrewery

DIRDEPS_BUILD: Fix and hookup rescue/rescue to the build.

Sponsored by: EMC / Isilon Storage Division


300798 26-May-2016 bdrewery

DIRDEPS_BUILD: Build the kernel in the same place as buildkernel would.

Sponsored by: EMC / Isilon Storage Division


300795 26-May-2016 bdrewery

WITH_META_MODE: Move the kernel support to kern.pre.mk.

This allows using META_MODE directly from the kernel build directory.
This also allows removing a hack from the DIRDEPS_BUILD kernel target.

Sponsored by: EMC / Isilon Storage Division


300138 18-May-2016 avos

targets/Makefile: fix a typo (derrived -> derived).


298098 16-Apr-2016 gjb

Final pass through bogus svn:mergeinfo removal.

Note, paths part of 'contrib' were left alone for now.

Sponsored by: The FreeBSD Foundation


297946 14-Apr-2016 bdrewery

Simplify building libpam and fix libpam.a not containing the modules since r284345.

The change in r284345 moved the creation of openpam_static_modules.o to
lib/libpam/static_modules but never managed to get them into libpam.a.

Move this logic to lib/libpam/static_libpam and have it create a static
library for libpam.a The main lib/libpam/libpam will only create a
shared library. No redundancy in compilation or installation exists
in this solution.

This avoids requiring a pass with -D_NO_LIBPAM_SO_YET.

Sponsored by: EMC / Isilon Storage Division


297442 31-Mar-2016 bdrewery

hosttools: Trim unneeded directories.

These should only be build tools that are in various Makefile.depend
as host dependencies. Anything toolchain related is handled by
toolchain and bootstrap-tools currently.

Sponsored by: EMC / Isilon Storage Division


297433 30-Mar-2016 bdrewery

show-valid-targets: Indent each target 2 spaces.

Sponsored by: EMC / Isilon Storage Division


297430 30-Mar-2016 bdrewery

show-valid-targets: Organize all targets by the all_machine_list.

Sponsored by: EMC / Isilon Storage Division


297428 30-Mar-2016 bdrewery

Move hosttools to Makefile.depend.host so it shows under host targets in show-valid-targets.

Sponsored by: EMC / Isilon Storage Division


297427 30-Mar-2016 bdrewery

show-valid-targets: Show host targets and also order all of the targets.

Sponsored by: EMC / Isilon Storage Division


297154 21-Mar-2016 bdrewery

DIRDEPS_BUILD: Update dependencies.

Sponsored by: EMC / Isilon Storage Division


296700 11-Mar-2016 bdrewery

META_MODE: Simplify the META_COOKIE handling to use .USE/.USEBEFORE.

Extend it to other cases of meta mode cookies so they get the proper rm
cookie behavior when a .meta file detects it needs to rebuild and fails.

Sponsored by: EMC / Isilon Storage Division


296695 11-Mar-2016 bdrewery

DIRDEPS_BUILD: Fix staging of share/sendmail and share/examples.

Sponsored by: EMC / Isilon Storage Division


296587 09-Mar-2016 bdrewery

DIRDEPS_BUILD: Connect MK_TESTS.

Sponsored by: EMC / Isilon Storage Division


296550 08-Mar-2016 bdrewery

DIRDEPS_BUILD: Update clang dependencies after r296417.

Sponsored by: EMC / Isilon Storage Division


296417 05-Mar-2016 dim

Upgrade our copies of clang, llvm, lldb and compiler-rt to 3.8.0
release.

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

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

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

Relnotes: yes


296403 04-Mar-2016 bdrewery

DIRDEPS_BUILD: Connect ofed.

Sponsored by: EMC / Isilon Storage Division


296127 26-Feb-2016 bdrewery

Update dependencies.

Sponsored by: EMC / Isilon Storage Division


296120 26-Feb-2016 bdrewery

Follow-up r295991: Only allow 'make destroy*' to include bsd.obj.mk.

Sponsored by: EMC / Isilon Storage Division


296047 25-Feb-2016 oshogbo

Convert casperd(8) daemon to the libcasper.
After calling the cap_init(3) function Casper will fork from it's original
process, using pdfork(2). Forking from a process has a lot of advantages:
1. We have the same cwd as the original process.
2. The same uid, gid and groups.
3. The same MAC labels.
4. The same descriptor table.
5. The same routing table.
6. The same umask.
7. The same cpuset(1).
From now services are also in form of libraries.
We also removed libcapsicum at all and converts existing program using Casper
to new architecture.

Discussed with: pjd, jonathan, ed, drysdale@google.com, emaste
Partially reviewed by: drysdale@google.com, bdrewery
Approved by: pjd (mentor)
Differential Revision: https://reviews.freebsd.org/D4277


295992 24-Feb-2016 bdrewery

DIRDEPS_BUILD: Allow destroy-(arch|host|stage) from top-level.

Sponsored by: EMC / Isilon Storage Division


295991 24-Feb-2016 bdrewery

DIRDEPS_BUILD: Allow 'make destroy*' to work from top-level.

Sponsored by: EMC / Isilon Storage Division


295990 24-Feb-2016 bdrewery

FAST_DEPEND: Skip 'make depend' for buildworld and kernel since it is auto-ran now.

Sponsored by: EMC / Isilon Storage Division


295979 24-Feb-2016 bdrewery

DIRDEPS_BUILD: Add some missing build dependencies for kerberos5.

Sponsored by: EMC / Isilon Storage Division


295945 24-Feb-2016 sobomax

Obsolete mkulzma(8) and geom_uncompress(4), their functionality
is now provided by mkuzip(8) and geom_uzip(4) respectively.

MFC after: 1 month


295681 16-Feb-2016 bdrewery

DIRDEPS_BUILD: Hookup CLANG_EXTRAS.

Sponsored by: EMC / Isilon Storage Division


295650 16-Feb-2016 bdrewery

DIRDEPS_BUILD: Update dependencies.

Sponsored by: EMC / Isilon Storage Division


295398 08-Feb-2016 emaste

Restore kgzldr on i386 only

I previously disconnected kgzdr based on a misunderstanding.

I'd still like to transition to supporting only the loader(8)-based
boot path for handling compressed kernels, but that can follow the
standard deprecation procedure.

This reverts r291113.

Requested by: dteske


293287 07-Jan-2016 bdrewery

Add in DIRDEPS_BUILD support.

Sponsored by: EMC / Isilon Storage Division


291973 08-Dec-2015 bdrewery

local.meta.sys.mk already defines TARGET_ARCHES_arm


291946 07-Dec-2015 bdrewery

Garbage collect removed directories.

Sponsored by: EMC / Isilon Storage Division


291726 03-Dec-2015 bdrewery

rescue/rescue does not yet build in meta mode.


291717 03-Dec-2015 bdrewery

DIRDEPS_BUILD: Connect usr.sbin/camdd

Sponsored by: EMC / Isilon Storage Division


291640 02-Dec-2015 bdrewery

META MODE: Connect MK_NAND directories.

Sponsored by: EMC / Isilon Storage Division


291627 02-Dec-2015 bdrewery

Fully connect cddl/usr.sbin/plockstat.

There seems to be no reason to keep this so private.

Also add missing optional MK_CDDL files.

Sponsored by: EMC / Isilon Storage Division


291563 01-Dec-2015 bdrewery

META MODE: Update dependencies with 'the-lot' and add missing directories.

This is not properly respecting WITHOUT or ARCH dependencies in target/.
Doing so requires a massive effort to rework targets/ to do so. A
better approach will be to either include the SUBDIR Makefiles directly
and map to DIRDEPS or just dynamically lookup the SUBDIR. These lose
the benefit of having a userland/lib, userland/libexec, etc, though and
results in a massive package. The current implementation of targets/ is
very unmaintainable.

Currently rescue/rescue and sys/modules are still not connected.

Sponsored by: EMC / Isilon Storage Division


291562 01-Dec-2015 bdrewery

META MODE: Fix userland/cddl.

MK_CTF controls whether ctfmerge is ran against the binaries, not
whether CTF tools should be built.

Sponsored by: EMC / Isilon Storage Division


291561 01-Dec-2015 bdrewery

META MODE: Rework [bootstrapped] tools PATH support.

- Support more of the toolchain from TOOLSDIR.
- This also improves 'make bootstrap-tools' to pass, for example,
AS=/usr/bin/as to Makefile.inc1, which will tell cross-tools to use
external toolchain support and avoid building things we won't be using
in the build.
- Always set the PATH to contain the staged TOOLSDIR directories when
not building the bootstrap targets.

The previous version was only setting this at MAKE.LEVEL==0 and if the
TOOLSDIR existed. Both of these prevented using staged tools that were
built during the build though as DIRDEPS with .host dependencies, such
as the fix for needing usr.bin/localedef.host in r291311.
This is not a common tool so we must build and use it during the build,
and need to be prepared to change PATH as soon as it appears.

This should also fix the issue of host dependencies disappearing from
Makefile.depend and then reappearing due to the start of the fresh build not
having the directory yet, resulting in the tools that were built not actually
being used.
- Only use LEGACY_TOOLS while building in Makefile.inc1. After r291317
and r291546 there is no need to add LEGACY_TOOLS into the PATH for
the pseudo/targets/toolchain build.
- Because the pseudo/targets/toolchain will now build its own
[clang-]tblgen, the special logic in clang.build.mk is no longer needed.
- LEGACY_TOOLS is no longer used outside of targets/pseudo/bootstrap-tools
so is no longer passed into the environment in its build.

Sponsored by: EMC / Isilon Storage Division


291546 01-Dec-2015 bdrewery

META MODE: For bootstrap-tools, don't let Makefile.inc1 build any of the
toolchain.

This change prevents building of [clang-]tblgen, which is unneeded due
to already being a host dependency where needed for
targets/pseudo/toolchain.

Sponsored by: EMC / Isilon Storage Division


291540 30-Nov-2015 bdrewery

META MODE: Fix bootstrap-tools after r291349.

Now that OBJTOP is assumed to be proper, it needs to be overridden for
the bootstrap-tools phase to ensure it is not kept as the top-level
OBJTOP. Otherwise the libraries were not found during the
bootstrap-tools phase.

Sponsored by: EMC / Isilon Storage Division


291321 25-Nov-2015 bdrewery

META MODE: Fix 'make bootstrap-tools'.

The main problem was bitrot after elftoolchain being swapped in for the
GNU toolchain.

This also reworks how the list of 'host allowed' libraries is determined
to only allow INTERNALLIBs, which is needed for libelftc to come in.

For usr.bin/readelf use the same hack, as libelf and libdward, to bring in
the needed sys/ headers for host builds. This has not yet been a problem due
to readelf not being built as a host tool in buildworld. This is possible
in the meta build though when building the toolchain.

Sponsored by: EMC / Isilon Storage Division


291319 25-Nov-2015 bdrewery

META MODE: Add more hosttools needed pre-universe.

Sponsored by: EMC / Isilon Storage Division


291317 25-Nov-2015 bdrewery

META MODE: Need to include the LEGACY_TOOLS directories into PATH.

This is just as Makefile.inc1 does it for these phases. Otherwise some
of the build tools are not found and used properly, such as 'make-roken'
in the kerberos5 build on older releases.

Sponsored by: EMC / Isilon Storage Division


291311 25-Nov-2015 bdrewery

META MODE: Fix 'make the-lot' with recent locale changes

Sponsored by: EMC / Isilon Storage Division


291309 25-Nov-2015 bdrewery

META MODE: Avoid creating TESTS directories for bootstrap.

Sponsored by: EMC / Isilon Storage Division


291308 25-Nov-2015 bdrewery

META MODE: Don't override DESTDIR to the default when building the toolchain.

For this case, the normal META MODE staging logic should be used. The
BSARGS having DESTDIR= is due to Makefile.inc1 overriding DESTDIR to
something when appropriate. For the toolchain stage META MODE is in charge of
it, not Makefile.inc1.

At least include/, if staging it to the host stagedir, was impacted from
this. Staging of include.host is not yet done.

Sponsored by: EMC / Isilon Storage Division


291307 25-Nov-2015 bdrewery

META MODE: Prefer INSTALL=tools/install.sh to lessen the need for xinstall.host.

This both avoids some dependencies on xinstall.host and allows
bootstrapping on older releases to work due to lack of at least 'install -l'
support.

Sponsored by: EMC / Isilon Storage Division


291113 20-Nov-2015 emaste

Disconnect unused kgzldr from sys/boot/i386

Sponsored by: The FreeBSD Foundation


291086 19-Nov-2015 bdrewery

Remove unsupported ia64.

Sponsored by: EMC / Isilon Storage Division


290719 12-Nov-2015 bdrewery

META MODE: Don't set schg flags in the stagedir for distrib-dirs.

This recently started setting /var/empty to schg after r290628.

Sponsored by: EMC / Isilon Storage Division


290624 09-Nov-2015 bdrewery

Connect nmtree


290623 09-Nov-2015 bdrewery

Rename usr.sbin/mtree to usr.sbin/fmtree since it is not what /usr/sbin/mtree
actually is (which is usr.sbin/nmtree).

This has tricked me numerous times.


290494 07-Nov-2015 bapt

Improve collation string and locales support

Merge collation support from Illumos and DragonflyBSD.

Locales are now generated with the new localedef(1) tool from CLDR POSIX files.
The generated files are now identified as "BSD 1.0" format.

The libc now only read "BSD 1.0" locales definitions, all other version will be
set to "C"
The localedef(1) tool has been imported from Illumos and modified to use tree(3)
instead of the CDDL avl(3)
A set of tool created by edwin@ and extended by marino@ for dragonfly has been
added to be able to generate locales and the Makefiles from the vanilla CLDR
unicode databases + a universal UTF-8 charmap (by marino@)
Update the locales to unicode v27
Given our regex(3) does not support multibyte (yet) it has been forced to always
use locale C
Remove now unused colldef(1) and mklocale(1)
Finish implementing the numeric BSD extension for ctypes
The number of supported locales has grown from 175 to 250 locales. Among the new
locales: 6 Arabic locales (AE EG JO MA QA SA), Different variations of spanish
locales.
Added new 3 components locales for mn_Cyrl_MN, sr_Cyrl_RS sr_Latn_RS,
zh_Hans_CN, zh_Hant_HK and zh_Hant_TW. Some aliases has been for 2 components
version when possible.

Thanks: Garrett D'Amore (Illumos) who made sure all his work was done under
BSD license!, Edwin Groothuis (edwin@) for the work he made on tools to be able
to generate locales definition usable in freebsd sources out of vanilla CLDR
definitions, John Marino (DragonflyBSD) who first merge the Illumos work into
Dragonfly and spent hours tracking down bugs.


290113 28-Oct-2015 bdrewery

Connect mpsutil for META MODE.


290102 28-Oct-2015 bapt

Merge mpsutil(8) branch

mpsutil(8)/mprutil(8) are new utilities for managing LSI Fusion-MPT
2/3 controllers (mps(4) and mpr(4))

For now only informational commands have been implemented.

This utility has been written by scottl@ [1] and polished by myself[2]

Submitted by: scottl
Discussed with: scottl
Relnotes: yes
Sponsored by: Netflix [1]
Sponsored by: Gandi.net [2]


289730 22-Oct-2015 bdrewery

Remove more disconnected libgpib items missed in r276214.

Sponsored by: EMC / Isilon Storage Division


288943 06-Oct-2015 dim

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

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

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

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

Exp-run: antoine
Relnotes: yes


288515 02-Oct-2015 bdrewery

All the games moved to usr.bin/ in r288485.

Sponsored by: EMC / Isilon Storage Division


288514 02-Oct-2015 bdrewery

Remove defunct games removed in r279150.

Sponsored by: EMC / Isilon Storage Division


288462 01-Oct-2015 bdrewery

Don't create cookie until the command is all finished, it or the commands
after may fail.

Sponsored by: EMC / Isilon Storage Division


288339 28-Sep-2015 avg

remove unused sgsmsg utility (originally imported from opensolaris)

MFC after: 25 days


288251 26-Sep-2015 bdrewery

META_MODE: Make it easier to keep the bootstrap-tools args in sync.

Sponsored by: EMC / Isilon Storage Division


288226 25-Sep-2015 bdrewery

META_MODE: Remove DEP_RELDIR from Makefile.depend files.

This has not been needed since r284171 in projects/bmake.

Sponsored by: EMC / Isilon Storage Division


288225 25-Sep-2015 bdrewery

Add missing SVN keywords.

Sponsored by: EMC / Isilon Storage Division


287989 19-Sep-2015 bdrewery

Connect sesutil(1) and numactl(1) for META_MODE.

Sponsored by: EMC / Isilon Storage Division


286730 13-Aug-2015 emaste

Roll WITHOUT_ELFTOOLCHAIN_TOOLS into WITHOUT_TOOLCHAIN

The option was added only to ease the transition from GNU Binutils to
ELF Tool Chain tools, and that process is now complete (for the viable
replacements). Noting the removal in UPDATING is sufficient as we have
not shipped a release with the option.

Reviewed by: brooks
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D3240


285081 03-Jul-2015 sjg

Updated depends


284482 16-Jun-2015 sjg

Support WITH_LLDB

Remove entries from userland/gnu that conflict with toolchain


284424 15-Jun-2015 sjg

Pay attention to MK_ELFTOOLCHAIN_TOOLS so we build the desired tools.


284369 14-Jun-2015 sjg

We cannot build makewhatis and mandoc


284345 13-Jun-2015 sjg

Add META_MODE support.

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

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

Differential Revision: D2796
Reviewed by: brooks imp


284293 12-Jun-2015 sjg

Reorganize targets/pseudo/userland

This target mainly exists to help check things build.
Eventually targets that build real packages or images will be more
important.
As such move the pseudo targets that only exist for the benefit of
'userland' to under it.


283688 29-May-2015 sjg

Adapt based on whether 'mk' wrapper is used.

If 'mk' is used we can expect SB_NAME to be set.
Use 'mk' versions of command suggestions.
Otherwise 'make' version - a bit more cumbersom.


283595 27-May-2015 sjg

Merge sync of head


275339 30-Nov-2014 sjg

Renamed pkgs/ targets/


275282 30-Nov-2014 sjg

Rename pkgs to more generic targets (that's what they are)

Reviewed by: marcel


274902 23-Nov-2014 sjg

Leverage dirdeps.mk by tweaking _DIRDEP_USE_LEVEL
so we can have a 2nd stage of dependencies computed in parallel.

Reviewed by: marcel


274694 19-Nov-2014 sjg

Updated/new dependencies


270164 19-Aug-2014 sjg

Merge head from 7/28


270163 19-Aug-2014 sjg

After we finish using src/Makefile.inc1 to bootstrap legacy tools
use it to build the toolchain we actually want.


266264 16-May-2014 sjg

Use Makefile.depend.host for bootstrap-tools so it automatically builds
for host


266230 16-May-2014 sjg

Use BTOOLSDIR


265801 10-May-2014 sjg

Use src.opts.mk


265800 10-May-2014 sjg

Toolchains are a pain - especially to bootstrap
rather than waste time optimizing for a rare? event,
leverage the targets in src/Makefile.inc1


265799 10-May-2014 sjg

Prep stage tree for tests


265373 05-May-2014 sjg

Leverage bsd.opts.mk


265330 04-May-2014 sjg

We can now leverage bsd.opts.mk to use MK_* to control what we build.


256698 17-Oct-2013 sjg

New/updated dependencies


256419 13-Oct-2013 sjg

Updated dependencies


256401 12-Oct-2013 sjg

Report the number of dirdeps so we can track progress.


248540 20-Mar-2013 sjg

Add newline before for better formatting


248402 17-Mar-2013 sjg

Add kernel and toolchains to the-lot


248346 15-Mar-2013 sjg

Check if we already have all:


248288 14-Mar-2013 sjg

Build kernel


248077 08-Mar-2013 sjg

Always report elapsed time


247894 06-Mar-2013 sjg

Use pkgs/pseudo/stage to run mtree against STAGE_OBJTOP


246871 16-Feb-2013 sjg

target to build toolchain


246868 16-Feb-2013 sjg

Updated dependencies


242818 09-Nov-2012 sjg

Add pkgs/Makefile* and pkgs/pseudo/* so folk can test drive.