History log of /freebsd-11-stable/contrib/llvm-project/llvm/lib/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
370036 25-Jun-2021 dim

Disable llvm generating 128-bit multiply libcalls on 32-bit ARM

Merge commit 789708617d20 from llvm git (Koutheir Attouchi):

Do not generate calls to the 128-bit function __multi3() on 32-bit ARM

Re-applying this patch after bots failures. Should be fine now.

The function __multi3() is undefined on 32-bit ARM, so a call to it should
never be emitted. Instead, plain instructions need to be generated to
perform 128-bit multiplications.

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

Reported by: mmel

(cherry picked from commit 014a40f8f643a5dad6a6ba5c4bf6ea5d4f445fe6)

Git Hash: a35615900cf525d1b4318837ccd4ce32fdf0fe5c
Git Author: dim@FreeBSD.org

368974 08-Jan-2021 dim

MFC llvm fixes for building ceph on powerpc

Merge commit 8f5e3c74b from llvm git (by Teresa Johnson):

[PowerPC] Fix compile time issue in recursive CTR analysis code

Summary:
Avoid re-examining operands on recursive walk looking for CTR.
This was causing huge compile time after some earlier optimization
created a large expression.

The start of the expression (created by IndVarSimplify) looked like:

%469 = lshr i64 trunc (i128 xor (i128 udiv (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 ptrtoint (i8 @_ZN4absl13hash_internal13CityHashState5kSeedE to i64), i64 120) to i128), i128 8192506886679785011), i128 64), i128 mul (i128 zext (i64 add (i64 ptrtoint (i8 @_ZN4absl13hash_internal13CityHashState5kSeedE to i64), i64 120) to i128), i128 8192506886679785011)) to i64), i64 45) to i128), i128 8192506886679785011), i128 64), i128 mul (i128 zext (i64 add (i64 trunc (i128 xor (i128 lshr (i128 mul (i128 zext (i64 add (i64 ptrtoint (i8 @_ZN4absl13hash_internal13CityHashState5kSeedE to i64), i64 120) to i128), i128 8192506886679785011), i128 64), i128 mul (i128 zext (i64 add (i64 ptrtoint (i8 @_ZN4absl13hash_internal13CityHashState5kSeedE to i64), i64 120) to i128), i128 8192506886679785011)) to i64), i64 45) to i128), ...

with the _ZN4absl13hash_internal13CityHashState5kSeedE referenced many times.

Reviewers: hfinkel

Subscribers: nemanjai, hiraditya, kbarton, jsji, shchenz, llvm-commits

Tags: #llvm

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

Merge commit 4f568fbd2 from llvm git (by Nemanja Ivanovic):

[PowerPC] Do not emit HW loop when TLS var accessed in PHI of loop exit

If any PHI nodes in loop exit blocks have incoming values from the
loop that are accesses of TLS variables with local dynamic or general
dynamic TLS model, the address will be computed inside the loop. Since
this includes a call to __tls_get_addr, this will in turn cause the
CTR loops verifier to complain.
Disable CTR loops in such cases.

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

This should fix building ceph 12.2.12 on powerpc64, powerpc, powerpcspe
and powerpc64le.

Requested by: pkubaj

(cherry picked from commit 543478be758fdfbf050eca5b58b7c74ba51b9175)

Git Hash: 15b3e1e51cb59f69e3971e6c4ad010d27325a2d9
Git Author: dim@FreeBSD.org

367603 11-Nov-2020 dim

MFC r367485:

Merge commit 354d3106c from llvm git (by Kai Luo):

[PowerPC] Skip combining (uint_to_fp x) if x is not simple type

Current powerpc64le backend hits
```
Combining: t7: f64 = uint_to_fp t6
llc: llvm-project/llvm/include/llvm/CodeGen/ValueTypes.h:291:
llvm::MVT llvm::EVT::getSimpleVT() const: Assertion `isSimple() &&
"Expected a SimpleValueType!"' failed.
```
This patch fixes it by skipping combination if `t6` is not simple
type.
Fixed https://bugs.llvm.org/show_bug.cgi?id=47660.

Reviewed By: #powerpc, steven.zhang

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

This should fix the llvm assertion mentioned above when building the
following ports for powerpc64le:

* audio/traverso
* databases/percona57-pam-for-mysql
* databases/percona57-server
* emulators/citra
* emulators/citra-qt5
* games/7kaa
* graphics/dia
* graphics/mandelbulber
* graphics/pcl-pointclouds
* net-p2p/libtorrent-rasterbar
* textproc/htmldoc

Requested by: pkubaj

366452 05-Oct-2020 dim

Merge commit 0fac1c191 from llvm git (by Craig Topper):

[X86] Allow Yz inline assembly constraint to choose ymm0 or zmm0 when
avx/avx512 are enabled and type is 256 or 512 bits

gcc supports selecting ymm0/zmm0 for the Yz constraint when used with
256 or 512 bit vector types.

Fixes PR45806

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

This should fix 'fatal error: error in backend: Cannot select' errors if
assertions are disabled, or 'Assertion failed: (isVector() && "Invalid
vector type!"), function getVectorNumElements, file
/usr/src/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.h,
line 276.', when building the audio/lsp-plugins-lv2 port.

Direct commit to stable/{11,12} since head has clang 11.0.0, which
already includes this fix.

Reported by: yuri
PR: 232911

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
Analysis/LazyValueInfo.cpp
Analysis/ValueLattice.cpp
CodeGen/BranchFolding.cpp
CodeGen/MachineSink.cpp
CodeGen/RDFGraph.cpp
CodeGen/RDFLiveness.cpp
CodeGen/RDFRegisters.cpp
CodeGen/SelectionDAG/DAGCombiner.cpp
CodeGen/SelectionDAG/FastISel.cpp
CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
CodeGen/SelectionDAG/TargetLowering.cpp
DebugInfo/CodeView/MergingTypeTableBuilder.cpp
DebugInfo/CodeView/TypeStreamMerger.cpp
DebugInfo/PDB/Native/TpiStreamBuilder.cpp
LTO/LTO.cpp
MC/MCObjectFileInfo.cpp
Target/AArch64/AArch64.td
Target/AArch64/AArch64BranchTargets.cpp
Target/AArch64/AArch64FrameLowering.cpp
Target/AArch64/AArch64SchedA53.td
Target/AArch64/AArch64SchedA57.td
Target/AArch64/AArch64SchedCyclone.td
Target/AArch64/AArch64SchedExynosM3.td
Target/AArch64/AArch64SchedExynosM4.td
Target/AArch64/AArch64SchedExynosM5.td
Target/AArch64/AArch64SchedFalkor.td
Target/AArch64/AArch64SchedKryo.td
Target/AArch64/AArch64SchedThunderX.td
Target/AArch64/AArch64SchedThunderX2T99.td
Target/AArch64/AArch64SchedThunderX3T110.td
Target/AArch64/AArch64Subtarget.cpp
Target/AArch64/AArch64Subtarget.h
Target/BPF/BPFISelDAGToDAG.cpp
Target/BPF/BPFMISimplifyPatchable.cpp
Target/BPF/BTFDebug.cpp
Target/Hexagon/HexagonOptAddrMode.cpp
Target/Hexagon/HexagonRDFOpt.cpp
Target/Hexagon/RDFCopy.cpp
Target/Hexagon/RDFCopy.h
Target/Hexagon/RDFDeadCode.cpp
Target/Hexagon/RDFDeadCode.h
Target/Hexagon/RDFGraph.cpp
Target/Hexagon/RDFGraph.h
Target/Hexagon/RDFLiveness.cpp
Target/Hexagon/RDFLiveness.h
Target/Hexagon/RDFRegisters.cpp
Target/Hexagon/RDFRegisters.h
Target/PowerPC/P9InstrResources.td
Target/PowerPC/PPC.td
Target/PowerPC/PPCAsmPrinter.cpp
Target/PowerPC/PPCISelLowering.cpp
Target/PowerPC/PPCISelLowering.h
Target/PowerPC/PPCInstrAltivec.td
Target/PowerPC/PPCInstrInfo.cpp
Target/PowerPC/PPCInstrVSX.td
Target/PowerPC/PPCSubtarget.h
Target/RISCV/RISCVFrameLowering.cpp
Target/RISCV/RISCVISelLowering.cpp
Target/X86/ImmutableGraph.h
Target/X86/X86.h
Target/X86/X86.td
Target/X86/X86AsmPrinter.cpp
Target/X86/X86FastISel.cpp
Target/X86/X86FrameLowering.cpp
Target/X86/X86ISelDAGToDAG.cpp
Target/X86/X86ISelLowering.cpp
Target/X86/X86ISelLowering.h
Target/X86/X86IndirectBranchTracking.cpp
Target/X86/X86IndirectThunks.cpp
Target/X86/X86InstrCompiler.td
Target/X86/X86InstrControl.td
Target/X86/X86InstrInfo.cpp
Target/X86/X86InstrInfo.td
Target/X86/X86LoadValueInjectionLoadHardening.cpp
Target/X86/X86LoadValueInjectionRetHardening.cpp
Target/X86/X86MCInstLower.cpp
Target/X86/X86RetpolineThunks.cpp
Target/X86/X86Subtarget.h
Target/X86/X86TargetMachine.cpp
Target/X86/X86TargetMachine.h
Transforms/Coroutines/CoroSplit.cpp
Transforms/IPO/GlobalOpt.cpp
Transforms/InstCombine/InstCombineAddSub.cpp
Transforms/Instrumentation/GCOVProfiling.cpp
Transforms/Scalar/IndVarSimplify.cpp
Transforms/Scalar/SimplifyCFGPass.cpp
Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-size
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-strings
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/lib/clang/freebsd_cc_version.h
/freebsd-11-stable/lib/clang/headers/Makefile
/freebsd-11-stable/lib/clang/include/VCSVersion.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-11-stable/lib/clang/include/clang/Config/config.h
/freebsd-11-stable/lib/clang/include/lld/Common/Version.inc
/freebsd-11-stable/lib/clang/include/llvm/Config/config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/llvm-config.h
/freebsd-11-stable/lib/clang/include/llvm/Support/VCSRevision.h
/freebsd-11-stable/lib/clang/libclang/Makefile
/freebsd-11-stable/lib/clang/libllvm/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/share/mk/src.opts.mk
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/targets/pseudo/bootstrap-tools/Makefile
/freebsd-11-stable/targets/pseudo/clang/Makefile.depend
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/tools/build/options/WITH_CLANG_FORMAT
/freebsd-11-stable/usr.bin/clang/Makefile
/freebsd-11-stable/usr.bin/clang/bugpoint/bugpoint.1
/freebsd-11-stable/usr.bin/clang/clang/clang.1
/freebsd-11-stable/usr.bin/clang/llc/llc.1
/freebsd-11-stable/usr.bin/clang/lldb/lldb.1
/freebsd-11-stable/usr.bin/clang/lli/lli.1
/freebsd-11-stable/usr.bin/clang/llvm-ar/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-ar/llvm-ar.1
/freebsd-11-stable/usr.bin/clang/llvm-ar/llvm-ranlib.1
/freebsd-11-stable/usr.bin/clang/llvm-as/llvm-as.1
/freebsd-11-stable/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1
/freebsd-11-stable/usr.bin/clang/llvm-cov/llvm-cov.1
/freebsd-11-stable/usr.bin/clang/llvm-cxxfilt/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cxxfilt/llvm-cxxfilt.1
/freebsd-11-stable/usr.bin/clang/llvm-diff/llvm-diff.1
/freebsd-11-stable/usr.bin/clang/llvm-dis/llvm-dis.1
/freebsd-11-stable/usr.bin/clang/llvm-dwarfdump/llvm-dwarfdump.1
/freebsd-11-stable/usr.bin/clang/llvm-dwp
/freebsd-11-stable/usr.bin/clang/llvm-extract/llvm-extract.1
/freebsd-11-stable/usr.bin/clang/llvm-link/llvm-link.1
/freebsd-11-stable/usr.bin/clang/llvm-mca/llvm-mca.1
/freebsd-11-stable/usr.bin/clang/llvm-nm/llvm-nm.1
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/llvm-objcopy.1
/freebsd-11-stable/usr.bin/clang/llvm-objdump/llvm-objdump.1
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/llvm-pdbutil.1
/freebsd-11-stable/usr.bin/clang/llvm-profdata/llvm-profdata.1
/freebsd-11-stable/usr.bin/clang/llvm-size
/freebsd-11-stable/usr.bin/clang/llvm-strings
/freebsd-11-stable/usr.bin/clang/llvm-strings/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/llvm-addr2line.1
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/llvm-symbolizer.1
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/llvm-tblgen.1
/freebsd-11-stable/usr.bin/clang/opt/opt.1
362461 21-Jun-2020 dim

MFC r362341:

Merge commit 0cecafd647cc from llvm git (by Alina Sbirlea):

[BasicAA] Make BasicAA a cfg pass.

Summary:
Part of the changes in D44564 made BasicAA not CFG only due to it
using PhiAnalysisValues which may have values invalidated. Subsequent
patches (rL340613) appear to have addressed this limitation.

BasicAA should not be invalidated by non-CFG-altering passes. A
concrete example is MemCpyOpt which preserves CFG, but we are testing
it invalidates BasicAA.

llvm-dev RFC:
https://groups.google.com/forum/#!topic/llvm-dev/eSPXuWnNfzM

Reviewers: john.brawn, sebpop, hfinkel, brzycki

Subscribers: hiraditya, llvm-commits

Tags: #llvm

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

This fixes an issue with clang's -fintegrated-cc1 feature, which could
make it output slightly different assembly code, depending on the way it
was invoked.

In r361755 we attempted to work around it by disabling the integrated
cc1 stage, but it did not solve the root cause for all situations.

Extensive testing and bisecting showed that the above change finally
makes the output deterministic, even if -fintegrated-cc1 is on.

Reported by: Fabian Keil <fk@fabiankeil.de>
PR: 246630

360876 10-May-2020 emaste

MFC r360801: Merge commit 21e5e1724b75 from llvm git:

getMainExecutable: Fix hand-rolled AT_EXECPATH for older FreeBSD

Once we hit AT_NULL, we need to bail out of the loop; not just the
enclosing switch. This fixes basic usage (e.g. `cc --version`) when
AT_EXECPATH isn't present on older branches (e.g. under
emu-user-static, at the moment), where we would previously run off
the end of ::environ.

Patch By: kevans

Reviewed By: arichardson

360784 07-May-2020 dim

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

MFC r356479 (by bdragon):

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

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

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

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

MFC r356930:

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

MFC r358408 (by brooks):

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

[RISCV] Lower llvm.trap and llvm.debugtrap

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

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

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

Reviewers: asb, luismarques

Reviewed By: asb

Tags: #llvm

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

This fixes miscompilation resulting in linking failures with
INVARIANTS disabled.

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

MFC r358851:

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

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

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

PR: 244251

MFC r358854:

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

Reported by: bdragon
PR: 244251

MFC r358857:

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

Reported by: bdragon
PR: 244251

MFC r359082:

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

PR: 244251

MFC r359084:

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

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

Reviewed By: Bdragon28

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

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

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

MFC r359085:

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

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

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

Reviewed By: Bdragon28

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

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

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

MFC r359086:

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

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

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

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

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

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

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

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

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

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

Requested by: pkubja

MFC r359087:

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

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

Summary:
The former are like:

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

Fix these by adding an explicitly defaulted copy constructor.

The latter are like:

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

Fix these by using the _NOEXCEPT macro instead.

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

Reviewed By: EricWF, #libc

Subscribers: dexonsmith, libcxx-commits

Tags: #libc

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

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

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

MFC r359333:

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

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

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

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

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

Requested by: jhibbits

MFC r359334:

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

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

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

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

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

Requested by: jhibbits

MFC r359338:

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

PR: 244251

MFC r359506 (by emaste):

lldb: stop excluding bindings/ subdir

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

Approved by: dim
Sponsored by: The FreeBSD Foundation

MFC r359578:

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

Requested by: emaste

MFC r359826:

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

Make target features check work with ctor and dtor-

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

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

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

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

PR: 245550

MFC r359981:

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

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

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

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

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

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

Requested by: jhibbits

MFC r359994:

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

Fix bots after a9ad65a2b34f

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

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

Reported by: jhibbits (and jenkins :)

MFC r360129:

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

Use FinishThunk to finish musttail thunks

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

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

Reviewed By: hans

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

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

PR: 244830
Reported by: jbeich, yuri

MFC r360134:

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

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

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

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

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

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

Requested by: pkubaj

MFC r360350:

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

[ARM] Only produce qadd8b under hasV6Ops

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

Fixed PR45677.

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

MFC r360697:

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

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


/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/llvm-project/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/clang
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/BuildSystem.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/CXString.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/Documentation.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/ExternC.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/Index.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang-c/Platform.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/APValue.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTConsumer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTFwd.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTImporter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTImporterSharedState.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTLambda.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTNodeTraverser.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTStructuralEquivalence.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ASTTypeTraits.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/AbstractBasicReader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/AbstractBasicWriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/AbstractTypeReader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/AbstractTypeWriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Attr.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CXXInheritance.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CXXRecordDeclDefinitionBits.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CharUnits.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Comment.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CommentCommands.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/CommentLexer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ComparisonCategories.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Decl.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclBase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclCXX.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclObjC.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclTemplate.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/DeclarationName.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Expr.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExprCXX.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExprConcepts.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExprObjC.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExternalASTMerger.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/ExternalASTSource.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/FormatString.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/GlobalDecl.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/JSONNodeDumper.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Mangle.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/NSAPI.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/OpenMPClause.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/OperationKinds.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/PrettyPrinter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/PropertiesBase.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/RawCommentList.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/RecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Stmt.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/StmtDataCollectors.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/StmtOpenMP.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/StmtVisitor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TemplateBase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TemplateName.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TextNodeDumper.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/Type.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeLoc.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeLocNodes.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeNodes.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeProperties.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/TypeVisitor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/UnresolvedSet.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchFinder.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchers.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/Parser.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/AnalysisDeclContext.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/CFG.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/CallGraph.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/PathDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/AArch64SVEACLETypes.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/ASTNode.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/AddressSpaces.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Attr.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/AttrDocs.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/AttributeCommonInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Builtins.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Builtins.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsAArch64.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsAMDGPU.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsARM.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsBPF.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsPPC.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsWebAssembly.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsX86.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/BuiltinsX86_64.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/CodeGenOptions.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/CodeGenOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/CommentNodes.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Cuda.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DebugInfoOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DeclNodes.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Diagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticASTKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticCommentKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticCommonKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticDriverKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticFrontendKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticGroups.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticLexKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticOptions.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticParseKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSerializationKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Features.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/FileManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/IdentifierTable.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/LangOptions.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/LangOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/LangStandard.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/LangStandards.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Linkage.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/OpenCLOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/OperatorKinds.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/PartialDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/SanitizerSpecialCaseList.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Sanitizers.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/SourceLocation.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/SourceManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Specifiers.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/Stack.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/StmtNodes.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/SyncScope.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TargetBuiltins.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TargetCXXABI.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TargetInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TokenKinds.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TokenKinds.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/TypeNodes.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/X86Target.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_fp16.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_mve.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_mve_defs.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/arm_neon_incl.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CrossTU/CrossTranslationUnit.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/DirectoryWatcher/DirectoryWatcher.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Action.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/CC1Options.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/CLCompatOptions.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Distro.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Driver.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Job.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/OptionUtils.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Options.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Options.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Phases.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/SanitizerArgs.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/ToolChain.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Types.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/Types.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/ASTUnit.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/CompilerInstance.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/FrontendOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/LangStandard.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/LangStandards.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/MultiplexConsumer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/PrecompiledPreamble.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/Utils.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/CodegenNameGenerator.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/IndexDataConsumer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/IndexingAction.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/IndexingOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/DependencyDirectivesSourceMinimizer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/HeaderMap.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/HeaderSearch.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/HeaderSearchOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/Lexer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/MacroArgs.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/ModuleLoader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/ModuleMap.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/PPCallbacks.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/Preprocessor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/PreprocessorExcludedConditionalDirectiveSkipMapping.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/PreprocessorOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/Parser.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/RAIIObjectsForParser.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/Rewriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/CodeCompleteConsumer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/DeclSpec.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ExternalSemaSource.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/MultiplexExternalSemaSource.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ObjCMethodList.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/Overload.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ParsedAttr.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ParsedTemplate.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/Scope.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/ScopeInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/Sema.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/SemaConcept.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/SemaInternal.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/Template.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/TemplateDeduction.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/TypoCorrection.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTBitCodes.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTReader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordReader.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordWriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ASTWriter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ContinuousRangeMap.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/Module.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ModuleFile.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ModuleManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/TypeBitCodes.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/Checker.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicCastInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/ASTDiff.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/AllTUsExecution.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/ArgumentsAdjusters.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/CompilationDatabase.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningFilesystem.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningService.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningTool.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningWorker.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Execution.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/HeaderIncludes.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/IncludeStyle.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ASTSelection.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Extract/SourceExtraction.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RangeSelector.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/SourceCode.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Stencil.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Transformer.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/StandaloneExecution.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/BuildTree.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Mutations.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Nodes.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Tokens.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Tree.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Tooling.h
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/module.modulemap
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/ARCMT.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/FileRemapper.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/ObjCMT.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/PlistReporter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/APValue.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTConcept.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTDiagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTImporter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTStructuralEquivalence.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ASTTypeTraits.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/CXXInheritance.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Comment.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/CommentLexer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/CommentParser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/CommentSema.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ComparisonCategories.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Decl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclBase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclTemplate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/DeclarationName.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Expr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprClassification.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprConcepts.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprConstant.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExternalASTMerger.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExternalASTSource.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/FormatString.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/FormatStringParsing.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/InheritViz.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ItaniumMangle.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/JSONNodeDumper.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Mangle.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/MicrosoftMangle.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/NSAPI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/NestedNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ODRHash.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/OpenMPClause.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/QualTypeNames.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/RawCommentList.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/RecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Stmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/StmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/StmtPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/StmtProfile.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/TemplateBase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/TextNodeDumper.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Type.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/TypeLoc.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/TypePrinter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/VTTBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/VTableBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/ASTMatchFinder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Marshallers.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Parser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Registry.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/AnalysisDeclContext.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/BodyFarm.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/CFG.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/CloneDetection.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/CocoaConventions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/Consumed.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/PathDiagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/ProgramPoint.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/ReachableCode.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/RetainSummaryManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/ThreadSafety.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/ThreadSafetyCommon.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/plugins/SampleAnalyzer/MainCallChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Attributes.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Builtins.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Cuda.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/FileManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/IdentifierTable.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/LangStandards.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Module.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/OpenMPKinds.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/SanitizerBlacklist.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/SanitizerSpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/SourceManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Stack.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/AArch64.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/AArch64.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/ARM.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/ARM.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/BPF.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/BPF.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/Hexagon.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/Mips.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/NVPTX.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/OSTargets.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/OSTargets.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/PPC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/PPC.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/SPIR.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/Sparc.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/SystemZ.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/TCE.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/X86.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/X86.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/TokenKinds.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Version.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/XRayLists.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/BackendUtil.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGAtomic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGBlocks.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGBuilder.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGBuiltin.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCUDANV.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCXXABI.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCall.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCall.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGClass.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCleanup.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGDebugInfo.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGDebugInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGDeclCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGException.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExpr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprAgg.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprComplex.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprConstant.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprScalar.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGLoopInfo.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGLoopInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGNonTrivialStruct.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGObjCGNU.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGObjCMac.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGObjCRuntime.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenCLRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntime.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGStmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGVTables.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGValue.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenPGO.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenPGO.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenTBAA.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenTypes.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ConstantEmitter.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ConstantInitBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CoverageMappingGen.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/EHScopeStack.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ModuleBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/SanitizerMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CrossTU/CrossTranslationUnit.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/default/DirectoryWatcher-not-implemented.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/linux/DirectoryWatcher-linux.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/DirectoryWatcher-mac.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/windows
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Action.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Distro.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/DriverOptions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Job.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/OptionUtils.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Phases.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/SanitizerArgs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChain.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AMDGPU.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/AVR.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Ananas.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/ARM.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/Mips.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/PPC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/RISCV.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/SystemZ.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/BareMetal.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/CloudABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/CommonArgs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/CommonArgs.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/CrossWindows.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Cuda.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Cuda.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/DragonFly.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Fuchsia.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/HIP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/HIP.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Hexagon.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MSP430.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MSVC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MSVC.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MinGW.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/MinGW.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Minix.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Myriad.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/NaCl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/NetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/OpenBSD.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/OpenBSD.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/PPCLinux.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/PS4CPU.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/PS4CPU.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/RISCVToolchain.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Solaris.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/WebAssembly.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/XCore.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/Types.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/XRayArgs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/BreakableToken.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/BreakableToken.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/ContinuationIndenter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/Encoding.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/Format.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/FormatToken.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/FormatTokenLexer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/FormatTokenLexer.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/NamespaceEndCommentsFixer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/TokenAnnotator.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/TokenAnnotator.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/UnwrappedLineFormatter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/UnwrappedLineParser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/UnwrappedLineParser.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/WhitespaceManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ChainedIncludesSource.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/CompilerInstance.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/CompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/DependencyGraph.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/FrontendAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/FrontendOptions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/HeaderIncludeGen.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/InitHeaderSearch.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/InitPreprocessor.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/InterfaceStubFunctionsConsumer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/LangStandards.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ModuleDependencyCollector.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/MultiplexConsumer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/PrecompiledPreamble.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/PrintPreprocessedOutput.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/__clang_cuda_intrinsics.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/altivec.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/arm_acle.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/arm_cmse.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avx512bwintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avx512fintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avx512vlbwintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avx512vlintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/avxintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/bmiintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/cpuid.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/emmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ia32intrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/immintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/intrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/mwaitxintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/opencl-c-base.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/pmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/emmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/mm_malloc.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/mmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/pmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/smmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/tmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/xmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/xmmintrin.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/CodegenNameGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/CommentToXML.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/IndexDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/IndexSymbol.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/IndexingAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/IndexingContext.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/USRGeneration.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/HeaderMap.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/HeaderSearch.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/Lexer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/LiteralSupport.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/MacroArgs.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/ModuleMap.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/PPDirectives.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/PPLexerChange.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/PPMacroExpansion.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/Pragma.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/Preprocessor.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/TokenLexer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/UnicodeCharSets.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseAST.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseCXXInlineMethods.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseDeclCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseExpr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseExprCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseInit.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseObjc.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseOpenMP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParsePragma.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseStmtAsm.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseTemplate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/ParseTentative.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/Parser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/Rewriter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/AnalysisBasedWarnings.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/DeclSpec.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/JumpDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/MultiplexExternalSemaSource.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/OpenCLBuiltins.td
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/ParsedAttr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/Sema.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaAccess.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaAttr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCXXScopeSpec.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCast.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaChecking.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCodeComplete.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaConcept.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaCoroutine.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDeclAttr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDeclCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDeclObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExceptionSpec.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExpr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExprCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExprMember.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaExprObjC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaInit.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaLambda.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaLookup.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaObjCProperty.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaOpenMP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaOverload.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaPseudoObject.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaStmtAsm.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaStmtAttr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateDeduction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiate.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaTemplateVariadic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaType.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/TreeTransform.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/TypeLocBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/TypeLocBuilder.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTCommon.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTReader.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTReaderDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTReaderStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTWriter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTWriterDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ASTWriterStmt.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/Module.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ModuleFile.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ModuleManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/PCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CastValueChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckPlacementNew.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugIteratorModeling.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FuchsiaHandleChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InvalidatedIteratorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorModeling.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorRangeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MIGChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MismatchedIteratorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Taint.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Taint.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Yaml.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Checker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicType.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Environment.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Store.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/WorkList.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/AllTUsExecution.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ArgumentsAdjusters.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/CommonOptionsParser.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/CompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/Replacement.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningFilesystem.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningService.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningTool.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ExpandResponseFilesCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/GuessTargetAndModeCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/IncludeStyle.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/JSONCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/ASTSelectionRequirements.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/RangeSelector.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/RefactoringActions.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/RenamingAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/USRFindingAction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/SourceCode.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Stencil.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Transformer.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/RefactoringCallbacks.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/StandaloneExecution.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/BuildTree.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/ComputeReplacements.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Mutations.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Nodes.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Synthesis.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Tokens.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/Tree.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Tooling.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Transformer
/freebsd-11-stable/contrib/llvm-project/clang/tools/clang-format/ClangFormat.cpp
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/cc1_main.cpp
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/cc1as_main.cpp
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/driver.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.h
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangASTNodesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangASTPropertiesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangOpcodesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangOpenCLBuiltinEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangOptionDocEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangSACheckersEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/ClangTypeNodesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/MveEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/NeonEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/fuzzer
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/profile
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/asan_interface.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/dfsan_interface.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/tsan_interface_atomic.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/ubsan_interface.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interface.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_interface_internal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_internal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_scariness_score.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/fp_mode.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/adddf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/addsf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/addtf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/arm/fp_mode.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/atomic.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/clear_cache.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/divtf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/emutls.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/extenddftf2.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/extendsftf2.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fixunsxfdi.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fixunsxfsi.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fixxfdi.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_add_impl.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_lib.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/fp_trunc_impl.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/i386/fp_mode.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixtfti.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixunstfti.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/subdf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/subsf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/subtf3.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/udivmoddi4.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/crt/crtbegin.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerDefs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtFunctions.def
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeak.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtraCounters.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerFlags.def
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIO.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIO.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerInternal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerMerge.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerOptions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerTracePC.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtil.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilDarwin.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilFuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilLinux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilPosix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/utils
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/definitions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/guarded_pool_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/guarded_pool_allocator.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace_linux_libc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace_sanitizer_common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/options.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/options.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_allocator.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_exceptions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_flags.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_interface_internal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_new_delete.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_setjmp.S
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_tag_mismatch_aarch64.S
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_type_test.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_blacklist.txt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfData.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfiling.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfiling.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingBuffer.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingFile.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingInternal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingMerge.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingMergeFile.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingPort.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingValue.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingWriter.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_asm.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_netbsd_compat.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_getauxval.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_glibc_version.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_malloc_mac.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_vector.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/scudo_allocator_secondary.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/scudo_errors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/allocator_config.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/atomic_helpers.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/bytemap.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/chunk.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/combined.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/internal_defs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/list.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/local_cache.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/mutex.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/platform.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/primary32.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/primary64.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/quarantine.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/release.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/secondary.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/secondary.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/size_class_map.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/stats.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd_exclusive.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd_shared.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/vector.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_checks.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/stats/stats.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/stats/stats.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_dispatch_defs.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_libdispatch.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mach_vm.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_libdispatch.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.h
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_checks.inc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cc
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx
/freebsd-11-stable/contrib/llvm-project/libcxx/CREDITS.TXT
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__bit_reference
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__config
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__debug
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__functional_03
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__functional_base
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__hash_table
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__libcpp_version
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__mutex_base
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__split_buffer
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__string
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__threading_support
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__tree
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__tuple
/freebsd-11-stable/contrib/llvm-project/libcxx/include/algorithm
/freebsd-11-stable/contrib/llvm-project/libcxx/include/atomic
/freebsd-11-stable/contrib/llvm-project/libcxx/include/bit
/freebsd-11-stable/contrib/llvm-project/libcxx/include/chrono
/freebsd-11-stable/contrib/llvm-project/libcxx/include/codecvt
/freebsd-11-stable/contrib/llvm-project/libcxx/include/cstdlib
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ctime
/freebsd-11-stable/contrib/llvm-project/libcxx/include/deque
/freebsd-11-stable/contrib/llvm-project/libcxx/include/exception
/freebsd-11-stable/contrib/llvm-project/libcxx/include/execution
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/coroutine
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/functional
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/iterator
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/propagate_const
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/type_traits
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ext/hash_map
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ext/hash_set
/freebsd-11-stable/contrib/llvm-project/libcxx/include/filesystem
/freebsd-11-stable/contrib/llvm-project/libcxx/include/forward_list
/freebsd-11-stable/contrib/llvm-project/libcxx/include/fstream
/freebsd-11-stable/contrib/llvm-project/libcxx/include/functional
/freebsd-11-stable/contrib/llvm-project/libcxx/include/future
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ios
/freebsd-11-stable/contrib/llvm-project/libcxx/include/istream
/freebsd-11-stable/contrib/llvm-project/libcxx/include/iterator
/freebsd-11-stable/contrib/llvm-project/libcxx/include/list
/freebsd-11-stable/contrib/llvm-project/libcxx/include/map
/freebsd-11-stable/contrib/llvm-project/libcxx/include/math.h
/freebsd-11-stable/contrib/llvm-project/libcxx/include/memory
/freebsd-11-stable/contrib/llvm-project/libcxx/include/module.modulemap
/freebsd-11-stable/contrib/llvm-project/libcxx/include/mutex
/freebsd-11-stable/contrib/llvm-project/libcxx/include/new
/freebsd-11-stable/contrib/llvm-project/libcxx/include/numeric
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ostream
/freebsd-11-stable/contrib/llvm-project/libcxx/include/queue
/freebsd-11-stable/contrib/llvm-project/libcxx/include/random
/freebsd-11-stable/contrib/llvm-project/libcxx/include/regex
/freebsd-11-stable/contrib/llvm-project/libcxx/include/set
/freebsd-11-stable/contrib/llvm-project/libcxx/include/span
/freebsd-11-stable/contrib/llvm-project/libcxx/include/stdexcept
/freebsd-11-stable/contrib/llvm-project/libcxx/include/string
/freebsd-11-stable/contrib/llvm-project/libcxx/include/string_view
/freebsd-11-stable/contrib/llvm-project/libcxx/include/system_error
/freebsd-11-stable/contrib/llvm-project/libcxx/include/thread
/freebsd-11-stable/contrib/llvm-project/libcxx/include/tuple
/freebsd-11-stable/contrib/llvm-project/libcxx/include/type_traits
/freebsd-11-stable/contrib/llvm-project/libcxx/include/typeinfo
/freebsd-11-stable/contrib/llvm-project/libcxx/include/utility
/freebsd-11-stable/contrib/llvm-project/libcxx/include/vector
/freebsd-11-stable/contrib/llvm-project/libcxx/include/version
/freebsd-11-stable/contrib/llvm-project/libcxx/src/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/libcxx/src/algorithm.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/chrono.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/condition_variable.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/debug.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/experimental/memory_resource.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/directory_iterator.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/int128_builtins.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/operations.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/iostream.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/locale.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/memory.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/mutex.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/mutex_destructor.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/regex.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/shared_mutex.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/thread.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/utility.cpp
/freebsd-11-stable/contrib/llvm-project/libcxx/src/valarray.cpp
/freebsd-11-stable/contrib/llvm-project/libunwind
/freebsd-11-stable/contrib/llvm-project/libunwind/include/__libunwind_config.h
/freebsd-11-stable/contrib/llvm-project/libunwind/include/libunwind.h
/freebsd-11-stable/contrib/llvm-project/libunwind/src/AddressSpace.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/DwarfInstructions.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/RWMutex.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/Registers.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/Unwind-EHABI.cpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/UnwindCursor.hpp
/freebsd-11-stable/contrib/llvm-project/libunwind/src/UnwindLevel1-gcc-ext.c
/freebsd-11-stable/contrib/llvm-project/libunwind/src/UnwindRegistersRestore.S
/freebsd-11-stable/contrib/llvm-project/libunwind/src/UnwindRegistersSave.S
/freebsd-11-stable/contrib/llvm-project/libunwind/src/libunwind.cpp
/freebsd-11-stable/contrib/llvm-project/lld
/freebsd-11-stable/contrib/llvm-project/lld/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/COFF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Chunks.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Config.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/DLL.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/DebugTypes.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Driver.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/DriverUtils.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/ICF.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/InputFiles.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/LTO.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/MapFile.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/MinGW.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/MinGW.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Options.td
/freebsd-11-stable/contrib/llvm-project/lld/COFF/PDB.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/PDB.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/SymbolTable.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Symbols.cpp
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Symbols.h
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Writer.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/Common/DWARF.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/ErrorHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/Filesystem.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/Strings.cpp
/freebsd-11-stable/contrib/llvm-project/lld/Common/TargetOptionsCommandFlags.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/AArch64ErrataFix.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ARMErrataFix.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ARMErrataFix.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/ARM.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/AVR.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/Hexagon.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/MSP430.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/Mips.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/MipsArchTree.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/PPC.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/PPC64.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/SPARCV9.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/X86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/ELF/CallGraphSort.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Config.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/DWARF.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/DWARF.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/DriverUtils.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/EhFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ICF.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputFiles.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputSection.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/InputSection.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/LTO.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/LinkerScript.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/LinkerScript.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/MapFile.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Options.td
/freebsd-11-stable/contrib/llvm-project/lld/ELF/OutputSections.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/OutputSections.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Relocations.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Relocations.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ScriptLexer.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/ScriptParser.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/SymbolTable.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Symbols.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Symbols.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/SyntheticSections.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/SyntheticSections.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Target.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Target.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Thunks.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Thunks.h
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Writer.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Writer.h
/freebsd-11-stable/contrib/llvm-project/lld/docs/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/docs/Driver.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/NewLLD.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/ReleaseNotes.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/WebAssembly.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/conf.py
/freebsd-11-stable/contrib/llvm-project/lld/docs/index.rst
/freebsd-11-stable/contrib/llvm-project/lld/docs/ld.lld.1
/freebsd-11-stable/contrib/llvm-project/lld/docs/windows_support.rst
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/DWARF.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/Driver.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/ErrorHandler.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/LLVM.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/Strings.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/TargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Atom.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Error.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/File.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Instrumentation.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/Reference.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/UndefinedAtom.h
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/ReaderWriter/MachOLinkingContext.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/Resolver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/Driver/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/Driver/DarwinLdDriver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/FileArchive.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/DebugInfo.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/File.h
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/GOTPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ShimPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/TLVPass.cpp
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
/freebsd-11-stable/contrib/llvm-project/lld/tools/lld/CMakeLists.txt
/freebsd-11-stable/contrib/llvm-project/lld/tools/lld/lld.cpp
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/lldb/bindings
/freebsd-11-stable/contrib/llvm-project/lldb/docs/lldb.1
/freebsd-11-stable/contrib/llvm-project/lldb/docs/man
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBBreakpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointLocation.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointName.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBCommandReturnObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBDebugger.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBDefines.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBError.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBInstructionList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBProcess.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBReproducer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBStream.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBStructuredData.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBThread.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBThreadPlan.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/SBValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointID.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocation.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointOptions.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/Watchpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointOptions.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Address.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/AddressRange.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverFileLine.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverName.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ClangForward.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Disassembler.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/FileLineResolver.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/FileSpecList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/FormatEntity.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Highlighter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/IOHandlerCursesGUI.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/LoadedModuleInfoList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Mangled.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Module.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ModuleChild.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ModuleList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/PluginManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/PropertiesBase.td
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/STLUtils.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/SourceManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/StreamFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/StructuredDataImpl.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeDenseMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/dwarf.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/DataVisualization.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatClasses.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/LanguageCategory.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/StringPrinter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategory.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeValidator.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/Expression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/Materializer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/REPL.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/FileCache.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/LZMA.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Socket.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/SocketAddress.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/Terminal.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/XML.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/NativeProcessProtocol.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandCompletions.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandReturnObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionGroupPythonClassWithDict.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueArch.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueBoolean.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueProperties.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueRegex.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueUUID.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/Options.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/Property.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CallFrameInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTMetadata.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/DebugMacros.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/DeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Declaration.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Function.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/LineEntry.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/LineTable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/PostfixExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/TypeList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/VariableList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/VerifyDecl.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Platform.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Process.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Queue.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/RemoteAwarePlatform.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/StopInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepOut.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepRange.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/Unwind.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/AnsiTerminal.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ArchSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Args.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Baton.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Broadcaster.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/CleanUp.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/CompletionRequest.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Connection.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ConstString.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/DataEncoder.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/DataExtractor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/FileCollector.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/FileSpec.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Flags.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/GDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/IOObject.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/JSON.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Log.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Logging.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Predicate.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ProcessInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/RangeMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/RegularExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Reproducer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/ReproducerInstrumentation.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Scalar.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Status.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/Stream.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractor.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringLexer.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StringList.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/StructuredData.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/UUID.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/VMRange.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-enumerations.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-forward.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-private-enumerations.h
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpointName.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBBreakpointOptionCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBCompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBDeclaration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBEvent.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBLineEntry.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBProcess.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBReproducer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBReproducerPrivate.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBStream.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBSymbolContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBThreadPlan.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBTypeCategory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/Utils.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/Breakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointIDList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointOptions.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/Watchpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/WatchpointOptions.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectDisassemble.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectGUI.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectType.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectVersion.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/Options.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/OptionsBase.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Address.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/AddressRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/AddressResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/CoreProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/DumpDataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/FileLineResolver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/FileSpecList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/FormatEntity.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Highlighter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/IOHandlerCursesGUI.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Mangled.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Module.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ModuleList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/PluginManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/SourceManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/StreamFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectCast.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectChild.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectRegister.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/DataVisualization.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormatCache.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormatClasses.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/LanguageCategory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/TypeValidator.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/VectorType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/Expression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/IRExecutionUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/IRInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/FileCache.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/FileSystem.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Host.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/HostInfoBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/HostNativeThreadBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/LZMA.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/MainLoop.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/NativeProcessProtocol.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/NativeRegisterContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/PseudoTerminal.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Socket.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/Terminal.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/UDPSocket.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/XML.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/netbsd/Host.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/FileSystemPosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/PipePosix.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandAlias.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/CommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/InterpreterProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionArgParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupArchitecture.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupOutputFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupUUID.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupVariable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueArch.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueBoolean.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueEnumeration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueRegex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/OptionValueUUID.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/Options.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/Property.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/ScriptInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arc
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ModuleDependencyCollector.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDBProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSArray.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSError.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/MachException.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/AuxVector.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLogProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ArmUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Block.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangASTMetadata.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompileUnit.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompilerDecl.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompilerDeclContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CompilerType.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/CxxModuleHandler.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/DWARFCallFrameInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/DeclVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Declaration.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFileMacOSX.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/PostfixExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/SymbolVendor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Symtab.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Type.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/TypeMap.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/VerifyDecl.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/MemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Platform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Process.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/RemoteAwarePlatform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StackFrameRecognizer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/TargetProperties.td
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanCallFunction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanRunToAddress.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOut.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanStepUntil.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/ThreadPlanTracer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Args.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Baton.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/CompletionRequest.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/ConstString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/DataBufferLLVM.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/DataEncoder.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Environment.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/FileCollector.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/FileSpec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/GDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/LLDBAssert.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Listener.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Log.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Logging.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/PPC64LE_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/RegisterValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Reproducer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Scalar.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/SelectHelper.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Status.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/Stream.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StreamString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StringLexer.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StringList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/StructuredData.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/VMRange.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/argdumper/argdumper.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/compact-unwind/compact-unwind-dumper.c
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/Options.td
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-instr/Instrument.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnConfig.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDataTypes.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMain.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIExtensions.txt
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIReadMe.txt
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonBase.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-mi/module.modulemap
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/LLDBServerUtilities.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/lldb-platform.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/tools/lldb-server/lldb-server.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBOptionDefEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGen.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenBackends.h
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Analysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/BitReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/BitWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Comdat.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/DebugInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Disassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Error.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/ErrorHandling.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/ExternC.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/IRReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Initialization.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/LinkTimeOptimizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Linker.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Remarks.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Support.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Target.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/InstCombine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/Types.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/lto.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/APFloat.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/APInt.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Any.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ArrayRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/BitVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/DirectedGraph.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/EnumeratedArray.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/FloatingPointMode.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/FoldingSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Hashing.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ImmutableSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/IntervalMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Optional.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/PointerIntPair.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/PointerUnion.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Statistic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringExtras.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/StringSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/TinyPtrVector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Triple.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Twine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/VariadicFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/iterator_range.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/AliasAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/AliasSetTracker.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/AssumptionCache.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CFG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CGSCCPassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/CaptureTracking.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DDG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceGraphBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/DivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/GlobalsModRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/GuardUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/InstructionSimplify.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/IntervalPartition.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/Loads.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAnalysisManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopCacheAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfoImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/LoopPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryBuiltins.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSA.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSAUpdater.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/MustExecute.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/Passes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/PhiValues.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/PostDominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/PtrUseVisitor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/RegionInfoImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TargetLibraryInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/Local.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/VecFuncs.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/COFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/AArch64.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MachO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Magic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Minidump.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MinidumpConstants.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Wasm.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/XCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeAnalyzer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/BitCodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/BitstreamReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/AccelTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/BasicTTIImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/CallingConvLower.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/CommandFlags.inc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/DFAPacketizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/FastISel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/FaultMaps.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/GISelKnownBits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ISDOpcodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervals.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LivePhysRegs.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRangeCalc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRegUnits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveStacks.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveVariables.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/LowLevelType.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRFormatter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRYamlMapping.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBasicBlock.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineDominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFrameInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBundle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineMemOperand.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineModuleInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOperand.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOutliner.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePipeliner.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePostDominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineScheduler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineSizeOpts.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ModuloSchedule.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/NonRelocatableStringpool.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/Math.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ParallelCG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/Passes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PseudoSourceValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/Register.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterClassInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterScavenging.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAG.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGISel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SlotIndexes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/StackMaps.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/StackProtector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TailDuplicator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetCallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetFrameLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetInstrInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLowering.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetPassConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSchedule.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/VirtRegMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DIContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFLocationExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymCreator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Header.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineEntry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LookupResult.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Range.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/StringTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/GenericError.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/Demangle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/DemangleConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/ItaniumDemangle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/Utility.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_arm64.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Core.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/DebugUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Speculation.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Frontend
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Argument.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Attributes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Attributes.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/AutoUpgrade.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/CallSite.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/CallingConv.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Constant.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ConstantRange.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Constants.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ConstrainedOps.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DIBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DataLayout.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DerivedTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/DiagnosticInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Dominators.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/FPEnv.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/FixedMetadataKinds.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Function.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IRPrintingPasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/InstVisitor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/InstrTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Instruction.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Instruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Instructions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicInst.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAArch64.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsARM.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsBPF.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsMips.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsRISCV.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsX86.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/LLVMContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManagers.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/MDBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Module.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/NoFolder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Operator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/PassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/RemarkStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/RuntimeLibcalls.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/User.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/Value.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ValueHandle.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ValueMap.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/InitializePasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/Config.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/LTO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/LTOBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LinkAllPasses.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmBackend.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoELF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoXCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAsmMacro.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCAssembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCCodeEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCCodePadder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDirectives.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCDwarf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCELFStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCExpr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCFixup.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCFixupKindInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCFragment.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInst.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInstrAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCMachObjectWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCObjectFileInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCObjectStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/AsmCond.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCRegister.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCRegisterInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSection.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSectionXCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSubtargetInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSymbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolWasm.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolXCOFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCWasmObjectWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/MCXCOFFStreamer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/StringTableBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/SubtargetFeature.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/CodeEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Context.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RegisterFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ResourceManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RetireControlUnit.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Instruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/SourceMgr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/RetireStage.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Archive.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Binary.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/COFF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ELF.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ELFObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ELFTypes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/MachO.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/MachOUniversal.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Minidump.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/ObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/StackMapParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/TapiFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/TapiUniversal.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/Wasm.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/WindowsResource.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/XCOFFObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/DWARFYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ELFYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MachOYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MinidumpYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/WasmYAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/YAML.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/yaml2obj.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Pass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Passes/PassBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfData.inc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkContainer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkSerializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/Remark.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkFormat.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkLinker.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkSerializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkStringTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/YAMLRemarkSerializer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AMDGPUMetadata.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/AlignOf.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Alignment.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Automaton.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamArray.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamRef.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CRC.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CodeGen.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CommandLine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/CrashRecoveryContext.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/DataExtractor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Endian.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileCheck.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileCollector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileOutputBuffer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileSystem.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FileUtilities.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Format.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/FormatVariadic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTree.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTreeConstruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/GlobPattern.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/InitLLVM.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/JSON.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/JamCRC.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/KnownBits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/LineIterator.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/LockFileManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/LowLevelTypeImpl.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/MachineValueType.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Memory.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Mutex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/MutexGuard.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/OnDiskHashTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Options.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Parallel.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Path.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Process.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/RWMutex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Regex.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Registry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SHA1.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ScalableSize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Signals.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SourceMgr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SpecialCaseList.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/SwapByteOrder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TargetOpcodes.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TargetRegistry.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Threading.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TimeProfiler.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Timer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/TypeSize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/UnicodeCharRanges.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/UniqueLock.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/VersionTuple.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Win64EH.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/Windows
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/X86TargetParser.def
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/YAMLTraits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/circular_raw_ostream.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/raw_ostream.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/type_traits.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/Automaton.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/Error.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GenericOpcodes.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Combine.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Target.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/Target.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetCallingConv.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetItinerary.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetLoweringObjectFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetMachine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetOptions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Architecture.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/ArchitectureSet.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/InterfaceFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Platform.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Symbol.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Target.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/TextAPIReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/CFGuard.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/Attributor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/FunctionImport.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/MergeFunctions.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/SanitizerCoverage.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Float2Int.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVN.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LICM.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerConstantIntrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerMatrixIntrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Reassociate.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/SCCP.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeMoverUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Debugify.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/GuardUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/InjectTLIMappings.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/MisExpect.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SizeOpts.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecordProducer.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecords.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/FileHeaderReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/module.modulemap
Analysis/AliasAnalysis.cpp
Analysis/AliasAnalysisEvaluator.cpp
Analysis/AliasSetTracker.cpp
Analysis/Analysis.cpp
Analysis/AssumptionCache.cpp
Analysis/BasicAliasAnalysis.cpp
Analysis/BlockFrequencyInfo.cpp
Analysis/BranchProbabilityInfo.cpp
Analysis/CFG.cpp
Analysis/CFGPrinter.cpp
Analysis/CFLAndersAliasAnalysis.cpp
Analysis/CFLSteensAliasAnalysis.cpp
Analysis/CallGraph.cpp
Analysis/CallPrinter.cpp
Analysis/CaptureTracking.cpp
Analysis/ConstantFolding.cpp
Analysis/CostModel.cpp
Analysis/DDG.cpp
Analysis/Delinearization.cpp
Analysis/DemandedBits.cpp
Analysis/DependenceAnalysis.cpp
Analysis/DependenceGraphBuilder.cpp
Analysis/DivergenceAnalysis.cpp
Analysis/DomPrinter.cpp
Analysis/DomTreeUpdater.cpp
Analysis/DominanceFrontier.cpp
Analysis/GlobalsModRef.cpp
Analysis/GuardUtils.cpp
Analysis/IVDescriptors.cpp
Analysis/IVUsers.cpp
Analysis/IndirectCallPromotionAnalysis.cpp
Analysis/InlineCost.cpp
Analysis/InstCount.cpp
Analysis/InstructionPrecedenceTracking.cpp
Analysis/InstructionSimplify.cpp
Analysis/IntervalPartition.cpp
Analysis/LazyBlockFrequencyInfo.cpp
Analysis/LazyBranchProbabilityInfo.cpp
Analysis/LazyCallGraph.cpp
Analysis/LazyValueInfo.cpp
Analysis/LegacyDivergenceAnalysis.cpp
Analysis/Lint.cpp
Analysis/Loads.cpp
Analysis/LoopAccessAnalysis.cpp
Analysis/LoopAnalysisManager.cpp
Analysis/LoopCacheAnalysis.cpp
Analysis/LoopInfo.cpp
Analysis/LoopPass.cpp
Analysis/LoopUnrollAnalyzer.cpp
Analysis/MemDepPrinter.cpp
Analysis/MemDerefPrinter.cpp
Analysis/MemoryBuiltins.cpp
Analysis/MemoryDependenceAnalysis.cpp
Analysis/MemoryLocation.cpp
Analysis/MemorySSA.cpp
Analysis/MemorySSAUpdater.cpp
Analysis/ModuleDebugInfoPrinter.cpp
Analysis/ModuleSummaryAnalysis.cpp
Analysis/MustExecute.cpp
Analysis/OptimizationRemarkEmitter.cpp
Analysis/OrderedInstructions.cpp
Analysis/PhiValues.cpp
Analysis/PostDominators.cpp
Analysis/ProfileSummaryInfo.cpp
Analysis/RegionInfo.cpp
Analysis/RegionPrinter.cpp
Analysis/ScalarEvolution.cpp
Analysis/ScalarEvolutionAliasAnalysis.cpp
Analysis/ScalarEvolutionExpander.cpp
Analysis/ScopedNoAliasAA.cpp
Analysis/StackSafetyAnalysis.cpp
Analysis/SyncDependenceAnalysis.cpp
Analysis/TargetLibraryInfo.cpp
Analysis/TargetTransformInfo.cpp
Analysis/TypeBasedAliasAnalysis.cpp
Analysis/TypeMetadataUtils.cpp
Analysis/VFABIDemangling.cpp
Analysis/ValueTracking.cpp
Analysis/VectorUtils.cpp
AsmParser/LLLexer.cpp
AsmParser/LLParser.cpp
AsmParser/LLParser.h
AsmParser/LLToken.h
AsmParser/Parser.cpp
BinaryFormat/AMDGPUMetadataVerifier.cpp
BinaryFormat/Dwarf.cpp
BinaryFormat/Magic.cpp
BinaryFormat/XCOFF.cpp
Bitcode/Reader/BitcodeAnalyzer.cpp
Bitcode/Reader/BitcodeReader.cpp
Bitcode/Reader/MetadataLoader.cpp
Bitcode/Writer/BitWriter.cpp
Bitcode/Writer/BitcodeWriter.cpp
Bitcode/Writer/BitcodeWriterPass.cpp
Bitstream/Reader/BitstreamReader.cpp
CodeGen/AggressiveAntiDepBreaker.cpp
CodeGen/Analysis.cpp
CodeGen/AsmPrinter/AsmPrinter.cpp
CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
CodeGen/AsmPrinter/ByteStreamer.h
CodeGen/AsmPrinter/CodeViewDebug.cpp
CodeGen/AsmPrinter/DIE.cpp
CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
CodeGen/AsmPrinter/DebugLocEntry.h
CodeGen/AsmPrinter/DebugLocStream.cpp
CodeGen/AsmPrinter/DebugLocStream.h
CodeGen/AsmPrinter/DwarfCFIException.cpp
CodeGen/AsmPrinter/DwarfCompileUnit.cpp
CodeGen/AsmPrinter/DwarfCompileUnit.h
CodeGen/AsmPrinter/DwarfDebug.cpp
CodeGen/AsmPrinter/DwarfDebug.h
CodeGen/AsmPrinter/DwarfExpression.cpp
CodeGen/AsmPrinter/DwarfExpression.h
CodeGen/AsmPrinter/DwarfFile.cpp
CodeGen/AsmPrinter/DwarfFile.h
CodeGen/AsmPrinter/DwarfUnit.cpp
CodeGen/AsmPrinter/DwarfUnit.h
CodeGen/AsmPrinter/EHStreamer.cpp
CodeGen/AsmPrinter/ErlangGCPrinter.cpp
CodeGen/AsmPrinter/OcamlGCPrinter.cpp
CodeGen/AsmPrinter/WinCFGuard.cpp
CodeGen/AsmPrinter/WinCFGuard.h
CodeGen/AsmPrinter/WinException.cpp
CodeGen/AtomicExpandPass.cpp
CodeGen/BranchFolding.cpp
CodeGen/BranchFolding.h
CodeGen/BranchRelaxation.cpp
CodeGen/BreakFalseDeps.cpp
CodeGen/CFGuardLongjmp.cpp
CodeGen/CFIInstrInserter.cpp
CodeGen/CalcSpillWeights.cpp
CodeGen/CallingConvLower.cpp
CodeGen/CodeGen.cpp
CodeGen/CodeGenPrepare.cpp
CodeGen/CriticalAntiDepBreaker.cpp
CodeGen/DFAPacketizer.cpp
CodeGen/DeadMachineInstructionElim.cpp
CodeGen/DetectDeadLanes.cpp
CodeGen/DwarfEHPrepare.cpp
CodeGen/EarlyIfConversion.cpp
CodeGen/EdgeBundles.cpp
CodeGen/ExecutionDomainFix.cpp
CodeGen/ExpandMemCmp.cpp
CodeGen/ExpandPostRAPseudos.cpp
CodeGen/ExpandReductions.cpp
CodeGen/FEntryInserter.cpp
CodeGen/FaultMaps.cpp
CodeGen/FinalizeISel.cpp
CodeGen/FuncletLayout.cpp
CodeGen/GCMetadata.cpp
CodeGen/GCRootLowering.cpp
CodeGen/GlobalISel/CSEInfo.cpp
CodeGen/GlobalISel/CSEMIRBuilder.cpp
CodeGen/GlobalISel/CallLowering.cpp
CodeGen/GlobalISel/Combiner.cpp
CodeGen/GlobalISel/CombinerHelper.cpp
CodeGen/GlobalISel/GISelKnownBits.cpp
CodeGen/GlobalISel/IRTranslator.cpp
CodeGen/GlobalISel/InstructionSelect.cpp
CodeGen/GlobalISel/InstructionSelector.cpp
CodeGen/GlobalISel/Legalizer.cpp
CodeGen/GlobalISel/LegalizerHelper.cpp
CodeGen/GlobalISel/LegalizerInfo.cpp
CodeGen/GlobalISel/Localizer.cpp
CodeGen/GlobalISel/MachineIRBuilder.cpp
CodeGen/GlobalISel/RegBankSelect.cpp
CodeGen/GlobalISel/RegisterBank.cpp
CodeGen/GlobalISel/RegisterBankInfo.cpp
CodeGen/GlobalISel/Utils.cpp
CodeGen/GlobalMerge.cpp
CodeGen/HardwareLoops.cpp
CodeGen/IfConversion.cpp
CodeGen/ImplicitNullChecks.cpp
CodeGen/IndirectBrExpandPass.cpp
CodeGen/InlineSpiller.cpp
CodeGen/InterleavedAccessPass.cpp
CodeGen/InterleavedLoadCombinePass.cpp
CodeGen/IntrinsicLowering.cpp
CodeGen/LLVMTargetMachine.cpp
CodeGen/LazyMachineBlockFrequencyInfo.cpp
CodeGen/LexicalScopes.cpp
CodeGen/LiveDebugValues.cpp
CodeGen/LiveDebugVariables.cpp
CodeGen/LiveInterval.cpp
CodeGen/LiveIntervals.cpp
CodeGen/LivePhysRegs.cpp
CodeGen/LiveRangeCalc.cpp
CodeGen/LiveRangeCalc.h
CodeGen/LiveRangeEdit.cpp
CodeGen/LiveRangeShrink.cpp
CodeGen/LiveRegMatrix.cpp
CodeGen/LiveRegUnits.cpp
CodeGen/LiveStacks.cpp
CodeGen/LiveVariables.cpp
CodeGen/LocalStackSlotAllocation.cpp
CodeGen/LowLevelType.cpp
CodeGen/LowerEmuTLS.cpp
CodeGen/MIRCanonicalizerPass.cpp
CodeGen/MIRNamerPass.cpp
CodeGen/MIRParser/MILexer.cpp
CodeGen/MIRParser/MILexer.h
CodeGen/MIRParser/MIParser.cpp
CodeGen/MIRParser/MIRParser.cpp
CodeGen/MIRPrinter.cpp
CodeGen/MIRPrintingPass.cpp
CodeGen/MIRVRegNamerUtils.cpp
CodeGen/MIRVRegNamerUtils.h
CodeGen/MachineBasicBlock.cpp
CodeGen/MachineBlockFrequencyInfo.cpp
CodeGen/MachineBlockPlacement.cpp
CodeGen/MachineBranchProbabilityInfo.cpp
CodeGen/MachineCSE.cpp
CodeGen/MachineCombiner.cpp
CodeGen/MachineCopyPropagation.cpp
CodeGen/MachineDominanceFrontier.cpp
CodeGen/MachineDominators.cpp
CodeGen/MachineFrameInfo.cpp
CodeGen/MachineFunction.cpp
CodeGen/MachineFunctionPass.cpp
CodeGen/MachineFunctionPrinterPass.cpp
CodeGen/MachineInstr.cpp
CodeGen/MachineInstrBundle.cpp
CodeGen/MachineLICM.cpp
CodeGen/MachineLoopInfo.cpp
CodeGen/MachineLoopUtils.cpp
CodeGen/MachineModuleInfo.cpp
CodeGen/MachineOperand.cpp
CodeGen/MachineOptimizationRemarkEmitter.cpp
CodeGen/MachineOutliner.cpp
CodeGen/MachinePipeliner.cpp
CodeGen/MachinePostDominators.cpp
CodeGen/MachineRegionInfo.cpp
CodeGen/MachineRegisterInfo.cpp
CodeGen/MachineSSAUpdater.cpp
CodeGen/MachineScheduler.cpp
CodeGen/MachineSink.cpp
CodeGen/MachineSizeOpts.cpp
CodeGen/MachineTraceMetrics.cpp
CodeGen/MachineVerifier.cpp
CodeGen/MacroFusion.cpp
CodeGen/ModuloSchedule.cpp
CodeGen/NonRelocatableStringpool.cpp
CodeGen/OptimizePHIs.cpp
CodeGen/PHIElimination.cpp
CodeGen/ParallelCG.cpp
CodeGen/PatchableFunction.cpp
CodeGen/PeepholeOptimizer.cpp
CodeGen/PostRAHazardRecognizer.cpp
CodeGen/PostRASchedulerList.cpp
CodeGen/PreISelIntrinsicLowering.cpp
CodeGen/ProcessImplicitDefs.cpp
CodeGen/PrologEpilogInserter.cpp
CodeGen/PseudoSourceValue.cpp
CodeGen/ReachingDefAnalysis.cpp
CodeGen/RegAllocBase.cpp
CodeGen/RegAllocFast.cpp
CodeGen/RegAllocGreedy.cpp
CodeGen/RegAllocPBQP.cpp
CodeGen/RegUsageInfoCollector.cpp
CodeGen/RegUsageInfoPropagate.cpp
CodeGen/RegisterClassInfo.cpp
CodeGen/RegisterCoalescer.cpp
CodeGen/RegisterPressure.cpp
CodeGen/RegisterScavenging.cpp
CodeGen/RenameIndependentSubregs.cpp
CodeGen/ResetMachineFunctionPass.cpp
CodeGen/SafeStack.cpp
CodeGen/ScalarizeMaskedMemIntrin.cpp
CodeGen/ScheduleDAGInstrs.cpp
CodeGen/SelectionDAG/DAGCombiner.cpp
CodeGen/SelectionDAG/FastISel.cpp
CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
CodeGen/SelectionDAG/InstrEmitter.cpp
CodeGen/SelectionDAG/LegalizeDAG.cpp
CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
CodeGen/SelectionDAG/LegalizeTypes.cpp
CodeGen/SelectionDAG/LegalizeTypes.h
CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
CodeGen/SelectionDAG/LegalizeVectorOps.cpp
CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
CodeGen/SelectionDAG/ScheduleDAGFast.cpp
CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
CodeGen/SelectionDAG/SelectionDAG.cpp
CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
CodeGen/SelectionDAG/SelectionDAGBuilder.h
CodeGen/SelectionDAG/SelectionDAGDumper.cpp
CodeGen/SelectionDAG/SelectionDAGISel.cpp
CodeGen/SelectionDAG/StatepointLowering.cpp
CodeGen/SelectionDAG/TargetLowering.cpp
CodeGen/ShadowStackGCLowering.cpp
CodeGen/ShrinkWrap.cpp
CodeGen/SjLjEHPrepare.cpp
CodeGen/SlotIndexes.cpp
CodeGen/SpillPlacement.cpp
CodeGen/SplitKit.cpp
CodeGen/SplitKit.h
CodeGen/StackColoring.cpp
CodeGen/StackMapLivenessAnalysis.cpp
CodeGen/StackMaps.cpp
CodeGen/StackProtector.cpp
CodeGen/StackSlotColoring.cpp
CodeGen/SwiftErrorValueTracking.cpp
CodeGen/SwitchLoweringUtils.cpp
CodeGen/TailDuplication.cpp
CodeGen/TailDuplicator.cpp
CodeGen/TargetFrameLoweringImpl.cpp
CodeGen/TargetInstrInfo.cpp
CodeGen/TargetLoweringBase.cpp
CodeGen/TargetLoweringObjectFileImpl.cpp
CodeGen/TargetOptionsImpl.cpp
CodeGen/TargetPassConfig.cpp
CodeGen/TargetRegisterInfo.cpp
CodeGen/TargetSchedule.cpp
CodeGen/TargetSubtargetInfo.cpp
CodeGen/TwoAddressInstructionPass.cpp
CodeGen/TypePromotion.cpp
CodeGen/UnreachableBlockElim.cpp
CodeGen/ValueTypes.cpp
CodeGen/VirtRegMap.cpp
CodeGen/WasmEHPrepare.cpp
CodeGen/WinEHPrepare.cpp
CodeGen/XRayInstrumentation.cpp
DWARFLinker
DebugInfo/CodeView/CVTypeVisitor.cpp
DebugInfo/CodeView/CodeViewRecordIO.cpp
DebugInfo/CodeView/EnumTables.cpp
DebugInfo/CodeView/SymbolDumper.cpp
DebugInfo/CodeView/SymbolRecordHelpers.cpp
DebugInfo/CodeView/SymbolRecordMapping.cpp
DebugInfo/CodeView/TypeRecordMapping.cpp
DebugInfo/CodeView/TypeStreamMerger.cpp
DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
DebugInfo/DWARF/DWARFAcceleratorTable.cpp
DebugInfo/DWARF/DWARFAddressRange.cpp
DebugInfo/DWARF/DWARFCompileUnit.cpp
DebugInfo/DWARF/DWARFContext.cpp
DebugInfo/DWARF/DWARFDataExtractor.cpp
DebugInfo/DWARF/DWARFDebugAbbrev.cpp
DebugInfo/DWARF/DWARFDebugAddr.cpp
DebugInfo/DWARF/DWARFDebugArangeSet.cpp
DebugInfo/DWARF/DWARFDebugAranges.cpp
DebugInfo/DWARF/DWARFDebugFrame.cpp
DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
DebugInfo/DWARF/DWARFDebugLine.cpp
DebugInfo/DWARF/DWARFDebugLoc.cpp
DebugInfo/DWARF/DWARFDebugMacro.cpp
DebugInfo/DWARF/DWARFDebugPubTable.cpp
DebugInfo/DWARF/DWARFDebugRangeList.cpp
DebugInfo/DWARF/DWARFDebugRnglists.cpp
DebugInfo/DWARF/DWARFDie.cpp
DebugInfo/DWARF/DWARFExpression.cpp
DebugInfo/DWARF/DWARFFormValue.cpp
DebugInfo/DWARF/DWARFGdbIndex.cpp
DebugInfo/DWARF/DWARFListTable.cpp
DebugInfo/DWARF/DWARFLocationExpression.cpp
DebugInfo/DWARF/DWARFTypeUnit.cpp
DebugInfo/DWARF/DWARFUnit.cpp
DebugInfo/DWARF/DWARFUnitIndex.cpp
DebugInfo/DWARF/DWARFVerifier.cpp
DebugInfo/GSYM/FileWriter.cpp
DebugInfo/GSYM/FunctionInfo.cpp
DebugInfo/GSYM/GsymCreator.cpp
DebugInfo/GSYM/GsymReader.cpp
DebugInfo/GSYM/Header.cpp
DebugInfo/GSYM/InlineInfo.cpp
DebugInfo/GSYM/LineTable.cpp
DebugInfo/GSYM/LookupResult.cpp
DebugInfo/GSYM/Range.cpp
DebugInfo/MSF/MappedBlockStream.cpp
DebugInfo/PDB/DIA/DIARawSymbol.cpp
DebugInfo/PDB/DIA/DIASectionContrib.cpp
DebugInfo/PDB/DIA/DIASession.cpp
DebugInfo/PDB/GenericError.cpp
DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
DebugInfo/PDB/Native/DbiStreamBuilder.cpp
DebugInfo/PDB/Native/GSIStreamBuilder.cpp
DebugInfo/PDB/Native/Hash.cpp
DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
DebugInfo/PDB/Native/NativeRawSymbol.cpp
DebugInfo/PDB/Native/NativeSession.cpp
DebugInfo/PDB/Native/NativeTypeEnum.cpp
DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
DebugInfo/PDB/Native/PDBFile.cpp
DebugInfo/PDB/Native/PDBFileBuilder.cpp
DebugInfo/PDB/Native/TpiHashing.cpp
DebugInfo/PDB/Native/TpiStream.cpp
DebugInfo/PDB/Native/TpiStreamBuilder.cpp
DebugInfo/PDB/PDBSymbolFunc.cpp
DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
DebugInfo/PDB/UDTLayout.cpp
DebugInfo/Symbolize/DIPrinter.cpp
DebugInfo/Symbolize/SymbolizableObjectFile.cpp
DebugInfo/Symbolize/SymbolizableObjectFile.h
DebugInfo/Symbolize/Symbolize.cpp
Demangle/ItaniumDemangle.cpp
Demangle/MicrosoftDemangle.cpp
Demangle/MicrosoftDemangleNodes.cpp
ExecutionEngine/ExecutionEngine.cpp
ExecutionEngine/ExecutionEngineBindings.cpp
ExecutionEngine/GDBRegistrationListener.cpp
ExecutionEngine/Interpreter/ExternalFunctions.cpp
ExecutionEngine/JITLink/BasicGOTAndStubsBuilder.h
ExecutionEngine/JITLink/EHFrameSupport.cpp
ExecutionEngine/JITLink/EHFrameSupportImpl.h
ExecutionEngine/JITLink/JITLink.cpp
ExecutionEngine/JITLink/JITLinkGeneric.cpp
ExecutionEngine/JITLink/JITLinkGeneric.h
ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
ExecutionEngine/JITLink/MachO.cpp
ExecutionEngine/JITLink/MachOAtomGraphBuilder.cpp
ExecutionEngine/JITLink/MachOAtomGraphBuilder.h
ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
ExecutionEngine/JITLink/MachOLinkGraphBuilder.h
ExecutionEngine/JITLink/MachO_arm64.cpp
ExecutionEngine/JITLink/MachO_x86_64.cpp
ExecutionEngine/MCJIT/MCJIT.cpp
ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
ExecutionEngine/Orc/CompileOnDemandLayer.cpp
ExecutionEngine/Orc/CompileUtils.cpp
ExecutionEngine/Orc/Core.cpp
ExecutionEngine/Orc/DebugUtils.cpp
ExecutionEngine/Orc/ExecutionUtils.cpp
ExecutionEngine/Orc/IRCompileLayer.cpp
ExecutionEngine/Orc/IRTransformLayer.cpp
ExecutionEngine/Orc/IndirectionUtils.cpp
ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
ExecutionEngine/Orc/LLJIT.cpp
ExecutionEngine/Orc/Layer.cpp
ExecutionEngine/Orc/LazyReexports.cpp
ExecutionEngine/Orc/Legacy.cpp
ExecutionEngine/Orc/ObjectLinkingLayer.cpp
ExecutionEngine/Orc/ObjectTransformLayer.cpp
ExecutionEngine/Orc/OrcCBindingsStack.h
ExecutionEngine/Orc/OrcError.cpp
ExecutionEngine/Orc/RPCUtils.cpp
ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
ExecutionEngine/Orc/SpeculateAnalyses.cpp
ExecutionEngine/Orc/Speculation.cpp
ExecutionEngine/Orc/ThreadSafeModule.cpp
ExecutionEngine/OrcError
ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFAArch64.h
ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
ExecutionEngine/TargetSelect.cpp
Frontend
FuzzMutate/FuzzerCLI.cpp
IR/AbstractCallSite.cpp
IR/AsmWriter.cpp
IR/AttributeImpl.h
IR/Attributes.cpp
IR/AutoUpgrade.cpp
IR/BasicBlock.cpp
IR/ConstantFold.cpp
IR/ConstantRange.cpp
IR/Constants.cpp
IR/ConstantsContext.h
IR/Core.cpp
IR/DIBuilder.cpp
IR/DataLayout.cpp
IR/DebugInfo.cpp
IR/DebugInfoMetadata.cpp
IR/DiagnosticInfo.cpp
IR/Dominators.cpp
IR/FPEnv.cpp
IR/Function.cpp
IR/Globals.cpp
IR/IRBuilder.cpp
IR/IRPrintingPasses.cpp
IR/InlineAsm.cpp
IR/Instruction.cpp
IR/Instructions.cpp
IR/IntrinsicInst.cpp
IR/LLVMContext.cpp
IR/LLVMContextImpl.cpp
IR/LLVMContextImpl.h
IR/LegacyPassManager.cpp
IR/MDBuilder.cpp
IR/Metadata.cpp
IR/Module.cpp
IR/ModuleSummaryIndex.cpp
IR/Pass.cpp
IR/RemarkStreamer.cpp
IR/SafepointIRVerifier.cpp
IR/Type.cpp
IR/TypeFinder.cpp
IR/User.cpp
IR/Value.cpp
IR/Verifier.cpp
LTO/Caching.cpp
LTO/LTO.cpp
LTO/LTOBackend.cpp
LTO/LTOCodeGenerator.cpp
LTO/LTOModule.cpp
LTO/SummaryBasedOptimizations.cpp
LTO/ThinLTOCodeGenerator.cpp
Linker/IRMover.cpp
Linker/LinkModules.cpp
MC/ELFObjectWriter.cpp
MC/MCAsmBackend.cpp
MC/MCAsmInfo.cpp
MC/MCAsmInfoELF.cpp
MC/MCAsmInfoXCOFF.cpp
MC/MCAsmMacro.cpp
MC/MCAsmStreamer.cpp
MC/MCAssembler.cpp
MC/MCCodePadder.cpp
MC/MCContext.cpp
MC/MCDisassembler/Disassembler.cpp
MC/MCDisassembler/MCDisassembler.cpp
MC/MCDwarf.cpp
MC/MCELFStreamer.cpp
MC/MCExpr.cpp
MC/MCFragment.cpp
MC/MCInstPrinter.cpp
MC/MCInstrAnalysis.cpp
MC/MCMachOStreamer.cpp
MC/MCObjectFileInfo.cpp
MC/MCObjectStreamer.cpp
MC/MCParser/AsmParser.cpp
MC/MCParser/COFFAsmParser.cpp
MC/MCParser/DarwinAsmParser.cpp
MC/MCParser/WasmAsmParser.cpp
MC/MCRegisterInfo.cpp
MC/MCSection.cpp
MC/MCSectionXCOFF.cpp
MC/MCStreamer.cpp
MC/MCSubtargetInfo.cpp
MC/MCSymbolELF.cpp
MC/MCTargetOptions.cpp
MC/MCValue.cpp
MC/MCWasmObjectTargetWriter.cpp
MC/MCWasmStreamer.cpp
MC/MCWinCOFFStreamer.cpp
MC/MCXCOFFStreamer.cpp
MC/MachObjectWriter.cpp
MC/StringTableBuilder.cpp
MC/WasmObjectWriter.cpp
MC/WinCOFFObjectWriter.cpp
MC/XCOFFObjectWriter.cpp
MCA/CodeEmitter.cpp
MCA/Context.cpp
MCA/HardwareUnits/LSUnit.cpp
MCA/HardwareUnits/RegisterFile.cpp
MCA/HardwareUnits/ResourceManager.cpp
MCA/HardwareUnits/RetireControlUnit.cpp
MCA/HardwareUnits/Scheduler.cpp
MCA/InstrBuilder.cpp
MCA/Instruction.cpp
MCA/Stages/DispatchStage.cpp
MCA/Stages/EntryStage.cpp
MCA/Stages/ExecuteStage.cpp
MCA/Stages/InstructionTables.cpp
MCA/Stages/RetireStage.cpp
Object/Archive.cpp
Object/ArchiveWriter.cpp
Object/Binary.cpp
Object/COFFObjectFile.cpp
Object/Decompressor.cpp
Object/ELF.cpp
Object/ELFObjectFile.cpp
Object/MachOObjectFile.cpp
Object/MachOUniversal.cpp
Object/Minidump.cpp
Object/ModuleSymbolTable.cpp
Object/Object.cpp
Object/ObjectFile.cpp
Object/RelocationResolver.cpp
Object/SymbolicFile.cpp
Object/TapiFile.cpp
Object/TapiUniversal.cpp
Object/WasmObjectFile.cpp
Object/WindowsResource.cpp
Object/XCOFFObjectFile.cpp
ObjectYAML/COFFEmitter.cpp
ObjectYAML/CodeViewYAMLDebugSections.cpp
ObjectYAML/CodeViewYAMLSymbols.cpp
ObjectYAML/DWARFEmitter.cpp
ObjectYAML/ELFEmitter.cpp
ObjectYAML/ELFYAML.cpp
ObjectYAML/MachOEmitter.cpp
ObjectYAML/MachOYAML.cpp
ObjectYAML/MinidumpEmitter.cpp
ObjectYAML/MinidumpYAML.cpp
ObjectYAML/WasmEmitter.cpp
ObjectYAML/WasmYAML.cpp
ObjectYAML/YAML.cpp
ObjectYAML/yaml2obj.cpp
Option/ArgList.cpp
Passes/PassBuilder.cpp
Passes/PassRegistry.def
ProfileData/Coverage/CoverageMapping.cpp
ProfileData/Coverage/CoverageMappingReader.cpp
ProfileData/Coverage/CoverageMappingWriter.cpp
ProfileData/GCOV.cpp
ProfileData/InstrProf.cpp
ProfileData/InstrProfReader.cpp
ProfileData/InstrProfWriter.cpp
ProfileData/ProfileSummaryBuilder.cpp
ProfileData/SampleProf.cpp
ProfileData/SampleProfReader.cpp
ProfileData/SampleProfWriter.cpp
Remarks/BitstreamRemarkParser.cpp
Remarks/BitstreamRemarkParser.h
Remarks/BitstreamRemarkSerializer.cpp
Remarks/RemarkFormat.cpp
Remarks/RemarkLinker.cpp
Remarks/RemarkParser.cpp
Remarks/RemarkSerializer.cpp
Remarks/RemarkStringTable.cpp
Remarks/YAMLRemarkParser.cpp
Remarks/YAMLRemarkParser.h
Remarks/YAMLRemarkSerializer.cpp
Support/AArch64TargetParser.cpp
Support/ABIBreak.cpp
Support/AMDGPUMetadata.cpp
Support/APFloat.cpp
Support/APInt.cpp
Support/ARMAttributeParser.cpp
Support/ARMTargetParser.cpp
Support/BinaryStreamReader.cpp
Support/CRC.cpp
Support/CachePruning.cpp
Support/CodeGenCoverage.cpp
Support/CommandLine.cpp
Support/CrashRecoveryContext.cpp
Support/DataExtractor.cpp
Support/DebugCounter.cpp
Support/Error.cpp
Support/ErrorHandling.cpp
Support/FileCheck.cpp
Support/FileCheckImpl.h
Support/FileCollector.cpp
Support/FileOutputBuffer.cpp
Support/FileUtilities.cpp
Support/GlobPattern.cpp
Support/Host.cpp
Support/InitLLVM.cpp
Support/ItaniumManglingCanonicalizer.cpp
Support/JSON.cpp
Support/JamCRC.cpp
Support/KnownBits.cpp
Support/LockFileManager.cpp
Support/ManagedStatic.cpp
Support/MemoryBuffer.cpp
Support/Mutex.cpp
Support/Options.cpp
Support/Parallel.cpp
Support/Path.cpp
Support/PrettyStackTrace.cpp
Support/Process.cpp
Support/RWMutex.cpp
Support/RandomNumberGenerator.cpp
Support/Regex.cpp
Support/SHA1.cpp
Support/Signals.cpp
Support/Signposts.cpp
Support/SpecialCaseList.cpp
Support/Statistic.cpp
Support/StringExtras.cpp
Support/StringRef.cpp
Support/TargetParser.cpp
Support/Threading.cpp
Support/TimeProfiler.cpp
Support/Timer.cpp
Support/Triple.cpp
Support/Unix/Memory.inc
Support/Unix/Mutex.inc
Support/Unix/Path.inc
Support/Unix/Process.inc
Support/Unix/Program.inc
Support/Unix/RWMutex.inc
Support/Unix/Signals.inc
Support/Unix/Threading.inc
Support/Unix/Unix.h
Support/VirtualFileSystem.cpp
Support/Windows/DynamicLibrary.inc
Support/Windows/Host.inc
Support/Windows/Memory.inc
Support/Windows/Mutex.inc
Support/Windows/Path.inc
Support/Windows/Process.inc
Support/Windows/Program.inc
Support/Windows/RWMutex.inc
Support/Windows/Signals.inc
Support/Windows/ThreadLocal.inc
Support/Windows/Threading.inc
Support/Windows/WindowsSupport.h
Support/Windows/explicit_symbols.inc
Support/YAMLParser.cpp
Support/YAMLTraits.cpp
Support/Z3Solver.cpp
Support/raw_ostream.cpp
Support/regcomp.c
TableGen/Error.cpp
TableGen/Main.cpp
TableGen/Record.cpp
TableGen/SetTheory.cpp
TableGen/TGLexer.cpp
TableGen/TGLexer.h
TableGen/TGParser.cpp
TableGen/TGParser.h
Target/AArch64/AArch64.h
Target/AArch64/AArch64.td
Target/AArch64/AArch64A57FPLoadBalancing.cpp
Target/AArch64/AArch64AdvSIMDScalarPass.cpp
Target/AArch64/AArch64AsmPrinter.cpp
Target/AArch64/AArch64CallLowering.cpp
Target/AArch64/AArch64CallLowering.h
Target/AArch64/AArch64CallingConvention.cpp
Target/AArch64/AArch64CallingConvention.h
Target/AArch64/AArch64CallingConvention.td
Target/AArch64/AArch64CollectLOH.cpp
Target/AArch64/AArch64Combine.td
Target/AArch64/AArch64CompressJumpTables.cpp
Target/AArch64/AArch64CondBrTuning.cpp
Target/AArch64/AArch64ConditionOptimizer.cpp
Target/AArch64/AArch64ConditionalCompares.cpp
Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
Target/AArch64/AArch64ExpandPseudoInsts.cpp
Target/AArch64/AArch64FalkorHWPFFix.cpp
Target/AArch64/AArch64FastISel.cpp
Target/AArch64/AArch64FrameLowering.cpp
Target/AArch64/AArch64FrameLowering.h
Target/AArch64/AArch64ISelDAGToDAG.cpp
Target/AArch64/AArch64ISelLowering.cpp
Target/AArch64/AArch64ISelLowering.h
Target/AArch64/AArch64InstrAtomics.td
Target/AArch64/AArch64InstrFormats.td
Target/AArch64/AArch64InstrInfo.cpp
Target/AArch64/AArch64InstrInfo.h
Target/AArch64/AArch64InstrInfo.td
Target/AArch64/AArch64InstructionSelector.cpp
Target/AArch64/AArch64LegalizerInfo.cpp
Target/AArch64/AArch64LegalizerInfo.h
Target/AArch64/AArch64LoadStoreOptimizer.cpp
Target/AArch64/AArch64MCInstLower.cpp
Target/AArch64/AArch64MachineFunctionInfo.h
Target/AArch64/AArch64PBQPRegAlloc.cpp
Target/AArch64/AArch64PreLegalizerCombiner.cpp
Target/AArch64/AArch64PromoteConstant.cpp
Target/AArch64/AArch64RegisterBankInfo.cpp
Target/AArch64/AArch64RegisterBankInfo.h
Target/AArch64/AArch64RegisterInfo.cpp
Target/AArch64/AArch64RegisterInfo.td
Target/AArch64/AArch64SIMDInstrOpt.cpp
Target/AArch64/AArch64SVEInstrInfo.td
Target/AArch64/AArch64SchedExynosM1.td
Target/AArch64/AArch64SchedExynosM3.td
Target/AArch64/AArch64SchedExynosM4.td
Target/AArch64/AArch64SchedExynosM5.td
Target/AArch64/AArch64SchedPredExynos.td
Target/AArch64/AArch64SchedPredicates.td
Target/AArch64/AArch64SchedThunderX2T99.td
Target/AArch64/AArch64SelectionDAGInfo.cpp
Target/AArch64/AArch64SpeculationHardening.cpp
Target/AArch64/AArch64StackOffset.h
Target/AArch64/AArch64StackTagging.cpp
Target/AArch64/AArch64StackTaggingPreRA.cpp
Target/AArch64/AArch64StorePairSuppress.cpp
Target/AArch64/AArch64Subtarget.cpp
Target/AArch64/AArch64Subtarget.h
Target/AArch64/AArch64SystemOperands.td
Target/AArch64/AArch64TargetMachine.cpp
Target/AArch64/AArch64TargetObjectFile.cpp
Target/AArch64/AArch64TargetObjectFile.h
Target/AArch64/AArch64TargetTransformInfo.cpp
Target/AArch64/AArch64TargetTransformInfo.h
Target/AArch64/AsmParser/AArch64AsmParser.cpp
Target/AArch64/Disassembler/AArch64Disassembler.cpp
Target/AArch64/Disassembler/AArch64Disassembler.h
Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
Target/AArch64/MCTargetDesc/AArch64InstPrinter.h
Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
Target/AArch64/MCTargetDesc/AArch64MCExpr.h
Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
Target/AArch64/SVEInstrFormats.td
Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
Target/AArch64/Utils/AArch64BaseInfo.cpp
Target/AArch64/Utils/AArch64BaseInfo.h
Target/AMDGPU/AMDGPU.h
Target/AMDGPU/AMDGPU.td
Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
Target/AMDGPU/AMDGPUArgumentUsageInfo.h
Target/AMDGPU/AMDGPUAsmPrinter.cpp
Target/AMDGPU/AMDGPUAsmPrinter.h
Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
Target/AMDGPU/AMDGPUCallLowering.cpp
Target/AMDGPU/AMDGPUCallLowering.h
Target/AMDGPU/AMDGPUCallingConv.td
Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
Target/AMDGPU/AMDGPUFrameLowering.cpp
Target/AMDGPU/AMDGPUFrameLowering.h
Target/AMDGPU/AMDGPUGISel.td
Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
Target/AMDGPU/AMDGPUGlobalISelUtils.cpp
Target/AMDGPU/AMDGPUGlobalISelUtils.h
Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
Target/AMDGPU/AMDGPUISelLowering.cpp
Target/AMDGPU/AMDGPUISelLowering.h
Target/AMDGPU/AMDGPUInline.cpp
Target/AMDGPU/AMDGPUInstrInfo.td
Target/AMDGPU/AMDGPUInstructionSelector.cpp
Target/AMDGPU/AMDGPUInstructionSelector.h
Target/AMDGPU/AMDGPUInstructions.td
Target/AMDGPU/AMDGPULegalizerInfo.cpp
Target/AMDGPU/AMDGPULegalizerInfo.h
Target/AMDGPU/AMDGPULibCalls.cpp
Target/AMDGPU/AMDGPULibFunc.cpp
Target/AMDGPU/AMDGPULowerKernelArguments.cpp
Target/AMDGPU/AMDGPUMCInstLower.cpp
Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
Target/AMDGPU/AMDGPUMachineFunction.cpp
Target/AMDGPU/AMDGPUMachineFunction.h
Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
Target/AMDGPU/AMDGPUPromoteAlloca.cpp
Target/AMDGPU/AMDGPURegisterBankInfo.cpp
Target/AMDGPU/AMDGPURegisterBankInfo.h
Target/AMDGPU/AMDGPURegisterBanks.td
Target/AMDGPU/AMDGPURegisterInfo.cpp
Target/AMDGPU/AMDGPURegisterInfo.h
Target/AMDGPU/AMDGPURewriteOutArguments.cpp
Target/AMDGPU/AMDGPUSearchableTables.td
Target/AMDGPU/AMDGPUSubtarget.cpp
Target/AMDGPU/AMDGPUSubtarget.h
Target/AMDGPU/AMDGPUTargetMachine.cpp
Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
Target/AMDGPU/AMDGPUTargetTransformInfo.h
Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
Target/AMDGPU/AMDGPUUnifyMetadata.cpp
Target/AMDGPU/AMDILCFGStructurizer.cpp
Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
Target/AMDGPU/BUFInstructions.td
Target/AMDGPU/CaymanInstructions.td
Target/AMDGPU/DSInstructions.td
Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
Target/AMDGPU/EvergreenInstructions.td
Target/AMDGPU/FLATInstructions.td
Target/AMDGPU/GCNDPPCombine.cpp
Target/AMDGPU/GCNHazardRecognizer.cpp
Target/AMDGPU/GCNILPSched.cpp
Target/AMDGPU/GCNIterativeScheduler.cpp
Target/AMDGPU/GCNNSAReassign.cpp
Target/AMDGPU/GCNRegBankReassign.cpp
Target/AMDGPU/GCNRegPressure.cpp
Target/AMDGPU/GCNRegPressure.h
Target/AMDGPU/GCNSchedStrategy.cpp
Target/AMDGPU/GCNSchedStrategy.h
Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.h
Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
Target/AMDGPU/MIMGInstructions.td
Target/AMDGPU/R600AsmPrinter.cpp
Target/AMDGPU/R600ControlFlowFinalizer.cpp
Target/AMDGPU/R600ExpandSpecialInstrs.cpp
Target/AMDGPU/R600FrameLowering.h
Target/AMDGPU/R600ISelLowering.cpp
Target/AMDGPU/R600InstrInfo.cpp
Target/AMDGPU/R600InstrInfo.h
Target/AMDGPU/R600Instructions.td
Target/AMDGPU/R600MachineScheduler.cpp
Target/AMDGPU/R600OptimizeVectorRegisters.cpp
Target/AMDGPU/R600Packetizer.cpp
Target/AMDGPU/R600RegisterInfo.cpp
Target/AMDGPU/SIAddIMGInit.cpp
Target/AMDGPU/SIAnnotateControlFlow.cpp
Target/AMDGPU/SIDefines.h
Target/AMDGPU/SIFixSGPRCopies.cpp
Target/AMDGPU/SIFixupVectorISel.cpp
Target/AMDGPU/SIFoldOperands.cpp
Target/AMDGPU/SIFormMemoryClauses.cpp
Target/AMDGPU/SIFrameLowering.cpp
Target/AMDGPU/SIFrameLowering.h
Target/AMDGPU/SIISelLowering.cpp
Target/AMDGPU/SIISelLowering.h
Target/AMDGPU/SIInsertWaitcnts.cpp
Target/AMDGPU/SIInstrFormats.td
Target/AMDGPU/SIInstrInfo.cpp
Target/AMDGPU/SIInstrInfo.h
Target/AMDGPU/SIInstrInfo.td
Target/AMDGPU/SIInstructions.td
Target/AMDGPU/SILoadStoreOptimizer.cpp
Target/AMDGPU/SILowerControlFlow.cpp
Target/AMDGPU/SILowerI1Copies.cpp
Target/AMDGPU/SILowerSGPRSpills.cpp
Target/AMDGPU/SIMachineFunctionInfo.cpp
Target/AMDGPU/SIMachineFunctionInfo.h
Target/AMDGPU/SIMachineScheduler.cpp
Target/AMDGPU/SIMachineScheduler.h
Target/AMDGPU/SIMemoryLegalizer.cpp
Target/AMDGPU/SIModeRegister.cpp
Target/AMDGPU/SIOptimizeExecMasking.cpp
Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
Target/AMDGPU/SIPeepholeSDWA.cpp
Target/AMDGPU/SIPreAllocateWWMRegs.cpp
Target/AMDGPU/SIProgramInfo.h
Target/AMDGPU/SIRegisterInfo.cpp
Target/AMDGPU/SIRegisterInfo.h
Target/AMDGPU/SIRegisterInfo.td
Target/AMDGPU/SIShrinkInstructions.cpp
Target/AMDGPU/SIWholeQuadMode.cpp
Target/AMDGPU/SMInstructions.td
Target/AMDGPU/SOPInstructions.td
Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
Target/AMDGPU/Utils/AMDGPUBaseInfo.h
Target/AMDGPU/Utils/AMDGPUPALMetadata.cpp
Target/AMDGPU/VOP1Instructions.td
Target/AMDGPU/VOP2Instructions.td
Target/AMDGPU/VOP3Instructions.td
Target/AMDGPU/VOP3PInstructions.td
Target/AMDGPU/VOPCInstructions.td
Target/AMDGPU/VOPInstructions.td
Target/ARC/ARCAsmPrinter.cpp
Target/ARC/ARCBranchFinalize.cpp
Target/ARC/ARCFrameLowering.h
Target/ARC/ARCISelLowering.cpp
Target/ARC/ARCInstrInfo.cpp
Target/ARC/ARCInstrInfo.h
Target/ARC/ARCMachineFunctionInfo.h
Target/ARC/ARCOptAddrMode.cpp
Target/ARC/ARCRegisterInfo.cpp
Target/ARC/ARCTargetMachine.cpp
Target/ARC/Disassembler/ARCDisassembler.cpp
Target/ARC/MCTargetDesc/ARCInstPrinter.cpp
Target/ARC/MCTargetDesc/ARCInstPrinter.h
Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
Target/ARC/TargetInfo/ARCTargetInfo.cpp
Target/ARM/A15SDOptimizer.cpp
Target/ARM/ARM.h
Target/ARM/ARM.td
Target/ARM/ARMAsmPrinter.cpp
Target/ARM/ARMBaseInstrInfo.cpp
Target/ARM/ARMBaseInstrInfo.h
Target/ARM/ARMBaseRegisterInfo.cpp
Target/ARM/ARMBaseRegisterInfo.h
Target/ARM/ARMBasicBlockInfo.cpp
Target/ARM/ARMBasicBlockInfo.h
Target/ARM/ARMCallLowering.cpp
Target/ARM/ARMCallLowering.h
Target/ARM/ARMCallingConv.cpp
Target/ARM/ARMCallingConv.h
Target/ARM/ARMCallingConv.td
Target/ARM/ARMCodeGenPrepare.cpp
Target/ARM/ARMConstantIslandPass.cpp
Target/ARM/ARMConstantPoolValue.cpp
Target/ARM/ARMExpandPseudoInsts.cpp
Target/ARM/ARMFastISel.cpp
Target/ARM/ARMFrameLowering.cpp
Target/ARM/ARMFrameLowering.h
Target/ARM/ARMHazardRecognizer.h
Target/ARM/ARMISelDAGToDAG.cpp
Target/ARM/ARMISelLowering.cpp
Target/ARM/ARMISelLowering.h
Target/ARM/ARMInstrFormats.td
Target/ARM/ARMInstrInfo.cpp
Target/ARM/ARMInstrInfo.td
Target/ARM/ARMInstrMVE.td
Target/ARM/ARMInstrNEON.td
Target/ARM/ARMInstrThumb.td
Target/ARM/ARMInstrThumb2.td
Target/ARM/ARMInstrVFP.td
Target/ARM/ARMInstructionSelector.cpp
Target/ARM/ARMLegalizerInfo.cpp
Target/ARM/ARMLoadStoreOptimizer.cpp
Target/ARM/ARMLowOverheadLoops.cpp
Target/ARM/ARMMCInstLower.cpp
Target/ARM/ARMMachineFunctionInfo.h
Target/ARM/ARMParallelDSP.cpp
Target/ARM/ARMPredicates.td
Target/ARM/ARMRegisterBankInfo.cpp
Target/ARM/ARMRegisterBankInfo.h
Target/ARM/ARMRegisterInfo.td
Target/ARM/ARMScheduleA9.td
Target/ARM/ARMScheduleM4.td
Target/ARM/ARMSubtarget.cpp
Target/ARM/ARMSubtarget.h
Target/ARM/ARMTargetMachine.cpp
Target/ARM/ARMTargetMachine.h
Target/ARM/ARMTargetTransformInfo.cpp
Target/ARM/ARMTargetTransformInfo.h
Target/ARM/AsmParser/ARMAsmParser.cpp
Target/ARM/Disassembler/ARMDisassembler.cpp
Target/ARM/MCTargetDesc/ARMAddressingModes.h
Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
Target/ARM/MCTargetDesc/ARMBaseInfo.h
Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
Target/ARM/MCTargetDesc/ARMInstPrinter.h
Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
Target/ARM/MLxExpansionPass.cpp
Target/ARM/MVEGatherScatterLowering.cpp
Target/ARM/MVETailPredication.cpp
Target/ARM/MVEVPTBlockPass.cpp
Target/ARM/TargetInfo/ARMTargetInfo.cpp
Target/ARM/Thumb1FrameLowering.cpp
Target/ARM/Thumb1InstrInfo.cpp
Target/ARM/Thumb1InstrInfo.h
Target/ARM/Thumb2ITBlockPass.cpp
Target/ARM/Thumb2InstrInfo.cpp
Target/ARM/Thumb2InstrInfo.h
Target/ARM/Thumb2SizeReduction.cpp
Target/ARM/ThumbRegisterInfo.cpp
Target/ARM/Utils/ARMBaseInfo.h
Target/AVR/AVRAsmPrinter.cpp
Target/AVR/AVRExpandPseudoInsts.cpp
Target/AVR/AVRFrameLowering.cpp
Target/AVR/AVRISelDAGToDAG.cpp
Target/AVR/AVRISelLowering.cpp
Target/AVR/AVRISelLowering.h
Target/AVR/AVRInstrFormats.td
Target/AVR/AVRInstrInfo.cpp
Target/AVR/AVRInstrInfo.h
Target/AVR/AVRInstrInfo.td
Target/AVR/AVRRegisterInfo.cpp
Target/AVR/AVRTargetMachine.cpp
Target/AVR/AsmParser/AVRAsmParser.cpp
Target/AVR/Disassembler/AVRDisassembler.cpp
Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
Target/AVR/MCTargetDesc/AVRInstPrinter.cpp
Target/AVR/MCTargetDesc/AVRInstPrinter.h
Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
Target/AVR/TargetInfo/AVRTargetInfo.cpp
Target/BPF/AsmParser/BPFAsmParser.cpp
Target/BPF/BPF.h
Target/BPF/BPFAbstractMemberAccess.cpp
Target/BPF/BPFAsmPrinter.cpp
Target/BPF/BPFCORE.h
Target/BPF/BPFFrameLowering.h
Target/BPF/BPFISelDAGToDAG.cpp
Target/BPF/BPFISelLowering.cpp
Target/BPF/BPFISelLowering.h
Target/BPF/BPFInstrInfo.cpp
Target/BPF/BPFInstrInfo.h
Target/BPF/BPFInstrInfo.td
Target/BPF/BPFMIChecking.cpp
Target/BPF/BPFMIPeephole.cpp
Target/BPF/BPFMISimplifyPatchable.cpp
Target/BPF/BPFRegisterInfo.cpp
Target/BPF/BPFSubtarget.cpp
Target/BPF/BPFTargetMachine.cpp
Target/BPF/BTF.h
Target/BPF/BTFDebug.cpp
Target/BPF/BTFDebug.h
Target/BPF/Disassembler/BPFDisassembler.cpp
Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
Target/BPF/MCTargetDesc/BPFInstPrinter.h
Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
Target/BPF/TargetInfo/BPFTargetInfo.cpp
Target/Hexagon/AsmParser/HexagonAsmParser.cpp
Target/Hexagon/BitTracker.cpp
Target/Hexagon/Disassembler/HexagonDisassembler.cpp
Target/Hexagon/HexagonAsmPrinter.cpp
Target/Hexagon/HexagonBitSimplify.cpp
Target/Hexagon/HexagonBitTracker.cpp
Target/Hexagon/HexagonBlockRanges.cpp
Target/Hexagon/HexagonBranchRelaxation.cpp
Target/Hexagon/HexagonCommonGEP.cpp
Target/Hexagon/HexagonConstExtenders.cpp
Target/Hexagon/HexagonConstPropagation.cpp
Target/Hexagon/HexagonCopyToCombine.cpp
Target/Hexagon/HexagonDepMapAsm2Intrin.td
Target/Hexagon/HexagonDepOperands.td
Target/Hexagon/HexagonEarlyIfConv.cpp
Target/Hexagon/HexagonExpandCondsets.cpp
Target/Hexagon/HexagonFixupHwLoops.cpp
Target/Hexagon/HexagonFrameLowering.cpp
Target/Hexagon/HexagonFrameLowering.h
Target/Hexagon/HexagonGenExtract.cpp
Target/Hexagon/HexagonGenInsert.cpp
Target/Hexagon/HexagonGenMux.cpp
Target/Hexagon/HexagonGenPredicate.cpp
Target/Hexagon/HexagonHardwareLoops.cpp
Target/Hexagon/HexagonISelDAGToDAG.cpp
Target/Hexagon/HexagonISelDAGToDAG.h
Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
Target/Hexagon/HexagonISelLowering.cpp
Target/Hexagon/HexagonISelLowering.h
Target/Hexagon/HexagonISelLoweringHVX.cpp
Target/Hexagon/HexagonInstrInfo.cpp
Target/Hexagon/HexagonInstrInfo.h
Target/Hexagon/HexagonIntrinsics.td
Target/Hexagon/HexagonLoopIdiomRecognition.cpp
Target/Hexagon/HexagonNewValueJump.cpp
Target/Hexagon/HexagonOptAddrMode.cpp
Target/Hexagon/HexagonOptimizeSZextends.cpp
Target/Hexagon/HexagonPatterns.td
Target/Hexagon/HexagonPatternsHVX.td
Target/Hexagon/HexagonPeephole.cpp
Target/Hexagon/HexagonPseudo.td
Target/Hexagon/HexagonRDFOpt.cpp
Target/Hexagon/HexagonRegisterInfo.cpp
Target/Hexagon/HexagonRegisterInfo.td
Target/Hexagon/HexagonSplitConst32AndConst64.cpp
Target/Hexagon/HexagonSplitDouble.cpp
Target/Hexagon/HexagonStoreWidening.cpp
Target/Hexagon/HexagonSubtarget.cpp
Target/Hexagon/HexagonSubtarget.h
Target/Hexagon/HexagonTargetMachine.cpp
Target/Hexagon/HexagonTargetTransformInfo.cpp
Target/Hexagon/HexagonTargetTransformInfo.h
Target/Hexagon/HexagonVExtract.cpp
Target/Hexagon/HexagonVLIWPacketizer.cpp
Target/Hexagon/HexagonVLIWPacketizer.h
Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
Target/Hexagon/RDFCopy.cpp
Target/Hexagon/RDFDeadCode.cpp
Target/Hexagon/RDFGraph.cpp
Target/Hexagon/RDFLiveness.cpp
Target/Hexagon/RDFRegisters.cpp
Target/Hexagon/RDFRegisters.h
Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
Target/Lanai/AsmParser/LanaiAsmParser.cpp
Target/Lanai/Disassembler/LanaiDisassembler.cpp
Target/Lanai/Disassembler/LanaiDisassembler.h
Target/Lanai/LanaiAsmPrinter.cpp
Target/Lanai/LanaiDelaySlotFiller.cpp
Target/Lanai/LanaiFrameLowering.cpp
Target/Lanai/LanaiFrameLowering.h
Target/Lanai/LanaiISelLowering.cpp
Target/Lanai/LanaiISelLowering.h
Target/Lanai/LanaiInstrInfo.cpp
Target/Lanai/LanaiInstrInfo.h
Target/Lanai/LanaiRegisterInfo.cpp
Target/Lanai/LanaiTargetMachine.cpp
Target/Lanai/LanaiTargetTransformInfo.h
Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
Target/Lanai/MCTargetDesc/LanaiInstPrinter.cpp
Target/Lanai/MCTargetDesc/LanaiInstPrinter.h
Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
Target/MSP430/AsmParser/MSP430AsmParser.cpp
Target/MSP430/Disassembler/MSP430Disassembler.cpp
Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
Target/MSP430/MCTargetDesc/MSP430InstPrinter.cpp
Target/MSP430/MCTargetDesc/MSP430InstPrinter.h
Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
Target/MSP430/MSP430AsmPrinter.cpp
Target/MSP430/MSP430BranchSelector.cpp
Target/MSP430/MSP430FrameLowering.h
Target/MSP430/MSP430ISelDAGToDAG.cpp
Target/MSP430/MSP430ISelLowering.cpp
Target/MSP430/MSP430ISelLowering.h
Target/MSP430/MSP430InstrInfo.cpp
Target/MSP430/MSP430InstrInfo.h
Target/MSP430/MSP430MachineFunctionInfo.h
Target/MSP430/MSP430RegisterInfo.cpp
Target/MSP430/MSP430Subtarget.h
Target/MSP430/MSP430TargetMachine.cpp
Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
Target/Mips/AsmParser/MipsAsmParser.cpp
Target/Mips/Disassembler/MipsDisassembler.cpp
Target/Mips/MCTargetDesc/MipsABIInfo.cpp
Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
Target/Mips/MCTargetDesc/MipsAsmBackend.h
Target/Mips/MCTargetDesc/MipsBaseInfo.h
Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
Target/Mips/MCTargetDesc/MipsInstPrinter.h
Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
Target/Mips/MCTargetDesc/MipsMCExpr.cpp
Target/Mips/MCTargetDesc/MipsMCNaCl.h
Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
Target/Mips/MicroMips32r6InstrFormats.td
Target/Mips/MicroMips32r6InstrInfo.td
Target/Mips/MicroMipsDSPInstrInfo.td
Target/Mips/MicroMipsInstrFPU.td
Target/Mips/MicroMipsInstrInfo.td
Target/Mips/MicroMipsSizeReduction.cpp
Target/Mips/Mips.td
Target/Mips/Mips16ISelDAGToDAG.cpp
Target/Mips/Mips16ISelLowering.cpp
Target/Mips/Mips16InstrInfo.cpp
Target/Mips/Mips16InstrInfo.h
Target/Mips/Mips16InstrInfo.td
Target/Mips/Mips32r6InstrInfo.td
Target/Mips/Mips64InstrInfo.td
Target/Mips/Mips64r6InstrInfo.td
Target/Mips/MipsAsmPrinter.cpp
Target/Mips/MipsCallLowering.cpp
Target/Mips/MipsCallLowering.h
Target/Mips/MipsCallingConv.td
Target/Mips/MipsCondMov.td
Target/Mips/MipsConstantIslandPass.cpp
Target/Mips/MipsDSPInstrInfo.td
Target/Mips/MipsDelaySlotFiller.cpp
Target/Mips/MipsExpandPseudo.cpp
Target/Mips/MipsFastISel.cpp
Target/Mips/MipsFrameLowering.h
Target/Mips/MipsISelDAGToDAG.cpp
Target/Mips/MipsISelDAGToDAG.h
Target/Mips/MipsISelLowering.cpp
Target/Mips/MipsISelLowering.h
Target/Mips/MipsInstrFPU.td
Target/Mips/MipsInstrFormats.td
Target/Mips/MipsInstrInfo.cpp
Target/Mips/MipsInstrInfo.h
Target/Mips/MipsInstrInfo.td
Target/Mips/MipsInstructionSelector.cpp
Target/Mips/MipsLegalizerInfo.cpp
Target/Mips/MipsLegalizerInfo.h
Target/Mips/MipsMCInstLower.cpp
Target/Mips/MipsMCInstLower.h
Target/Mips/MipsMSAInstrInfo.td
Target/Mips/MipsOptimizePICCall.cpp
Target/Mips/MipsPfmCounters.td
Target/Mips/MipsPreLegalizerCombiner.cpp
Target/Mips/MipsRegisterBankInfo.cpp
Target/Mips/MipsRegisterBankInfo.h
Target/Mips/MipsRegisterBanks.td
Target/Mips/MipsSEFrameLowering.cpp
Target/Mips/MipsSEISelDAGToDAG.cpp
Target/Mips/MipsSEISelDAGToDAG.h
Target/Mips/MipsSEISelLowering.cpp
Target/Mips/MipsSEInstrInfo.cpp
Target/Mips/MipsSEInstrInfo.h
Target/Mips/MipsSERegisterInfo.cpp
Target/Mips/MipsScheduleGeneric.td
Target/Mips/MipsScheduleP5600.td
Target/Mips/MipsSubtarget.cpp
Target/Mips/MipsSubtarget.h
Target/Mips/MipsTargetMachine.cpp
Target/Mips/MipsTargetStreamer.h
Target/Mips/TargetInfo/MipsTargetInfo.cpp
Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.cpp
Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.h
Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
Target/NVPTX/ManagedStringPool.h
Target/NVPTX/NVPTX.h
Target/NVPTX/NVPTXAsmPrinter.cpp
Target/NVPTX/NVPTXAsmPrinter.h
Target/NVPTX/NVPTXFrameLowering.cpp
Target/NVPTX/NVPTXISelDAGToDAG.cpp
Target/NVPTX/NVPTXISelDAGToDAG.h
Target/NVPTX/NVPTXISelLowering.cpp
Target/NVPTX/NVPTXISelLowering.h
Target/NVPTX/NVPTXImageOptimizer.cpp
Target/NVPTX/NVPTXInstrInfo.cpp
Target/NVPTX/NVPTXInstrInfo.h
Target/NVPTX/NVPTXInstrInfo.td
Target/NVPTX/NVPTXIntrinsics.td
Target/NVPTX/NVPTXLowerAggrCopies.cpp
Target/NVPTX/NVPTXLowerAlloca.cpp
Target/NVPTX/NVPTXLowerArgs.cpp
Target/NVPTX/NVPTXPeephole.cpp
Target/NVPTX/NVPTXPrologEpilogPass.cpp
Target/NVPTX/NVPTXTargetMachine.cpp
Target/NVPTX/NVPTXTargetTransformInfo.cpp
Target/NVPTX/NVPTXTargetTransformInfo.h
Target/NVPTX/NVPTXUtilities.cpp
Target/NVPTX/NVVMIntrRange.cpp
Target/NVPTX/NVVMReflect.cpp
Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
Target/PowerPC/AsmParser/PPCAsmParser.cpp
Target/PowerPC/Disassembler/PPCDisassembler.cpp
Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
Target/PowerPC/MCTargetDesc/PPCInstPrinter.h
Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
Target/PowerPC/MCTargetDesc/PPCMCExpr.h
Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
Target/PowerPC/P9InstrResources.td
Target/PowerPC/PPC.h
Target/PowerPC/PPC.td
Target/PowerPC/PPCAsmPrinter.cpp
Target/PowerPC/PPCBranchCoalescing.cpp
Target/PowerPC/PPCBranchSelector.cpp
Target/PowerPC/PPCCTRLoops.cpp
Target/PowerPC/PPCFastISel.cpp
Target/PowerPC/PPCFrameLowering.cpp
Target/PowerPC/PPCFrameLowering.h
Target/PowerPC/PPCHazardRecognizers.cpp
Target/PowerPC/PPCISelDAGToDAG.cpp
Target/PowerPC/PPCISelLowering.cpp
Target/PowerPC/PPCISelLowering.h
Target/PowerPC/PPCInstr64Bit.td
Target/PowerPC/PPCInstrAltivec.td
Target/PowerPC/PPCInstrFormats.td
Target/PowerPC/PPCInstrHTM.td
Target/PowerPC/PPCInstrInfo.cpp
Target/PowerPC/PPCInstrInfo.h
Target/PowerPC/PPCInstrInfo.td
Target/PowerPC/PPCInstrVSX.td
Target/PowerPC/PPCLoopInstrFormPrep.cpp
Target/PowerPC/PPCLoopPreIncPrep.cpp
Target/PowerPC/PPCLowerMASSVEntries.cpp
Target/PowerPC/PPCMCInstLower.cpp
Target/PowerPC/PPCMIPeephole.cpp
Target/PowerPC/PPCMachineFunctionInfo.h
Target/PowerPC/PPCPreEmitPeephole.cpp
Target/PowerPC/PPCQPXLoadSplat.cpp
Target/PowerPC/PPCReduceCRLogicals.cpp
Target/PowerPC/PPCRegisterInfo.cpp
Target/PowerPC/PPCRegisterInfo.h
Target/PowerPC/PPCRegisterInfo.td
Target/PowerPC/PPCSubtarget.cpp
Target/PowerPC/PPCSubtarget.h
Target/PowerPC/PPCTLSDynamicCall.cpp
Target/PowerPC/PPCTOCRegDeps.cpp
Target/PowerPC/PPCTargetMachine.cpp
Target/PowerPC/PPCTargetTransformInfo.cpp
Target/PowerPC/PPCTargetTransformInfo.h
Target/PowerPC/PPCVSXCopy.cpp
Target/PowerPC/PPCVSXFMAMutate.cpp
Target/PowerPC/PPCVSXSwapRemoval.cpp
Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
Target/RISCV/AsmParser/RISCVAsmParser.cpp
Target/RISCV/Disassembler/RISCVDisassembler.cpp
Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
Target/RISCV/MCTargetDesc/RISCVInstPrinter.h
Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
Target/RISCV/MCTargetDesc/RISCVMCExpr.h
Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
Target/RISCV/RISCV.h
Target/RISCV/RISCV.td
Target/RISCV/RISCVAsmPrinter.cpp
Target/RISCV/RISCVCallLowering.cpp
Target/RISCV/RISCVCallLowering.h
Target/RISCV/RISCVCallingConv.td
Target/RISCV/RISCVExpandPseudoInsts.cpp
Target/RISCV/RISCVFrameLowering.cpp
Target/RISCV/RISCVFrameLowering.h
Target/RISCV/RISCVISelDAGToDAG.cpp
Target/RISCV/RISCVISelLowering.cpp
Target/RISCV/RISCVISelLowering.h
Target/RISCV/RISCVInstrFormats.td
Target/RISCV/RISCVInstrInfo.cpp
Target/RISCV/RISCVInstrInfo.h
Target/RISCV/RISCVInstrInfo.td
Target/RISCV/RISCVInstrInfoA.td
Target/RISCV/RISCVInstrInfoC.td
Target/RISCV/RISCVInstrInfoD.td
Target/RISCV/RISCVInstrInfoF.td
Target/RISCV/RISCVInstrInfoM.td
Target/RISCV/RISCVInstructionSelector.cpp
Target/RISCV/RISCVLegalizerInfo.cpp
Target/RISCV/RISCVLegalizerInfo.h
Target/RISCV/RISCVMergeBaseOffset.cpp
Target/RISCV/RISCVRegisterBankInfo.cpp
Target/RISCV/RISCVRegisterBankInfo.h
Target/RISCV/RISCVRegisterBanks.td
Target/RISCV/RISCVRegisterInfo.cpp
Target/RISCV/RISCVRegisterInfo.h
Target/RISCV/RISCVRegisterInfo.td
Target/RISCV/RISCVSchedRocket32.td
Target/RISCV/RISCVSchedRocket64.td
Target/RISCV/RISCVSchedule.td
Target/RISCV/RISCVSubtarget.cpp
Target/RISCV/RISCVSubtarget.h
Target/RISCV/RISCVTargetMachine.cpp
Target/RISCV/RISCVTargetMachine.h
Target/RISCV/RISCVTargetTransformInfo.cpp
Target/RISCV/RISCVTargetTransformInfo.h
Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
Target/RISCV/Utils/RISCVBaseInfo.cpp
Target/RISCV/Utils/RISCVBaseInfo.h
Target/Sparc/AsmParser/SparcAsmParser.cpp
Target/Sparc/DelaySlotFiller.cpp
Target/Sparc/Disassembler/SparcDisassembler.cpp
Target/Sparc/LeonPasses.h
Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
Target/Sparc/MCTargetDesc/SparcInstPrinter.cpp
Target/Sparc/MCTargetDesc/SparcInstPrinter.h
Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
Target/Sparc/SparcAsmPrinter.cpp
Target/Sparc/SparcFrameLowering.cpp
Target/Sparc/SparcISelDAGToDAG.cpp
Target/Sparc/SparcISelLowering.cpp
Target/Sparc/SparcISelLowering.h
Target/Sparc/SparcInstr64Bit.td
Target/Sparc/SparcInstrInfo.cpp
Target/Sparc/SparcInstrInfo.h
Target/Sparc/SparcInstrInfo.td
Target/Sparc/SparcRegisterInfo.cpp
Target/Sparc/SparcTargetMachine.cpp
Target/Sparc/TargetInfo/SparcTargetInfo.cpp
Target/SystemZ/AsmParser/SystemZAsmParser.cpp
Target/SystemZ/Disassembler/SystemZDisassembler.cpp
Target/SystemZ/MCTargetDesc/SystemZInstPrinter.cpp
Target/SystemZ/MCTargetDesc/SystemZInstPrinter.h
Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
Target/SystemZ/SystemZ.h
Target/SystemZ/SystemZAsmPrinter.cpp
Target/SystemZ/SystemZAsmPrinter.h
Target/SystemZ/SystemZCallingConv.h
Target/SystemZ/SystemZCallingConv.td
Target/SystemZ/SystemZElimCompare.cpp
Target/SystemZ/SystemZExpandPseudo.cpp
Target/SystemZ/SystemZFrameLowering.cpp
Target/SystemZ/SystemZFrameLowering.h
Target/SystemZ/SystemZISelDAGToDAG.cpp
Target/SystemZ/SystemZISelLowering.cpp
Target/SystemZ/SystemZISelLowering.h
Target/SystemZ/SystemZInstrFP.td
Target/SystemZ/SystemZInstrFormats.td
Target/SystemZ/SystemZInstrInfo.cpp
Target/SystemZ/SystemZInstrInfo.h
Target/SystemZ/SystemZInstrInfo.td
Target/SystemZ/SystemZInstrVector.td
Target/SystemZ/SystemZLongBranch.cpp
Target/SystemZ/SystemZMachineFunctionInfo.h
Target/SystemZ/SystemZMachineScheduler.cpp
Target/SystemZ/SystemZOperands.td
Target/SystemZ/SystemZOperators.td
Target/SystemZ/SystemZPatterns.td
Target/SystemZ/SystemZPostRewrite.cpp
Target/SystemZ/SystemZProcessors.td
Target/SystemZ/SystemZRegisterInfo.cpp
Target/SystemZ/SystemZRegisterInfo.h
Target/SystemZ/SystemZSchedule.td
Target/SystemZ/SystemZScheduleArch13.td
Target/SystemZ/SystemZScheduleZ15.td
Target/SystemZ/SystemZSelectionDAGInfo.cpp
Target/SystemZ/SystemZShortenInst.cpp
Target/SystemZ/SystemZTDC.cpp
Target/SystemZ/SystemZTargetMachine.cpp
Target/SystemZ/SystemZTargetTransformInfo.cpp
Target/SystemZ/SystemZTargetTransformInfo.h
Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
Target/TargetLoweringObjectFile.cpp
Target/TargetMachine.cpp
Target/TargetMachineC.cpp
Target/VE
Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp
Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.h
Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
Target/WebAssembly/WebAssembly.h
Target/WebAssembly/WebAssemblyAsmPrinter.cpp
Target/WebAssembly/WebAssemblyCFGSort.cpp
Target/WebAssembly/WebAssemblyCFGStackify.cpp
Target/WebAssembly/WebAssemblyDebugValueManager.cpp
Target/WebAssembly/WebAssemblyDebugValueManager.h
Target/WebAssembly/WebAssemblyExceptionInfo.cpp
Target/WebAssembly/WebAssemblyExplicitLocals.cpp
Target/WebAssembly/WebAssemblyFastISel.cpp
Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
Target/WebAssembly/WebAssemblyFrameLowering.cpp
Target/WebAssembly/WebAssemblyFrameLowering.h
Target/WebAssembly/WebAssemblyISD.def
Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
Target/WebAssembly/WebAssemblyISelLowering.cpp
Target/WebAssembly/WebAssemblyISelLowering.h
Target/WebAssembly/WebAssemblyInstrAtomics.td
Target/WebAssembly/WebAssemblyInstrBulkMemory.td
Target/WebAssembly/WebAssemblyInstrControl.td
Target/WebAssembly/WebAssemblyInstrConv.td
Target/WebAssembly/WebAssemblyInstrInfo.cpp
Target/WebAssembly/WebAssemblyInstrInfo.h
Target/WebAssembly/WebAssemblyInstrInfo.td
Target/WebAssembly/WebAssemblyInstrMemory.td
Target/WebAssembly/WebAssemblyInstrSIMD.td
Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
Target/WebAssembly/WebAssemblyMCInstLower.cpp
Target/WebAssembly/WebAssemblyMCInstLower.h
Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
Target/WebAssembly/WebAssemblyPeephole.cpp
Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
Target/WebAssembly/WebAssemblyRegColoring.cpp
Target/WebAssembly/WebAssemblyRegNumbering.cpp
Target/WebAssembly/WebAssemblyRegStackify.cpp
Target/WebAssembly/WebAssemblyRegisterInfo.cpp
Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
Target/WebAssembly/WebAssemblyTargetMachine.cpp
Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
Target/WebAssembly/WebAssemblyTargetTransformInfo.h
Target/WebAssembly/WebAssemblyUtilities.cpp
Target/X86/AsmParser/X86AsmParser.cpp
Target/X86/AsmParser/X86AsmParserCommon.h
Target/X86/AsmParser/X86Operand.h
Target/X86/Disassembler/X86Disassembler.cpp
Target/X86/Disassembler/X86DisassemblerDecoder.cpp
Target/X86/Disassembler/X86DisassemblerDecoder.h
Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
Target/X86/MCTargetDesc/X86ATTInstPrinter.h
Target/X86/MCTargetDesc/X86AsmBackend.cpp
Target/X86/MCTargetDesc/X86BaseInfo.h
Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
Target/X86/MCTargetDesc/X86IntelInstPrinter.h
Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
Target/X86/MCTargetDesc/X86MCTargetDesc.h
Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
Target/X86/TargetInfo/X86TargetInfo.cpp
Target/X86/X86.h
Target/X86/X86.td
Target/X86/X86AsmPrinter.cpp
Target/X86/X86AsmPrinter.h
Target/X86/X86AvoidStoreForwardingBlocks.cpp
Target/X86/X86AvoidTrailingCall.cpp
Target/X86/X86CallFrameOptimization.cpp
Target/X86/X86CallLowering.cpp
Target/X86/X86CallLowering.h
Target/X86/X86CallingConv.td
Target/X86/X86CmovConversion.cpp
Target/X86/X86CondBrFolding.cpp
Target/X86/X86DomainReassignment.cpp
Target/X86/X86EvexToVex.cpp
Target/X86/X86ExpandPseudo.cpp
Target/X86/X86FastISel.cpp
Target/X86/X86FixupBWInsts.cpp
Target/X86/X86FixupLEAs.cpp
Target/X86/X86FixupSetCC.cpp
Target/X86/X86FlagsCopyLowering.cpp
Target/X86/X86FloatingPoint.cpp
Target/X86/X86FrameLowering.cpp
Target/X86/X86FrameLowering.h
Target/X86/X86ISelDAGToDAG.cpp
Target/X86/X86ISelLowering.cpp
Target/X86/X86ISelLowering.h
Target/X86/X86IndirectBranchTracking.cpp
Target/X86/X86InsertPrefetch.cpp
Target/X86/X86InstrAVX512.td
Target/X86/X86InstrArithmetic.td
Target/X86/X86InstrBuilder.h
Target/X86/X86InstrCMovSetCC.td
Target/X86/X86InstrCompiler.td
Target/X86/X86InstrControl.td
Target/X86/X86InstrExtension.td
Target/X86/X86InstrFMA.td
Target/X86/X86InstrFPStack.td
Target/X86/X86InstrFoldTables.cpp
Target/X86/X86InstrFoldTables.h
Target/X86/X86InstrFormats.td
Target/X86/X86InstrFragmentsSIMD.td
Target/X86/X86InstrInfo.cpp
Target/X86/X86InstrInfo.h
Target/X86/X86InstrInfo.td
Target/X86/X86InstrMMX.td
Target/X86/X86InstrMPX.td
Target/X86/X86InstrSSE.td
Target/X86/X86InstrSystem.td
Target/X86/X86InstrTSX.td
Target/X86/X86InstrXOP.td
Target/X86/X86InstructionSelector.cpp
Target/X86/X86IntrinsicsInfo.h
Target/X86/X86LegalizerInfo.cpp
Target/X86/X86LegalizerInfo.h
Target/X86/X86MCInstLower.cpp
Target/X86/X86MacroFusion.cpp
Target/X86/X86OptimizeLEAs.cpp
Target/X86/X86PadShortFunction.cpp
Target/X86/X86PfmCounters.td
Target/X86/X86RegisterBankInfo.cpp
Target/X86/X86RegisterBankInfo.h
Target/X86/X86RegisterInfo.cpp
Target/X86/X86RegisterInfo.td
Target/X86/X86RetpolineThunks.cpp
Target/X86/X86SchedBroadwell.td
Target/X86/X86SchedHaswell.td
Target/X86/X86SchedPredicates.td
Target/X86/X86SchedSandyBridge.td
Target/X86/X86SchedSkylakeClient.td
Target/X86/X86SchedSkylakeServer.td
Target/X86/X86Schedule.td
Target/X86/X86ScheduleAtom.td
Target/X86/X86ScheduleBdVer2.td
Target/X86/X86ScheduleBtVer2.td
Target/X86/X86ScheduleSLM.td
Target/X86/X86ScheduleZnver1.td
Target/X86/X86ScheduleZnver2.td
Target/X86/X86SelectionDAGInfo.cpp
Target/X86/X86SpeculativeLoadHardening.cpp
Target/X86/X86Subtarget.cpp
Target/X86/X86Subtarget.h
Target/X86/X86TargetMachine.cpp
Target/X86/X86TargetMachine.h
Target/X86/X86TargetObjectFile.cpp
Target/X86/X86TargetObjectFile.h
Target/X86/X86TargetTransformInfo.cpp
Target/X86/X86TargetTransformInfo.h
Target/X86/X86VZeroUpper.cpp
Target/X86/X86WinAllocaExpander.cpp
Target/X86/X86WinEHState.cpp
Target/XCore/Disassembler/XCoreDisassembler.cpp
Target/XCore/MCTargetDesc/XCoreInstPrinter.cpp
Target/XCore/MCTargetDesc/XCoreInstPrinter.h
Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
Target/XCore/TargetInfo/XCoreTargetInfo.cpp
Target/XCore/XCoreAsmPrinter.cpp
Target/XCore/XCoreFrameLowering.cpp
Target/XCore/XCoreFrameToArgsOffsetElim.cpp
Target/XCore/XCoreISelDAGToDAG.cpp
Target/XCore/XCoreISelLowering.cpp
Target/XCore/XCoreInstrInfo.cpp
Target/XCore/XCoreInstrInfo.h
Target/XCore/XCoreLowerThreadLocal.cpp
Target/XCore/XCoreRegisterInfo.cpp
Target/XCore/XCoreTargetMachine.cpp
Target/XCore/XCoreTargetTransformInfo.h
TextAPI/MachO/Architecture.cpp
TextAPI/MachO/InterfaceFile.cpp
TextAPI/MachO/Platform.cpp
TextAPI/MachO/Symbol.cpp
TextAPI/MachO/Target.cpp
TextAPI/MachO/TextStub.cpp
TextAPI/MachO/TextStubCommon.cpp
TextAPI/MachO/TextStubCommon.h
ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
ToolDrivers/llvm-lib/LibDriver.cpp
Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
Transforms/CFGuard
Transforms/Coroutines/CoroCleanup.cpp
Transforms/Coroutines/CoroEarly.cpp
Transforms/Coroutines/CoroElide.cpp
Transforms/Coroutines/CoroFrame.cpp
Transforms/Coroutines/CoroInstr.h
Transforms/Coroutines/CoroInternal.h
Transforms/Coroutines/CoroSplit.cpp
Transforms/Coroutines/Coroutines.cpp
Transforms/IPO/AlwaysInliner.cpp
Transforms/IPO/ArgumentPromotion.cpp
Transforms/IPO/Attributor.cpp
Transforms/IPO/BarrierNoopPass.cpp
Transforms/IPO/BlockExtractor.cpp
Transforms/IPO/CalledValuePropagation.cpp
Transforms/IPO/ConstantMerge.cpp
Transforms/IPO/CrossDSOCFI.cpp
Transforms/IPO/DeadArgumentElimination.cpp
Transforms/IPO/ElimAvailExtern.cpp
Transforms/IPO/ForceFunctionAttrs.cpp
Transforms/IPO/FunctionAttrs.cpp
Transforms/IPO/FunctionImport.cpp
Transforms/IPO/GlobalDCE.cpp
Transforms/IPO/GlobalOpt.cpp
Transforms/IPO/GlobalSplit.cpp
Transforms/IPO/HotColdSplitting.cpp
Transforms/IPO/IPConstantPropagation.cpp
Transforms/IPO/IPO.cpp
Transforms/IPO/InferFunctionAttrs.cpp
Transforms/IPO/InlineSimple.cpp
Transforms/IPO/Inliner.cpp
Transforms/IPO/Internalize.cpp
Transforms/IPO/LoopExtractor.cpp
Transforms/IPO/LowerTypeTests.cpp
Transforms/IPO/MergeFunctions.cpp
Transforms/IPO/PartialInlining.cpp
Transforms/IPO/PassManagerBuilder.cpp
Transforms/IPO/PruneEH.cpp
Transforms/IPO/SCCP.cpp
Transforms/IPO/SampleProfile.cpp
Transforms/IPO/StripDeadPrototypes.cpp
Transforms/IPO/StripSymbols.cpp
Transforms/IPO/ThinLTOBitcodeWriter.cpp
Transforms/IPO/WholeProgramDevirt.cpp
Transforms/InstCombine/InstCombineAddSub.cpp
Transforms/InstCombine/InstCombineAndOrXor.cpp
Transforms/InstCombine/InstCombineAtomicRMW.cpp
Transforms/InstCombine/InstCombineCalls.cpp
Transforms/InstCombine/InstCombineCasts.cpp
Transforms/InstCombine/InstCombineCompares.cpp
Transforms/InstCombine/InstCombineInternal.h
Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
Transforms/InstCombine/InstCombineMulDivRem.cpp
Transforms/InstCombine/InstCombinePHI.cpp
Transforms/InstCombine/InstCombineSelect.cpp
Transforms/InstCombine/InstCombineShifts.cpp
Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
Transforms/InstCombine/InstCombineVectorOps.cpp
Transforms/InstCombine/InstructionCombining.cpp
Transforms/Instrumentation/AddressSanitizer.cpp
Transforms/Instrumentation/BoundsChecking.cpp
Transforms/Instrumentation/CFGMST.h
Transforms/Instrumentation/ControlHeightReduction.cpp
Transforms/Instrumentation/DataFlowSanitizer.cpp
Transforms/Instrumentation/GCOVProfiling.cpp
Transforms/Instrumentation/HWAddressSanitizer.cpp
Transforms/Instrumentation/IndirectCallPromotion.cpp
Transforms/Instrumentation/InstrOrderFile.cpp
Transforms/Instrumentation/InstrProfiling.cpp
Transforms/Instrumentation/Instrumentation.cpp
Transforms/Instrumentation/MemorySanitizer.cpp
Transforms/Instrumentation/PGOInstrumentation.cpp
Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
Transforms/Instrumentation/PoisonChecking.cpp
Transforms/Instrumentation/SanitizerCoverage.cpp
Transforms/Instrumentation/ThreadSanitizer.cpp
Transforms/Instrumentation/ValueProfileCollector.cpp
Transforms/Instrumentation/ValueProfileCollector.h
Transforms/Instrumentation/ValueProfilePlugins.inc
Transforms/ObjCARC/ObjCARCAPElim.cpp
Transforms/ObjCARC/ObjCARCContract.cpp
Transforms/ObjCARC/ObjCARCExpand.cpp
Transforms/ObjCARC/ObjCARCOpts.cpp
Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
Transforms/ObjCARC/PtrState.cpp
Transforms/Scalar/ADCE.cpp
Transforms/Scalar/AlignmentFromAssumptions.cpp
Transforms/Scalar/BDCE.cpp
Transforms/Scalar/CallSiteSplitting.cpp
Transforms/Scalar/ConstantHoisting.cpp
Transforms/Scalar/ConstantProp.cpp
Transforms/Scalar/CorrelatedValuePropagation.cpp
Transforms/Scalar/DCE.cpp
Transforms/Scalar/DeadStoreElimination.cpp
Transforms/Scalar/DivRemPairs.cpp
Transforms/Scalar/EarlyCSE.cpp
Transforms/Scalar/FlattenCFGPass.cpp
Transforms/Scalar/Float2Int.cpp
Transforms/Scalar/GVN.cpp
Transforms/Scalar/GVNHoist.cpp
Transforms/Scalar/GVNSink.cpp
Transforms/Scalar/GuardWidening.cpp
Transforms/Scalar/IndVarSimplify.cpp
Transforms/Scalar/InductiveRangeCheckElimination.cpp
Transforms/Scalar/InferAddressSpaces.cpp
Transforms/Scalar/InstSimplifyPass.cpp
Transforms/Scalar/JumpThreading.cpp
Transforms/Scalar/LICM.cpp
Transforms/Scalar/LoopDataPrefetch.cpp
Transforms/Scalar/LoopDeletion.cpp
Transforms/Scalar/LoopDistribute.cpp
Transforms/Scalar/LoopFuse.cpp
Transforms/Scalar/LoopIdiomRecognize.cpp
Transforms/Scalar/LoopInstSimplify.cpp
Transforms/Scalar/LoopInterchange.cpp
Transforms/Scalar/LoopLoadElimination.cpp
Transforms/Scalar/LoopPredication.cpp
Transforms/Scalar/LoopRerollPass.cpp
Transforms/Scalar/LoopRotation.cpp
Transforms/Scalar/LoopSimplifyCFG.cpp
Transforms/Scalar/LoopSink.cpp
Transforms/Scalar/LoopStrengthReduce.cpp
Transforms/Scalar/LoopUnrollAndJamPass.cpp
Transforms/Scalar/LoopUnrollPass.cpp
Transforms/Scalar/LoopUnswitch.cpp
Transforms/Scalar/LoopVersioningLICM.cpp
Transforms/Scalar/LowerAtomic.cpp
Transforms/Scalar/LowerConstantIntrinsics.cpp
Transforms/Scalar/LowerExpectIntrinsic.cpp
Transforms/Scalar/LowerGuardIntrinsic.cpp
Transforms/Scalar/LowerMatrixIntrinsics.cpp
Transforms/Scalar/LowerWidenableCondition.cpp
Transforms/Scalar/MakeGuardsExplicit.cpp
Transforms/Scalar/MemCpyOptimizer.cpp
Transforms/Scalar/MergeICmps.cpp
Transforms/Scalar/MergedLoadStoreMotion.cpp
Transforms/Scalar/NaryReassociate.cpp
Transforms/Scalar/NewGVN.cpp
Transforms/Scalar/PartiallyInlineLibCalls.cpp
Transforms/Scalar/PlaceSafepoints.cpp
Transforms/Scalar/Reassociate.cpp
Transforms/Scalar/Reg2Mem.cpp
Transforms/Scalar/RewriteStatepointsForGC.cpp
Transforms/Scalar/SCCP.cpp
Transforms/Scalar/SROA.cpp
Transforms/Scalar/Scalar.cpp
Transforms/Scalar/Scalarizer.cpp
Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
Transforms/Scalar/SimpleLoopUnswitch.cpp
Transforms/Scalar/SimplifyCFGPass.cpp
Transforms/Scalar/Sink.cpp
Transforms/Scalar/SpeculateAroundPHIs.cpp
Transforms/Scalar/SpeculativeExecution.cpp
Transforms/Scalar/StraightLineStrengthReduce.cpp
Transforms/Scalar/StructurizeCFG.cpp
Transforms/Scalar/TailRecursionElimination.cpp
Transforms/Scalar/WarnMissedTransforms.cpp
Transforms/Utils/AddDiscriminators.cpp
Transforms/Utils/BasicBlockUtils.cpp
Transforms/Utils/BreakCriticalEdges.cpp
Transforms/Utils/BuildLibCalls.cpp
Transforms/Utils/BypassSlowDivision.cpp
Transforms/Utils/CanonicalizeAliases.cpp
Transforms/Utils/CloneFunction.cpp
Transforms/Utils/CloneModule.cpp
Transforms/Utils/CodeExtractor.cpp
Transforms/Utils/CodeMoverUtils.cpp
Transforms/Utils/Debugify.cpp
Transforms/Utils/EntryExitInstrumenter.cpp
Transforms/Utils/Evaluator.cpp
Transforms/Utils/FlattenCFG.cpp
Transforms/Utils/FunctionImportUtils.cpp
Transforms/Utils/GuardUtils.cpp
Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
Transforms/Utils/InjectTLIMappings.cpp
Transforms/Utils/InlineFunction.cpp
Transforms/Utils/InstructionNamer.cpp
Transforms/Utils/LCSSA.cpp
Transforms/Utils/LibCallsShrinkWrap.cpp
Transforms/Utils/Local.cpp
Transforms/Utils/LoopRotationUtils.cpp
Transforms/Utils/LoopSimplify.cpp
Transforms/Utils/LoopUnroll.cpp
Transforms/Utils/LoopUnrollAndJam.cpp
Transforms/Utils/LoopUnrollPeel.cpp
Transforms/Utils/LoopUnrollRuntime.cpp
Transforms/Utils/LoopUtils.cpp
Transforms/Utils/LoopVersioning.cpp
Transforms/Utils/LowerInvoke.cpp
Transforms/Utils/LowerSwitch.cpp
Transforms/Utils/Mem2Reg.cpp
Transforms/Utils/MetaRenamer.cpp
Transforms/Utils/MisExpect.cpp
Transforms/Utils/ModuleUtils.cpp
Transforms/Utils/NameAnonGlobals.cpp
Transforms/Utils/PredicateInfo.cpp
Transforms/Utils/SimplifyCFG.cpp
Transforms/Utils/SimplifyLibCalls.cpp
Transforms/Utils/SizeOpts.cpp
Transforms/Utils/StripGCRelocates.cpp
Transforms/Utils/StripNonLineTableDebugInfo.cpp
Transforms/Utils/SymbolRewriter.cpp
Transforms/Utils/UnifyFunctionExitNodes.cpp
Transforms/Utils/Utils.cpp
Transforms/Utils/VNCoercion.cpp
Transforms/Utils/ValueMapper.cpp
Transforms/Vectorize/LoadStoreVectorizer.cpp
Transforms/Vectorize/LoopVectorizationLegality.cpp
Transforms/Vectorize/LoopVectorizationPlanner.h
Transforms/Vectorize/LoopVectorize.cpp
Transforms/Vectorize/SLPVectorizer.cpp
Transforms/Vectorize/VPRecipeBuilder.h
Transforms/Vectorize/VPlan.cpp
Transforms/Vectorize/VPlan.h
Transforms/Vectorize/VPlanHCFGTransforms.cpp
Transforms/Vectorize/VPlanHCFGTransforms.h
Transforms/Vectorize/VPlanSLP.cpp
Transforms/Vectorize/VPlanTransforms.cpp
Transforms/Vectorize/VPlanTransforms.h
Transforms/Vectorize/VPlanValue.h
Transforms/Vectorize/VPlanVerifier.cpp
WindowsManifest/WindowsManifestMerger.cpp
XRay/FDRRecordProducer.cpp
XRay/FileHeaderReader.cpp
XRay/InstrumentationMap.cpp
XRay/Profile.cpp
XRay/RecordInitializer.cpp
XRay/Trace.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/BugDriver.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/CrashDebugger.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/ExtractFunction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/OptimizerDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/ToolRunner.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/bugpoint.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llc/llc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/RemoteJITUtils.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/lli.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-ar/llvm-ar.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-as/llvm-as.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/CodeCoverage.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/CoverageExporterJson.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/SourceCoverageView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cxxmap/llvm-cxxmap.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-diff/DifferenceEngine.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dis/llvm-dis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/Statistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-extract/llvm-extract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-link/llvm-link.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto/llvm-lto.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto2/llvm-lto2.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegion.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/DispatchStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/ResourcePressureView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/SchedulerStatistics.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/SummaryView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/llvm-mca.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-modextract/llvm-modextract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/llvm-nm.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Reader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Writer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/CommonOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/InstallNameToolOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ObjcopyOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/StripOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/ELFDump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-profdata/llvm-profdata.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/COFFDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ELFDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/MachODumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/WasmDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/Win64EHDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/XCOFFDumper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-stress/llvm-stress.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/func-id-helper.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-account.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-converter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-extract.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-fdr-dump.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph-diff.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/xray-stacks.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/Debugify.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/Debugify.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/NewPMDriver.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/PassPrinters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/PassPrinters.h
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/opt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/AsmMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/AsmWriterEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/AsmWriterInst.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CallingConvEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeEmitterGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenMapTable.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenSchedule.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcher.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/DisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GICombinerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISelEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InstrDocsEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/InstrInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/IntrinsicEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptParserEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/OptRSTEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/RegisterInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SearchableTableEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SequenceToOffsetTable.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SubtargetEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86DisassemblerTables.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86FoldTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/X86RecognizableInstr.cpp
/freebsd-11-stable/contrib/llvm-project/openmp
/freebsd-11-stable/contrib/llvm-project/openmp/CREDITS.txt
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/extractExternal.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/i18n/en_US.txt
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/include/omp_lib.f.var
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_affinity.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_affinity.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_alloc.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_atomic.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_barrier.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_csupport.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_dispatch.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_dispatch_hier.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_ftn_entry.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_ftn_os.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_global.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_gsupport.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_itt.inl
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_lock.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_lock.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_os.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_platform.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_runtime.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_settings.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_stats.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_str.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_stub.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_taskdeps.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_tasking.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_taskq.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_wait_release.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_getpid.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_malloc.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-event-specific.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-general.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-internal.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-specific.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/ompt-specific.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_config.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.c
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/legacy/ittnotify.h
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/z_Linux_asm.S
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/z_Linux_util.cpp
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/z_Windows_NT_util.cpp
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/lib/clang/freebsd_cc_version.h
/freebsd-11-stable/lib/clang/headers/Makefile
/freebsd-11-stable/lib/clang/include/VCSVersion.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-11-stable/lib/clang/include/clang/Config/config.h
/freebsd-11-stable/lib/clang/include/lld/Common/Version.inc
/freebsd-11-stable/lib/clang/include/lldb/Host/Config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/llvm-config.h
/freebsd-11-stable/lib/clang/include/llvm/Support/Extension.def
/freebsd-11-stable/lib/clang/include/llvm/Support/VCSRevision.h
/freebsd-11-stable/lib/clang/libclang/Makefile
/freebsd-11-stable/lib/clang/liblldb/Makefile
/freebsd-11-stable/lib/clang/libllvm/Makefile
/freebsd-11-stable/lib/clang/libllvmminimal/Makefile
/freebsd-11-stable/lib/clang/llvm.build.mk
/freebsd-11-stable/lib/libc++/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/asan-preinit/Makefile
/freebsd-11-stable/lib/libclang_rt/asan/Makefile
/freebsd-11-stable/lib/libclang_rt/asan_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/asan_dynamic/Makefile
/freebsd-11-stable/lib/libclang_rt/cfi/Makefile
/freebsd-11-stable/lib/libclang_rt/cfi_diag/Makefile
/freebsd-11-stable/lib/libclang_rt/dd/Makefile
/freebsd-11-stable/lib/libclang_rt/fuzzer/Makefile
/freebsd-11-stable/lib/libclang_rt/fuzzer_no_main/Makefile
/freebsd-11-stable/lib/libclang_rt/include/Makefile
/freebsd-11-stable/lib/libclang_rt/msan/Makefile
/freebsd-11-stable/lib/libclang_rt/msan_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/profile/Makefile
/freebsd-11-stable/lib/libclang_rt/safestack/Makefile
/freebsd-11-stable/lib/libclang_rt/stats/Makefile
/freebsd-11-stable/lib/libclang_rt/stats_client/Makefile
/freebsd-11-stable/lib/libclang_rt/tsan/Makefile
/freebsd-11-stable/lib/libclang_rt/tsan_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_minimal/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/xray-basic/Makefile
/freebsd-11-stable/lib/libclang_rt/xray-fdr/Makefile
/freebsd-11-stable/lib/libclang_rt/xray-profiling/Makefile
/freebsd-11-stable/lib/libclang_rt/xray/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/lib/libomp/Makefile
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lldb-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/lldb.1
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/opt/Makefile
360661 05-May-2020 dim

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

MFC r355948:

Bootstrap mergeinfo for contrib/llvm-project

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

MFC r355951:

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

MFC r355957:

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

MFC r355959:

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

MFC r356004:

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

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

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

PR: 240629

MFC r356005:

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

[libc++] Cleanup and enable multiple warnings.

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

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

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

Requested by: rlibby

MFC r356100:

Merge commit d3aeac8e2 from llvm git (by Justin Hibbits)

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

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

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

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

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

MFC r356104 (by jhibbits):

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

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

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

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

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

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

MFC r356112 (by jhibbits):

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

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

This will also be sent upstream.

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

MFC r356256:

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

[X86] Add X87 FCMOV support to X86FlagsCopyLowering.

Fixes PR44396

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

[X86] Fix typo in getCMovOpcode.

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

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

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

MFC r356329:

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

[RISCV] Fix evaluation of %pcrel_lo

The following testcase

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

.type other_function,@function
other_function:
ret

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

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

<stdin>: file format ELF64-riscv

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

0000000000000008 other_function:
8: 67 80 00 00 ret

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

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

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

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

Requested by: jhb

MFC r356330:

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

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

Summary:

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

Reviewers: asb, MaskRay

Reviewed By: MaskRay

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

Tags: #llvm

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

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

Requested by: jhb

MFC r356331:

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

[RISCV] Fix wrong CFI directives

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

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

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

Requested by: jhb

MFC r356332:

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

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

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

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

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

Requested by: jhb

MFC r356333:

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

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

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

Reviewers: MaskRay, ruiu, espindola

Reviewed By: MaskRay, ruiu

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

Tags: #llvm

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

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

Requested by: jhb

MFC r356701:

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

[mips] Use less registers to load address of TargetExternalSymbol

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

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

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

llvm-svn: 370196

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

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

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

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

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

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

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

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

Fix PR42736.

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

llvm-svn: 370268

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

Requested by: arichards

MFC r356789 (by arichardson):

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

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

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

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

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

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

Merge commit 8e8ccf47 from llvm git (by me)

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

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

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

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

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

MFC r356929:

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

Add 8548 CPU definition and attributes

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

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

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

[PowerPC]: Add powerpcspe target triple subarch component

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

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

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

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

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

Reviewed By: #powerpc, jhibbits

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

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

[PowerPC] Fix powerpcspe subtarget enablement in llvm backend

Summary:

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

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

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

These are needed to unbreak the build for powerpcspe.

Requested by: jhibbits

MFC r358711:

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

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

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

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

llvm-svn: 374562

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

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

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

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


/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/llvm-project/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/clang
/freebsd-11-stable/contrib/llvm-project/clang/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ExprConstant.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/ARM.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/PPC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/PPC.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Version.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGBuiltin.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGCall.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExpr.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGExprScalar.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CGStmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.h
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/ARM.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/PPC.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaChecking.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaDecl.cpp
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/SemaType.cpp
/freebsd-11-stable/contrib/llvm-project/compiler-rt
/freebsd-11-stable/contrib/llvm-project/compiler-rt/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/atomic.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.c
/freebsd-11-stable/contrib/llvm-project/libcxx
/freebsd-11-stable/contrib/llvm-project/libcxx/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/libcxx/FREEBSD-upgrade
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__bit_reference
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__errc
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__hash_table
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__tree
/freebsd-11-stable/contrib/llvm-project/libcxx/include/errno.h
/freebsd-11-stable/contrib/llvm-project/libcxx/include/ext/hash_map
/freebsd-11-stable/contrib/llvm-project/libcxx/include/random
/freebsd-11-stable/contrib/llvm-project/libcxx/include/valarray
/freebsd-11-stable/contrib/llvm-project/libunwind
/freebsd-11-stable/contrib/llvm-project/libunwind/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/lld
/freebsd-11-stable/contrib/llvm-project/lld/COFF/Driver.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Symbols.h
/freebsd-11-stable/contrib/llvm-project/lld/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/lld/docs/ReleaseNotes.rst
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/lldb/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.h
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/Symtab.cpp
/freebsd-11-stable/contrib/llvm-project/llvm
/freebsd-11-stable/contrib/llvm-project/llvm/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/Triple.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFunction.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstr.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/StackProtector.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVN.h
CodeGen/AsmPrinter/CodeViewDebug.cpp
CodeGen/AsmPrinter/CodeViewDebug.h
CodeGen/GlobalISel/IRTranslator.cpp
CodeGen/MachineFunction.cpp
CodeGen/MachineInstr.cpp
CodeGen/SelectionDAG/DAGCombiner.cpp
CodeGen/SelectionDAG/FastISel.cpp
CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
CodeGen/StackProtector.cpp
MC/MCObjectFileInfo.cpp
Object/ELFObjectFile.cpp
Object/RelocationResolver.cpp
Support/ARMTargetParser.cpp
Support/Triple.cpp
Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
Target/AMDGPU/GCNHazardRecognizer.cpp
Target/ARM/ARM.td
Target/ARM/ARMPredicates.td
Target/ARM/ARMSubtarget.h
Target/ARM/AsmParser/ARMAsmParser.cpp
Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
Target/Mips/AsmParser/MipsAsmParser.cpp
Target/Mips/Mips.td
Target/Mips/Mips64InstrInfo.td
Target/Mips/MipsISelLowering.cpp
Target/Mips/MipsInstrInfo.td
Target/PowerPC/P9InstrResources.td
Target/PowerPC/PPC.td
Target/PowerPC/PPCISelLowering.cpp
Target/PowerPC/PPCInstr64Bit.td
Target/PowerPC/PPCInstrInfo.td
Target/PowerPC/PPCSubtarget.cpp
Target/PowerPC/PPCTargetMachine.cpp
Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
Target/RISCV/RISCVFrameLowering.cpp
Target/RISCV/RISCVISelLowering.cpp
Target/RISCV/RISCVInstrInfoD.td
Target/RISCV/RISCVRegisterInfo.h
Target/WebAssembly/InstPrinter
Target/WebAssembly/WebAssemblyInstrFloat.td
Target/X86/X86FlagsCopyLowering.cpp
Target/X86/X86FrameLowering.cpp
Target/X86/X86FrameLowering.h
Target/X86/X86InstrInfo.cpp
Target/X86/X86MachineFunctionInfo.h
Target/X86/X86RegisterInfo.cpp
Transforms/Instrumentation/AddressSanitizer.cpp
Transforms/Instrumentation/InstrProfiling.cpp
Transforms/Scalar/GVN.cpp
Transforms/Scalar/MemCpyOptimizer.cpp
Transforms/Scalar/SROA.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ObjcopyOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/StripOpts.td
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/opt.cpp
/freebsd-11-stable/contrib/llvm-project/openmp
/freebsd-11-stable/contrib/llvm-project/openmp/FREEBSD-Xlist
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/lib/clang/freebsd_cc_version.h
/freebsd-11-stable/lib/clang/headers/Makefile
/freebsd-11-stable/lib/clang/include/VCSVersion.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-11-stable/lib/clang/include/clang/Config/config.h
/freebsd-11-stable/lib/clang/include/lld/Common/Version.inc
/freebsd-11-stable/lib/clang/include/llvm/Config/config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/llvm-config.h
/freebsd-11-stable/lib/clang/include/llvm/Support/VCSRevision.h
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
360660 05-May-2020 dim

MFC r355940:

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

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

Updating the vendor area to match this layout is next.


/freebsd-11-stable/MAINTAINERS
/freebsd-11-stable/contrib/compiler-rt
/freebsd-11-stable/contrib/libc++
/freebsd-11-stable/contrib/libunwind
/freebsd-11-stable/contrib/llvm
/freebsd-11-stable/contrib/llvm-project
/freebsd-11-stable/contrib/llvm-project/clang
/freebsd-11-stable/contrib/llvm-project/compiler-rt
/freebsd-11-stable/contrib/llvm-project/libcxx
/freebsd-11-stable/contrib/llvm-project/libcxx/include/__errc
/freebsd-11-stable/contrib/llvm-project/libcxx/include/errno.h
/freebsd-11-stable/contrib/llvm-project/libunwind
/freebsd-11-stable/contrib/llvm-project/lld
/freebsd-11-stable/contrib/llvm-project/lldb
/freebsd-11-stable/contrib/llvm-project/llvm
/freebsd-11-stable/contrib/llvm-project/openmp
/freebsd-11-stable/contrib/openmp
/freebsd-11-stable/gnu/usr.bin/cc/include/Makefile
/freebsd-11-stable/lib/clang/clang.build.mk
/freebsd-11-stable/lib/clang/clang.pre.mk
/freebsd-11-stable/lib/clang/libclang/Makefile
/freebsd-11-stable/lib/clang/liblldb/Makefile
/freebsd-11-stable/lib/clang/libllvm/Makefile
/freebsd-11-stable/lib/clang/libllvmminimal/Makefile
/freebsd-11-stable/lib/clang/lldb.pre.mk
/freebsd-11-stable/lib/clang/llvm.build.mk
/freebsd-11-stable/lib/clang/llvm.pre.mk
/freebsd-11-stable/lib/libblocksruntime/Makefile
/freebsd-11-stable/lib/libc++/Makefile
/freebsd-11-stable/lib/libc++experimental/Makefile
/freebsd-11-stable/lib/libc/arm/aeabi/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/lib/libexecinfo/Makefile
/freebsd-11-stable/lib/libgcc_eh/Makefile.inc
/freebsd-11-stable/lib/libomp/Makefile
/freebsd-11-stable/share/doc/llvm/Makefile
/freebsd-11-stable/share/doc/llvm/clang/Makefile
/freebsd-11-stable/share/mk/bsd.clang-analyze.mk
/freebsd-11-stable/stand/i386/boot2/Makefile
/freebsd-11-stable/stand/libsa/Makefile
/freebsd-11-stable/usr.bin/clang/bugpoint/Makefile
/freebsd-11-stable/usr.bin/clang/clang-format/Makefile
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/clang/Makefile
/freebsd-11-stable/usr.bin/clang/llc/Makefile
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lldb-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/lldb/Makefile
/freebsd-11-stable/usr.bin/clang/lli/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-ar/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-as/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-bcanalyzer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cov/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cxxdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-cxxfilt/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-diff/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-dis/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-dwarfdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-extract/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-link/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-lto/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-lto2/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-mc/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-mca/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-modextract/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-nm/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objdump/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-profdata/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-rtdyld/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-symbolizer/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-xray/Makefile
/freebsd-11-stable/usr.bin/clang/opt/Makefile
355940 20-Dec-2019 dim

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

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

Updating the vendor area to match this layout is next.


355397 04-Dec-2019 dim

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

[PowerPC] Fix crash in peephole optimization

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

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

Fixes PR44183.

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

Reported by: Alfredo Dal'Ava Júnior <alfredo.junior@eldorado.org.br>
MFC after: 1 month
X-MFC-With: r353358


354981 21-Nov-2019 dim

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

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

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

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

Requested by: kevans
MFC after: 1 month
X-MFC-With: r353358


354980 21-Nov-2019 dim

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

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

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

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

Requested by: kevans
MFC after: 1 month
X-MFC-With: r353358


354979 21-Nov-2019 dim

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

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

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

memory[base] = memory[base] + rt

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

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

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

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

Requested by: kevans
MFC after: 1 month
X-MFC-With: r353358


354724 15-Nov-2019 dim

Merge commit 5bbb604bb from llvm git (by Craig Topper):

[InstCombine] Disable some portions of foldGEPICmp for GEPs that
return a vector of pointers. Fix other portions.

llvm-svn: 370114

This should fix instances of 'Assertion failed: (isa<X>(Val) &&
"cast<Ty>() argument of incompatible type!"), function cast, file
/usr/src/contrib/llvm/include/llvm/Support/Casting.h, line 255', when
building openjdk8 for aarch64 and armv7.

Reported by: jbeich
PR: 236566
MFC after: 3 days


354707 14-Nov-2019 emaste

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

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


354692 13-Nov-2019 emaste

llvm: use AT_EXECPATH from ELF auxiliary vectors for getExecutablePath

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

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


354469 07-Nov-2019 dim

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

[RISCV] Add Custom Parser for Atomic Memory Operands

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

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

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

Reviewers: asb, lewis-revill

Reviewed By: asb

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

Tags: #llvm

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

llvm-svn: 367553

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

[RISCV] Add FreeBSD targets

Reviewers: asb

Reviewed By: asb

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

Tags: #clang

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

Patch by James Clarke (jrtc27)

llvm-svn: 367557

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

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

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

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

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

llvm-svn: 366524

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

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

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

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

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

llvm-svn: 366531

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

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

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

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

llvm-svn: 369257

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

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

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

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

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

llvm-svn: 369375

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

Requested by: jhb
Obtained from: https://github.com/freebsd/freebsd/compare/master...bsdjhb:riscv_clang
MFC after: 1 month
X-MFC-With: r353358


354429 07-Nov-2019 dim

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

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

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

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

PR: 241747
MFC after: 1 month
X-MFC-With: r353358


354339 04-Nov-2019 dim

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

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

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

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

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

Requested by: Alfredo Dal'Ava Júnior <alfredo.junior@eldorado.org.br>
MFC after: 1 month
X-MFC-With: r353358


354146 29-Oct-2019 dim

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

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

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

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

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

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

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

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

Reported by: avg, np
PR: 241402
MFC after: 1 month
X-MFC-With: r353358


354097 25-Oct-2019 dim

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

[ARM] VFPv2 only supports 16 D registers.

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

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

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

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

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

[ARM] Update clang for removal of vfp2d16 and vfp2d16sp

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

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

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

Requested by: mmel
MFC after: 3 days


353358 09-Oct-2019 dim

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

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

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

PR: 240629
MFC after: 1 month


352915 30-Sep-2019 dim

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

[X86] Check MI.isConvertibleTo3Addr() before calling
convertToThreeAddress in X86FixupLEAs.

X86FixupLEAs just assumes convertToThreeAddress will return nullptr
for any instruction that isn't convertible.

But the code in convertToThreeAddress for X86 assumes that any
instruction coming in has at least 2 operands and that the second one
is a register. But those properties aren't guaranteed of all
instructions. We should check the instruction property first.

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

[X86] Don't convert 8 or 16 bit ADDs to LEAs on Atom in FixupLEAPass.

We use the functions that convert to three address to do the
conversion, but changing an 8 or 16 bit will cause it to create a
virtual register. This can't be done after register allocation where
this pass runs.

I've switched the pass completely to a white list of instructions
that can be converted to LEA instead of a blacklist that was
incorrect. This will avoid surprises if we enhance the three address
conversion function to include additional instructions in the future.

Fixes PR42565.

This should fix assertions/segfaults when compiling certain ports with
CPUTYPE=atom.

PR: 240928
MFC after: 3 days


352171 10-Sep-2019 imp

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


352168 10-Sep-2019 imp

Remove dirs empty since r280031


351938 06-Sep-2019 dim

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

[IfConversion] Fix diamond conversion with unanalyzable branches.

The code was incorrectly counting the number of identical
instructions, and therefore tried to predicate an instruction which
should not have been predicated. This could have various effects: a
compiler crash, an assembler failure, a miscompile, or just
generating an extra, unnecessary instruction.

Instead of depending on TargetInstrInfo::removeBranch, which only
works on analyzable branches, just remove all branch instructions.

Fixes https://bugs.llvm.org/show_bug.cgi?id=43121 and
https://bugs.llvm.org/show_bug.cgi?id=41121 .

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

This should fix "Unable to predicate BX killed renamable $r0" errors
when building the lang/spidermonkey170 and lang/spidermonkey38 ports for
armv7 and armv6.

PR: 236567
MFC after: 3 days


350362 26-Jul-2019 dim

Pull in r366369 from upstream llvm trunk (by Francis Visoiu Mistrih):

[CodeGen][NFC] Simplify checks for stack protector index checking

Use `hasStackProtectorIndex()` instead of `getStackProtectorIndex()
>= 0`.

Pull in r366371 from upstream llvm trunk (by Francis Visoiu Mistrih):

[PEI] Don't re-allocate a pre-allocated stack protector slot

The LocalStackSlotPass pre-allocates a stack protector and makes sure
that it comes before the local variables on the stack.

We need to make sure that later during PEI we don't re-allocate a new
stack protector slot. If that happens, the new stack protector slot
will end up being **after** the local variables that it should be
protecting.

Therefore, we would have two slots assigned for two different stack
protectors, one at the top of the stack, and one at the bottom. Since
PEI will overwrite the assigned slot for the stack protector, the
load that is used to compare the value of the stack protector will
use the slot assigned by PEI, which is wrong.

For this, we need to check if the object is pre-allocated, and re-use
that pre-allocated slot.

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

Pull in r367068 from upstream llvm trunk (by Francis Visoiu Mistrih):

[CodeGen] Don't resolve the stack protector frame accesses until PEI

Currently, stack protector loads and stores are resolved during
LocalStackSlotAllocation (if the pass needs to run). When this is the
case, the base register assigned to the frame access is going to be
one of the vregs created during LocalStackSlotAllocation. This means
that we are keeping a pointer to the stack protector slot, and we're
using this pointer to load and store to it.

In case register pressure goes up, we may end up spilling this
pointer to the stack, which can be a security concern.

Instead, leave it to PEI to resolve the frame accesses. In order to
do that, we make all stack protector accesses go through frame index
operands, then PEI will resolve this using an offset from sp/fp/bp.

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

Together, these fix a issue where the stack protection feature in LLVM's
ARM backend can be rendered ineffective when the stack protector slot is
re-allocated so that it appears after the local variables that it is
meant to protect, leaving the function potentially vulnerable to a
stack-based buffer overflow.

Reported by: andrew
Security: https://kb.cert.org/vuls/id/129209/
MFC after: 3 days


349583 01-Jul-2019 dim

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

Clarify comments on helpers used by LFTR [NFC]

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

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

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

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

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

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

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

[LFTR] Strengthen assertions in genLoopLimit [NFCI]

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

[IndVarSimplify] Fixup nowrap flags during LFTR (PR31181)

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

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

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

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

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

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

Prepare for multi-exit LFTR [NFC]

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

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

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

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

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

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

[LFTR] Use recomputed BE count

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

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

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

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

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

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

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

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

Original commit comment follows:

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

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

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

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

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

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

[LFTR] Rename variable to minimize confusion [NFC]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

PR: 237515
MFC after: 1 week


349351 25-Jun-2019 jhibbits

powerpc: Transition to Secure-PLT, like most other OSs (Toolchain part)

Summary:
Toolchain follow-up to r349350. LLVM patches will be submitted upstream for
9.0 as well.

The bsd.cpu.mk change is required because GNU ld assumes BSS-PLT if it
cannot determine for certain that it needs Secure-PLT, and some binaries do
not compile in such a way to make it know to use Secure-PLT.

Reviewed By: nwhitehorn, bdragon, pfg
Differential Revision: https://reviews.freebsd.org/D20598


349004 12-Jun-2019 dim

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

MFC after: 2 weeks


348288 26-May-2019 dim

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

[SelectionDAG] soften assertion when legalizing narrow vector FP ops

The test based on PR42010:
https://bugs.llvm.org/show_bug.cgi?id=42010

...may show an inaccuracy for PPC's target defs, but we should not be
so aggressive with an assert here. There's no telling what
out-of-tree targets look like.

This fixes an assertion when building the graphics/mesa-dri port for
PowerPC64.

Reported by: Mark Millard <marklmi26-fbsd@yahoo.com>
PR: 238082
MFC after: 3 days


347243 08-May-2019 dim

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

[ARM] Glue register copies to tail calls.

This generally follows what other targets do. I don't completely
understand why the special case for tail calls existed in the first
place; even when the code was committed in r105413, call lowering
didn't work in the way described in the comments.

Stack protector lowering breaks if the register copies are not glued
to a tail call: we have to insert the stack protector check before
the tail call, and we choose the location based on the assumption
that all physical register dependencies of a tail call are adjacent
to the tail call. (See FindSplitPointForStackProtector.) This is sort
of fragile, but I don't see any reason to break that assumption.

I'm guessing nobody has seen this before just because it's hard to
convince the scheduler to actually schedule the code in a way that
breaks; even without the glue, the only computation that could
actually be scheduled after the register copies is the computation of
the call address, and the scheduler usually prefers to schedule that
before the copies anyway.

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

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

This should fix several instances of "Bad machine code: Using an
undefined physical register", when compiling ports such as
multimedia/vlc, audio/alsa-lib and devel/avro-c for armv6, with
-fstack-protector-strong.

Reported by: jbeich
PR: 237074, 237783, 237784
MFC after: 3 days


345449 23-Mar-2019 dim

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

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

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

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

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

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

PR: 236062, 236568
MFC after: 1 month
X-MFC-With: r344779


345073 12-Mar-2019 dim

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

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

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

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

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

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

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

Upstream PR: https://llvm.org/bugs/show_bug.cgi?id=30879
PR: 236062
MFC after: 1 month
X-MFC-With: r344779


345021 11-Mar-2019 dim

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

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

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

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

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

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

PR: 236313
MFC after: 1 month
X-MFC-With: r344779


344779 04-Mar-2019 dim

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

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

PR: 236062
Relnotes: yes
MFC after: 1 month


344503 24-Feb-2019 dim

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

[X86] Fix tls variable lowering issue with large code model

Summary:
The problem here is the lowering for tls variable. Below is the DAG
for the code. SelectionDAG has 11 nodes:

t0: ch = EntryToken
t8: i64,ch = load<(load 8 from `i8 addrspace(257)* null`,
addrspace 257)> t0, Constant:i64<0>, undef:i64
t10: i64 = X86ISD::WrapperRIP TargetGlobalTLSAddress:i64<i32*
@x> 0 [TF=10]
t11: i64,ch = load<(load 8 from got)> t0, t10, undef:i64
t12: i64 = add t8, t11
t4: i32,ch = load<(dereferenceable load 4 from @x)> t0, t12,
undef:i64
t6: ch = CopyToReg t0, Register:i32 %0, t4

And when mcmodel is large, below instruction can NOT be folded.

t10: i64 = X86ISD::WrapperRIP TargetGlobalTLSAddress:i64<i32* @x> 0
[TF=10]
t11: i64,ch = load<(load 8 from got)> t0, t10, undef:i64

So "t11: i64,ch = load<(load 8 from got)> t0, t10, undef:i64" is
lowered to " Morphed node: t11: i64,ch = MOV64rm<Mem:(load 8 from
got)> t10, TargetConstant:i8<1>, Register:i64 $noreg,
TargetConstant:i32<0>, Register:i32 $noreg, t0"

When llvm start to lower "t10: i64 = X86ISD::WrapperRIP
TargetGlobalTLSAddress:i64<i32* @x> 0 [TF=10]", it fails.

The patch is to fold the load and X86ISD::WrapperRIP.

Fixes PR26906

Patch by LuoYuanke

Reviewers: craig.topper, rnk, annita.zhang, wxiao3

Reviewed By: rnk

Subscribers: llvm-commits

Tags: #llvm

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

This should fix "fatal error: error in backend: Cannot select" messages
when compiling <ctype.h> functions using -mcmodel=large.

Reported by: phk
PR: 233143
MFC after: 3 days


344112 13-Feb-2019 dim

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

[MC] Make symbol version errors non-fatal

We stil don't have a source location, which is pretty lame, but at
least we won't tell the user to file a clang bug report anymore.

Fixes PR40712

This will make errors for symbols with @@ versions that are not defined
non-fatal. For example:

void f(void)
{
__asm__(".symver foo,bar@@baz");
}

will now result in:

error: versioned symbol bar@@baz must be defined

instead of clang crashing with a diagnostic report.

PR: 234671
Upstream PR: https://bugs.llvm.org/show_bug.cgi?id=40712
MFC after: 3 days


344056 12-Feb-2019 dim

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

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

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

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

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

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

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


343916 08-Feb-2019 dim

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

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

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

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

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

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

Reviewers: rnk

Reviewed By: rnk

Subscribers: eraman, llvm-commits

Tags: #llvm

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

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

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

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

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

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

Subscribers: dim, llvm-commits

Tags: #llvm

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

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

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

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


342593 29-Dec-2018 dim

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

Remove debug printf leftover from r342397

PR: 234480
MFC after: 6 weeks
X-MFC-With: r341825


342592 29-Dec-2018 dim

Pull in r342397 from upstream llvm trunk (by Amara Emerson):

Revert "Revert r342183 "[DAGCombine] Fix crash when store merging
created an extract_subvector with invalid index.""

Fixed the assertion failure.

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

This fixes 'Assertion failed: ((VT.getVectorNumElements() +
N2C->getZExtValue() <= N1.getValueType().getVectorNumElements()) &&
"Extract subvector overflow!"), function getNode' when building the
multimedia/aom port (with AVX2 enabled).

Reported by: jbeich
PR: 234480
MFC after: 6 weeks
X-MFC-With: r341825


341825 11-Dec-2018 dim

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

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

PR: 230240, 230355
Relnotes: yes
MFC after: 2 months


338689 14-Sep-2018 dim

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

Initialize LiveRegs once in BranchFolder::mergeCommonTails

This should fix '(TRI && "LivePhysRegs is not initialized."' assertions
when building the lang/qt5-qml port in certain configurations.

Approved by: re (kib)
Reported by: Piotr Kubaj <pkubaj@anongoth.pl>
PR: 231355
MFC after: 3 days


337615 11-Aug-2018 dim

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

[x86] Fix a really subtle miscompile due to a somewhat glaring bug in
EFLAGS copy lowering.

If you have a branch of LLVM, you may want to cherrypick this. It is
extremely unlikely to hit this case empirically, but it will likely
manifest as an "impossible" branch being taken somewhere, and will be
... very hard to debug.

Hitting this requires complex conditions living across complex
control flow combined with some interesting memory (non-stack)
initialized with the results of a comparison. Also, because you have
to arrange for an EFLAGS copy to be in *just* the right place, almost
anything you do to the code will hide the bug. I was unable to reduce
anything remotely resembling a "good" test case from the place where
I hit it, and so instead I have constructed synthetic MIR testing
that directly exercises the bug in question (as well as the good
behavior for completeness).

The issue is that we would mistakenly assume any SETcc with a valid
condition and an initial operand that was a register and a virtual
register at that to be a register *defining* SETcc...

It isn't though....

This would in turn cause us to test some other bizarre register,
typically the base pointer of some memory. Now, testing this register
and using that to branch on doesn't make any sense. It even fails the
machine verifier (if you are running it) due to the wrong register
class. But it will make it through LLVM, assemble, and it *looks*
fine... But wow do you get a very unsual and surprising branch taken
in your actual code.

The fix is to actually check what kind of SETcc instruction we're
dealing with. Because there are a bunch of them, I just test the
may-store bit in the instruction. I've also added an assert for
sanity that ensure we are, in fact, *defining* the register operand.
=D

Noticed by: kib
MFC after: 1 week


335799 29-Jun-2018 dim

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

Relnotes: yes
MFC after: 2 weeks


333715 17-May-2018 dim

Pull in r322325 from upstream llvm trunk (by Matthias Braun):

PeepholeOpt cleanup/refactor; NFC

- Less unnecessary use of `auto`
- Add early `using RegSubRegPair(AndIdx) =` to avoid countless
`TargetInstrInfo::` qualifications.
- Use references instead of pointers where possible.
- Remove unused parameters.
- Rewrite the CopyRewriter class hierarchy:
- Pull out uncoalescable copy rewriting functionality into
PeepholeOptimizer class.
- Use an abstract base class to make it clear that rewriters are
independent.
- Remove unnecessary \brief in doxygen comments.
- Remove unused constructor and method from ValueTracker.
- Replace UseAdvancedTracking of ValueTracker with DisableAdvCopyOpt
use.

Even though upstream marked this as "No Functional Change", it does
contain some functional changes, and these fix a compiler hang for one
particular source file in the devel/godot port.

PR: 228261
MFC after: 3 days


332898 23-Apr-2018 dim

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

[X86] In X86FlagsCopyLowering, when rewriting a memory setcc we need
to emit an explicit MOV8mr instruction.

Previously the code only knew how to handle setcc to a register.

This should fix a crash in the chromium build.

This fixes various assertion failures while building ports targeting
i386:
* www/firefox: isReg() && "This is not a register operand!"
* www/iridium, www/qt5-webengine: (I.atEnd() || std::next(I) ==
def_instr_end()) && "getVRegDef assumes a single definition or no
definition"
* devel/powerpc64-gcc: FromReg != ToReg && "Cannot replace a reg with
itself"

Reported by: jbeich
PR: 225330, 227686, 227698, 227699
MFC after: 1 week
X-MFC-With: r332833


332833 20-Apr-2018 dim

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

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

[X86] Add 'sahf' CPU feature to frontend

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

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

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

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

Reviewers: craig.topper, coby, efriedma, rsmith

Reviewed By: craig.topper

Subscribers: emaste, cfe-commits

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


332503 14-Apr-2018 dim

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

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


332501 14-Apr-2018 dim

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

[X86] Add 'sahf' CPU feature to frontend

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

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

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

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

Reviewers: craig.topper, coby, efriedma, rsmith

Reviewed By: craig.topper

Subscribers: emaste, cfe-commits

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


331366 22-Mar-2018 dim

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

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

This patch starts simplifying the handling of .symver.

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

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

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

Delay creating an alias for @@@.

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

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

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

Object: Move attribute calculation into RecordStreamer. NFC

Summary: Preparation for D44274

Reviewers: pcc, espindola

Subscribers: hiraditya

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

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

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

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

Fixes PR36623

Reviewers: pcc, espindola

Subscribers: mehdi_amini, hiraditya

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

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

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


331065 16-Mar-2018 dim

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

[ConstantFolding, InstSimplify] Handle more vector GEPs

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

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

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

Reported by: jbeich
PR: 225471
MFC after: 3 months
X-MFC-With: r327952


330686 09-Mar-2018 dim

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

[ARM] Fix for PR36577

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

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

Patch by Sam Parker.

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

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

Reported by: swills
PR: 226388


330384 04-Mar-2018 dim

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

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

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


329983 25-Feb-2018 dim

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

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


329410 16-Feb-2018 dim

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

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


328817 02-Feb-2018 dim

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


328753 01-Feb-2018 dim

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

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


328596 30-Jan-2018 emaste

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

Use a MCExpr for the size of MCFillFragment.

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

Requested by: royger


328595 30-Jan-2018 emaste

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

Don't create MCFillFragment directly.

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


328594 30-Jan-2018 emaste

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

Make one of the emitFill methods non virtual. NFC.

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


328381 24-Jan-2018 dim

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

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


328146 18-Jan-2018 dim

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

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

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

Reviewers: RKSimon, spatel, mkuper, hfinkel

Subscribers: llvm-commits

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

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

Reported by: jbeich
PR: 225271


328145 18-Jan-2018 dim

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

[ValueTracking] remove overzealous assert

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

Credit to @rksimon for pointing out the problem.

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

Reported by: jbeich
PR: 225268, 225269


328090 17-Jan-2018 dim

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

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

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

PR: 224669,225054


328010 15-Jan-2018 dim

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

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

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

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

Fixes PR35773.

Reviewers: dorit, Ayal, mssimpso

Reviewed By: dorit

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

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

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

Reported by: jbeich
PR: 224867,224868


327952 14-Jan-2018 dim

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

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

MFC after: 3 months


327845 11-Jan-2018 dim

Pull in r316581 from upstream llvm trunk (by John Baldwin):

Don't try to use a non-existent header on FreeBSD/mips.

Reviewers: dim

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

Requested by: jhb
MFC after: 3 days


326909 16-Dec-2017 dim

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

Relnotes: yes
MFC after: 2 weeks


326496 03-Dec-2017 dim

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

MFC after: 2 weeks


325420 05-Nov-2017 emaste

lld: accept EINVAL to indicate posix_fallocate is unsupported

As of r325320 posix_fallocate on a ZFS filesystem returns EINVAL to
indicate that the operation is not supported. (I think this is a strange
choice of errno on the part of POSIX.)

PR: 223383, 223440
Reported by: Mark Millard
Tested by: Mark Millard
MFC after: 3 days
Sponsored by: The FreeBSD Foundation


324826 21-Oct-2017 dim

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

AArch64: account for possible frame index operand in compares.

If the address of a local is used in a comparison, AArch64 can fold
the address-calculation into the comparison via "adds".
Unfortunately, a couple of places (both hit in this one test) are not
ready to deal with that yet and just assume the first source operand
is a register.

This should fix an assertion failure while building the test suite of
www/firefox for AArch64.

PR: 223048
MFC after: 3 days


323245 06-Sep-2017 dim

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

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

Relnotes: yes
MFC after: 1 month
X-MFC-with: r321369


323112 01-Sep-2017 dim

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

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

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


322855 24-Aug-2017 dim

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

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

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


322740 21-Aug-2017 dim

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

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


322320 09-Aug-2017 dim

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

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


321723 30-Jul-2017 dim

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

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


321664 28-Jul-2017 dim

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

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

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

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

Fixes PR33900.

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

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

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

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

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

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

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

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

Reported by: antoine
PR: 219139


321369 22-Jul-2017 dim

Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
5.0.0 (trunk r308421). Upstream has branched for the 5.0.0 release,
which should be in about a month. Please report bugs and regressions,
so we can get them into the release.

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

MFC after: 2 months


318906 25-May-2017 dim

Pull in r303257 from upstream llvm trunk (by Krzysztof Parzyszek)

[PPC] Properly update register save area offsets

The variables MinGPR/MinG8R were not updated properly when resetting the
offsets, which in the included testcase lead to saving the CR register
in the same location as R30.

This fixes another issue reported in PR26519.

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

Reported by: Mark Millard
PR: 206990
MFC after: 3 days


318655 22-May-2017 dim

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

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

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

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

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

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

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

Reported by: mmel
MFC after: 3 days


317810 04-May-2017 dim

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

[PPC] When restoring R30 (PIC base pointer), mark it as <def>

This happened on the PPC32/SVR4 path and was discovered when building
FreeBSD on PPC32. It was a typo-class error in the frame lowering
code.

This fixes PR26519.

Reported by: Mark Millard
PR: 206990
MFC after: 3 days


317751 03-May-2017 dim

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

ARM: avoid handing a deleted node back to TableGen during ISel.

When we replaced the multiplicand the destination node might already
exist. When that happens the original gets CSEd and deleted. However,
it's actually used as the offset so nonsense is produced.

Should fix PR32726.

This fixes an assertion failure when building building www/firefox 53.0
for arm.

Reported by: Bob Prohaska
PR: 218782
MFC after: 3 days


317458 26-Apr-2017 dim

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

[Assembler] Enable nicer diagnostics for inline assembly.

Fixed test.

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

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

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

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

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

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

Reviewed By: rnk

Subscribers: llvm-commits

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

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

Reported by: mmel
MFC after: 1 week


317079 18-Apr-2017 dim

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

[X86] Remove special handling for 16 bit for A asm constraints.

Our 16 bit support is assembler-only + the terrible hack that is
.code16gcc. Simply using 32 bit registers does the right thing for
the latter.

Fixes PR32681.

This fixes some cases of assembling 16 bit code (i.e. SeaBIOS) that uses
the 'A' inline asm constraint, after r316989.

MFC after: 3 days
X-MFC-With: r316989


316989 15-Apr-2017 dim

Pull in r300404 from upstream llvm trunk (by me):

Use correct registers for "A" inline asm constraint

Summary:
In PR32594, inline assembly using the 'A' constraint on x86_64 causes
llvm to crash with a "Cannot select" stack trace. This is because
`X86TargetLowering::getRegForInlineAsmConstraint` hardcodes that 'A'
means the EAX and EDX registers.

However, on x86_64 it means the RAX and RDX registers, and on 16-bit
x86 (ia16?) it means the old AX and DX registers.

Add new register classes in `X86RegisterInfo.td` to support these
cases, and amend the logic in `getRegForInlineAsmConstraint` to cope
with different subtargets. Also add a test case, derived from
PR32594.

Reviewers: craig.topper, qcolombet, RKSimon, ab

Reviewed By: ab

Subscribers: ab, emaste, royger, llvm-commits

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

This should fix crashes when using the 'A' constraint on amd64, for
example as it is being used in Xen.

Reported by: royger
MFC after: 3 days


315016 10-Mar-2017 dim

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

Relnotes: yes
MFC after: 1 month
X-MFC-With: r314564


314795 06-Mar-2017 dim

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

[SCEV] limit recursion depth of CompareSCEVComplexity

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

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

Reviewers: sanjoy

Subscribers: mzolotukhin, tstellarAMD, llvm-commits

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

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

[SCEV] Decrease the recursion threshold for CompareValueComplexity

Fixes PR32142.

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

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


314708 05-Mar-2017 dim

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

[SCEV] limit recursion depth of CompareSCEVComplexity

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

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

Reviewers: sanjoy

Subscribers: mzolotukhin, tstellarAMD, llvm-commits

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

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

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

Reported by: mjg


314564 02-Mar-2017 dim

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

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

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

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

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

Relnotes: yes
Exp-run: antoine
PR: 215969, 216008
MFC after: 1 month


312993 30-Jan-2017 dim

Pull in r279454 from upstream llvm trunk (by James Molloy):

[SROA] Remove incorrect assertion

Confirmed with aprantl, this assertion is incorrect - code can get
here (for example 80-bit FP types) and if it does it's benign. This
is exposed by a completely unrelated patch of mine, so stop the
compiler falling over.

Original differential: http://reviews.llvm.org/D16187
aprantl's advice to remove assertion:
http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20160815/382129.html

This should fix assertions when building the math/opensolaris-libm port.

Reported by: marino
MFC after: 3 days


312832 26-Jan-2017 dim

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

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

The fix for PR28705 will be committed consecutively.

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

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

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

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

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

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

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

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

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

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

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

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

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

PR: 215649
MFC after: 1 week


312831 26-Jan-2017 dim

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

Reported by: antoine
PR: 215649


312765 25-Jan-2017 dim

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

Use ValueOffsetPair to enhance value reuse during SCEV expansion.

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

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

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

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

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

PR: 215649
MFC after: 3 days


310194 17-Dec-2016 dim

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

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

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

Relnotes: yes
MFC after: 2 weeks
X-MFC-with: r309124


309835 10-Dec-2016 dim

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/


309722 08-Dec-2016 dim

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

Add some shortcuts in LazyValueInfo to reduce compile time of
Correlated Value Propagation.

The patch is to partially fix PR10584. Correlated Value Propagation
queries LVI to check non-null for pointer params of each callsite. If
we know the def of param is an alloca instruction, we know it is
non-null and can return early from LVI. Similarly, CVP queries LVI to
check whether pointer for each mem access is constant. If the def of
the pointer is an alloca instruction, we know it is not a constant
pointer. These shortcuts can reduce the cost of CVP significantly.

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

This significantly reduces memory usage and compilation time when
compiling a particular C++ source file of the graphics/colmap port.

PR: 215136
MFC after: 3 days


309149 25-Nov-2016 dim

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


309147 25-Nov-2016 dim

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


309124 24-Nov-2016 dim

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

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

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

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

Relnotes: yes
MFC after: 1 month


308559 11-Nov-2016 dim

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

AArch64: only try to use scaled fcvt ops on legal vector types.

Before we ended up calling getSimpleVectorType on a <3 x float>, which
asserted.

This fixes an assertion when building the print/ghostscript9-agpl-base
port for AArch64.

PR: 213865
MFC after: 3 days


308487 10-Nov-2016 dim

Pull in r263301 from upstream llvm trunk (by Ahmed Bougacha):

[AArch64] Don't blindly lower f16/f128 FCCMPs.

Instead, extend f16 (like we do when lowering a standalone SETCC),
and let f128 be legalized to the RT calls.

Fixes PR26803.

This fixes a fatal "Cannot select" backend error when building the
net/freerdp port for AArch64.

PR: 214380
MFC after: 3 days


308375 06-Nov-2016 dim

Pull in r278002 from upstream llvm trunk (by Silviu Baranga):

[AArch64] PR28877: Don't assume we're running after legalization when
creating vcvtfp2fxs

Summary:
The DAG combine transformation that was generating the
aarch64_neon_vcvtfp2fxs node was assuming that all inputs where legal
and wasn't accounting that the input could be a v4f64 if we're trying
to do the transformation before legalization. We now bail out in this
case.

All illegal types besides v4f64 were already rejected.

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

Reviewers: jmolloy

Subscribers: aemerson, rengolin, llvm-commits

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

This fixes several ports on AArch64.

Requested by: andrew
MFC after: 3 days


305218 01-Sep-2016 dim

Pull in r277331 from upstream llvm trunk (by Diana Picus):

[AArch64] Return the correct size for TLSDESC_CALLSEQ

The branch relaxation pass is computing the wrong offsets because it assumes
TLSDESC_CALLSEQ eats up 4 bytes, when in fact it is lowered to an instruction
sequence taking up 16 bytes. This can become a problem in huge files with lots
of TLS accesses, as it may slowly move branch targets out of the range computed
by the branch relaxation pass.

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

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

This fixes "error in backend: fixup value out of range" when compiling
the misc/talkfilters port for AArch64.

Reported by: sbruno
PR: 201762
MFC after: 3 days


304530 20-Aug-2016 dim

Pull in r265122 from upstream llvm trunk (by James Molloy):

Fix for pr24346: arm asm label calculation error in sub

Some ARM instructions encode 32-bit immediates as a 8-bit integer
(0-255) and a 4-bit rotation (0-30, even) in its least significant 12
bits. The original fixup, FK_Data_4, patches the instruction by the
value bit-to-bit, regardless of the encoding. For example, assuming
the label L1 and L2 are 0x0 and 0x104 respectively, the following
instruction:

add r0, r0, #(L2 - L1) ; expects 0x104, i.e., 260

would be assembled to the following, which adds 1 to r0, instead of
260:

e2800104 add r0, r0, #4, 2 ; equivalently 1

The new fixup kind fixup_arm_mod_imm takes care of the encoding:

e2800f41 add r0, r0, #260

Patch by Ting-Yuan Huang!

This fixes label calculation for ARM assembly, and is needed to enable
ARM assembly sources for OpenSSL.

Requested by: jkim
MFC after: 3 days


304319 17-Aug-2016 dim

Pull in r262772 from upstream clang trunk (by Simon Pilgrim):

[X86] AMD Bobcat CPU (btver1) doesn't support XSAVE

btver1 is a SSSE3/SSE4a only CPU - it doesn't have AVX and doesn't
support XSAVE.

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

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

[X86] AMD Bobcat CPU (btver1) doesn't support XSAVE

btver1 is a SSSE3/SSE4a only CPU - it doesn't have AVX and doesn't
support XSAVE.

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

This ensures clang does not emit AVX instructions for CPUTYPE=btver1.

Reported by: Michel Depeige <demik+freebsd@lostwave.net>
PR: 211864
MFC after: 3 days


301227 02-Jun-2016 dim

Pull in r271548 from upstream llvm trunk (by me):

Only attempt to detect AVG if SSE2 is available

Summary:
In PR29973 Sanjay Patel reported an assertion failure when a certain
loop was optimized, for a target without SSE2 support. It turned out
this was because of the AVG pattern detection introduced in rL253952.

Prevent the assertion failure by bailing out early in
`detectAVGPattern()`, if the target does not support SSE2.

Also add a minimized test case.

Reviewers: congh, eli.friedman, spatel

Subscribers: emaste, llvm-commits

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

This should fix assertion failures ("Requires at least SSE2!") when
building the games/0ad port with CPUTYPE=pentium3.

Reported by: madpilot


300974 29-May-2016 dim

Pull in r269908 from upstream llvm trunk (by James Molloy):

[VectorUtils] Fix nasty use-after-free

In truncateToMinimalBitwidths() we were RAUW'ing an instruction then
erasing it. However, that intruction could be cached in the map we're
iterating over. The first check is "I->use_empty()" which in most
cases would return true, as the (deleted) object was RAUW'd first so
would have zero use count. However in some cases the object could
have been polluted or written over and this wouldn't be the case.
Also it makes valgrind, asan and traditionalists who don't like their
compiler to crash sad.

No testcase as there are no externally visible symptoms apart from a
crash if the stars align.

Fixes PR26509.

This should fix crashes when building a number of ports on arm64.

Reported by: andrew


298094 16-Apr-2016 gjb

Remove svn:mergeinfo on files with which it should never have
existed.

Sponsored by: The FreeBSD Foundation


297294 26-Mar-2016 dim

Pull in r264465 from upstream llvm trunk (by David Majnemer):

[X86] Emit a proper ADJCALLSTACKDOWN in EmitLoweredTLSAddr

We forgot to add the second machine operand to our ADJCALLSTACKDOWN,
resulting in crashes in PEI.

This fixes PR27071.

This should fix an assertion failure during buildworld, when using -Os,
and targeting either i386 directly, or building the 32-bit libraries on
amd64.

Reported by: Eric Camachat <eric.camachat@gmail.com>


296418 05-Mar-2016 dim

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


296417 05-Mar-2016 dim

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

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

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

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

Relnotes: yes


292735 25-Dec-2015 dim

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

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


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.


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]


289221 13-Oct-2015 dim

Pull in r250085 from upstream llvm trunk (by Andrea Di Biagio):

[x86] Fix wrong lowering of vsetcc nodes (PR25080).

Function LowerVSETCC (in X86ISelLowering.cpp) worked under the wrong
assumption that for non-AVX512 targets, the source type and destination type
of a type-legalized setcc node were always the same type.

This assumption was unfortunately incorrect; the type legalizer is not always
able to promote the return type of a setcc to the same type as the first
operand of a setcc.

In the case of a vsetcc node, the legalizer firstly checks if the first input
operand has a legal type. If so, then it promotes the return type of the vsetcc
to that same type. Otherwise, the return type is promoted to the 'next legal
type', which, for vectors of MVT::i1 is always a 128-bit integer vector type.

Example (-mattr=+avx):

%0 = trunc <8 x i32> %a to <8 x i23>
%1 = icmp eq <8 x i23> %0, zeroinitializer

The initial selection dag for the code above is:

v8i1 = setcc t5, t7, seteq:ch
t5: v8i23 = truncate t2
t2: v8i32,ch = CopyFromReg t0, Register:v8i32 %vreg1
t7: v8i32 = build_vector of all zeroes.

The type legalizer would firstly check if 't5' has a legal type. If so, then it
would reuse that same type to promote the return type of the setcc node.
Unfortunately 't5' is of illegal type v8i23, and therefore it cannot be used to
promote the return type of the setcc node. Consequently, the setcc return type
is promoted to v8i16. Later on, 't5' is promoted to v8i32 thus leading to the
following dag node:
v8i16 = setcc t32, t25, seteq:ch

where t32 and t25 are now values of type v8i32.

Before this patch, function LowerVSETCC would have wrongly expanded the setcc
to a single X86ISD::PCMPEQ. Surprisingly, ISel was still able to match an
instruction. In our case, ISel would have matched a VPCMPEQWrr:
t37: v8i16 = X86ISD::VPCMPEQWrr t36, t25

However, t36 and t25 are both VR256, while the result type is instead of class
VR128. This inconsistency ended up causing the insertion of COPY instructions
like this:
%vreg7<def> = COPY %vreg3; VR128:%vreg7 VR256:%vreg3

Which is an invalid full copy (not a sub register copy).
Eventually, the backend would have hit an UNREACHABLE "Cannot emit physreg copy
instruction" in the attempt to expand the malformed pseudo COPY instructions.

This patch fixes the problem adding the missing logic in LowerVSETCC to handle
the corner case of a setcc with 128-bit return type and 256-bit operand type.

This problem was originally reported by Dimitry as PR25080. It has been latent
for a very long time. I have added the minimal reproducible from that bugzilla
as test setcc-lowering.ll.

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

This should fix the "Cannot emit physreg copy instruction" errors when
compiling contrib/wpa/src/common/ieee802_11_common.c, and CPUTYPE is set
to a CPU supporting AVX (e.g. sandybridge, ivybridge).


289072 09-Oct-2015 dim

Temporarily revert upstream llvm trunk r240144 (by Michael Zolotukhin):

[SLP] Vectorize for all-constant entries.

This should fix libc++'s iostream initialization SIGBUSing on amd64,
whenever the global cout symbol is not aligned to 16 bytes.

Some further explanation: libc++'s iostream.cpp contains the definitions
of std::cout, std::cerr and so on. These global objects are effectively
declared with an alignment of 8 bytes. When an executable is linked
against libc++.so, it can sometimes get a copy of the global object,
which is then at the same alignment.

However, with clang 3.7.0, the initialization of these global objects
will incorrectly use SSE instructions (e.g. movdqa), whenever the
optimization level is high enough, and SSE is enabled, such as on amd64.
When any of these objects is not aligned to 16 bytes, this will result
in a SIGBUS during iostream initialization. In contrast, clang 3.6.x
and earlier took the 8 byte alignment into consideration, and avoided
SSE for those particular operations.

After bisecting of upstream changes, I found that the above revision
caused the change of this behavior, so I am reverting it now as a
workaround, while a discussion and test case is being prepared for
upstream.


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


285149 04-Jul-2015 dim

Pull in r241142 from upstream llvm trunk (by David Majnemer):

[SCCP] Turn loads of null into undef instead of zero initialized values

Surprisingly, this is a correctness issue: the mmx type exists for
calling convention purposes, LLVM doesn't have a zero representation for
them.

This partially fixes PR23999.

Pull in r241143 from upstream llvm trunk (by David Majnemer):

[LoopUnroll] Use undef for phis with no value live

We would create a phi node with a zero initialized operand instead of
undef in the case where no value was originally available. This was
problematic for x86_mmx which has no null value.

These fix a "Cannot create a null constant of that type!" error when
compiling the graphics/sdl2_gfx port with MMX enabled.

Reported by: amdmi3


283526 25-May-2015 dim

Upgrade our copy of clang and llvm to 3.6.1 release.

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

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

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


281775 20-Apr-2015 dim

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

MC: Allow multiple comma-separated expressions on the .uleb128 directive.

For compatiblity with GNU as. Binutils documents this as
'.uleb128 expressions'. Subtle, isn't it?

Reported by: sbruno
PR: 199554
MFC after: 3 days


280865 30-Mar-2015 emaste

llvm: Backport upstream r229195 to fix arm64 TLS relocations

As is described at http://llvm.org/bugs/show_bug.cgi?id=22408, the GNU
linkers ld.bfd and ld.gold currently only support a subset of the
whole range of AArch64 ELF TLS relocations. Furthermore, they assume
that some of the code sequences to access thread-local variables are
produced in a very specific sequence. When the sequence is not as the
linker expects, it can silently mis-relaxe/mis-optimize the
instructions.
Even if that wouldn't be the case, it's good to produce the exact
sequence, as that ensures that linkers can perform optimizing
relaxations.

This patch:

* implements support for 16MiB TLS area size instead of 4GiB TLS area
size. Ideally clang would grow an -mtls-size option to allow support
for both, but that's not part of this patch.
* by default doesn't produce local dynamic access patterns, as even
modern ld.bfd and ld.gold linkers do not support the associated
relocations. An option (-aarch64-elf-ldtls-generation) is added to
enable generation of local dynamic code sequence, but is off by
default.
* makes sure that the exact expected code sequence for local dynamic
and general dynamic accesses is produced, by making use of a new
pseudo instruction. The patch also removes two
(AArch64ISD::TLSDESC_BLR, AArch64ISD::TLSDESC_CALL) pre-existing
AArch64-specific pseudo SDNode instructions that are superseded by
the new one (TLSDESC_CALLSEQ).

Submitted by: Kristof Beyls
Differential Revision: https://reviews.freebsd.org/D2175


280400 23-Mar-2015 dim

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

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

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

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

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

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


280031 15-Mar-2015 dim

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

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

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

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

Exp-run: antoine


279161 22-Feb-2015 dim

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

LoopRotate: When reconstructing loop simplify form don't split edges
from indirectbrs.

Yet another chapter in the endless story. While this looks like we
leave the loop in a non-canonical state this replicates the logic in
LoopSimplify so it doesn't diverge from the canonical form in any way.

http://llvm.org/PR21968

This fixes a "Cannot split critical edge from IndirectBrInst" assertion
failure when building the devel/radare2 port.

PR: 195480, 196987
MFC after: 3 days


278361 07-Feb-2015 dim

Back out r278349 and r278350 for now, since this apparently blows up the
kernel build in sys/dev/hptmv/hptproc.c for some people.

Reported by: sbruno, Matthew Fuller <fullermd@over-yonder.net>


278349 07-Feb-2015 dim

Pull in r224884 from upstream llvm trunk (by Keno Fischer):

[FastIsel][X86] Fix invalid register replacement for bool args

Summary:
Consider the following IR:

%3 = load i8* undef
%4 = trunc i8 %3 to i1
%5 = call %jl_value_t.0* @foo(..., i1 %4, ...)
ret %jl_value_t.0* %5

Bools (that are the result of direct truncs) are lowered as whatever
the argument to the trunc was and a "and 1", causing the part of the
MBB responsible for this argument to look something like this:

%vreg8<def,tied1> = AND8ri %vreg7<kill,tied0>, 1, %EFLAGS<imp-def>; GR8:%vreg8,%vreg7

Later, when the load is lowered, it will insert

%vreg15<def> = MOV8rm %vreg14, 1, %noreg, 0, %noreg; mem:LD1[undef] GR8:%vreg15 GR64:%vreg14

but remember to (at the end of isel) replace vreg7 by vreg15. Now for
the bug. In fast isel lowering, we mistakenly mark vreg8 as the result
of the load instead of the trunc. This adds a fixup to have
vreg8 replaced by whatever the result of the load is as well, so
we end up with

%vreg15<def,tied1> = AND8ri %vreg15<kill,tied0>, 1, %EFLAGS<imp-def>; GR8:%vreg15

which is an SSA violation and causes problems later down the road.

This fixes PR21557.

Test Plan: Test test case from PR21557 is added to the test suite.

Reviewers: ributzka

Reviewed By: ributzka

Subscribers: llvm-commits

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

This fixes a possible assertion failure when compiling toolbox.cxx from
LibreOffice 4.3.5.

Reported by: kwm


277774 26-Jan-2015 dim

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

AArch64: add backend option to reserve x18 (platform register)

AAPCS64 says that it's up to the platform to specify whether x18 is
reserved, and a first step on that way is to add a flag controlling
it.

From: Andrew Turner <andrew@fubar.geek.nz>

Requested by: andrew


277320 18-Jan-2015 dim

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

Please note that this version requires C++11 support to build; see
UPDATING for more information.

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

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


276786 07-Jan-2015 dim

Pull in r222292 from upstream llvm trunk (by Weiming Zhao):

[Aarch64] Customer lowering of CTPOP to SIMD should check for NEON
availability

This ensures llvm's AArch64 backend does not emit floating point
instructions if they are disabled.


276537 02-Jan-2015 dim

Pull in r222587 from upstream llvm trunk (by Jörg Sonnenberger):

Fix transformation of add with pc argument to adr for non-immediate
arguments.

This fixes an "Unimplemented" error when assembling certain ARM add
instructions with pc-relative arguments.

Reported by: sbruno
PR: 196412, 196423


276479 31-Dec-2014 dim

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

Please note that this version now requires C++11 support to build; see
UPDATING for more information.

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

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

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


275633 09-Dec-2014 dim

Pull in r223171 from upstream llvm trunk (by Michael Zolotukhin):

PR21302. Vectorize only bottom-tested loops.

rdar://problem/18886083

This fixes a bug in the llvm vectorizer, which could sometimes cause
vectorized loops to perform an additional iteration, leading to possible
buffer overruns. Symptoms of this, which are usually segfaults, were
first noticed when building gcc ports, here:

https://lists.freebsd.org/pipermail/freebsd-ports/2014-September/095466.html
https://lists.freebsd.org/pipermail/freebsd-toolchain/2014-September/001211.html

Since this fix is very important for ports, bump __FreeBSD_version to
make it easier for port maintainers to test whether the fix has been
applied.

Upstream PR: http://llvm.org/PR21302
MFC after: 3 days


274483 13-Nov-2014 dim

The fix imported into llvm in r274442 contains some C++11 constructs,
which gcc in base cannot handle. Replace these with C++98 equivalents.

While here, add the patch for the adapted fix.

Reported by: bz, kib
Pointy hat to: dim
MFC after: 1 week
X-MFC-With: r274442


274442 12-Nov-2014 dim

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

Totally forget deallocated SDNodes in SDDbgInfo.

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

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

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

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


274286 08-Nov-2014 dim

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

AsmParser: Disable Darwin-style macro argument expansion on non-darwin targets.

There is code in the wild that relies on $0 not being expanded.

This fixes some cases of using $ signs in literals being incorrectly
assembled.

Reported by: Richard Henderson
Upstream PR: http://llvm.org/PR21500
MFC after: 3 days


271597 14-Sep-2014 dim

Pull in r217410 from upstream llvm trunk (by Bob Wilson):

Set trunc store action to Expand for all X86 targets.

When compiling without SSE2, isTruncStoreLegal(F64, F32) would return
Legal, whereas with SSE2 it would return Expand. And since the Target
doesn't seem to actually handle a truncstore for double -> float, it
would just output a store of a full double in the space for a float
hence overwriting other bits on the stack.

Patch by Luqman Aden!

This should fix clang -O0 on i386 assigning garbage to floats, in
certain scenarios.

PR: 187437
Submitted by: cebd@gmail.com
Obtained from: http://llvm.org/viewvc/llvm-project?rev=217410&view=rev
MFC after: 3 days


271030 03-Sep-2014 sbruno

Apparently, the patch commited in svn r271029 doesn't actually do anyting,
so we still need to modify the code in place. Pointed out by emaste.

MFC after: 2 days
Relnotes: yes


271029 03-Sep-2014 sbruno

Do not direct commit to contrib/llvm. Make the change a patch file instead.
Reverts 271025 but still functionally patches it. Original intent is still
the same. Pointed out by rdivacky.

MFV: Only emit movw on ARMv6T2

Building for the FreeBSD default target ARMv6 was emitting movw ASM on certain
test cases (found building qmake4/5 for ARM). Don't do that, moreover, the AS
in base doesn't understand this instruction for this target. One would need
to use --integrated-as to get this to build if desired.

http://llvm.org/viewvc/llvm-project?view=revision&revision=216989

Submitted by: ian
Reviewed by: dim
Obtained from: llvm.org
MFC after: 2 days
Relnotes: yes


271025 03-Sep-2014 sbruno

MFV: Only emit movw on ARMv6T2

Building for the FreeBSD default target ARMv6 was emitting movw ASM on certain
test cases (found building qmake4/5 for ARM). Don't do that, moreover, the AS
in base doesn't understand this instruction for this target. One would need
to use --integrated-as to get this to build if desired.

http://llvm.org/viewvc/llvm-project?view=revision&revision=216989

Submitted by: ian
Reviewed by: dim
Obtained from: llvm.org
MFC after: 2 days


270147 18-Aug-2014 rdivacky

Backport r197824, r213427 and r213960 from LLVM trunk:

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

Implement initial-exec TLS for PPC32.

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

[PowerPC] 32-bit ELF PIC support

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

Patch by Justin Hibbits!

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

[PowerPC] Support TLS on PPC32/ELF

Patch by Justin Hibbits!

Reviewed by: jhibbits
Approved by: dim


268003 28-Jun-2014 dim

Fix breakage after r267981.

Pointy hat to: dim
MFC after: 3 days
X-MFC-With: r267981


267981 27-Jun-2014 dim

Pull in r211627 from upstream llvm trunk (by Bill Schmidt):

[PPC64] Fix PR20071 (fctiduz generated for targets lacking that
instruction)

PR20071 identifies a problem in PowerPC's fast-isel implementation
for floating-point conversion to integer. The fctiduz instruction
was added in Power ISA 2.06 (i.e., Power7 and later). However, this
instruction is being generated regardless of which 64-bit PowerPC
target is selected.

The intent is for fast-isel to punt to DAG selection when this
instruction is not available. This patch implements that change.
For testing purposes, the existing fast-isel-conversion.ll test adds
a RUN line for -mcpu=970 and tests for the expected code generation.
Additionally, the existing test fast-isel-conversion-p5.ll was found
to be incorrectly expecting the unavailable instruction to be
generated. I've removed these test variants since we have adequate
coverage in fast-isel-conversion.ll.

This is needed to compile clang with debug+asserts on older powerpc64
and ppc970 targets.

Requested by: jhibbits
MFC after: 3 days


267704 21-Jun-2014 dim

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

Legalizer: Add support for splitting insert_subvectors.

We handle this by spilling the whole thing to the stack and doing the
insertion as a store.

PR19492. This happens in real code because the vectorizer creates
v2i128 when AVX is enabled.

This fixes a "fatal error: error in backend: Do not know how to split
the result of this operator!" message encountered during compilation of
the net-p2p/libtorrent-rasterbar port.

Reported by: Evgeniy <iron@mail.ua>
MFC after: 3 days


265925 12-May-2014 dim

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

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

MFC after: 2 weeks


264826 23-Apr-2014 emaste

Merge LLVM r202188:

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

Paired commit with CFE r202185.

rdar://problem/13690847

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

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

DwarfUnit -> CompileUnit

Sponsored by: DARPA, AFRL


263313 18-Mar-2014 dim

Pull in r203311 from upstream llvm trunk (by Arnold Schwaighofer):

ISel: Make VSELECT selection terminate in cases where the condition type has to
be split and the result type widened.

When the condition of a vselect has to be split it makes no sense widening the
vselect and thereby widening the condition. We end up in an endless loop of
widening (vselect result type) and splitting (condition mask type) doing this.
Instead, split both the condition and the vselect and widen the result.

I ran this over the test suite with i686 and mattr=+sse and saw no regressions.

Fixes PR18036.

With this fix the original problem case from the graphics/rawtherapee
port (posted in http://llvm.org/PR18036 ) now compiles within ~97MB RSS.

Reported by: mandree
MFC after: 1 week


263312 18-Mar-2014 dim

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

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

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

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

Update to clang side tests will land shortly.

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

Revert the backend fatal error from r196939

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

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

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

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

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

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

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

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

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

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

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

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


262985 10-Mar-2014 dim

Repair a few minor mismerges from r262261 in the clang-sparc64 project
branch. This is also to minimize differences with upstream.

MFC after: 3 weeks
X-MFC-With: r262613


262613 28-Feb-2014 dim

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

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

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

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

MFC after: 1 month


262611 28-Feb-2014 dim

Pull in r196874 from upstream llvm trunk:

Fix a crash that occurs when PWD is invalid.

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

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

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

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

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

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


261991 16-Feb-2014 dim

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

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

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

MFC after: 1 month


261162 25-Jan-2014 dim

Pull in r195679 from upstream llvm trunk:

Don't use nopl in cpus that don't support it.

Patch by Mikulas Patocka. I added the test. I checked that for cpu names that
gas knows about, it also doesn't generate nopl.

The modified cpus:
i686 - there are i686-class CPUs that don't have nopl: Via c3, Transmeta
Crusoe, Microsoft VirtualBox - see
https://bbs.archlinux.org/viewtopic.php?pid=775414
k6, k6-2, k6-3, winchip-c6, winchip2 - these are 586-class CPUs
via c3 c3-2 - see https://bugs.archlinux.org/task/19733 as a proof that
Via c3 and c3-Nehemiah don't have nopl

PR: bin/185777
MFC after: 3 days


259888 25-Dec-2013 dim

Pull in r183971 from upstream llvm trunk:

X86: cvtpi2ps is just an SSE instruction with MMX operands. It has no AVX
equivalent.

Give it the right register format so we can also emit it when AVX is enabled.

This should fix a "Cannot select: intrinsic %llvm.x86.sse.cvtpi2ps" fatal error
in clang while building the gnuradio port for amd64.

Reported by: db
MFC after: 3 days


258472 22-Nov-2013 dim

Revert r258455 for now, as it apparently causes miscompilation in some
situations. Until this is fully resolved, the X.org workaround in ports
still needs to take place.


258455 21-Nov-2013 dim

Pull in r195318 from upstream llvm trunk:

The basic problem is that some mainstream programs cannot deal with the way
clang optimizes tail calls, as in this example:

int foo(void);
int bar(void) {
return foo();
}

where the call is transformed to:

calll .L0$pb
.L0$pb:
popl %eax
.Ltmp0:
addl $_GLOBAL_OFFSET_TABLE_+(.Ltmp0-.L0$pb), %eax
movl foo@GOT(%eax), %eax
popl %ebp
jmpl *%eax # TAILCALL

However, the GOT references must all be resolved at dlopen() time, and so this
approach cannot be used with lazy dynamic linking (e.g. using RTLD_LAZY), which
usually populates the PLT with stubs that perform the actual resolving.

This patch changes X86TargetLowering::LowerCall() to skip tail call
optimization, if the called function is a global or external symbol.

This fixes problems with loading X.org driver modules, which could occur
when X.org was compiled on i386 with tailcall optimization on, for which
ports r312583 was committed as a workaround. After this change, the
workaround can be removed.

MFC after: 3 days


258350 19-Nov-2013 dim

Pull in r191896 from upstream llvm trunk:

CaptureTracking: Plug a loophole in the "too many uses" heuristic.

The heuristic was added to avoid spending too much compile time in a
specially crafted test case (PR17461, PR16474) with many uses on a
select or bitcast instruction can still trigger the slow case. Add a
check for that case.

This only affects compile time, don't have a good way to test it.

This fixes the excessive compile time spent on a specific file of the
graphics/rawtherapee port.

Reported by: mandree
MFC after: 3 days


258005 11-Nov-2013 emaste

Merge upstream LLVM r192118:

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

Reviewed by: dim@
Sponsored by: DARPA, AFRL


256090 06-Oct-2013 dim

Pull in r192064 from upstream llvm trunk:

X86: Don't fold spills into SSE operations if the stack is unaligned.

Regalloc can emit unaligned spills nowadays, but we can't fold the
spills into SSE ops if we can't guarantee alignment. PR12250.

This fixes unaligned SSE accesses (leading to a SIGBUS) which could
occur in the ffmpeg ports.

Approved by: re (kib)
Reported by: tijl
MFC after: 3 days


256030 03-Oct-2013 dim

Pull in r189644 from upstream llvm trunk:

Add ms_abi and sysv_abi attribute handling.

Based on a patch by Benno Rice!

This will help to develop EFI support.

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


256024 03-Oct-2013 dim

Pull in r186338 from upstream llvm trunk:

Remove invalid assert in DAGTypeLegalizer::RemapValue

There is a comment at the top of DAGTypeLegalizer::PerformExpensiveChecks
which, in part, says:

// Note that these invariants may not hold momentarily when processing a node:
// the node being processed may be put in a map before being marked Processed.

Unfortunately, this assert would be valid only if the above-mentioned invariant
held unconditionally. This was causing llc to assert when, in fact,
everything was fine.

Thanks to Richard Sandiford for investigating this issue!

Fixes PR16562.

This fixes assertions which could occur in the multimedia/ffmpeg1 and
multimedia/ffmpeg2 ports.

Approved by: re (hrs)
Reported by: Matthias Apitz <guru@unixarea.de>
MFC after: 3 days


255978 01-Oct-2013 dim

Pull in r191711 from upstream llvm trunk:

The X86FixupLEAs pass for Intel Atom must not call
convertToThreeAddress on ADD16rr opcodes, if src1 != src, since that
would cause convertToThreeAddress to try to create a virtual register.
This is not permitted after register allocation, which is when the
X86FixupLEAs pass runs.

This patch fixes PR16785.

Pull in r191715 from upstream llvm trunk:

Forgot to add a break statement.

This should enable building the x11-toolskits/libXaw port with
CPUTYPE=atom.

Approved by: re (gjb)
Reported by: Kenta Suzumoto <kentas@hush.com>
MFC after: 3 days


255804 22-Sep-2013 dim

Pull in r191165 from upstream llvm trunk:

ISelDAG: spot chain cycles involving MachineNodes

Previously, the DAGISel function WalkChainUsers was spotting that it
had entered already-selected territory by whether a node was a
MachineNode (amongst other things). Since it's fairly common practice
to insert MachineNodes during ISelLowering, this was not the correct
check.

Looking around, it seems that other nodes get their NodeId set to -1
upon selection, so this makes sure the same thing happens to all
MachineNodes and uses that characteristic to determine whether we
should stop looking for a loop during selection.

This should fix PR15840.

Specifically, this fixes the long-standing assertion failure when
compiling the multimedia/gstreamer port on i386. Thanks to Tijl
Coosemans for his help in getting upstream to fix it.

Approved by: re (marius)


255076 30-Aug-2013 dim

Pull in r189672 from upstream llvm trunk:

InstCombine: Check for zero shift amounts before subtracting one
causing integer overflow.

PR17026. Also avoid undefined shifts and shift amounts larger than 64
bits (those are always undef because we can't represent integer types
that large).

This should fix assertion failures when building the emulators/xmame
port.

Reported by: bapt


254790 24-Aug-2013 emaste

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

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

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

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


253042 08-Jul-2013 dim

Pull in r185616 from llvm trunk:

FastISel can only append to basic blocks.

Compute the insertion point from the end of the basic block instead of
skipping labels from the front.

This caused failures in landing pads when live-in copies where inserted
before instruction selection.

I missed this change in r252720; without it, certain compilation flags
can cause exception labels to not be generated, but still referenced,
leading to link errors.

Reported by: zeising
MFC after: 3 days


252720 04-Jul-2013 dim

Pull in r185594 from llvm trunk:

Add MachineBasicBlock::addLiveIn().

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

Pull in r185615 from llvm trunk:

Live-in copies go *after* EH_LABELs.

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

Pull in r185617 from llvm trunk:

Simplify landing pad lowering.

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

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

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

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

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


252503 02-Jul-2013 andrew

Work around an ARM EABI issue where clang would sometimes incorrectly align
the stack in a leaf function that uses TLS.

The issue is, when using TLS, the function is no longer a leaf as it calls
__aeabi_read_tp. With statically linked programs this is not an issue as
it doesn't make use of the stack, however with dynamically linked
applications we enter rtld which does use the stack and makes assumptions
about it's alignment.

This is only a temporary fix until a better patch can be made and submitted
upstream.


252039 20-Jun-2013 dim

Pull in r183984 from llvm trunk:

Make PrologEpilogInserter save/restore all callee saved registers in
functions which call __builtin_unwind_init()

__builtin_unwind_init() is an undocumented gcc intrinsic which has
this effect, and is used in libgcc_eh.

Goes part of the way toward fixing PR8541.

This obsoletes the ugly hack to libgcc's unwind code from r245272, and
should also work for other arches, so revert the hack too.


251761 14-Jun-2013 dim

Pull in r181620 from llvm trunk:

[ms-inline asm] Fix a crasher when we fail on a direct match.

The issue was that the MatchingInlineAsm and VariantID args to the
MatchInstructionImpl function weren't being set properly. Specifically, when
parsing intel syntax, the parser thought it was parsing inline assembly in the
at&t dialect; that will never be the case.

The crash was caused when the emitter tried to emit the instruction, but the
operands weren't set. When parsing inline assembly we only set the opcode, not
the operands, which is used to lookup the instruction descriptor.
rdar://13854391 and PR15945

Also, this commit reverts r176036. Now that we're correctly parsing the intel
syntax the pushad/popad don't match properly. I've reimplemented that fix using
a MnemonicAlias.

Pull in r183907 from llvm trunk:

X86: Make the cmov aliases work with intel syntax too.

These commits make a number of Intel-style inline assembly mnemonics
aliases (occurring in several ports) work properly, which could cause
assertions otherwise.

Reported by: kwm, bapt


251662 12-Jun-2013 dim

Upgrade our copy of llvm/clang to 3.3 release.

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

MFC after: 1 month


251431 05-Jun-2013 dim

Pull in r183297 from upstream llvm trunk:

PR15662: Optimized debug info produces out of order function
parameters

When a function is inlined we lazily construct the variables
representing the function's parameters. After that, we add any
remaining unused parameters.

If the function doesn't use all the parameters, or uses them out of
order, then the DWARF would produce them in that order, producing a
parameter order that doesn't match the source.

This fix causes us to always keep the arg variables at the start of
the variable list & in the original order from the source.

Reported by: avg
MFC after: 1 week


250997 26-May-2013 dim

Pull in r182656 from upstream llvm trunk:

LoopVectorize: LoopSimplify can't canonicalize loops with an
indirectbr in it, don't assert on those cases.

Fixes PR16139.

This should fix clang assertion failures when optimizing at -O3, similar
to:

Assertion failed: (TheLoop->getLoopPreheader() && "No preheader!!"),
function canVectorize, file
contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp, line 2171.

Reported by: O. Hartmann <ohartman@zedat.fu-berlin.de>
PR: ports/178332, ports/178977
MFC after: 3 days


250593 13-May-2013 dim

Pull in r181286 from upstream llvm trunk:

LoopVectorize: getConsecutiveVector must respect signed arithmetic

We were passing an i32 to ConstantInt::get where an i64 was needed and we must
also pass the sign if we pass negatives numbers. The start index passed to
getConsecutiveVector must also be signed.

Should fix PR15882.

This should fix Firefox crashes some people have been reporting, when it
is compiled with -O3.


249817 23-Apr-2013 dim

Pull in r180121 from upstream llvm trunk:

LoopVectorizer: Fix 15830. When scalarizing and unrolling stores make
sure that the order in which the elements are scalarized is the same
as the original order.
This fixes a miscompilation in FreeBSD's regex library.

This should fix lib/libc/regex/regcomp.c at -O3 with clang 3.3 r178860
on CPUs with SSE. Before this change, the vectorizer could incorrectly
rearrange the second loop in computejumps(), leading to possibly invalid
entries in the re_gets::charjump table.

The net result was that for example "sed s/@CC@/foo/" failed to work
correctly, leading to trouble with many configure scripts.


249423 12-Apr-2013 dim

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

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

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


247205 23-Feb-2013 dim

Pull in r175962 from upstream llvm trunk:

X86: Disable cmov-memory patterns on subtargets without cmov.

Fixes PR15115.

For the i386 arch, this should enable cmov instructions only on
-march=pentiumpro and higher. Since our default CPU is i486, cmov
instructions will now be disabled by default.

MFC after: 1 week


247003 19-Feb-2013 dim

Pull in r175360 from upstream llvm trunk:

MCParser: Reject .balign with non-pow2 alignments.

GNU as rejects them and there are configure scripts in the wild that
check if the assembler rejects ".align 3" to determine whether the
alignment is in bytes or powers of two.

MFC after: 3 days


246858 15-Feb-2013 dim

Pull in r175057 from upstream llvm trunk:

X86: Disable generation of rep;movsl when %esi is used as a base pointer.

This happens when there is both stack realignment and a dynamic alloca in the
function. If we overwrite %esi (rep;movsl uses fixed registers) we'll lose the
base pointer and the next register spill will write into oblivion.

Fixes PR15249 and unbreaks firefox on i386/freebsd. Mozilla uses dynamic allocas
and freebsd a 4 byte stack alignment.

MFC after: 1 week


245952 26-Jan-2013 pfg

Clean some 'svn:executable' properties in the tree.

Submitted by: Christoph Mallon
MFC after: 3 days


244628 23-Dec-2012 dim

Upgrade our copy of llvm/clang to 3.2 release.

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

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

MFC after: 2 weeks


244598 22-Dec-2012 dim

Pull in r170353 from upstream llvm trunk:

Fix another SROA crasher, PR14601.

This was a silly oversight, we weren't pruning allocas which were used
by variable-length memory intrinsics from the set that could be widened
and promoted as integers. Fix that.

This should fix the following assertion failure:

Assertion failed: (CanSROA), function visitUsers, file
/usr/src/lib/clang/libllvmscalaropts/../../../contrib/llvm/lib/Transforms/Scalar/SROA.cpp,
line 2395.

Reported by: gerald


243830 03-Dec-2012 dim

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


242835 09-Nov-2012 dim

Reduce LLVM's default stack alignment for i386 from 16 to 4 bytes, as
the FreeBSD ABI requires. This is essentially a revert of upstream llvm
commit r126226, and it will be reverted by upstream too.

MFC after: 1 week


242380 30-Oct-2012 dim

Pull in r165377 from upstream llvm trunk:

X86: fcmov doesn't handle all possible EFLAGS, fall back to a branch
for the others.

Otherwise it will try to use SSE patterns and fail horribly if sse is
disabled.

Fixes PR14035.

This should fix the following assertion failure:

Assertion failed: (Reg >= X86::FP0 && Reg <= X86::FP6 && "Expected FP
register!"), function getFPReg, file
contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp, line 330.

which can show up when compiling contrib/compiler-rt, using -march=i686
through -march=pentium3 (CPU's which do support fcmov, but don't support
SSE2).

MFC after: 1 week


242007 24-Oct-2012 dim

Pull in r165367 from upstream llvm trunk:

Make sure always-inline functions get inlined. <rdar://problem/12423986>

Without this change, when the estimated cost for inlining a function with
an "alwaysinline" attribute was lower than the inlining threshold, the
getInlineCost function was returning that estimated cost rather than the
special InlineCost::AlwaysInlineCost value. That is fine in the normal
inlining case, but it can fail when the inliner considers the opportunity
cost of inlining into an internal or linkonce-odr function. It may decide
not to inline the always-inline function in that case. The fix here is just
to make getInlineCost always return the special value for always-inline
functions. I ran into this building clang with libc++. Tablegen failed to
link because of an always-inline function that was not inlined. I have been
unable to reduce the testcase down to a reasonable size.

This should fix the link errors that were reported when atf-run was
compiled with clang -stdlib=libc++. In this case, at -O3 optimization,
some calls to basic_ios::clear() were not inlined, even when the
function was marked __always_inline__.

Reported by: Jan Beich <jbeich@tormail.org>
MFC after: 1 week


241895 22-Oct-2012 dim

Pull in r165878 from upstream llvm trunk:

X86: Disable long nops for all cpus prior to pentiumpro/i686.

This is the safest approach for now. If you think long nops matter a
lot for performance, compile with -march=i686 or higher. :)

MFC after: 3 days


241430 10-Oct-2012 dim

Pull in r164132 from upstream llvm trunk:

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

Fixes PR11212.

Pull in r164133 from upstream clang trunk:

Follow up on llvm r164132.

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

MFC after: 3 days


241427 10-Oct-2012 dim

Pull in r163710 from upstream llvm trunk:

Add support for AMD Geode.

MFC after: 3 days


240531 15-Sep-2012 dim

Pull in r163967 from upstream llvm trunk:

X86: Emitting x87 fsin/fcos for sinf/cosf is not safe without unsafe
fp math.

This should make clang emit calls to libm for sinf/cosf by default.

MFC after: 1 week


239462 20-Aug-2012 dim

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


236260 29-May-2012 dim

Pull in r156591 from upstream llvm trunk:

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

and r156592 from upstream clang trunk:

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

This should fix clang creating files with mode 0600.

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


235864 23-May-2012 dim

Upgrade our copy of llvm/clang to 3.1 release. Release notes can be
found at: http://llvm.org/releases/3.1/docs/ReleaseNotes.html

MFC after: 3 days


234982 03-May-2012 dim

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

MFC after: 2 weeks


234353 16-Apr-2012 dim

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

MFC after: 2 weeks


230393 20-Jan-2012 dim

Pull in r148240 from upstream llvm trunk:

Make sure the non-SSE lowering for fences correctly clobbers EFLAGS.
PR11768.

In particular, this fixes segfaults during the build of devel/icu on
i386. The __sync_synchronize() builtin used for implementing icu's
internal barrier could lead to incorrect behaviour.

MFC after: 3 days


228379 09-Dec-2011 dim

Upgrade our copy of llvm/clang to 3.0 release. Release notes can be
found at: http://llvm.org/releases/3.0/docs/ReleaseNotes.html

MFC after: 1 week


226633 22-Oct-2011 dim

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

MFC after: 1 week


225880 29-Sep-2011 dim

Revive the LLVM and Clang license files, which were removed in my
too-thorough cleanup of unused files, in r213695. Also make sure these
get installed under /usr/share/doc.

Submitted by: rwatson, brooks
Pointy hat to: dim
MFC after: 3 days


224145 17-Jul-2011 dim

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


223017 12-Jun-2011 dim

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


221503 05-May-2011 dim

Make cross-compiling using clang work better, by respecting the
LLVM_HOSTTRIPLE that is defined during the cross-tools stage.

Using clang, you can now build amd64 world and kernel on i386, and vice
versa. Other arches still need work.


221345 02-May-2011 dim

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


219077 27-Feb-2011 dim

Update llvm/clang to trunk r126547.

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

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

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


219076 27-Feb-2011 dim

Instead of defining LLVM_MULTITHREADED as 0 or 1, define or undefine it,
and test appropriately. Otherwise it might erroneously pick up some
pthread primitives, and fail to link.


218893 20-Feb-2011 dim

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

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


213695 11-Oct-2010 dim

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

Approved by: rpaulo (mentor)


213534 07-Oct-2010 dim

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

Approved by: rpaulo (mentor)


212904 20-Sep-2010 dim

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

Approved-by: rpaulo (mentor)


210299 20-Jul-2010 ed

Upgrade our Clang in base to r108428.

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

Obtained from: projects/clangbsd


208958 09-Jun-2010 rdivacky

Comment out piece of code using __clear_cache() which FreeBSD
does not have. This is only used for JIT on ARM so it's harmless.

Approved by: ed (mentor)


208954 09-Jun-2010 rdivacky

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

Approved by: ed (mentor)
Approved by: core


208599 27-May-2010 rdivacky

Update LLVM to r104832.


207631 04-May-2010 rdivacky

Update LLVM to r103052.


207618 04-May-2010 rdivacky

Update LLVM to r103004.


206274 06-Apr-2010 rdivacky

Update LLVM to r100520.


206124 03-Apr-2010 rdivacky

Update LLVM to r100285.


206083 02-Apr-2010 rdivacky

Update LLVM to r100181.


205407 21-Mar-2010 rdivacky

Update LLVM to r99115.


205218 16-Mar-2010 rdivacky

Update LLVM to r98631.


204961 10-Mar-2010 rdivacky

Update LLVM to r98164.


204792 06-Mar-2010 rdivacky

Update LLVM to r97873.


204642 03-Mar-2010 rdivacky

Update LLVM to 97654.


203954 16-Feb-2010 rdivacky

Update LLVM to r96341.


202878 23-Jan-2010 rdivacky

Update LLVM to r94309.


202375 15-Jan-2010 rdivacky

Update LLVM to 93512.


201360 01-Jan-2010 rdivacky

Update LLVM to 92395.


200581 15-Dec-2009 rdivacky

Update LLVM to 91430.


199989 01-Dec-2009 rdivacky

Update LLVM to r90226.


199511 19-Nov-2009 rdivacky

Update LLVM to r89337.


199481 18-Nov-2009 rdivacky

Update LLVM to r89205.


198953 05-Nov-2009 rdivacky

Update LLVM to r86140.


198906 04-Nov-2009 rdivacky

Delete this file.


198892 04-Nov-2009 rdivacky

Update LLVM to r86025.


198413 23-Oct-2009 rdivacky

This was removed upstream.


198396 23-Oct-2009 rdivacky

Update LLVM to r84949.


198138 15-Oct-2009 rdivacky

Delete all stale files.


198113 15-Oct-2009 rdivacky

Update llvm to r84175.


198090 14-Oct-2009 rdivacky

Update llvm to r84119.


195340 04-Jul-2009 ed

Import LLVM 74788.


195098 27-Jun-2009 ed

Import LLVM r74383.


194754 23-Jun-2009 ed

Import LLVM r73984.

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


194710 23-Jun-2009 ed

Import LLVM r73954.


194612 22-Jun-2009 ed

Update LLVM sources to r73879.


194178 14-Jun-2009 ed

Import LLVM r73340.


193724 08-Jun-2009 ed

Import LLVM r73070.

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


193630 07-Jun-2009 ed

Import LLVM r73021.


193574 06-Jun-2009 ed

Import LLVM, at r72995.

We should now have support for #pragma weak.


193399 03-Jun-2009 ed

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

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


193378 03-Jun-2009 ed

Import LLVM, at r72770.

This should fix LLVM PR4225.


193323 02-Jun-2009 ed

Import LLVM, at r72732.