svn commit: r316423 - in stable/11: . contrib/compiler-rt/include/sanitizer contrib/compiler-rt/include/xray contrib/compiler-rt/lib/asan contrib/compiler-rt/lib/builtins contrib/compiler-rt/lib/bu...

Dimitry Andric dim at FreeBSD.org
Sun Apr 2 17:25:06 UTC 2017


Author: dim
Date: Sun Apr  2 17:24:58 2017
New Revision: 316423
URL: https://svnweb.freebsd.org/changeset/base/316423

Log:
  Update clang, llvm, lld, lldb, compiler-rt and libc++ to 4.0.0 release:
  
  MFC r309142 (by emaste):
  
  Add WITH_LLD_AS_LD build knob
  
  If set it installs LLD as /usr/bin/ld.  LLD (as of version 3.9) is not
  capable of linking the world and kernel, but can self-host and link many
  substantial applications. GNU ld continues to be used for the world and
  kernel build, regardless of how this knob is set.
  
  It is on by default for arm64, and off for all other CPU architectures.
  
  Sponsored by:	The FreeBSD Foundation
  
  MFC r310840:
  
  Reapply 310775, now it also builds correctly if lldb is disabled:
  
  Move llvm-objdump from CLANG_EXTRAS to installed by default
  
  We currently install three tools from binutils 2.17.50: as, ld, and
  objdump. Work is underway to migrate to a permissively-licensed
  tool-chain, with one goal being the retirement of binutils 2.17.50.
  
  LLVM's llvm-objdump is intended to be compatible with GNU objdump
  although it is currently missing some options and may have formatting
  differences. Enable it by default for testing and further investigation.
  It may later be changed to install as /usr/bin/objdump, it becomes a
  fully viable replacement.
  
  Reviewed by:	emaste
  Differential Revision:	https://reviews.freebsd.org/D8879
  
  MFC r312855 (by emaste):
  
  Rename LLD_AS_LD to LLD_IS_LD, for consistency with CLANG_IS_CC
  
  Reported by:	Dan McGregor <dan.mcgregor usask.ca>
  
  MFC r313559 | glebius | 2017-02-10 18:34:48 +0100 (Fri, 10 Feb 2017) | 5 lines
  
  Don't check struct rtentry on FreeBSD, it is an internal kernel structure.
  On other systems it may be API structure for SIOCADDRT/SIOCDELRT.
  
  Reviewed by:	emaste, dim
  
  MFC r314152 (by jkim):
  
  Remove an assembler flag, which is redundant since r309124.  The upstream
  took care of it by introducing a macro NO_EXEC_STACK_DIRECTIVE.
  
  http://llvm.org/viewvc/llvm-project?rev=273500&view=rev
  
  Reviewed by:	dim
  
  MFC r314564:
  
  Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
  4.0.0 (branches/release_40 296509).  The release will follow soon.
  
  Please note that from 3.5.0 onwards, clang, llvm and lldb require C++11
  support to build; see UPDATING for more information.
  
  Also note that as of 4.0.0, lld should be able to link the base system
  on amd64 and aarch64.  See the WITH_LLD_IS_LLD setting in src.conf(5).
  Though please be aware that this is work in progress.
  
  Release notes for llvm, clang and lld will be available here:
  <http://releases.llvm.org/4.0.0/docs/ReleaseNotes.html>
  <http://releases.llvm.org/4.0.0/tools/clang/docs/ReleaseNotes.html>
  <http://releases.llvm.org/4.0.0/tools/lld/docs/ReleaseNotes.html>
  
  Thanks to Ed Maste, Jan Beich, Antoine Brodin and Eric Fiselier for
  their help.
  
  Relnotes:	yes
  Exp-run:	antoine
  PR:		215969, 216008
  
  MFC r314708:
  
  For now, revert r287232 from upstream llvm trunk (by Daniil Fukalov):
  
    [SCEV] limit recursion depth of CompareSCEVComplexity
  
    Summary:
    CompareSCEVComplexity goes too deep (50+ on a quite a big unrolled
    loop) and runs almost infinite time.
  
    Added cache of "equal" SCEV pairs to earlier cutoff of further
    estimation. Recursion depth limit was also introduced as a parameter.
  
    Reviewers: sanjoy
  
    Subscribers: mzolotukhin, tstellarAMD, llvm-commits
  
    Differential Revision: https://reviews.llvm.org/D26389
  
  This commit is the cause of excessive compile times on skein_block.c
  (and possibly other files) during kernel builds on amd64.
  
  We never saw the problematic behavior described in this upstream commit,
  so for now it is better to revert it.  An upstream bug has been filed
  here: https://bugs.llvm.org/show_bug.cgi?id=32142
  
  Reported by:	mjg
  
  MFC r314795:
  
  Reapply r287232 from upstream llvm trunk (by Daniil Fukalov):
  
    [SCEV] limit recursion depth of CompareSCEVComplexity
  
    Summary:
    CompareSCEVComplexity goes too deep (50+ on a quite a big unrolled
    loop) and runs almost infinite time.
  
    Added cache of "equal" SCEV pairs to earlier cutoff of further
    estimation. Recursion depth limit was also introduced as a parameter.
  
    Reviewers: sanjoy
  
    Subscribers: mzolotukhin, tstellarAMD, llvm-commits
  
    Differential Revision: https://reviews.llvm.org/D26389
  
  Pull in r296992 from upstream llvm trunk (by Sanjoy Das):
  
    [SCEV] Decrease the recursion threshold for CompareValueComplexity
  
    Fixes PR32142.
  
    r287232 accidentally increased the recursion threshold for
    CompareValueComplexity from 2 to 32.  This change reverses that
    change by introducing a separate flag for CompareValueComplexity's
    threshold.
  
  The latter revision fixes the excessive compile times for skein_block.c.
  
  MFC r314907 | mmel | 2017-03-08 12:40:27 +0100 (Wed, 08 Mar 2017) | 7 lines
  
  Unbreak ARMv6 world.
  
  The new compiler_rt library imported with clang 4.0.0 have several fatal
  issues (non-functional __udivsi3 for example) with ARM specific instrict
  functions. As temporary workaround, until upstream solve these problems,
  disable all thumb[1][2] related feature.
  
  MFC r315016:
  
  Update clang, llvm, lld, lldb, compiler-rt and libc++ to 4.0.0 release.
  We were already very close to the last release candidate, so this is a
  pretty minor update.
  
  Relnotes:	yes
  
  MFC r316005:
  
  Revert r314907, and pull in r298713 from upstream compiler-rt trunk (by
  Weiming Zhao):
  
    builtins: Select correct code fragments when compiling for Thumb1/Thum2/ARM ISA.
  
    Summary:
    Value of __ARM_ARCH_ISA_THUMB isn't based on the actual compilation
    mode (-mthumb, -marm), it reflect's capability of given CPU.
  
    Due to this:
     - use  __tbumb__ and __thumb2__ insteand of __ARM_ARCH_ISA_THUMB
     - use '.thumb' directive consistently  in all affected files
     - decorate all thumb functions using
       DEFINE_COMPILERRT_THUMB_FUNCTION()
  
    ---------
    Note: This patch doesn't fix broken Thumb1 variant of __udivsi3 !
  
    Reviewers: weimingz, rengolin, compnerd
  
    Subscribers: aemerson, dim
  
    Differential Revision: https://reviews.llvm.org/D30938
  
  Discussed with:	mmel

Added:
  stable/11/contrib/compiler-rt/include/xray/
     - copied from r314564, head/contrib/compiler-rt/include/xray/
  stable/11/contrib/compiler-rt/lib/asan/asan_descriptions.cc
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/asan/asan_descriptions.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_descriptions.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/asan/asan_descriptions.h
  stable/11/contrib/compiler-rt/lib/asan/asan_errors.cc
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/asan/asan_errors.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_errors.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/asan/asan_errors.h
  stable/11/contrib/compiler-rt/lib/asan/asan_globals_win.cc
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/asan/asan_globals_win.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_globals_win.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/asan/asan_globals_win.h
  stable/11/contrib/compiler-rt/lib/asan/weak_symbols.txt
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/asan/weak_symbols.txt
  stable/11/contrib/compiler-rt/lib/builtins/floattitf.c
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/builtins/floattitf.c
  stable/11/contrib/compiler-rt/lib/builtins/floatuntitf.c
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/builtins/floatuntitf.c
  stable/11/contrib/compiler-rt/lib/builtins/mingw_fixfloat.c
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/builtins/mingw_fixfloat.c
  stable/11/contrib/compiler-rt/lib/esan/esan_hashtable.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/esan/esan_hashtable.h
  stable/11/contrib/compiler-rt/lib/sancov/
     - copied from r314564, head/contrib/compiler-rt/lib/sancov/
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.cc
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.inc
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_bytemap.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_bytemap.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary32.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary32.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_stats.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_stats.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_dbghelp.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_dbghelp.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_mips64.S
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_mips64.S
  stable/11/contrib/compiler-rt/lib/sanitizer_common/symbolizer/
     - copied from r314564, head/contrib/compiler-rt/lib/sanitizer_common/symbolizer/
  stable/11/contrib/compiler-rt/lib/sanitizer_common/weak_symbols.txt
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/sanitizer_common/weak_symbols.txt
  stable/11/contrib/compiler-rt/lib/scudo/scudo_allocator_secondary.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/scudo/scudo_allocator_secondary.h
  stable/11/contrib/compiler-rt/lib/scudo/scudo_crc32.cpp
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/scudo/scudo_crc32.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_crc32.h
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/scudo/scudo_crc32.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mips64.S
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mips64.S
  stable/11/contrib/compiler-rt/lib/ubsan/weak_symbols.txt
     - copied unchanged from r314564, head/contrib/compiler-rt/lib/ubsan/weak_symbols.txt
  stable/11/contrib/compiler-rt/lib/xray/
     - copied from r314564, head/contrib/compiler-rt/lib/xray/
  stable/11/contrib/libc++/include/__libcpp_version
     - copied unchanged from r314564, head/contrib/libc++/include/__libcpp_version
  stable/11/contrib/libc++/include/__string
     - copied unchanged from r314564, head/contrib/libc++/include/__string
  stable/11/contrib/libc++/include/any
     - copied unchanged from r314564, head/contrib/libc++/include/any
  stable/11/contrib/libc++/include/experimental/numeric
     - copied unchanged from r314564, head/contrib/libc++/include/experimental/numeric
  stable/11/contrib/libc++/include/limits.h
     - copied unchanged from r314564, head/contrib/libc++/include/limits.h
  stable/11/contrib/libc++/include/locale.h
     - copied unchanged from r314564, head/contrib/libc++/include/locale.h
  stable/11/contrib/libc++/include/optional
     - copied unchanged from r314564, head/contrib/libc++/include/optional
  stable/11/contrib/libc++/include/stdint.h
     - copied unchanged from r314564, head/contrib/libc++/include/stdint.h
  stable/11/contrib/libc++/include/string_view
     - copied unchanged from r314564, head/contrib/libc++/include/string_view
  stable/11/contrib/libc++/include/variant
     - copied unchanged from r314564, head/contrib/libc++/include/variant
  stable/11/contrib/libc++/src/variant.cpp
     - copied unchanged from r314564, head/contrib/libc++/src/variant.cpp
  stable/11/contrib/llvm/include/llvm/ADT/AllocatorList.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ADT/AllocatorList.h
  stable/11/contrib/llvm/include/llvm/ADT/CachedHashString.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ADT/CachedHashString.h
  stable/11/contrib/llvm/include/llvm/ADT/ScopeExit.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ADT/ScopeExit.h
  stable/11/contrib/llvm/include/llvm/ADT/ilist_base.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ADT/ilist_base.h
  stable/11/contrib/llvm/include/llvm/ADT/ilist_iterator.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ADT/ilist_iterator.h
  stable/11/contrib/llvm/include/llvm/ADT/ilist_node_base.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ADT/ilist_node_base.h
  stable/11/contrib/llvm/include/llvm/ADT/ilist_node_options.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ADT/ilist_node_options.h
  stable/11/contrib/llvm/include/llvm/ADT/simple_ilist.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ADT/simple_ilist.h
  stable/11/contrib/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopAnalysisManager.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Analysis/LoopAnalysisManager.h
  stable/11/contrib/llvm/include/llvm/Bitcode/BitcodeReader.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Bitcode/BitcodeReader.h
  stable/11/contrib/llvm/include/llvm/Bitcode/BitcodeWriter.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Bitcode/BitcodeWriter.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LowLevelType.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/CodeGen/LowLevelType.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVDebugRecord.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/CVDebugRecord.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeDumper.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeDumper.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabase.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabase.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabaseVisitor.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabaseVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumperBase.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumperBase.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSerializer.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSerializer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/
     - copied from r314564, head/contrib/llvm/include/llvm/DebugInfo/MSF/
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/GlobalsStream.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/GlobalsStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/TpiHashing.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/TpiHashing.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStreamBuilder.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStreamBuilder.h
  stable/11/contrib/llvm/include/llvm/Demangle/
     - copied from r314564, head/contrib/llvm/include/llvm/Demangle/
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
  stable/11/contrib/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
  stable/11/contrib/llvm/include/llvm/LTO/Caching.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/LTO/Caching.h
  stable/11/contrib/llvm/include/llvm/LTO/Config.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/LTO/Config.h
  stable/11/contrib/llvm/include/llvm/LTO/LTOBackend.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/LTO/LTOBackend.h
  stable/11/contrib/llvm/include/llvm/MC/LaneBitmask.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/MC/LaneBitmask.h
  stable/11/contrib/llvm/include/llvm/Object/Decompressor.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Object/Decompressor.h
  stable/11/contrib/llvm/include/llvm/Object/ModuleSymbolTable.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Object/ModuleSymbolTable.h
  stable/11/contrib/llvm/include/llvm/Object/Wasm.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Object/Wasm.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/DWARFYAML.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/ObjectYAML/DWARFYAML.h
  stable/11/contrib/llvm/include/llvm/Support/Chrono.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/Chrono.h
  stable/11/contrib/llvm/include/llvm/Support/ELFRelocs/RISCV.def
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/ELFRelocs/RISCV.def
  stable/11/contrib/llvm/include/llvm/Support/FormatAdapters.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/FormatAdapters.h
  stable/11/contrib/llvm/include/llvm/Support/FormatCommon.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/FormatCommon.h
  stable/11/contrib/llvm/include/llvm/Support/FormatProviders.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/FormatProviders.h
  stable/11/contrib/llvm/include/llvm/Support/FormatVariadic.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/FormatVariadic.h
  stable/11/contrib/llvm/include/llvm/Support/FormatVariadicDetails.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/FormatVariadicDetails.h
  stable/11/contrib/llvm/include/llvm/Support/GlobPattern.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/GlobPattern.h
  stable/11/contrib/llvm/include/llvm/Support/NativeFormatting.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/NativeFormatting.h
  stable/11/contrib/llvm/include/llvm/Support/TarWriter.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/TarWriter.h
  stable/11/contrib/llvm/include/llvm/Support/TrigramIndex.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/TrigramIndex.h
  stable/11/contrib/llvm/include/llvm/Support/Wasm.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/Wasm.h
  stable/11/contrib/llvm/include/llvm/Support/xxhash.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Support/xxhash.h
  stable/11/contrib/llvm/include/llvm/Target/TargetGlobalISel.td
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Target/TargetGlobalISel.td
  stable/11/contrib/llvm/include/llvm/Transforms/Coroutines.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Coroutines.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/GlobalSplit.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/IPO/GlobalSplit.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/Inliner.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/IPO/Inliner.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/NewGVN.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/NewGVN.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/BreakCriticalEdges.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Utils/BreakCriticalEdges.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LowerInvoke.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Utils/LowerInvoke.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
     - copied unchanged from r314564, head/contrib/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
  stable/11/contrib/llvm/include/llvm/XRay/
     - copied from r314564, head/contrib/llvm/include/llvm/XRay/
  stable/11/contrib/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/LoopAnalysisManager.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Analysis/LoopAnalysisManager.cpp
  stable/11/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
  stable/11/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.h
  stable/11/contrib/llvm/lib/Bitcode/Reader/ValueList.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Bitcode/Reader/ValueList.cpp
  stable/11/contrib/llvm/lib/Bitcode/Reader/ValueList.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Bitcode/Reader/ValueList.h
  stable/11/contrib/llvm/lib/CodeGen/BranchRelaxation.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/BranchRelaxation.cpp
  stable/11/contrib/llvm/lib/CodeGen/CountingFunctionInserter.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/CountingFunctionInserter.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/Utils.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/GlobalISel/Utils.cpp
  stable/11/contrib/llvm/lib/CodeGen/LowLevelType.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/LowLevelType.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachinePipeliner.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/MachinePipeliner.cpp
  stable/11/contrib/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CVTypeDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/CodeView/CVTypeDumper.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabase.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabase.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabaseVisitor.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabaseVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeSerializer.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/CodeView/TypeSerializer.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
  stable/11/contrib/llvm/lib/DebugInfo/MSF/
     - copied from r314564, head/contrib/llvm/lib/DebugInfo/MSF/
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/GSI.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/PDB/Raw/GSI.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/GSI.h
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/PDB/Raw/GSI.h
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/GlobalsStream.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/PDB/Raw/GlobalsStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/TpiHashing.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/PDB/Raw/TpiHashing.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/TpiStreamBuilder.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/DebugInfo/PDB/Raw/TpiStreamBuilder.cpp
  stable/11/contrib/llvm/lib/Demangle/
     - copied from r314564, head/contrib/llvm/lib/Demangle/
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
     - copied unchanged from r314564, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
  stable/11/contrib/llvm/lib/LTO/Caching.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/LTO/Caching.cpp
  stable/11/contrib/llvm/lib/LTO/LTOBackend.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/LTO/LTOBackend.cpp
  stable/11/contrib/llvm/lib/Object/Decompressor.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Object/Decompressor.cpp
  stable/11/contrib/llvm/lib/Object/ModuleSymbolTable.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Object/ModuleSymbolTable.cpp
  stable/11/contrib/llvm/lib/Object/WasmObjectFile.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Object/WasmObjectFile.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/DWARFYAML.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/ObjectYAML/DWARFYAML.cpp
  stable/11/contrib/llvm/lib/Support/Chrono.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Support/Chrono.cpp
  stable/11/contrib/llvm/lib/Support/ConvertUTF.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Support/ConvertUTF.cpp
  stable/11/contrib/llvm/lib/Support/FormatVariadic.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Support/FormatVariadic.cpp
  stable/11/contrib/llvm/lib/Support/GlobPattern.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Support/GlobPattern.cpp
  stable/11/contrib/llvm/lib/Support/NativeFormatting.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Support/NativeFormatting.cpp
  stable/11/contrib/llvm/lib/Support/TarWriter.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Support/TarWriter.cpp
  stable/11/contrib/llvm/lib/Support/TrigramIndex.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Support/TrigramIndex.cpp
  stable/11/contrib/llvm/lib/Support/xxhash.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Support/xxhash.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64GenRegisterBankInfo.def
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AArch64/AArch64GenRegisterBankInfo.def
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstructionSelector.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AArch64/AArch64InstructionSelector.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64VectorByElementOpt.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AArch64/AArch64VectorByElementOpt.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/BUFInstructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/BUFInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/DSInstructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/DSInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/FLATInstructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/FLATInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MIMGInstructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/MIMGInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SMInstructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/SMInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SOPInstructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/SOPInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOP1Instructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/VOP1Instructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOP2Instructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/VOP2Instructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOP3Instructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/VOP3Instructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOPCInstructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/VOPCInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOPInstructions.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AMDGPU/VOPInstructions.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMCallLowering.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMCallLowering.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMCallLowering.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMCallLowering.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstructionSelector.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMInstructionSelector.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
  stable/11/contrib/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRDevices.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRDevices.td
  stable/11/contrib/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRFrameLowering.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRISelLowering.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRInstrumentFunctions.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRInstrumentFunctions.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRMCInstLower.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRMCInstLower.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRMCInstLower.h
  stable/11/contrib/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AsmParser/
     - copied from r314564, head/contrib/llvm/lib/Target/AVR/AsmParser/
  stable/11/contrib/llvm/lib/Target/AVR/Disassembler/
     - copied from r314564, head/contrib/llvm/lib/Target/AVR/Disassembler/
  stable/11/contrib/llvm/lib/Target/AVR/InstPrinter/
     - copied from r314564, head/contrib/llvm/lib/Target/AVR/InstPrinter/
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.h
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRFixupKinds.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRFixupKinds.h
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.h
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.h
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/AVR/README.md
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/AVR/README.md
  stable/11/contrib/llvm/lib/Target/BPF/Disassembler/
     - copied from r314564, head/contrib/llvm/lib/Target/BPF/Disassembler/
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonVectorPrint.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/Hexagon/HexagonVectorPrint.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsScheduleGeneric.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/Mips/MipsScheduleGeneric.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/P9InstrResources.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/PowerPC/P9InstrResources.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
  stable/11/contrib/llvm/lib/Target/RISCV/
     - copied from r314564, head/contrib/llvm/lib/Target/RISCV/
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZFeatures.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZFeatures.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZSchedule.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZSchedule.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
  stable/11/contrib/llvm/lib/Target/X86/X86CallLowering.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/X86/X86CallLowering.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86CallLowering.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/X86/X86CallLowering.h
  stable/11/contrib/llvm/lib/Target/X86/X86CallingConv.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/X86/X86CallingConv.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86EvexToVex.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/X86/X86EvexToVex.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.h
  stable/11/contrib/llvm/lib/Target/X86/X86InstrTablesInfo.h
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/X86/X86InstrTablesInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86InterleavedAccess.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Target/X86/X86InterleavedAccess.cpp
  stable/11/contrib/llvm/lib/Transforms/Coroutines/
     - copied from r314564, head/contrib/llvm/lib/Transforms/Coroutines/
  stable/11/contrib/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/GlobalSplit.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/IPO/GlobalSplit.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/IVUsersPrinter.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Scalar/IVUsersPrinter.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopPassManager.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Scalar/LoopPassManager.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopSink.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Scalar/LoopSink.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/NewGVN.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Scalar/NewGVN.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/FunctionComparator.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Utils/FunctionComparator.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
     - copied unchanged from r314564, head/contrib/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
  stable/11/contrib/llvm/lib/XRay/
     - copied from r314564, head/contrib/llvm/lib/XRay/
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/OSLog.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/OSLog.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/CloneDetection.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/include/clang/Analysis/CloneDetection.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDocs.td
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDocs.td
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Distro.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/include/clang/Driver/Distro.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
  stable/11/contrib/llvm/tools/clang/lib/Analysis/CloneDetection.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/Analysis/CloneDetection.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/OSLog.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/Analysis/OSLog.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ConstantBuilder.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/CodeGen/ConstantBuilder.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/Distro.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/Driver/Distro.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/Comments.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/Format/Comments.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/Comments.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/Format/Comments.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_builtin_vars.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_builtin_vars.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/armintr.h
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/Headers/armintr.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/cuda_wrappers/
     - copied from r314564, head/contrib/llvm/tools/clang/lib/Headers/cuda_wrappers/
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorPastEndChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorPastEndChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Memory.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/COFF/Memory.h
  stable/11/contrib/llvm/tools/lld/COFF/PDB.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/COFF/PDB.h
  stable/11/contrib/llvm/tools/lld/COFF/Strings.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/COFF/Strings.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Strings.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/COFF/Strings.h
  stable/11/contrib/llvm/tools/lld/ELF/GdbIndex.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/ELF/GdbIndex.cpp
  stable/11/contrib/llvm/tools/lld/ELF/GdbIndex.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/ELF/GdbIndex.h
  stable/11/contrib/llvm/tools/lld/ELF/Memory.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/ELF/Memory.h
  stable/11/contrib/llvm/tools/lld/ELF/Mips.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/ELF/Mips.cpp
  stable/11/contrib/llvm/tools/lld/ELF/SyntheticSections.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/ELF/SyntheticSections.cpp
  stable/11/contrib/llvm/tools/lld/ELF/SyntheticSections.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/ELF/SyntheticSections.h
  stable/11/contrib/llvm/tools/lld/ELF/Threads.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/ELF/Threads.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Reproduce.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/include/lld/Core/Reproduce.h
  stable/11/contrib/llvm/tools/lld/include/lld/Support/
     - copied from r314564, head/contrib/llvm/tools/lld/include/lld/Support/
  stable/11/contrib/llvm/tools/lld/lib/Core/Reproduce.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/lib/Core/Reproduce.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/DebugInfo.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/DebugInfo.h
  stable/11/contrib/llvm/tools/lld/lib/Support/
     - copied from r314564, head/contrib/llvm/tools/lld/lib/Support/
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/PosixApi.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/include/lldb/Host/PosixApi.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallOnFunctionExit.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallOnFunctionExit.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Timeout.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/include/lldb/Utility/Timeout.h
  stable/11/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/liblldb-private.exports
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/API/liblldb-private.exports
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/
     - copied from r314564, head/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
     - copied from r314564, head/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/
     - copied from r314564, head/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/StructuredData/
     - copied from r314564, head/contrib/llvm/tools/lldb/source/Plugins/StructuredData/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h
  stable/11/contrib/llvm/tools/lldb/source/Symbol/OCamlASTContext.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Symbol/OCamlASTContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/StructuredDataPlugin.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Target/StructuredDataPlugin.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/Darwin/
     - copied from r314564, head/contrib/llvm/tools/lldb/tools/lldb-server/Darwin/
  stable/11/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp
  stable/11/contrib/llvm/tools/llvm-cxxfilt/
     - copied from r314564, head/contrib/llvm/tools/llvm-cxxfilt/
  stable/11/contrib/llvm/tools/llvm-lto2/
     - copied from r314564, head/contrib/llvm/tools/llvm-lto2/
  stable/11/contrib/llvm/tools/llvm-modextract/
     - copied from r314564, head/contrib/llvm/tools/llvm-modextract/
  stable/11/contrib/llvm/tools/llvm-objdump/WasmDump.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-objdump/WasmDump.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyBuiltinDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyClassDefinitionDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyCompilandDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyEnumDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyEnumDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyEnumDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyEnumDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyExternalSymbolDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyFunctionDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyTypeDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyTypeDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyTypeDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyTypeDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyTypedefDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyVariableDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyVariableDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PrettyVariableDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/PrettyVariableDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/YamlSerializationContext.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/YamlSerializationContext.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/YamlSymbolDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/YamlSymbolDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/YamlSymbolDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/YamlSymbolDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/YamlTypeDumper.cpp
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/YamlTypeDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/YamlTypeDumper.h
     - copied unchanged from r314564, head/contrib/llvm/tools/llvm-pdbdump/YamlTypeDumper.h
  stable/11/contrib/llvm/tools/llvm-xray/
     - copied from r314564, head/contrib/llvm/tools/llvm-xray/
  stable/11/contrib/llvm/utils/TableGen/GlobalISelEmitter.cpp
     - copied unchanged from r314564, head/contrib/llvm/utils/TableGen/GlobalISelEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
     - copied unchanged from r314564, head/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
  stable/11/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.h
     - copied unchanged from r314564, head/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.h
  stable/11/contrib/llvm/utils/TableGen/Types.cpp
     - copied unchanged from r314564, head/contrib/llvm/utils/TableGen/Types.cpp
  stable/11/contrib/llvm/utils/TableGen/Types.h
     - copied unchanged from r314564, head/contrib/llvm/utils/TableGen/Types.h
  stable/11/lib/clang/include/llvm/Config/abi-breaking.h
     - copied unchanged from r314564, head/lib/clang/include/llvm/Config/abi-breaking.h
  stable/11/tools/build/options/WITHOUT_LLD_IS_LD
     - copied unchanged from r312855, head/tools/build/options/WITHOUT_LLD_IS_LD
  stable/11/tools/build/options/WITH_LLD_IS_LD
     - copied unchanged from r312855, head/tools/build/options/WITH_LLD_IS_LD
  stable/11/usr.bin/clang/llvm-cxxfilt/
     - copied from r314564, head/usr.bin/clang/llvm-cxxfilt/
  stable/11/usr.bin/clang/llvm-lto2/
     - copied from r314564, head/usr.bin/clang/llvm-lto2/
  stable/11/usr.bin/clang/llvm-modextract/
     - copied from r314564, head/usr.bin/clang/llvm-modextract/
  stable/11/usr.bin/clang/llvm-xray/
     - copied from r314564, head/usr.bin/clang/llvm-xray/
Deleted:
  stable/11/contrib/libc++/include/__undef___deallocate
  stable/11/contrib/llvm/include/llvm/Analysis/LoopPassManager.h
  stable/11/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/ByteStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewOStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/FieldListRecordBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/ListRecordBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/MemoryTypeTableBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/MethodListRecordBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamArray.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamInterface.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamReader.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamRef.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/StreamWriter.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumper.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/DirectoryStreamData.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/IPDBFile.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/IPDBStreamData.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/IndexedStreamData.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/MappedBlockStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/MsfBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/MsfCommon.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/JITSymbolFlags.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITSymbol.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/LogicalDylib.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCChannel.h
  stable/11/contrib/llvm/include/llvm/Support/DataStream.h
  stable/11/contrib/llvm/include/llvm/Support/MemoryObject.h
  stable/11/contrib/llvm/include/llvm/Support/StreamingMemoryObject.h
  stable/11/contrib/llvm/include/llvm/Support/TimeValue.h
  stable/11/contrib/llvm/include/llvm/Target/TargetRecip.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h
  stable/11/contrib/llvm/lib/Analysis/LoopPassManager.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/ByteStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/FieldListRecordBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/ListRecordBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/MemoryTypeTableBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/MethodListRecordBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/StreamReader.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/StreamWriter.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeDumper.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeTableBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/IndexedStreamData.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/MsfBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/MsfCommon.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.cpp
  stable/11/contrib/llvm/lib/Support/ConvertUTF.c
  stable/11/contrib/llvm/lib/Support/DataStream.cpp
  stable/11/contrib/llvm/lib/Support/IntrusiveRefCntPtr.cpp
  stable/11/contrib/llvm/lib/Support/MemoryObject.cpp
  stable/11/contrib/llvm/lib/Support/StreamingMemoryObject.cpp
  stable/11/contrib/llvm/lib/Support/TimeValue.cpp
  stable/11/contrib/llvm/lib/Support/Unix/TimeValue.inc
  stable/11/contrib/llvm/lib/Support/Windows/TimeValue.inc
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64BranchRelaxation.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRDF.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRDF.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSelectCCInfo.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXFavorNonGenericAddrSpaces.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXLowerKernelArgs.cpp
  stable/11/contrib/llvm/lib/Target/TargetRecip.cpp
  stable/11/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/NameAnonFunctions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Headers/cuda_builtin_vars.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.h
  stable/11/contrib/llvm/tools/lld/ELF/SymbolListFile.cpp
  stable/11/contrib/llvm/tools/lld/ELF/SymbolListFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ConnectionMachPort.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ConnectionSharedMemory.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/CxaDemangle.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Condition.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Mutex.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/TimeValue.h
  stable/11/contrib/llvm/tools/lldb/source/Core/ConnectionMachPort.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ConnectionSharedMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/CxaDemangle.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Condition.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Mutex.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/TimeValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/KQueue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/KQueue.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/TimeSpecTimeout.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/TimeSpecTimeout.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilParse.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilParse.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/BuiltinDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/BuiltinDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/ClassDefinitionDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/CompilandDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/CompilandDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/EnumDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/EnumDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/ExternalSymbolDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/FunctionDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/FunctionDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/TypeDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/TypeDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/TypedefDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/TypedefDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/VariableDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/VariableDumper.h
Modified:
  stable/11/Makefile.inc1
  stable/11/ObsoleteFiles.inc
  stable/11/UPDATING
  stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
  stable/11/contrib/compiler-rt/include/sanitizer/coverage_interface.h
  stable/11/contrib/compiler-rt/lib/asan/asan_activation.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_activation_flags.inc
  stable/11/contrib/compiler-rt/lib/asan/asan_allocator.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_allocator.h
  stable/11/contrib/compiler-rt/lib/asan/asan_debugging.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_fake_stack.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_fake_stack.h
  stable/11/contrib/compiler-rt/lib/asan/asan_flags.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_flags.inc
  stable/11/contrib/compiler-rt/lib/asan/asan_globals.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_interface_internal.h
  stable/11/contrib/compiler-rt/lib/asan/asan_internal.h
  stable/11/contrib/compiler-rt/lib/asan/asan_mac.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_mapping.h
  stable/11/contrib/compiler-rt/lib/asan/asan_memory_profile.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_new_delete.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_poisoning.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_poisoning.h
  stable/11/contrib/compiler-rt/lib/asan/asan_posix.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_report.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_report.h
  stable/11/contrib/compiler-rt/lib/asan/asan_rtl.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_scariness_score.h
  stable/11/contrib/compiler-rt/lib/asan/asan_thread.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_thread.h
  stable/11/contrib/compiler-rt/lib/asan/asan_win.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
  stable/11/contrib/compiler-rt/lib/builtins/arm/adddf3vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/addsf3vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_uidivmod.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_uldivmod.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/bswapdi2.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/bswapsi2.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/clzdi2.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/clzsi2.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/comparesf2.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/divdf3vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/divmodsi4.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/divsf3vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/divsi3.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/extendsfdf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/fixdfsivfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/fixsfsivfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/fixunsdfsivfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/fixunssfsivfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/floatsidfvfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/floatsisfvfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/floatunssidfvfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/floatunssisfvfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/modsi3.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/muldf3vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/mulsf3vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/negdf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/negsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/subdf3vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/subsf3vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/truncdfsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/udivmodsi4.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/udivsi3.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/umodsi3.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/unorddf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/assembly.h
  stable/11/contrib/compiler-rt/lib/builtins/atomic.c
  stable/11/contrib/compiler-rt/lib/builtins/clear_cache.c
  stable/11/contrib/compiler-rt/lib/builtins/int_lib.h
  stable/11/contrib/compiler-rt/lib/cfi/cfi.cc
  stable/11/contrib/compiler-rt/lib/dfsan/dfsan.cc
  stable/11/contrib/compiler-rt/lib/dfsan/dfsan.h
  stable/11/contrib/compiler-rt/lib/dfsan/dfsan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/dfsan/dfsan_platform.h
  stable/11/contrib/compiler-rt/lib/dfsan/done_abilist.txt
  stable/11/contrib/compiler-rt/lib/esan/cache_frag.cpp
  stable/11/contrib/compiler-rt/lib/esan/esan.cpp
  stable/11/contrib/compiler-rt/lib/esan/esan.h
  stable/11/contrib/compiler-rt/lib/esan/esan_flags.cpp
  stable/11/contrib/compiler-rt/lib/esan/esan_interceptors.cpp
  stable/11/contrib/compiler-rt/lib/esan/esan_interface_internal.h
  stable/11/contrib/compiler-rt/lib/esan/esan_linux.cpp
  stable/11/contrib/compiler-rt/lib/esan/esan_shadow.h
  stable/11/contrib/compiler-rt/lib/interception/interception.h
  stable/11/contrib/compiler-rt/lib/interception/interception_win.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_allocator.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_common.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_common_linux.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_thread.cc
  stable/11/contrib/compiler-rt/lib/msan/msan.h
  stable/11/contrib/compiler-rt/lib/msan/msan_allocator.cc
  stable/11/contrib/compiler-rt/lib/msan/msan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/msan/msan_interface_internal.h
  stable/11/contrib/compiler-rt/lib/msan/msan_linux.cc
  stable/11/contrib/compiler-rt/lib/profile/GCDAProfiling.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfData.inc
  stable/11/contrib/compiler-rt/lib/profile/InstrProfiling.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfiling.h
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingFile.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingInternal.h
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingPort.h
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingRuntime.cc
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingValue.c
  stable/11/contrib/compiler-rt/lib/profile/WindowsMMap.c
  stable/11/contrib/compiler-rt/lib/safestack/safestack.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_addrhashmap.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_interface.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interface_internal.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_malloc_mac.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_freebsd.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
  stable/11/contrib/compiler-rt/lib/scudo/scudo_allocator.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_allocator.h
  stable/11/contrib/compiler-rt/lib/scudo/scudo_flags.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_flags.h
  stable/11/contrib/compiler-rt/lib/scudo/scudo_interceptors.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_new_delete.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_termination.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_utils.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_utils.h
  stable/11/contrib/compiler-rt/lib/stats/stats_client.cc
  stable/11/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan.syms.extra
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_mutexset.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_platform.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_aarch64.S
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_trace.h
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_diag.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_handlers.h
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_init.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
  stable/11/contrib/libc++/CREDITS.TXT
  stable/11/contrib/libc++/LICENSE.TXT
  stable/11/contrib/libc++/include/__bit_reference
  stable/11/contrib/libc++/include/__config
  stable/11/contrib/libc++/include/__debug
  stable/11/contrib/libc++/include/__functional_03
  stable/11/contrib/libc++/include/__functional_base
  stable/11/contrib/libc++/include/__hash_table
  stable/11/contrib/libc++/include/__locale
  stable/11/contrib/libc++/include/__mutex_base
  stable/11/contrib/libc++/include/__nullptr
  stable/11/contrib/libc++/include/__refstring
  stable/11/contrib/libc++/include/__sso_allocator
  stable/11/contrib/libc++/include/__std_stream
  stable/11/contrib/libc++/include/__threading_support
  stable/11/contrib/libc++/include/__tree
  stable/11/contrib/libc++/include/__tuple
  stable/11/contrib/libc++/include/algorithm
  stable/11/contrib/libc++/include/array
  stable/11/contrib/libc++/include/atomic
  stable/11/contrib/libc++/include/bitset
  stable/11/contrib/libc++/include/chrono
  stable/11/contrib/libc++/include/cmath
  stable/11/contrib/libc++/include/codecvt
  stable/11/contrib/libc++/include/complex
  stable/11/contrib/libc++/include/cstdio
  stable/11/contrib/libc++/include/cstdlib
  stable/11/contrib/libc++/include/cwchar
  stable/11/contrib/libc++/include/deque
  stable/11/contrib/libc++/include/exception
  stable/11/contrib/libc++/include/experimental/algorithm
  stable/11/contrib/libc++/include/experimental/any
  stable/11/contrib/libc++/include/experimental/dynarray
  stable/11/contrib/libc++/include/experimental/filesystem
  stable/11/contrib/libc++/include/experimental/iterator
  stable/11/contrib/libc++/include/experimental/memory_resource
  stable/11/contrib/libc++/include/experimental/optional
  stable/11/contrib/libc++/include/experimental/propagate_const
  stable/11/contrib/libc++/include/experimental/string_view
  stable/11/contrib/libc++/include/experimental/type_traits
  stable/11/contrib/libc++/include/experimental/utility
  stable/11/contrib/libc++/include/ext/__hash
  stable/11/contrib/libc++/include/ext/hash_map
  stable/11/contrib/libc++/include/ext/hash_set
  stable/11/contrib/libc++/include/forward_list
  stable/11/contrib/libc++/include/fstream
  stable/11/contrib/libc++/include/functional
  stable/11/contrib/libc++/include/future
  stable/11/contrib/libc++/include/initializer_list
  stable/11/contrib/libc++/include/inttypes.h
  stable/11/contrib/libc++/include/iomanip
  stable/11/contrib/libc++/include/ios
  stable/11/contrib/libc++/include/iosfwd
  stable/11/contrib/libc++/include/istream
  stable/11/contrib/libc++/include/iterator
  stable/11/contrib/libc++/include/limits
  stable/11/contrib/libc++/include/list
  stable/11/contrib/libc++/include/locale
  stable/11/contrib/libc++/include/map
  stable/11/contrib/libc++/include/math.h
  stable/11/contrib/libc++/include/memory
  stable/11/contrib/libc++/include/module.modulemap
  stable/11/contrib/libc++/include/mutex
  stable/11/contrib/libc++/include/new
  stable/11/contrib/libc++/include/numeric
  stable/11/contrib/libc++/include/ostream
  stable/11/contrib/libc++/include/queue
  stable/11/contrib/libc++/include/random
  stable/11/contrib/libc++/include/ratio
  stable/11/contrib/libc++/include/regex
  stable/11/contrib/libc++/include/scoped_allocator
  stable/11/contrib/libc++/include/set
  stable/11/contrib/libc++/include/sstream
  stable/11/contrib/libc++/include/stack
  stable/11/contrib/libc++/include/stdexcept
  stable/11/contrib/libc++/include/streambuf
  stable/11/contrib/libc++/include/string
  stable/11/contrib/libc++/include/system_error
  stable/11/contrib/libc++/include/thread
  stable/11/contrib/libc++/include/tuple
  stable/11/contrib/libc++/include/type_traits
  stable/11/contrib/libc++/include/typeindex
  stable/11/contrib/libc++/include/typeinfo
  stable/11/contrib/libc++/include/unordered_map
  stable/11/contrib/libc++/include/unordered_set
  stable/11/contrib/libc++/include/utility
  stable/11/contrib/libc++/include/valarray
  stable/11/contrib/libc++/include/vector
  stable/11/contrib/libc++/src/algorithm.cpp
  stable/11/contrib/libc++/src/any.cpp
  stable/11/contrib/libc++/src/chrono.cpp
  stable/11/contrib/libc++/src/condition_variable.cpp
  stable/11/contrib/libc++/src/debug.cpp
  stable/11/contrib/libc++/src/exception.cpp
  stable/11/contrib/libc++/src/experimental/filesystem/directory_iterator.cpp
  stable/11/contrib/libc++/src/experimental/filesystem/operations.cpp
  stable/11/contrib/libc++/src/experimental/filesystem/path.cpp
  stable/11/contrib/libc++/src/experimental/memory_resource.cpp
  stable/11/contrib/libc++/src/include/atomic_support.h
  stable/11/contrib/libc++/src/include/config_elast.h
  stable/11/contrib/libc++/src/ios.cpp
  stable/11/contrib/libc++/src/iostream.cpp
  stable/11/contrib/libc++/src/locale.cpp
  stable/11/contrib/libc++/src/memory.cpp
  stable/11/contrib/libc++/src/mutex.cpp
  stable/11/contrib/libc++/src/new.cpp
  stable/11/contrib/libc++/src/optional.cpp
  stable/11/contrib/libc++/src/random.cpp
  stable/11/contrib/libc++/src/stdexcept.cpp
  stable/11/contrib/libc++/src/string.cpp
  stable/11/contrib/libc++/src/strstream.cpp
  stable/11/contrib/libc++/src/system_error.cpp
  stable/11/contrib/libc++/src/thread.cpp
  stable/11/contrib/libc++/src/typeinfo.cpp
  stable/11/contrib/llvm/LICENSE.TXT
  stable/11/contrib/llvm/include/llvm-c/Core.h
  stable/11/contrib/llvm/include/llvm-c/Transforms/Scalar.h
  stable/11/contrib/llvm/include/llvm-c/lto.h
  stable/11/contrib/llvm/include/llvm/ADT/APFloat.h
  stable/11/contrib/llvm/include/llvm/ADT/APInt.h
  stable/11/contrib/llvm/include/llvm/ADT/APSInt.h
  stable/11/contrib/llvm/include/llvm/ADT/ArrayRef.h
  stable/11/contrib/llvm/include/llvm/ADT/BitVector.h
  stable/11/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
  stable/11/contrib/llvm/include/llvm/ADT/DenseMap.h
  stable/11/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
  stable/11/contrib/llvm/include/llvm/ADT/DenseSet.h
  stable/11/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h
  stable/11/contrib/llvm/include/llvm/ADT/EpochTracker.h
  stable/11/contrib/llvm/include/llvm/ADT/EquivalenceClasses.h
  stable/11/contrib/llvm/include/llvm/ADT/FoldingSet.h
  stable/11/contrib/llvm/include/llvm/ADT/GraphTraits.h
  stable/11/contrib/llvm/include/llvm/ADT/ImmutableList.h
  stable/11/contrib/llvm/include/llvm/ADT/ImmutableMap.h
  stable/11/contrib/llvm/include/llvm/ADT/ImmutableSet.h
  stable/11/contrib/llvm/include/llvm/ADT/IntervalMap.h
  stable/11/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
  stable/11/contrib/llvm/include/llvm/ADT/MapVector.h
  stable/11/contrib/llvm/include/llvm/ADT/Optional.h
  stable/11/contrib/llvm/include/llvm/ADT/PackedVector.h
  stable/11/contrib/llvm/include/llvm/ADT/PointerSumType.h
  stable/11/contrib/llvm/include/llvm/ADT/PointerUnion.h
  stable/11/contrib/llvm/include/llvm/ADT/PostOrderIterator.h
  stable/11/contrib/llvm/include/llvm/ADT/PriorityQueue.h
  stable/11/contrib/llvm/include/llvm/ADT/PriorityWorklist.h
  stable/11/contrib/llvm/include/llvm/ADT/SCCIterator.h
  stable/11/contrib/llvm/include/llvm/ADT/STLExtras.h
  stable/11/contrib/llvm/include/llvm/ADT/ScopedHashTable.h
  stable/11/contrib/llvm/include/llvm/ADT/SetVector.h
  stable/11/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
  stable/11/contrib/llvm/include/llvm/ADT/SmallSet.h
  stable/11/contrib/llvm/include/llvm/ADT/SmallString.h
  stable/11/contrib/llvm/include/llvm/ADT/SmallVector.h
  stable/11/contrib/llvm/include/llvm/ADT/SparseBitVector.h
  stable/11/contrib/llvm/include/llvm/ADT/SparseMultiSet.h
  stable/11/contrib/llvm/include/llvm/ADT/SparseSet.h
  stable/11/contrib/llvm/include/llvm/ADT/Statistic.h
  stable/11/contrib/llvm/include/llvm/ADT/StringExtras.h
  stable/11/contrib/llvm/include/llvm/ADT/StringMap.h
  stable/11/contrib/llvm/include/llvm/ADT/StringRef.h
  stable/11/contrib/llvm/include/llvm/ADT/StringSwitch.h
  stable/11/contrib/llvm/include/llvm/ADT/TinyPtrVector.h
  stable/11/contrib/llvm/include/llvm/ADT/Triple.h
  stable/11/contrib/llvm/include/llvm/ADT/Twine.h
  stable/11/contrib/llvm/include/llvm/ADT/ilist.h
  stable/11/contrib/llvm/include/llvm/ADT/ilist_node.h
  stable/11/contrib/llvm/include/llvm/ADT/iterator.h
  stable/11/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h
  stable/11/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h
  stable/11/contrib/llvm/include/llvm/Analysis/AssumptionCache.h
  stable/11/contrib/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
  stable/11/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/CFGPrinter.h
  stable/11/contrib/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h
  stable/11/contrib/llvm/include/llvm/Analysis/CallGraph.h
  stable/11/contrib/llvm/include/llvm/Analysis/CallGraphSCCPass.h
  stable/11/contrib/llvm/include/llvm/Analysis/CodeMetrics.h
  stable/11/contrib/llvm/include/llvm/Analysis/ConstantFolding.h
  stable/11/contrib/llvm/include/llvm/Analysis/DemandedBits.h
  stable/11/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h
  stable/11/contrib/llvm/include/llvm/Analysis/EHPersonalities.h
  stable/11/contrib/llvm/include/llvm/Analysis/GlobalsModRef.h
  stable/11/contrib/llvm/include/llvm/Analysis/IVUsers.h
  stable/11/contrib/llvm/include/llvm/Analysis/InlineCost.h
  stable/11/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h
  stable/11/contrib/llvm/include/llvm/Analysis/Interval.h
  stable/11/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
  stable/11/contrib/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h
  stable/11/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/Loads.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopIterator.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopPass.h
  stable/11/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h
  stable/11/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/PostDominators.h
  stable/11/contrib/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/RegionInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h
  stable/11/contrib/llvm/include/llvm/Analysis/RegionIterator.h
  stable/11/contrib/llvm/include/llvm/Analysis/RegionPass.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
  stable/11/contrib/llvm/include/llvm/Analysis/TargetFolder.h
  stable/11/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def
  stable/11/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
  stable/11/contrib/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/ValueTracking.h
  stable/11/contrib/llvm/include/llvm/Bitcode/BitCodes.h
  stable/11/contrib/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
  stable/11/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
  stable/11/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
  stable/11/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/Analysis.h
  stable/11/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
  stable/11/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h
  stable/11/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h
  stable/11/contrib/llvm/include/llvm/CodeGen/CommandFlags.h
  stable/11/contrib/llvm/include/llvm/CodeGen/DIE.h
  stable/11/contrib/llvm/include/llvm/CodeGen/DIEValue.def
  stable/11/contrib/llvm/include/llvm/CodeGen/FastISel.h
  stable/11/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelAccessor.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveVariables.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineDominators.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineFunction.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineInstr.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineInstrBundleIterator.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineOperand.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineRegionInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineValueType.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PBQP/Math.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
  stable/11/contrib/llvm/include/llvm/CodeGen/Passes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/StackMaps.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TailDuplicator.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ValueTypes.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecords.def
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DIContext.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/DbiStreamBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/ISectionContribVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/InfoStreamBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/ModInfo.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/ModStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/NameHashTable.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/NameMap.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/NameMapBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFile.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/PDBFileBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/PublicsStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/RawConstants.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/RawError.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/RawSession.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/RawTypes.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/SymbolStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/TpiStream.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/ObjectMemoryBuffer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
  stable/11/contrib/llvm/include/llvm/IR/Attributes.h
  stable/11/contrib/llvm/include/llvm/IR/AutoUpgrade.h
  stable/11/contrib/llvm/include/llvm/IR/BasicBlock.h
  stable/11/contrib/llvm/include/llvm/IR/CFG.h
  stable/11/contrib/llvm/include/llvm/IR/CallSite.h
  stable/11/contrib/llvm/include/llvm/IR/CallingConv.h
  stable/11/contrib/llvm/include/llvm/IR/Comdat.h
  stable/11/contrib/llvm/include/llvm/IR/Constant.h
  stable/11/contrib/llvm/include/llvm/IR/ConstantFolder.h
  stable/11/contrib/llvm/include/llvm/IR/ConstantRange.h
  stable/11/contrib/llvm/include/llvm/IR/Constants.h
  stable/11/contrib/llvm/include/llvm/IR/DIBuilder.h
  stable/11/contrib/llvm/include/llvm/IR/DataLayout.h
  stable/11/contrib/llvm/include/llvm/IR/DebugInfo.h
  stable/11/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
  stable/11/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
  stable/11/contrib/llvm/include/llvm/IR/DebugLoc.h
  stable/11/contrib/llvm/include/llvm/IR/DerivedTypes.h
  stable/11/contrib/llvm/include/llvm/IR/DiagnosticInfo.h
  stable/11/contrib/llvm/include/llvm/IR/DiagnosticPrinter.h
  stable/11/contrib/llvm/include/llvm/IR/Dominators.h
  stable/11/contrib/llvm/include/llvm/IR/Function.h
  stable/11/contrib/llvm/include/llvm/IR/GVMaterializer.h
  stable/11/contrib/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalAlias.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalIFunc.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalObject.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalValue.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalVariable.h
  stable/11/contrib/llvm/include/llvm/IR/IRBuilder.h
  stable/11/contrib/llvm/include/llvm/IR/IRPrintingPasses.h
  stable/11/contrib/llvm/include/llvm/IR/InlineAsm.h
  stable/11/contrib/llvm/include/llvm/IR/InstIterator.h
  stable/11/contrib/llvm/include/llvm/IR/InstrTypes.h
  stable/11/contrib/llvm/include/llvm/IR/Instruction.h
  stable/11/contrib/llvm/include/llvm/IR/Instructions.h
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicInst.h
  stable/11/contrib/llvm/include/llvm/IR/Intrinsics.h
  stable/11/contrib/llvm/include/llvm/IR/Intrinsics.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsAArch64.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsARM.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsX86.td
  stable/11/contrib/llvm/include/llvm/IR/LLVMContext.h
  stable/11/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
  stable/11/contrib/llvm/include/llvm/IR/LegacyPassNameParser.h
  stable/11/contrib/llvm/include/llvm/IR/MDBuilder.h
  stable/11/contrib/llvm/include/llvm/IR/Mangler.h
  stable/11/contrib/llvm/include/llvm/IR/Metadata.def
  stable/11/contrib/llvm/include/llvm/IR/Metadata.h
  stable/11/contrib/llvm/include/llvm/IR/Module.h
  stable/11/contrib/llvm/include/llvm/IR/ModuleSummaryIndex.h
  stable/11/contrib/llvm/include/llvm/IR/NoFolder.h
  stable/11/contrib/llvm/include/llvm/IR/Operator.h
  stable/11/contrib/llvm/include/llvm/IR/PassManager.h
  stable/11/contrib/llvm/include/llvm/IR/PassManagerInternal.h
  stable/11/contrib/llvm/include/llvm/IR/PatternMatch.h
  stable/11/contrib/llvm/include/llvm/IR/Statepoint.h
  stable/11/contrib/llvm/include/llvm/IR/SymbolTableListTraits.h
  stable/11/contrib/llvm/include/llvm/IR/Type.h
  stable/11/contrib/llvm/include/llvm/IR/Use.h
  stable/11/contrib/llvm/include/llvm/IR/UseListOrder.h
  stable/11/contrib/llvm/include/llvm/IR/User.h
  stable/11/contrib/llvm/include/llvm/IR/Value.h
  stable/11/contrib/llvm/include/llvm/IR/ValueHandle.h
  stable/11/contrib/llvm/include/llvm/IR/ValueMap.h
  stable/11/contrib/llvm/include/llvm/IR/Verifier.h
  stable/11/contrib/llvm/include/llvm/InitializePasses.h
  stable/11/contrib/llvm/include/llvm/LTO/LTO.h
  stable/11/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
  stable/11/contrib/llvm/include/llvm/LTO/legacy/LTOModule.h
  stable/11/contrib/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
  stable/11/contrib/llvm/include/llvm/LinkAllIR.h
  stable/11/contrib/llvm/include/llvm/LinkAllPasses.h
  stable/11/contrib/llvm/include/llvm/Linker/IRMover.h
  stable/11/contrib/llvm/include/llvm/MC/ConstantPools.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmBackend.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmInfo.h
  stable/11/contrib/llvm/include/llvm/MC/MCAssembler.h
  stable/11/contrib/llvm/include/llvm/MC/MCCodeView.h
  stable/11/contrib/llvm/include/llvm/MC/MCContext.h
  stable/11/contrib/llvm/include/llvm/MC/MCELFStreamer.h
  stable/11/contrib/llvm/include/llvm/MC/MCExpr.h
  stable/11/contrib/llvm/include/llvm/MC/MCFixup.h
  stable/11/contrib/llvm/include/llvm/MC/MCFragment.h
  stable/11/contrib/llvm/include/llvm/MC/MCInstPrinter.h
  stable/11/contrib/llvm/include/llvm/MC/MCInstrDesc.h
  stable/11/contrib/llvm/include/llvm/MC/MCInstrInfo.h
  stable/11/contrib/llvm/include/llvm/MC/MCInstrItineraries.h
  stable/11/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h
  stable/11/contrib/llvm/include/llvm/MC/MCObjectStreamer.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
  stable/11/contrib/llvm/include/llvm/MC/MCRegisterInfo.h
  stable/11/contrib/llvm/include/llvm/MC/MCSection.h
  stable/11/contrib/llvm/include/llvm/MC/MCSectionCOFF.h
  stable/11/contrib/llvm/include/llvm/MC/MCStreamer.h
  stable/11/contrib/llvm/include/llvm/MC/MCTargetOptions.h
  stable/11/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.h
  stable/11/contrib/llvm/include/llvm/MC/MCWinCOFFStreamer.h
  stable/11/contrib/llvm/include/llvm/MC/SectionKind.h
  stable/11/contrib/llvm/include/llvm/MC/StringTableBuilder.h
  stable/11/contrib/llvm/include/llvm/Object/Archive.h
  stable/11/contrib/llvm/include/llvm/Object/ArchiveWriter.h
  stable/11/contrib/llvm/include/llvm/Object/Binary.h
  stable/11/contrib/llvm/include/llvm/Object/COFF.h
  stable/11/contrib/llvm/include/llvm/Object/COFFImportFile.h
  stable/11/contrib/llvm/include/llvm/Object/ELF.h
  stable/11/contrib/llvm/include/llvm/Object/ELFObjectFile.h
  stable/11/contrib/llvm/include/llvm/Object/ELFTypes.h
  stable/11/contrib/llvm/include/llvm/Object/Error.h
  stable/11/contrib/llvm/include/llvm/Object/IRObjectFile.h
  stable/11/contrib/llvm/include/llvm/Object/MachO.h
  stable/11/contrib/llvm/include/llvm/Object/MachOUniversal.h
  stable/11/contrib/llvm/include/llvm/Object/ModuleSummaryIndexObjectFile.h
  stable/11/contrib/llvm/include/llvm/Object/ObjectFile.h
  stable/11/contrib/llvm/include/llvm/Object/RelocVisitor.h
  stable/11/contrib/llvm/include/llvm/Object/StackMapParser.h
  stable/11/contrib/llvm/include/llvm/Object/SymbolSize.h
  stable/11/contrib/llvm/include/llvm/Object/SymbolicFile.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/MachOYAML.h
  stable/11/contrib/llvm/include/llvm/Option/ArgList.h
  stable/11/contrib/llvm/include/llvm/Pass.h
  stable/11/contrib/llvm/include/llvm/PassInfo.h
  stable/11/contrib/llvm/include/llvm/PassSupport.h
  stable/11/contrib/llvm/include/llvm/Passes/PassBuilder.h
  stable/11/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
  stable/11/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
  stable/11/contrib/llvm/include/llvm/ProfileData/InstrProf.h
  stable/11/contrib/llvm/include/llvm/ProfileData/InstrProfData.inc
  stable/11/contrib/llvm/include/llvm/ProfileData/InstrProfWriter.h
  stable/11/contrib/llvm/include/llvm/ProfileData/ProfileCommon.h
  stable/11/contrib/llvm/include/llvm/ProfileData/SampleProf.h
  stable/11/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
  stable/11/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h
  stable/11/contrib/llvm/include/llvm/Support/ARMTargetParser.def
  stable/11/contrib/llvm/include/llvm/Support/AlignOf.h
  stable/11/contrib/llvm/include/llvm/Support/Allocator.h
  stable/11/contrib/llvm/include/llvm/Support/ArrayRecycler.h
  stable/11/contrib/llvm/include/llvm/Support/AtomicOrdering.h
  stable/11/contrib/llvm/include/llvm/Support/COFF.h
  stable/11/contrib/llvm/include/llvm/Support/CachePruning.h
  stable/11/contrib/llvm/include/llvm/Support/Casting.h
  stable/11/contrib/llvm/include/llvm/Support/CodeGen.h
  stable/11/contrib/llvm/include/llvm/Support/CommandLine.h
  stable/11/contrib/llvm/include/llvm/Support/Compiler.h
  stable/11/contrib/llvm/include/llvm/Support/Compression.h
  stable/11/contrib/llvm/include/llvm/Support/ConvertUTF.h
  stable/11/contrib/llvm/include/llvm/Support/DataExtractor.h
  stable/11/contrib/llvm/include/llvm/Support/Debug.h
  stable/11/contrib/llvm/include/llvm/Support/Dwarf.def
  stable/11/contrib/llvm/include/llvm/Support/Dwarf.h
  stable/11/contrib/llvm/include/llvm/Support/ELF.h
  stable/11/contrib/llvm/include/llvm/Support/ELFRelocs/AArch64.def
  stable/11/contrib/llvm/include/llvm/Support/ELFRelocs/AMDGPU.def
  stable/11/contrib/llvm/include/llvm/Support/ELFRelocs/BPF.def
  stable/11/contrib/llvm/include/llvm/Support/ELFRelocs/SystemZ.def
  stable/11/contrib/llvm/include/llvm/Support/Endian.h
  stable/11/contrib/llvm/include/llvm/Support/Error.h
  stable/11/contrib/llvm/include/llvm/Support/FileOutputBuffer.h
  stable/11/contrib/llvm/include/llvm/Support/FileSystem.h
  stable/11/contrib/llvm/include/llvm/Support/Format.h
  stable/11/contrib/llvm/include/llvm/Support/GCOV.h
  stable/11/contrib/llvm/include/llvm/Support/GenericDomTree.h
  stable/11/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h
  stable/11/contrib/llvm/include/llvm/Support/GraphWriter.h
  stable/11/contrib/llvm/include/llvm/Support/Host.h
  stable/11/contrib/llvm/include/llvm/Support/MD5.h
  stable/11/contrib/llvm/include/llvm/Support/MachO.def
  stable/11/contrib/llvm/include/llvm/Support/MachO.h
  stable/11/contrib/llvm/include/llvm/Support/ManagedStatic.h
  stable/11/contrib/llvm/include/llvm/Support/MathExtras.h
  stable/11/contrib/llvm/include/llvm/Support/MemoryBuffer.h
  stable/11/contrib/llvm/include/llvm/Support/OnDiskHashTable.h
  stable/11/contrib/llvm/include/llvm/Support/Options.h
  stable/11/contrib/llvm/include/llvm/Support/Path.h
  stable/11/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
  stable/11/contrib/llvm/include/llvm/Support/PrettyStackTrace.h
  stable/11/contrib/llvm/include/llvm/Support/Printable.h
  stable/11/contrib/llvm/include/llvm/Support/Process.h
  stable/11/contrib/llvm/include/llvm/Support/RWMutex.h
  stable/11/contrib/llvm/include/llvm/Support/RandomNumberGenerator.h
  stable/11/contrib/llvm/include/llvm/Support/Recycler.h
  stable/11/contrib/llvm/include/llvm/Support/RecyclingAllocator.h
  stable/11/contrib/llvm/include/llvm/Support/Regex.h
  stable/11/contrib/llvm/include/llvm/Support/Registry.h
  stable/11/contrib/llvm/include/llvm/Support/SHA1.h
  stable/11/contrib/llvm/include/llvm/Support/SMLoc.h
  stable/11/contrib/llvm/include/llvm/Support/SourceMgr.h
  stable/11/contrib/llvm/include/llvm/Support/StringSaver.h
  stable/11/contrib/llvm/include/llvm/Support/SwapByteOrder.h
  stable/11/contrib/llvm/include/llvm/Support/TargetParser.h
  stable/11/contrib/llvm/include/llvm/Support/TargetRegistry.h
  stable/11/contrib/llvm/include/llvm/Support/Threading.h
  stable/11/contrib/llvm/include/llvm/Support/Timer.h
  stable/11/contrib/llvm/include/llvm/Support/TrailingObjects.h
  stable/11/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h
  stable/11/contrib/llvm/include/llvm/Support/YAMLParser.h
  stable/11/contrib/llvm/include/llvm/Support/YAMLTraits.h
  stable/11/contrib/llvm/include/llvm/Support/raw_ostream.h
  stable/11/contrib/llvm/include/llvm/TableGen/Record.h
  stable/11/contrib/llvm/include/llvm/TableGen/SetTheory.h
  stable/11/contrib/llvm/include/llvm/Target/CostTable.h
  stable/11/contrib/llvm/include/llvm/Target/GenericOpcodes.td
  stable/11/contrib/llvm/include/llvm/Target/Target.td
  stable/11/contrib/llvm/include/llvm/Target/TargetCallingConv.h
  stable/11/contrib/llvm/include/llvm/Target/TargetFrameLowering.h
  stable/11/contrib/llvm/include/llvm/Target/TargetInstrInfo.h
  stable/11/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h
  stable/11/contrib/llvm/include/llvm/Target/TargetItinerary.td
  stable/11/contrib/llvm/include/llvm/Target/TargetLowering.h
  stable/11/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
  stable/11/contrib/llvm/include/llvm/Target/TargetMachine.h
  stable/11/contrib/llvm/include/llvm/Target/TargetOpcodes.def
  stable/11/contrib/llvm/include/llvm/Target/TargetOpcodes.h
  stable/11/contrib/llvm/include/llvm/Target/TargetOptions.h
  stable/11/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h
  stable/11/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
  stable/11/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h
  stable/11/contrib/llvm/include/llvm/Transforms/GCOVProfiler.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/FunctionImport.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/GlobalOpt.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/Internalize.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/PartialInlining.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/SCCP.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
  stable/11/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
  stable/11/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
  stable/11/contrib/llvm/include/llvm/Transforms/InstrProfiling.h
  stable/11/contrib/llvm/include/llvm/Transforms/Instrumentation.h
  stable/11/contrib/llvm/include/llvm/Transforms/PGOInstrumentation.h
  stable/11/contrib/llvm/include/llvm/Transforms/SampleProfile.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/DCE.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/GuardWidening.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LICM.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopIdiomRecognize.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/Reassociate.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/SCCP.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/SROA.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/Sink.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LCSSA.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/Local.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/MemorySSA.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SimplifyInstructions.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
  stable/11/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
  stable/11/contrib/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
  stable/11/contrib/llvm/include/llvm/module.modulemap
  stable/11/contrib/llvm/include/llvm/module.modulemap.build
  stable/11/contrib/llvm/lib/Analysis/AliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
  stable/11/contrib/llvm/lib/Analysis/AliasAnalysisSummary.cpp
  stable/11/contrib/llvm/lib/Analysis/AliasAnalysisSummary.h
  stable/11/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
  stable/11/contrib/llvm/lib/Analysis/Analysis.cpp
  stable/11/contrib/llvm/lib/Analysis/AssumptionCache.cpp
  stable/11/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
  stable/11/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/CFGPrinter.cpp
  stable/11/contrib/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/CFLGraph.h
  stable/11/contrib/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/CGSCCPassManager.cpp
  stable/11/contrib/llvm/lib/Analysis/CallGraph.cpp
  stable/11/contrib/llvm/lib/Analysis/CallGraphSCCPass.cpp
  stable/11/contrib/llvm/lib/Analysis/CodeMetrics.cpp
  stable/11/contrib/llvm/lib/Analysis/ConstantFolding.cpp
  stable/11/contrib/llvm/lib/Analysis/CostModel.cpp
  stable/11/contrib/llvm/lib/Analysis/DemandedBits.cpp
  stable/11/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
  stable/11/contrib/llvm/lib/Analysis/EHPersonalities.cpp
  stable/11/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
  stable/11/contrib/llvm/lib/Analysis/IVUsers.cpp
  stable/11/contrib/llvm/lib/Analysis/InlineCost.cpp
  stable/11/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
  stable/11/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
  stable/11/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/LazyCallGraph.cpp
  stable/11/contrib/llvm/lib/Analysis/LazyValueInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/Lint.cpp
  stable/11/contrib/llvm/lib/Analysis/Loads.cpp
  stable/11/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/LoopInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/LoopPass.cpp
  stable/11/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp
  stable/11/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
  stable/11/contrib/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/ObjCARCInstKind.cpp
  stable/11/contrib/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/PHITransAddr.cpp
  stable/11/contrib/llvm/lib/Analysis/PostDominators.cpp
  stable/11/contrib/llvm/lib/Analysis/ProfileSummaryInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/RegionInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/RegionPass.cpp
  stable/11/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
  stable/11/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
  stable/11/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp
  stable/11/contrib/llvm/lib/Analysis/StratifiedSets.h
  stable/11/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/TypeMetadataUtils.cpp
  stable/11/contrib/llvm/lib/Analysis/ValueTracking.cpp
  stable/11/contrib/llvm/lib/Analysis/VectorUtils.cpp
  stable/11/contrib/llvm/lib/AsmParser/LLLexer.cpp
  stable/11/contrib/llvm/lib/AsmParser/LLParser.cpp
  stable/11/contrib/llvm/lib/AsmParser/LLParser.h
  stable/11/contrib/llvm/lib/AsmParser/LLToken.h
  stable/11/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp
  stable/11/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
  stable/11/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
  stable/11/contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp
  stable/11/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
  stable/11/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
  stable/11/contrib/llvm/lib/CodeGen/AllocationOrder.cpp
  stable/11/contrib/llvm/lib/CodeGen/AllocationOrder.h
  stable/11/contrib/llvm/lib/CodeGen/Analysis.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h
  stable/11/contrib/llvm/lib/CodeGen/BranchFolding.cpp
  stable/11/contrib/llvm/lib/CodeGen/BranchFolding.h
  stable/11/contrib/llvm/lib/CodeGen/CallingConvLower.cpp
  stable/11/contrib/llvm/lib/CodeGen/CodeGen.cpp
  stable/11/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
  stable/11/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
  stable/11/contrib/llvm/lib/CodeGen/DetectDeadLanes.cpp
  stable/11/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp
  stable/11/contrib/llvm/lib/CodeGen/EdgeBundles.cpp
  stable/11/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp
  stable/11/contrib/llvm/lib/CodeGen/FuncletLayout.cpp
  stable/11/contrib/llvm/lib/CodeGen/GCMetadata.cpp
  stable/11/contrib/llvm/lib/CodeGen/GCMetadataPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/GCStrategy.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalMerge.cpp
  stable/11/contrib/llvm/lib/CodeGen/IfConversion.cpp
  stable/11/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp
  stable/11/contrib/llvm/lib/CodeGen/InlineSpiller.cpp
  stable/11/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp
  stable/11/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
  stable/11/contrib/llvm/lib/CodeGen/LexicalScopes.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveDebugValues.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveInterval.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp
  stable/11/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveRangeCalc.h
  stable/11/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveVariables.cpp
  stable/11/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MILexer.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MILexer.h
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MIParser.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MIParser.h
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRPrintingPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineCSE.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineCombiner.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineFunction.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineInstr.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineLICM.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineScheduler.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineSink.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineVerifier.cpp
  stable/11/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp
  stable/11/contrib/llvm/lib/CodeGen/PHIElimination.cpp
  stable/11/contrib/llvm/lib/CodeGen/PHIEliminationUtils.cpp
  stable/11/contrib/llvm/lib/CodeGen/ParallelCG.cpp
  stable/11/contrib/llvm/lib/CodeGen/PatchableFunction.cpp
  stable/11/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
  stable/11/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocBase.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocBase.h
  stable/11/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocFast.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterUsageInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
  stable/11/contrib/llvm/lib/CodeGen/SafeStack.cpp
  stable/11/contrib/llvm/lib/CodeGen/SafeStackColoring.cpp
  stable/11/contrib/llvm/lib/CodeGen/SafeStackLayout.cpp
  stable/11/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp
  stable/11/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
  stable/11/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/ShrinkWrap.cpp
  stable/11/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/SplitKit.cpp
  stable/11/contrib/llvm/lib/CodeGen/SplitKit.h
  stable/11/contrib/llvm/lib/CodeGen/StackColoring.cpp
  stable/11/contrib/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
  stable/11/contrib/llvm/lib/CodeGen/StackMaps.cpp
  stable/11/contrib/llvm/lib/CodeGen/StackProtector.cpp
  stable/11/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp
  stable/11/contrib/llvm/lib/CodeGen/TailDuplication.cpp
  stable/11/contrib/llvm/lib/CodeGen/TailDuplicator.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetPassConfig.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetSchedule.cpp
  stable/11/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp
  stable/11/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
  stable/11/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/XRayInstrumentation.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeRecord.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBContext.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/DbiStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/DbiStreamBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/InfoStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/InfoStreamBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/ModInfo.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/ModStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/NameMap.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/NameMapBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/PDBFile.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/PDBFileBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/PublicsStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/RawError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/RawSession.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/SymbolStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/TpiStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
  stable/11/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
  stable/11/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
  stable/11/contrib/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp
  stable/11/contrib/llvm/lib/IR/AsmWriter.cpp
  stable/11/contrib/llvm/lib/IR/AttributeImpl.h
  stable/11/contrib/llvm/lib/IR/AttributeSetNode.h
  stable/11/contrib/llvm/lib/IR/Attributes.cpp
  stable/11/contrib/llvm/lib/IR/AutoUpgrade.cpp
  stable/11/contrib/llvm/lib/IR/BasicBlock.cpp
  stable/11/contrib/llvm/lib/IR/ConstantFold.cpp
  stable/11/contrib/llvm/lib/IR/ConstantFold.h
  stable/11/contrib/llvm/lib/IR/ConstantRange.cpp
  stable/11/contrib/llvm/lib/IR/Constants.cpp
  stable/11/contrib/llvm/lib/IR/ConstantsContext.h
  stable/11/contrib/llvm/lib/IR/Core.cpp
  stable/11/contrib/llvm/lib/IR/DIBuilder.cpp
  stable/11/contrib/llvm/lib/IR/DataLayout.cpp
  stable/11/contrib/llvm/lib/IR/DebugInfo.cpp
  stable/11/contrib/llvm/lib/IR/DebugInfoMetadata.cpp
  stable/11/contrib/llvm/lib/IR/DiagnosticInfo.cpp
  stable/11/contrib/llvm/lib/IR/Dominators.cpp
  stable/11/contrib/llvm/lib/IR/Function.cpp
  stable/11/contrib/llvm/lib/IR/GCOV.cpp
  stable/11/contrib/llvm/lib/IR/Globals.cpp
  stable/11/contrib/llvm/lib/IR/IRBuilder.cpp
  stable/11/contrib/llvm/lib/IR/IRPrintingPasses.cpp
  stable/11/contrib/llvm/lib/IR/InlineAsm.cpp
  stable/11/contrib/llvm/lib/IR/Instruction.cpp
  stable/11/contrib/llvm/lib/IR/Instructions.cpp
  stable/11/contrib/llvm/lib/IR/IntrinsicInst.cpp
  stable/11/contrib/llvm/lib/IR/LLVMContext.cpp
  stable/11/contrib/llvm/lib/IR/LLVMContextImpl.cpp
  stable/11/contrib/llvm/lib/IR/LLVMContextImpl.h
  stable/11/contrib/llvm/lib/IR/LegacyPassManager.cpp
  stable/11/contrib/llvm/lib/IR/MDBuilder.cpp
  stable/11/contrib/llvm/lib/IR/Mangler.cpp
  stable/11/contrib/llvm/lib/IR/Metadata.cpp
  stable/11/contrib/llvm/lib/IR/Module.cpp
  stable/11/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
  stable/11/contrib/llvm/lib/IR/Operator.cpp
  stable/11/contrib/llvm/lib/IR/Pass.cpp
  stable/11/contrib/llvm/lib/IR/PassManager.cpp
  stable/11/contrib/llvm/lib/IR/PassRegistry.cpp
  stable/11/contrib/llvm/lib/IR/SymbolTableListTraitsImpl.h
  stable/11/contrib/llvm/lib/IR/Type.cpp
  stable/11/contrib/llvm/lib/IR/User.cpp
  stable/11/contrib/llvm/lib/IR/Value.cpp
  stable/11/contrib/llvm/lib/IR/ValueSymbolTable.cpp
  stable/11/contrib/llvm/lib/IR/ValueTypes.cpp
  stable/11/contrib/llvm/lib/IR/Verifier.cpp
  stable/11/contrib/llvm/lib/IRReader/IRReader.cpp
  stable/11/contrib/llvm/lib/LTO/LTO.cpp
  stable/11/contrib/llvm/lib/LTO/LTOCodeGenerator.cpp
  stable/11/contrib/llvm/lib/LTO/LTOModule.cpp
  stable/11/contrib/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
  stable/11/contrib/llvm/lib/LTO/UpdateCompilerUsed.cpp
  stable/11/contrib/llvm/lib/LibDriver/LibDriver.cpp
  stable/11/contrib/llvm/lib/Linker/IRMover.cpp
  stable/11/contrib/llvm/lib/Linker/LinkModules.cpp
  stable/11/contrib/llvm/lib/MC/ConstantPools.cpp
  stable/11/contrib/llvm/lib/MC/ELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmBackend.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmInfo.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCAssembler.cpp
  stable/11/contrib/llvm/lib/MC/MCCodeView.cpp
  stable/11/contrib/llvm/lib/MC/MCContext.cpp
  stable/11/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp
  stable/11/contrib/llvm/lib/MC/MCDwarf.cpp
  stable/11/contrib/llvm/lib/MC/MCELFStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCExpr.cpp
  stable/11/contrib/llvm/lib/MC/MCFragment.cpp
  stable/11/contrib/llvm/lib/MC/MCInst.cpp
  stable/11/contrib/llvm/lib/MC/MCLabel.cpp
  stable/11/contrib/llvm/lib/MC/MCMachOStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCObjectFileInfo.cpp
  stable/11/contrib/llvm/lib/MC/MCObjectStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/AsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCRegisterInfo.cpp
  stable/11/contrib/llvm/lib/MC/MCSection.cpp
  stable/11/contrib/llvm/lib/MC/MCSectionCOFF.cpp
  stable/11/contrib/llvm/lib/MC/MCSectionELF.cpp
  stable/11/contrib/llvm/lib/MC/MCSectionMachO.cpp
  stable/11/contrib/llvm/lib/MC/MCStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCSymbol.cpp
  stable/11/contrib/llvm/lib/MC/MCTargetOptions.cpp
  stable/11/contrib/llvm/lib/MC/MCValue.cpp
  stable/11/contrib/llvm/lib/MC/MachObjectWriter.cpp
  stable/11/contrib/llvm/lib/MC/StringTableBuilder.cpp
  stable/11/contrib/llvm/lib/MC/SubtargetFeature.cpp
  stable/11/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
  stable/11/contrib/llvm/lib/MC/WinCOFFStreamer.cpp
  stable/11/contrib/llvm/lib/Object/Archive.cpp
  stable/11/contrib/llvm/lib/Object/ArchiveWriter.cpp
  stable/11/contrib/llvm/lib/Object/Binary.cpp
  stable/11/contrib/llvm/lib/Object/COFFObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/ELF.cpp
  stable/11/contrib/llvm/lib/Object/Error.cpp
  stable/11/contrib/llvm/lib/Object/IRObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/MachOObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/MachOUniversal.cpp
  stable/11/contrib/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/ObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/RecordStreamer.cpp
  stable/11/contrib/llvm/lib/Object/RecordStreamer.h
  stable/11/contrib/llvm/lib/Object/SymbolSize.cpp
  stable/11/contrib/llvm/lib/Object/SymbolicFile.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/ELFYAML.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/MachOYAML.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/ObjectYAML.cpp
  stable/11/contrib/llvm/lib/Option/ArgList.cpp
  stable/11/contrib/llvm/lib/Option/OptTable.cpp
  stable/11/contrib/llvm/lib/Passes/PassBuilder.cpp
  stable/11/contrib/llvm/lib/Passes/PassRegistry.def
  stable/11/contrib/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
  stable/11/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
  stable/11/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
  stable/11/contrib/llvm/lib/ProfileData/InstrProf.cpp
  stable/11/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
  stable/11/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp
  stable/11/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
  stable/11/contrib/llvm/lib/ProfileData/SampleProf.cpp
  stable/11/contrib/llvm/lib/Support/APFloat.cpp
  stable/11/contrib/llvm/lib/Support/APInt.cpp
  stable/11/contrib/llvm/lib/Support/ARMBuildAttrs.cpp
  stable/11/contrib/llvm/lib/Support/CachePruning.cpp
  stable/11/contrib/llvm/lib/Support/CommandLine.cpp
  stable/11/contrib/llvm/lib/Support/Compression.cpp
  stable/11/contrib/llvm/lib/Support/Debug.cpp
  stable/11/contrib/llvm/lib/Support/DeltaAlgorithm.cpp
  stable/11/contrib/llvm/lib/Support/Dwarf.cpp
  stable/11/contrib/llvm/lib/Support/DynamicLibrary.cpp
  stable/11/contrib/llvm/lib/Support/Error.cpp
  stable/11/contrib/llvm/lib/Support/FileOutputBuffer.cpp
  stable/11/contrib/llvm/lib/Support/FileUtilities.cpp
  stable/11/contrib/llvm/lib/Support/FoldingSet.cpp
  stable/11/contrib/llvm/lib/Support/Host.cpp
  stable/11/contrib/llvm/lib/Support/LockFileManager.cpp
  stable/11/contrib/llvm/lib/Support/MD5.cpp
  stable/11/contrib/llvm/lib/Support/MemoryBuffer.cpp
  stable/11/contrib/llvm/lib/Support/Path.cpp
  stable/11/contrib/llvm/lib/Support/PrettyStackTrace.cpp
  stable/11/contrib/llvm/lib/Support/RandomNumberGenerator.cpp
  stable/11/contrib/llvm/lib/Support/Regex.cpp
  stable/11/contrib/llvm/lib/Support/SHA1.cpp
  stable/11/contrib/llvm/lib/Support/ScaledNumber.cpp
  stable/11/contrib/llvm/lib/Support/ScopedPrinter.cpp
  stable/11/contrib/llvm/lib/Support/SmallPtrSet.cpp
  stable/11/contrib/llvm/lib/Support/SourceMgr.cpp
  stable/11/contrib/llvm/lib/Support/SpecialCaseList.cpp
  stable/11/contrib/llvm/lib/Support/Statistic.cpp
  stable/11/contrib/llvm/lib/Support/StringMap.cpp
  stable/11/contrib/llvm/lib/Support/StringRef.cpp
  stable/11/contrib/llvm/lib/Support/StringSaver.cpp
  stable/11/contrib/llvm/lib/Support/TargetParser.cpp
  stable/11/contrib/llvm/lib/Support/TargetRegistry.cpp
  stable/11/contrib/llvm/lib/Support/Threading.cpp
  stable/11/contrib/llvm/lib/Support/Timer.cpp
  stable/11/contrib/llvm/lib/Support/Triple.cpp
  stable/11/contrib/llvm/lib/Support/Twine.cpp
  stable/11/contrib/llvm/lib/Support/Unix/Memory.inc
  stable/11/contrib/llvm/lib/Support/Unix/Path.inc
  stable/11/contrib/llvm/lib/Support/Unix/Process.inc
  stable/11/contrib/llvm/lib/Support/Unix/Signals.inc
  stable/11/contrib/llvm/lib/Support/Unix/Unix.h
  stable/11/contrib/llvm/lib/Support/Windows/Path.inc
  stable/11/contrib/llvm/lib/Support/Windows/Process.inc
  stable/11/contrib/llvm/lib/Support/Windows/Signals.inc
  stable/11/contrib/llvm/lib/Support/Windows/WindowsSupport.h
  stable/11/contrib/llvm/lib/Support/YAMLParser.cpp
  stable/11/contrib/llvm/lib/Support/YAMLTraits.cpp
  stable/11/contrib/llvm/lib/Support/raw_ostream.cpp
  stable/11/contrib/llvm/lib/TableGen/Main.cpp
  stable/11/contrib/llvm/lib/TableGen/Record.cpp
  stable/11/contrib/llvm/lib/TableGen/StringMatcher.cpp
  stable/11/contrib/llvm/lib/TableGen/TGLexer.cpp
  stable/11/contrib/llvm/lib/TableGen/TGLexer.h
  stable/11/contrib/llvm/lib/TableGen/TGParser.cpp
  stable/11/contrib/llvm/lib/TableGen/TGParser.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedM1.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedVulcan.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPU.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPU.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUOpenCLImageTypeLoweringPass.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURuntimeMetadata.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/CIInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/CaymanInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/Processors.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600InstrFormats.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600Instructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFixControlFlowLiveIntervals.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInsertWaits.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstrFormats.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIIntrinsics.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SISchedule.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SITypeRewriter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/VIInstrFormats.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VIInstructions.td
  stable/11/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARM.h
  stable/11/contrib/llvm/lib/Target/ARM/ARM.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMCallingConv.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMISelLowering.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMSchedule.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMSubtarget.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp
  stable/11/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVR.h
  stable/11/contrib/llvm/lib/Target/AVR/AVR.td
  stable/11/contrib/llvm/lib/Target/AVR/AVRCallingConv.td
  stable/11/contrib/llvm/lib/Target/AVR/AVRISelLowering.h
  stable/11/contrib/llvm/lib/Target/AVR/AVRInstrFormats.td
  stable/11/contrib/llvm/lib/Target/AVR/AVRInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
  stable/11/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
  stable/11/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/AVR/AVRTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPF.td
  stable/11/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFInstrInfo.h
  stable/11/contrib/llvm/lib/Target/BPF/BPFInstrInfo.td
  stable/11/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/BitTracker.h
  stable/11/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/Hexagon.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrAlias.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIsetDx.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSystemInst.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFCopy.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFCopy.h
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFGraph.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFGraph.h
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFLiveness.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFLiveness.h
  stable/11/contrib/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
  stable/11/contrib/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.h
  stable/11/contrib/llvm/lib/Target/Lanai/Lanai.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiAluCode.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MicroMips64r6InstrFormats.td
  stable/11/contrib/llvm/lib/Target/Mips/MicroMips64r6InstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
  stable/11/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
  stable/11/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/Mips.td
  stable/11/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
  stable/11/contrib/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsHazardSchedule.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsISelLowering.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSchedule.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsScheduleP5600.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
  stable/11/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/NVPTX/ManagedStringPool.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTX.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTX.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXInferAddressSpaces.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPC.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCInstrQPX.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/LeonFeatures.td
  stable/11/contrib/llvm/lib/Target/Sparc/LeonPasses.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/LeonPasses.h
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/Sparc/Sparc.td
  stable/11/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h
  stable/11/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
  stable/11/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZ.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZ.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrVector.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZOperands.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/TargetIntrinsicInfo.cpp
  stable/11/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/TargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/TargetMachineC.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/README.txt
  stable/11/contrib/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssembly.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssembly.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
  stable/11/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
  stable/11/contrib/llvm/lib/Target/X86/AsmParser/X86Operand.h
  stable/11/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
  stable/11/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
  stable/11/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
  stable/11/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
  stable/11/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.h
  stable/11/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
  stable/11/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
  stable/11/contrib/llvm/lib/Target/X86/X86.h
  stable/11/contrib/llvm/lib/Target/X86/X86.td
  stable/11/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86AsmPrinter.h
  stable/11/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86CallingConv.h
  stable/11/contrib/llvm/lib/Target/X86/X86CallingConv.td
  stable/11/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FastISel.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FixupBWInsts.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FixupSetCC.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FrameLowering.h
  stable/11/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86ISelLowering.h
  stable/11/contrib/llvm/lib/Target/X86/X86InstrAVX512.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrBuilder.h
  stable/11/contrib/llvm/lib/Target/X86/X86InstrCompiler.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrControl.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFMA.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFormats.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86InstrInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86InstrInfo.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrMMX.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrSSE.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrSystem.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrXOP.td
  stable/11/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterInfo.td
  stable/11/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
  stable/11/contrib/llvm/lib/Target/X86/X86Subtarget.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86Subtarget.h
  stable/11/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86TargetMachine.h
  stable/11/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86WinEHState.cpp
  stable/11/contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h
  stable/11/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td
  stable/11/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.h
  stable/11/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/FunctionImport.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/IPO.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/Inliner.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/Internalize.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
  stable/11/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/CFGMST.h
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
  stable/11/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
  stable/11/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
  stable/11/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
  stable/11/contrib/llvm/lib/Transforms/ObjCARC/PtrState.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/DCE.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Float2Int.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/GVN.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/GVNHoist.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/GuardWidening.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LICM.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoadCombine.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SROA.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Scalarizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/Evaluator.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/FlattenCFG.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/GlobalStatus.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/Local.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LoopVersioning.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/Mem2Reg.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/MemorySSA.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/Utils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
  stable/11/contrib/llvm/tools/bugpoint/BugDriver.cpp
  stable/11/contrib/llvm/tools/bugpoint/BugDriver.h
  stable/11/contrib/llvm/tools/bugpoint/CrashDebugger.cpp
  stable/11/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp
  stable/11/contrib/llvm/tools/bugpoint/ExtractFunction.cpp
  stable/11/contrib/llvm/tools/bugpoint/FindBugs.cpp
  stable/11/contrib/llvm/tools/bugpoint/ListReducer.h
  stable/11/contrib/llvm/tools/bugpoint/Miscompilation.cpp
  stable/11/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp
  stable/11/contrib/llvm/tools/bugpoint/ToolRunner.cpp
  stable/11/contrib/llvm/tools/bugpoint/ToolRunner.h
  stable/11/contrib/llvm/tools/bugpoint/bugpoint.cpp
  stable/11/contrib/llvm/tools/clang/include/clang-c/Index.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/APValue.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Attr.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Decl.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclGroup.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Expr.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Mangle.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.def
  stable/11/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Type.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def
  stable/11/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Attr.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/AttrDocs.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Attributes.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Module.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Version.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Action.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Job.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Multilib.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Options.td
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Tool.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Types.def
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Types.h
  stable/11/contrib/llvm/tools/clang/include/clang/Edit/Rewriters.h
  stable/11/contrib/llvm/tools/clang/include/clang/Format/Format.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
  stable/11/contrib/llvm/tools/clang/include/clang/Index/CommentToXML.h
  stable/11/contrib/llvm/tools/clang/include/clang/Index/IndexSymbol.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
  stable/11/contrib/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Sema.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Template.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/Module.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.def
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h
  stable/11/contrib/llvm/tools/clang/include/clang/module.modulemap
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/APValue.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/CXXABI.h
  stable/11/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Comment.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Decl.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/DeclGroup.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Expr.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ExprObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Mangle.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/OpenMPClause.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/StmtCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/StmtObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Type.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
  stable/11/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Module.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Version.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCUDABuiltin.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypeCache.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/Action.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Driver.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Job.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Multilib.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Tool.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Tools.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/Types.cpp
  stable/11/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/Encoding.h
  stable/11/contrib/llvm/tools/clang/lib/Format/Format.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/FormatToken.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/FormatToken.h
  stable/11/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.h
  stable/11/contrib/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.h
  stable/11/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h
  stable/11/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
  stable/11/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h
  stable/11/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteTest.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
  stable/11/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
  stable/11/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/altivec.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/ammintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avxintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/float.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/fxsrintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/ia32intrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/immintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/intrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/mmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/module.modulemap
  stable/11/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/stdatomic.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Index/CommentToXML.cpp
  stable/11/contrib/llvm/tools/clang/lib/Index/IndexBody.cpp
  stable/11/contrib/llvm/tools/clang/lib/Index/IndexDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/Index/IndexSymbol.cpp
  stable/11/contrib/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/Index/IndexingContext.cpp
  stable/11/contrib/llvm/tools/clang/lib/Index/IndexingContext.h
  stable/11/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPCaching.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/Parser.cpp
  stable/11/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h
  stable/11/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/Module.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ModuleFileExtension.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/MultiOnDiskHashTable.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPITypes.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
  stable/11/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Core/QualTypeNames.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp
  stable/11/contrib/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
  stable/11/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp
  stable/11/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
  stable/11/contrib/llvm/tools/clang/tools/driver/driver.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h
  stable/11/contrib/llvm/tools/llc/llc.cpp
  stable/11/contrib/llvm/tools/lld/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/COFF/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/COFF/Chunks.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Chunks.h
  stable/11/contrib/llvm/tools/lld/COFF/Config.h
  stable/11/contrib/llvm/tools/lld/COFF/DLL.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Driver.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Driver.h
  stable/11/contrib/llvm/tools/lld/COFF/DriverUtils.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Error.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Error.h
  stable/11/contrib/llvm/tools/lld/COFF/ICF.cpp
  stable/11/contrib/llvm/tools/lld/COFF/InputFiles.cpp
  stable/11/contrib/llvm/tools/lld/COFF/InputFiles.h
  stable/11/contrib/llvm/tools/lld/COFF/Librarian.cpp
  stable/11/contrib/llvm/tools/lld/COFF/MarkLive.cpp
  stable/11/contrib/llvm/tools/lld/COFF/ModuleDef.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Options.td
  stable/11/contrib/llvm/tools/lld/COFF/PDB.cpp
  stable/11/contrib/llvm/tools/lld/COFF/SymbolTable.cpp
  stable/11/contrib/llvm/tools/lld/COFF/SymbolTable.h
  stable/11/contrib/llvm/tools/lld/COFF/Symbols.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Symbols.h
  stable/11/contrib/llvm/tools/lld/COFF/Writer.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Writer.h
  stable/11/contrib/llvm/tools/lld/ELF/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/ELF/Config.h
  stable/11/contrib/llvm/tools/lld/ELF/Driver.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Driver.h
  stable/11/contrib/llvm/tools/lld/ELF/DriverUtils.cpp
  stable/11/contrib/llvm/tools/lld/ELF/EhFrame.cpp
  stable/11/contrib/llvm/tools/lld/ELF/EhFrame.h
  stable/11/contrib/llvm/tools/lld/ELF/Error.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Error.h
  stable/11/contrib/llvm/tools/lld/ELF/ICF.cpp
  stable/11/contrib/llvm/tools/lld/ELF/InputFiles.cpp
  stable/11/contrib/llvm/tools/lld/ELF/InputFiles.h
  stable/11/contrib/llvm/tools/lld/ELF/InputSection.cpp
  stable/11/contrib/llvm/tools/lld/ELF/InputSection.h
  stable/11/contrib/llvm/tools/lld/ELF/LTO.cpp
  stable/11/contrib/llvm/tools/lld/ELF/LTO.h
  stable/11/contrib/llvm/tools/lld/ELF/LinkerScript.cpp
  stable/11/contrib/llvm/tools/lld/ELF/LinkerScript.h
  stable/11/contrib/llvm/tools/lld/ELF/MarkLive.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Options.td
  stable/11/contrib/llvm/tools/lld/ELF/OutputSections.cpp
  stable/11/contrib/llvm/tools/lld/ELF/OutputSections.h
  stable/11/contrib/llvm/tools/lld/ELF/Relocations.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Relocations.h
  stable/11/contrib/llvm/tools/lld/ELF/ScriptParser.cpp
  stable/11/contrib/llvm/tools/lld/ELF/ScriptParser.h
  stable/11/contrib/llvm/tools/lld/ELF/Strings.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Strings.h
  stable/11/contrib/llvm/tools/lld/ELF/SymbolTable.cpp
  stable/11/contrib/llvm/tools/lld/ELF/SymbolTable.h
  stable/11/contrib/llvm/tools/lld/ELF/Symbols.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Symbols.h
  stable/11/contrib/llvm/tools/lld/ELF/Target.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Target.h
  stable/11/contrib/llvm/tools/lld/ELF/Thunks.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Writer.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Writer.h
  stable/11/contrib/llvm/tools/lld/include/lld/Config/Version.h
  stable/11/contrib/llvm/tools/lld/include/lld/Config/Version.inc.in
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Atom.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/DefinedAtom.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/LinkingContext.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Node.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Parallel.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Pass.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/PassManager.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Reader.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Reference.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Simple.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/SymbolTable.h
  stable/11/contrib/llvm/tools/lld/include/lld/Driver/Driver.h
  stable/11/contrib/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
  stable/11/contrib/llvm/tools/lld/lib/Config/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/lib/Config/Version.cpp
  stable/11/contrib/llvm/tools/lld/lib/Core/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/lib/Core/DefinedAtom.cpp
  stable/11/contrib/llvm/tools/lld/lib/Core/Error.cpp
  stable/11/contrib/llvm/tools/lld/lib/Core/File.cpp
  stable/11/contrib/llvm/tools/lld/lib/Core/LinkingContext.cpp
  stable/11/contrib/llvm/tools/lld/lib/Core/Reader.cpp
  stable/11/contrib/llvm/tools/lld/lib/Core/Resolver.cpp
  stable/11/contrib/llvm/tools/lld/lib/Core/SymbolTable.cpp
  stable/11/contrib/llvm/tools/lld/lib/Core/Writer.cpp
  stable/11/contrib/llvm/tools/lld/lib/Driver/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ShimPass.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/TLVPass.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
  stable/11/contrib/llvm/tools/lld/tools/lld/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/tools/lld/lld.cpp
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBBlock.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointLocation.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBBroadcaster.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBCommunication.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBCompileUnit.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBData.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBDeclaration.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBError.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBEvent.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpecList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBFunction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBHostOS.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBLineEntry.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBModule.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBModuleSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBPlatform.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBQueue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBQueueItem.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBSection.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBSourceManager.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBStream.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBStringList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBSymbol.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContextList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBType.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTypeCategory.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFilter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFormat.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTypeNameSpecifier.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSummary.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSynthetic.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBValueList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBWatchpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SystemInitializerFull.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointIDList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Stoppoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointCallbackContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Baton.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ClangForward.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Connection.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ConstString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataBuffer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataBufferHeap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataBufferMemoryMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataEncoder.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataExtractor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Error.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/FastDemangle.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Flags.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/History.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/IOStreamMacros.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Listener.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Log.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Logging.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/MappedHash.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Module.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ModuleChild.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Opcode.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/PluginInterface.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/PluginManager.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/RegisterValue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/RegularExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/STLUtils.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/State.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Stream.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamCallback.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamTee.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StringList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StructuredData.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Timer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/UUID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/UserID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/VMRange.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectCast.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectMemory.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectRegister.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectVariable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/dwarf.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/CXXFunctionPointer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionTypeSystemHelper.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/Materializer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Config.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Debug.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Endian.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/File.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/FileCache.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/FileSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostGetOpt.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/IOObject.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/OptionParser.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Pipe.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Predicate.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Symbols.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Terminal.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/ThisThread.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Time.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/XML.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/GetOptInc.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContextRegisterInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeThreadProtocol.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeWatchpointList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/SoftwareBreakpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/Config.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostThreadFreeBSD.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostThreadNetBSD.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/MainLoopPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArgs.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValues.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/Property.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/GoASTContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/JavaASTContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/LineEntry.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/LineTable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/TaggedASTType.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/VariableList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/VerifyDecl.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/JITLoader.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Process.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ProcessInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Queue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/StackID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanRunToAddress.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInRange.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOut.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverRange.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepThrough.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepUntil.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanTracer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/UnwindAssembly.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/CleanUp.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/ConvertEnum.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Either.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/NameMatches.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/PriorityPointerPair.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/PseudoTerminal.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Range.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterNumber.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/SafeMachO.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/SharedCluster.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/TaskPool.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-defines.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-enumerations.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-forward.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-private-defines.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-private-enumerations.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-private.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-public.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-versioning.h
  stable/11/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBlock.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBreakpointLocation.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBroadcaster.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBCommunication.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBCompileUnit.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBData.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBDeclaration.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBError.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBEvent.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBExecutionContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBFileSpecList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBFunction.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBLineEntry.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBListener.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBModule.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBModuleSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBPlatform.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBProcess.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBQueue.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBSection.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBStream.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBSymbolContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBSymbolContextList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBThreadCollection.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBType.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBTypeFilter.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBTypeFormat.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBTypeSummary.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBValueList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBWatchpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointIDList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointOptions.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/Stoppoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/StoppointCallbackContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h
  stable/11/contrib/llvm/tools/lldb/source/Core/Address.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/AddressRange.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/AddressResolver.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Baton.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Communication.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Connection.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ConstString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DataBufferHeap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DataBufferMemoryMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DataEncoder.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DataExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Error.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Event.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/FastDemangle.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/FileLineResolver.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/FileSpecList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/History.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Listener.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Log.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Logging.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Mangled.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Module.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ModuleChild.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Opcode.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/RegisterValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/RegularExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Section.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/State.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Stream.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StreamCallback.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StreamGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StreamString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StringList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StructuredData.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Timer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/UUID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/UserID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/VMRange.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Value.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/FormatClasses.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/Expression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/IRInterpreter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/File.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/FileSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/GetOptInc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Host.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/HostNativeThreadBase.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContextRegisterInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/OptionParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/PipeBase.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/ProcessRunLock.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Terminal.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/ThisThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/XML.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/freebsd/Host.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/freebsd/HostThreadFreeBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/freebsd/ThisThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/netbsd/Host.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/netbsd/HostThreadNetBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/netbsd/ThisThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/MainLoopPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Initialization/SystemInitializer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
  stable/11/contrib/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandOptionValidators.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/Property.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/embedded_interpreter.py
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionHelper.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoAST.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/gen_go_ast.py
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/ThreadSanitizerRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/ThreadSanitizerRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIX.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMDefines.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMUtils.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InstructionUtils.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_powerpc.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_x86.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoInterface.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-s390x-register-enums.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.h
  stable/11/contrib/llvm/tools/lldb/source/Symbol/ArmUnwindInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/Block.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/CompilerDeclContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/CompilerType.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/DebugMacros.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/Declaration.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/Symtab.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/Type.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/TypeList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/TypeMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/VariableList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/VerifyDecl.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ABI.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/FileAction.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/JITLoaderList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/Language.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/Memory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/OperatingSystem.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/PathMappingList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/Platform.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/Process.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ProcessInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/Queue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/QueueItem.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/QueueList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/StackID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/Target.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/Thread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ThreadSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/ARM64_ehframe_Registers.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/ARM_ehframe_Registers.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ModuleCache.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ModuleCache.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/NameMatches.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/PseudoTerminal.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Range.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/RegisterNumber.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/StringLexer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/TaskPool.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/UriParser.h
  stable/11/contrib/llvm/tools/lldb/source/lldb.cpp
  stable/11/contrib/llvm/tools/lldb/tools/argdumper/argdumper.cpp
  stable/11/contrib/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c
  stable/11/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
  stable/11/contrib/llvm/tools/lldb/tools/driver/Driver.h
  stable/11/contrib/llvm/tools/lldb/tools/driver/Platform.cpp
  stable/11/contrib/llvm/tools/lldb/tools/driver/Platform.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
  stable/11/contrib/llvm/tools/lli/ChildTarget/ChildTarget.cpp
  stable/11/contrib/llvm/tools/lli/OrcLazyJIT.cpp
  stable/11/contrib/llvm/tools/lli/OrcLazyJIT.h
  stable/11/contrib/llvm/tools/lli/RemoteJITUtils.h
  stable/11/contrib/llvm/tools/lli/lli.cpp
  stable/11/contrib/llvm/tools/llvm-ar/llvm-ar.cpp
  stable/11/contrib/llvm/tools/llvm-as/llvm-as.cpp
  stable/11/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
  stable/11/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp
  stable/11/contrib/llvm/tools/llvm-cov/CoverageReport.cpp
  stable/11/contrib/llvm/tools/llvm-cov/CoverageReport.h
  stable/11/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp
  stable/11/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.h
  stable/11/contrib/llvm/tools/llvm-cov/CoverageViewOptions.h
  stable/11/contrib/llvm/tools/llvm-cov/SourceCoverageView.cpp
  stable/11/contrib/llvm/tools/llvm-cov/SourceCoverageView.h
  stable/11/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
  stable/11/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.h
  stable/11/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
  stable/11/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.h
  stable/11/contrib/llvm/tools/llvm-cov/llvm-cov.cpp
  stable/11/contrib/llvm/tools/llvm-cxxdump/Error.cpp
  stable/11/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
  stable/11/contrib/llvm/tools/llvm-dis/llvm-dis.cpp
  stable/11/contrib/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
  stable/11/contrib/llvm/tools/llvm-extract/llvm-extract.cpp
  stable/11/contrib/llvm/tools/llvm-link/llvm-link.cpp
  stable/11/contrib/llvm/tools/llvm-lto/llvm-lto.cpp
  stable/11/contrib/llvm/tools/llvm-mc/Disassembler.cpp
  stable/11/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
  stable/11/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
  stable/11/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
  stable/11/contrib/llvm/tools/llvm-objdump/ELFDump.cpp
  stable/11/contrib/llvm/tools/llvm-objdump/MachODump.cpp
  stable/11/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
  stable/11/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/LLVMOutputStyle.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/LLVMOutputStyle.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/PdbYaml.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/PdbYaml.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/YAMLOutputStyle.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/YAMLOutputStyle.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/llvm-pdbdump.cpp
  stable/11/contrib/llvm/tools/llvm-pdbdump/llvm-pdbdump.h
  stable/11/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
  stable/11/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/Error.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/MachODumper.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/ObjDumper.h
  stable/11/contrib/llvm/tools/llvm-readobj/StackMapPrinter.h
  stable/11/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
  stable/11/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
  stable/11/contrib/llvm/tools/llvm-stress/llvm-stress.cpp
  stable/11/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
  stable/11/contrib/llvm/tools/opt/NewPMDriver.cpp
  stable/11/contrib/llvm/tools/opt/NewPMDriver.h
  stable/11/contrib/llvm/tools/opt/PassPrinters.cpp
  stable/11/contrib/llvm/tools/opt/opt.cpp
  stable/11/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/Attributes.cpp
  stable/11/contrib/llvm/utils/TableGen/CTagsEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenInstruction.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenRegisters.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenTarget.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenTarget.h
  stable/11/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
  stable/11/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/SearchableTableEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/TableGen.cpp
  stable/11/contrib/llvm/utils/TableGen/TableGenBackends.h
  stable/11/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
  stable/11/contrib/llvm/utils/TableGen/X86RecognizableInstr.h
  stable/11/etc/mtree/BSD.debug.dist
  stable/11/etc/mtree/BSD.usr.dist
  stable/11/gnu/usr.bin/binutils/ld/Makefile
  stable/11/lib/clang/freebsd_cc_version.h
  stable/11/lib/clang/headers/Makefile
  stable/11/lib/clang/include/clang/Basic/Version.inc
  stable/11/lib/clang/include/clang/Config/config.h
  stable/11/lib/clang/include/lld/Config/Version.inc
  stable/11/lib/clang/include/llvm/Config/config.h
  stable/11/lib/clang/include/llvm/Config/llvm-config.h
  stable/11/lib/clang/libclang/Makefile
  stable/11/lib/clang/liblldb/Makefile
  stable/11/lib/clang/libllvm/Makefile
  stable/11/lib/clang/libllvmminimal/Makefile
  stable/11/lib/clang/llvm.build.mk
  stable/11/lib/libc++/Makefile
  stable/11/lib/libc/gdtoa/Makefile.inc
  stable/11/lib/libclang_rt/Makefile.inc
  stable/11/lib/libclang_rt/asan/Makefile
  stable/11/lib/libclang_rt/asan_dynamic/Makefile
  stable/11/lib/libclang_rt/safestack/Makefile
  stable/11/lib/libclang_rt/stats/Makefile
  stable/11/lib/libclang_rt/ubsan_standalone/Makefile
  stable/11/lib/libcompiler_rt/Makefile
  stable/11/share/mk/bsd.sys.mk
  stable/11/share/mk/src.opts.mk
  stable/11/sys/conf/kern.mk
  stable/11/sys/sys/param.h
  stable/11/tools/build/mk/OptionalObsoleteFiles.inc
  stable/11/usr.bin/clang/Makefile
  stable/11/usr.bin/clang/lld/Makefile
  stable/11/usr.bin/clang/llvm-cov/Makefile
  stable/11/usr.bin/clang/llvm-objdump/Makefile
  stable/11/usr.bin/clang/llvm-pdbdump/Makefile
  stable/11/usr.bin/clang/llvm-tblgen/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/Makefile.inc1
==============================================================================
--- stable/11/Makefile.inc1	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/Makefile.inc1	Sun Apr  2 17:24:58 2017	(r316423)
@@ -1799,6 +1799,9 @@ _elftctools=	lib/libelftc \
 # cross-build on a FreeBSD 10 host:
 _elftctools+=	usr.bin/addr2line
 .endif
+.if ${MK_LLD_IS_LD} != "no"
+_lld=		usr.bin/clang/lld
+.endif
 .elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no"
 # If cross-building with an external binutils we still need to build strip for
 # the target (for at least crunchide).
@@ -1822,6 +1825,7 @@ cross-tools: .MAKE .PHONY
 .for _tool in \
     ${_clang_libs} \
     ${_clang} \
+    ${_lld} \
     ${_binutils} \
     ${_elftctools} \
     ${_dtrace_tools} \

Modified: stable/11/ObsoleteFiles.inc
==============================================================================
--- stable/11/ObsoleteFiles.inc	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/ObsoleteFiles.inc	Sun Apr  2 17:24:58 2017	(r316423)
@@ -38,6 +38,119 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20170402: new libc++ import which bumps version from 3.9.1 to 4.0.0.
+OLD_FILES+=usr/include/c++/v1/__undef___deallocate
+OLD_FILES+=usr/include/c++/v1/tr1/__undef___deallocate
+# 20170402: new clang import which bumps version from 3.9.1 to 4.0.0.
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/allocator_interface.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/asan_interface.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/common_interface_defs.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/coverage_interface.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/dfsan_interface.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/esan_interface.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/linux_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/lsan_interface.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/msan_interface.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/tsan_interface_atomic.h
+OLD_DIRS+=usr/lib/clang/3.9.1/include/sanitizer
+OLD_FILES+=usr/lib/clang/3.9.1/include/__clang_cuda_cmath.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/__clang_cuda_intrinsics.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/__clang_cuda_math_forward_declares.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/__clang_cuda_runtime_wrapper.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/__stddef_max_align_t.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/__wmmintrin_aes.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/__wmmintrin_pclmul.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/adxintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/altivec.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/ammintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/arm_acle.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/arm_neon.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx2intrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512bwintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512cdintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512dqintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512erintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512fintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512ifmaintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512ifmavlintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512pfintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vbmiintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vbmivlintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vlbwintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vlcdintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vldqintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vlintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/avxintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/bmi2intrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/bmiintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/clflushoptintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/cpuid.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/cuda_builtin_vars.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/emmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/f16cintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/fma4intrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/fmaintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/fxsrintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/htmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/htmxlintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/ia32intrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/immintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/lzcntintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/mm3dnow.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/mm_malloc.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/mmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/module.modulemap
+OLD_FILES+=usr/lib/clang/3.9.1/include/msa.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/mwaitxintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/nmmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/opencl-c.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/pkuintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/pmmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/popcntintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/prfchwintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/rdseedintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/rtmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/s390intrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/shaintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/smmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/tbmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/tmmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/vadefs.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/vecintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/wmmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/x86intrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/xmmintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/xopintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/xsavecintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/xsaveintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/xsaveoptintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/xsavesintrin.h
+OLD_FILES+=usr/lib/clang/3.9.1/include/xtestintrin.h
+OLD_DIRS+=usr/lib/clang/3.9.1/include
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-i386.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-i386.so
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-preinit-i386.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-x86_64.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-x86_64.so
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan_cxx-i386.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.profile-arm.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.profile-i386.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.profile-x86_64.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.safestack-i386.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.safestack-x86_64.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.stats-i386.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.stats-x86_64.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.stats_client-i386.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.stats_client-x86_64.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a
+OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a
+OLD_DIRS+=usr/lib/clang/3.9.1/lib/freebsd
+OLD_DIRS+=usr/lib/clang/3.9.1/lib
+OLD_DIRS+=usr/lib/clang/3.9.1
 # 20170322: rename <x> to <x>_test to match the FreeBSD test suite name scheme
 OLD_FILES+=usr/tests/usr.bin/col/col
 OLD_FILES+=usr/tests/usr.bin/ident/ident

Modified: stable/11/UPDATING
==============================================================================
--- stable/11/UPDATING	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/UPDATING	Sun Apr  2 17:24:58 2017	(r316423)
@@ -16,6 +16,11 @@ from older versions of FreeBSD, try WITH
 the tip of head, and then rebuild without this option. The bootstrap process
 from older version of current across the gcc/clang cutover is a bit fragile.
 
+20170402:
+	Clang, llvm, lldb, compiler-rt and libc++ have been upgraded to 4.0.0.
+	Please see the 20141231 entry below for information about prerequisites
+	and upgrading, if you are not already using clang 3.5.0 or higher.
+
 20170323:
 	The code that provides support for ZFS .zfs/ directory functionality
 	has been reimplemented.  It's not possible now to create a snapshot

Modified: stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h	Sun Apr  2 17:24:58 2017	(r316423)
@@ -117,6 +117,16 @@ extern "C" {
   // Print the stack trace leading to this call. Useful for debugging user code.
   void __sanitizer_print_stack_trace();
 
+  // Symbolizes the supplied 'pc' using the format string 'fmt'.
+  // Outputs at most 'out_buf_size' bytes into 'out_buf'.
+  // The format syntax is described in
+  // lib/sanitizer_common/sanitizer_stacktrace_printer.h.
+  void __sanitizer_symbolize_pc(void *pc, const char *fmt, char *out_buf,
+                                size_t out_buf_size);
+  // Same as __sanitizer_symbolize_pc, but for data section (i.e. globals).
+  void __sanitizer_symbolize_global(void *data_ptr, const char *fmt,
+                                    char *out_buf, size_t out_buf_size);
+
   // Sets the callback to be called right before death on error.
   // Passing 0 will unset the callback.
   void __sanitizer_set_death_callback(void (*callback)(void));
@@ -169,7 +179,16 @@ extern "C" {
   // use-after-return detection.
   void __sanitizer_start_switch_fiber(void **fake_stack_save,
                                       const void *bottom, size_t size);
-  void __sanitizer_finish_switch_fiber(void *fake_stack_save);
+  void __sanitizer_finish_switch_fiber(void *fake_stack_save,
+                                       const void **bottom_old,
+                                       size_t *size_old);
+
+  // Get full module name and calculate pc offset within it.
+  // Returns 1 if pc belongs to some module, 0 if module was not found.
+  int __sanitizer_get_module_and_offset_for_pc(void *pc, char *module_path,
+                                               size_t module_path_len,
+                                               void **pc_offset);
+
 #ifdef __cplusplus
 }  // extern "C"
 #endif

Modified: stable/11/contrib/compiler-rt/include/sanitizer/coverage_interface.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/sanitizer/coverage_interface.h	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/contrib/compiler-rt/include/sanitizer/coverage_interface.h	Sun Apr  2 17:24:58 2017	(r316423)
@@ -23,6 +23,11 @@ extern "C" {
   void __sanitizer_cov_init();
   // Record and dump coverage info.
   void __sanitizer_cov_dump();
+
+  //  Dump collected coverage info. Sorts pcs by module into individual
+  //  .sancov files.
+  void __sanitizer_dump_coverage(const uintptr_t *pcs, uintptr_t len);
+
   // Open <name>.sancov.packed in the coverage directory and return the file
   // descriptor. Returns -1 on failure, or if coverage dumping is disabled.
   // This is intended for use by sandboxing code.
@@ -41,13 +46,6 @@ extern "C" {
   // Some of the entries in *data will be zero.
   uintptr_t __sanitizer_get_coverage_guards(uintptr_t **data);
 
-  // Set *data to the growing buffer with covered PCs and return the size
-  // of the buffer. The entries are never zero.
-  // When only unique pcs are collected, the size is equal to
-  // __sanitizer_get_total_unique_coverage.
-  // WARNING: EXPERIMENTAL API.
-  uintptr_t __sanitizer_get_coverage_pc_buffer(uintptr_t **data);
-
   // The coverage instrumentation may optionally provide imprecise counters.
   // Rather than exposing the counter values to the user we instead map
   // the counters to a bitset.
@@ -65,6 +63,7 @@ extern "C" {
   // __sanitizer_get_number_of_counters bytes long and 8-aligned.
   uintptr_t
   __sanitizer_update_counter_bitset_and_clear_counters(uint8_t *bitset);
+
 #ifdef __cplusplus
 }  // extern "C"
 #endif

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_activation.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_activation.cc	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_activation.cc	Sun Apr  2 17:24:58 2017	(r316423)
@@ -77,13 +77,16 @@ static struct AsanDeactivatedFlags {
 
   void Print() {
     Report(
-        "quarantine_size_mb %d, max_redzone %d, poison_heap %d, "
-        "malloc_context_size %d, alloc_dealloc_mismatch %d, "
-        "allocator_may_return_null %d, coverage %d, coverage_dir %s\n",
-        allocator_options.quarantine_size_mb, allocator_options.max_redzone,
-        poison_heap, malloc_context_size,
+        "quarantine_size_mb %d, thread_local_quarantine_size_kb %d, "
+        "max_redzone %d, poison_heap %d, malloc_context_size %d, "
+        "alloc_dealloc_mismatch %d, allocator_may_return_null %d, coverage %d, "
+        "coverage_dir %s, allocator_release_to_os_interval_ms %d\n",
+        allocator_options.quarantine_size_mb,
+        allocator_options.thread_local_quarantine_size_kb,
+        allocator_options.max_redzone, poison_heap, malloc_context_size,
         allocator_options.alloc_dealloc_mismatch,
-        allocator_options.may_return_null, coverage, coverage_dir);
+        allocator_options.may_return_null, coverage, coverage_dir,
+        allocator_options.release_to_os_interval_ms);
   }
 } asan_deactivated_flags;
 
@@ -107,6 +110,7 @@ void AsanDeactivate() {
 
   AllocatorOptions disabled = asan_deactivated_flags.allocator_options;
   disabled.quarantine_size_mb = 0;
+  disabled.thread_local_quarantine_size_kb = 0;
   disabled.min_redzone = 16;  // Redzone must be at least 16 bytes long.
   disabled.max_redzone = 16;
   disabled.alloc_dealloc_mismatch = false;

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_activation_flags.inc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_activation_flags.inc	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_activation_flags.inc	Sun Apr  2 17:24:58 2017	(r316423)
@@ -24,6 +24,7 @@
 ASAN_ACTIVATION_FLAG(int, redzone)
 ASAN_ACTIVATION_FLAG(int, max_redzone)
 ASAN_ACTIVATION_FLAG(int, quarantine_size_mb)
+ASAN_ACTIVATION_FLAG(int, thread_local_quarantine_size_kb)
 ASAN_ACTIVATION_FLAG(bool, alloc_dealloc_mismatch)
 ASAN_ACTIVATION_FLAG(bool, poison_heap)
 
@@ -33,3 +34,4 @@ COMMON_ACTIVATION_FLAG(bool, coverage)
 COMMON_ACTIVATION_FLAG(const char *, coverage_dir)
 COMMON_ACTIVATION_FLAG(int, verbosity)
 COMMON_ACTIVATION_FLAG(bool, help)
+COMMON_ACTIVATION_FLAG(s32, allocator_release_to_os_interval_ms)

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_allocator.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_allocator.cc	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_allocator.cc	Sun Apr  2 17:24:58 2017	(r316423)
@@ -207,25 +207,27 @@ QuarantineCache *GetQuarantineCache(Asan
 
 void AllocatorOptions::SetFrom(const Flags *f, const CommonFlags *cf) {
   quarantine_size_mb = f->quarantine_size_mb;
+  thread_local_quarantine_size_kb = f->thread_local_quarantine_size_kb;
   min_redzone = f->redzone;
   max_redzone = f->max_redzone;
   may_return_null = cf->allocator_may_return_null;
   alloc_dealloc_mismatch = f->alloc_dealloc_mismatch;
+  release_to_os_interval_ms = cf->allocator_release_to_os_interval_ms;
 }
 
 void AllocatorOptions::CopyTo(Flags *f, CommonFlags *cf) {
   f->quarantine_size_mb = quarantine_size_mb;
+  f->thread_local_quarantine_size_kb = thread_local_quarantine_size_kb;
   f->redzone = min_redzone;
   f->max_redzone = max_redzone;
   cf->allocator_may_return_null = may_return_null;
   f->alloc_dealloc_mismatch = alloc_dealloc_mismatch;
+  cf->allocator_release_to_os_interval_ms = release_to_os_interval_ms;
 }
 
 struct Allocator {
   static const uptr kMaxAllowedMallocSize =
       FIRST_32_SECOND_64(3UL << 30, 1ULL << 40);
-  static const uptr kMaxThreadLocalQuarantine =
-      FIRST_32_SECOND_64(1 << 18, 1 << 20);
 
   AsanAllocator allocator;
   AsanQuarantine quarantine;
@@ -254,7 +256,7 @@ struct Allocator {
   void SharedInitCode(const AllocatorOptions &options) {
     CheckOptions(options);
     quarantine.Init((uptr)options.quarantine_size_mb << 20,
-                    kMaxThreadLocalQuarantine);
+                    (uptr)options.thread_local_quarantine_size_kb << 10);
     atomic_store(&alloc_dealloc_mismatch, options.alloc_dealloc_mismatch,
                  memory_order_release);
     atomic_store(&min_redzone, options.min_redzone, memory_order_release);
@@ -262,22 +264,59 @@ struct Allocator {
   }
 
   void Initialize(const AllocatorOptions &options) {
-    allocator.Init(options.may_return_null);
+    allocator.Init(options.may_return_null, options.release_to_os_interval_ms);
     SharedInitCode(options);
   }
 
+  void RePoisonChunk(uptr chunk) {
+    // This could be a user-facing chunk (with redzones), or some internal
+    // housekeeping chunk, like TransferBatch. Start by assuming the former.
+    AsanChunk *ac = GetAsanChunk((void *)chunk);
+    uptr allocated_size = allocator.GetActuallyAllocatedSize((void *)ac);
+    uptr beg = ac->Beg();
+    uptr end = ac->Beg() + ac->UsedSize(true);
+    uptr chunk_end = chunk + allocated_size;
+    if (chunk < beg && beg < end && end <= chunk_end &&
+        ac->chunk_state == CHUNK_ALLOCATED) {
+      // Looks like a valid AsanChunk in use, poison redzones only.
+      PoisonShadow(chunk, beg - chunk, kAsanHeapLeftRedzoneMagic);
+      uptr end_aligned_down = RoundDownTo(end, SHADOW_GRANULARITY);
+      FastPoisonShadowPartialRightRedzone(
+          end_aligned_down, end - end_aligned_down,
+          chunk_end - end_aligned_down, kAsanHeapLeftRedzoneMagic);
+    } else {
+      // This is either not an AsanChunk or freed or quarantined AsanChunk.
+      // In either case, poison everything.
+      PoisonShadow(chunk, allocated_size, kAsanHeapLeftRedzoneMagic);
+    }
+  }
+
   void ReInitialize(const AllocatorOptions &options) {
     allocator.SetMayReturnNull(options.may_return_null);
+    allocator.SetReleaseToOSIntervalMs(options.release_to_os_interval_ms);
     SharedInitCode(options);
+
+    // Poison all existing allocation's redzones.
+    if (CanPoisonMemory()) {
+      allocator.ForceLock();
+      allocator.ForEachChunk(
+          [](uptr chunk, void *alloc) {
+            ((Allocator *)alloc)->RePoisonChunk(chunk);
+          },
+          this);
+      allocator.ForceUnlock();
+    }
   }
 
   void GetOptions(AllocatorOptions *options) const {
     options->quarantine_size_mb = quarantine.GetSize() >> 20;
+    options->thread_local_quarantine_size_kb = quarantine.GetCacheSize() >> 10;
     options->min_redzone = atomic_load(&min_redzone, memory_order_acquire);
     options->max_redzone = atomic_load(&max_redzone, memory_order_acquire);
     options->may_return_null = allocator.MayReturnNull();
     options->alloc_dealloc_mismatch =
         atomic_load(&alloc_dealloc_mismatch, memory_order_acquire);
+    options->release_to_os_interval_ms = allocator.ReleaseToOSIntervalMs();
   }
 
   // -------------------- Helper methods. -------------------------
@@ -356,7 +395,7 @@ struct Allocator {
     if (size > kMaxAllowedMallocSize || needed_size > kMaxAllowedMallocSize) {
       Report("WARNING: AddressSanitizer failed to allocate 0x%zx bytes\n",
              (void*)size);
-      return allocator.ReturnNullOrDie();
+      return allocator.ReturnNullOrDieOnBadRequest();
     }
 
     AsanThread *t = GetCurrentThread();
@@ -373,8 +412,7 @@ struct Allocator {
           allocator.Allocate(cache, needed_size, 8, false, check_rss_limit);
     }
 
-    if (!allocated)
-      return allocator.ReturnNullOrDie();
+    if (!allocated) return allocator.ReturnNullOrDieOnOOM();
 
     if (*(u8 *)MEM_TO_SHADOW((uptr)allocated) == 0 && CanPoisonMemory()) {
       // Heap poisoning is enabled, but the allocator provides an unpoisoned
@@ -530,7 +568,7 @@ struct Allocator {
 
     if (delete_size && flags()->new_delete_type_mismatch &&
         delete_size != m->UsedSize()) {
-      ReportNewDeleteSizeMismatch(p, m->UsedSize(), delete_size, stack);
+      ReportNewDeleteSizeMismatch(p, delete_size, stack);
     }
 
     QuarantineChunk(m, ptr, stack, alloc_type);
@@ -563,7 +601,7 @@ struct Allocator {
 
   void *Calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) {
     if (CallocShouldReturnNullDueToOverflow(size, nmemb))
-      return allocator.ReturnNullOrDie();
+      return allocator.ReturnNullOrDieOnBadRequest();
     void *ptr = Allocate(nmemb * size, 8, stack, FROM_MALLOC, false);
     // If the memory comes from the secondary allocator no need to clear it
     // as it comes directly from mmap.
@@ -643,6 +681,7 @@ struct Allocator {
 
   void PrintStats() {
     allocator.PrintStats();
+    quarantine.PrintStats();
   }
 
   void ForceLock() {
@@ -662,17 +701,23 @@ static AsanAllocator &get_allocator() {
   return instance.allocator;
 }
 
-bool AsanChunkView::IsValid() {
+bool AsanChunkView::IsValid() const {
   return chunk_ && chunk_->chunk_state != CHUNK_AVAILABLE;
 }
-bool AsanChunkView::IsAllocated() {
+bool AsanChunkView::IsAllocated() const {
   return chunk_ && chunk_->chunk_state == CHUNK_ALLOCATED;
 }
-uptr AsanChunkView::Beg() { return chunk_->Beg(); }
-uptr AsanChunkView::End() { return Beg() + UsedSize(); }
-uptr AsanChunkView::UsedSize() { return chunk_->UsedSize(); }
-uptr AsanChunkView::AllocTid() { return chunk_->alloc_tid; }
-uptr AsanChunkView::FreeTid() { return chunk_->free_tid; }
+bool AsanChunkView::IsQuarantined() const {
+  return chunk_ && chunk_->chunk_state == CHUNK_QUARANTINE;
+}
+uptr AsanChunkView::Beg() const { return chunk_->Beg(); }
+uptr AsanChunkView::End() const { return Beg() + UsedSize(); }
+uptr AsanChunkView::UsedSize() const { return chunk_->UsedSize(); }
+uptr AsanChunkView::AllocTid() const { return chunk_->alloc_tid; }
+uptr AsanChunkView::FreeTid() const { return chunk_->free_tid; }
+AllocType AsanChunkView::GetAllocType() const {
+  return (AllocType)chunk_->alloc_type;
+}
 
 static StackTrace GetStackTraceFromId(u32 id) {
   CHECK(id);
@@ -681,14 +726,14 @@ static StackTrace GetStackTraceFromId(u3
   return res;
 }
 
-u32 AsanChunkView::GetAllocStackId() { return chunk_->alloc_context_id; }
-u32 AsanChunkView::GetFreeStackId() { return chunk_->free_context_id; }
+u32 AsanChunkView::GetAllocStackId() const { return chunk_->alloc_context_id; }
+u32 AsanChunkView::GetFreeStackId() const { return chunk_->free_context_id; }
 
-StackTrace AsanChunkView::GetAllocStack() {
+StackTrace AsanChunkView::GetAllocStack() const {
   return GetStackTraceFromId(GetAllocStackId());
 }
 
-StackTrace AsanChunkView::GetFreeStack() {
+StackTrace AsanChunkView::GetFreeStack() const {
   return GetStackTraceFromId(GetFreeStackId());
 }
 
@@ -707,6 +752,9 @@ void GetAllocatorOptions(AllocatorOption
 AsanChunkView FindHeapChunkByAddress(uptr addr) {
   return instance.FindHeapChunkByAddress(addr);
 }
+AsanChunkView FindHeapChunkByAllocBeg(uptr addr) {
+  return AsanChunkView(instance.GetAsanChunk(reinterpret_cast<void*>(addr)));
+}
 
 void AsanThreadLocalMallocStorage::CommitBack() {
   instance.CommitBack(this);

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_allocator.h
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_allocator.h	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_allocator.h	Sun Apr  2 17:24:58 2017	(r316423)
@@ -33,10 +33,12 @@ struct AsanChunk;
 
 struct AllocatorOptions {
   u32 quarantine_size_mb;
+  u32 thread_local_quarantine_size_kb;
   u16 min_redzone;
   u16 max_redzone;
   u8 may_return_null;
   u8 alloc_dealloc_mismatch;
+  s32 release_to_os_interval_ms;
 
   void SetFrom(const Flags *f, const CommonFlags *cf);
   void CopyTo(Flags *f, CommonFlags *cf);
@@ -49,27 +51,29 @@ void GetAllocatorOptions(AllocatorOption
 class AsanChunkView {
  public:
   explicit AsanChunkView(AsanChunk *chunk) : chunk_(chunk) {}
-  bool IsValid();        // Checks if AsanChunkView points to a valid allocated
-                         // or quarantined chunk.
-  bool IsAllocated();    // Checks if the memory is currently allocated.
-  uptr Beg();            // First byte of user memory.
-  uptr End();            // Last byte of user memory.
-  uptr UsedSize();       // Size requested by the user.
-  uptr AllocTid();
-  uptr FreeTid();
+  bool IsValid() const;        // Checks if AsanChunkView points to a valid
+                               // allocated or quarantined chunk.
+  bool IsAllocated() const;    // Checks if the memory is currently allocated.
+  bool IsQuarantined() const;  // Checks if the memory is currently quarantined.
+  uptr Beg() const;            // First byte of user memory.
+  uptr End() const;            // Last byte of user memory.
+  uptr UsedSize() const;       // Size requested by the user.
+  uptr AllocTid() const;
+  uptr FreeTid() const;
   bool Eq(const AsanChunkView &c) const { return chunk_ == c.chunk_; }
-  u32 GetAllocStackId();
-  u32 GetFreeStackId();
-  StackTrace GetAllocStack();
-  StackTrace GetFreeStack();
-  bool AddrIsInside(uptr addr, uptr access_size, sptr *offset) {
+  u32 GetAllocStackId() const;
+  u32 GetFreeStackId() const;
+  StackTrace GetAllocStack() const;
+  StackTrace GetFreeStack() const;
+  AllocType GetAllocType() const;
+  bool AddrIsInside(uptr addr, uptr access_size, sptr *offset) const {
     if (addr >= Beg() && (addr + access_size) <= End()) {
       *offset = addr - Beg();
       return true;
     }
     return false;
   }
-  bool AddrIsAtLeft(uptr addr, uptr access_size, sptr *offset) {
+  bool AddrIsAtLeft(uptr addr, uptr access_size, sptr *offset) const {
     (void)access_size;
     if (addr < Beg()) {
       *offset = Beg() - addr;
@@ -77,7 +81,7 @@ class AsanChunkView {
     }
     return false;
   }
-  bool AddrIsAtRight(uptr addr, uptr access_size, sptr *offset) {
+  bool AddrIsAtRight(uptr addr, uptr access_size, sptr *offset) const {
     if (addr + access_size > End()) {
       *offset = addr - End();
       return true;
@@ -90,6 +94,7 @@ class AsanChunkView {
 };
 
 AsanChunkView FindHeapChunkByAddress(uptr address);
+AsanChunkView FindHeapChunkByAllocBeg(uptr address);
 
 // List of AsanChunks with total size.
 class AsanChunkFifoList: public IntrusiveList<AsanChunk> {
@@ -117,18 +122,36 @@ struct AsanMapUnmapCallback {
 # if defined(__powerpc64__)
 const uptr kAllocatorSpace =  0xa0000000000ULL;
 const uptr kAllocatorSize  =  0x20000000000ULL;  // 2T.
+typedef DefaultSizeClassMap SizeClassMap;
+# elif defined(__aarch64__) && SANITIZER_ANDROID
+const uptr kAllocatorSpace =  0x3000000000ULL;
+const uptr kAllocatorSize  =  0x2000000000ULL;  // 128G.
+typedef VeryCompactSizeClassMap SizeClassMap;
 # elif defined(__aarch64__)
-// AArch64/SANITIZIER_CAN_USER_ALLOCATOR64 is only for 42-bit VMA
+// AArch64/SANITIZER_CAN_USER_ALLOCATOR64 is only for 42-bit VMA
 // so no need to different values for different VMA.
 const uptr kAllocatorSpace =  0x10000000000ULL;
 const uptr kAllocatorSize  =  0x10000000000ULL;  // 3T.
+typedef DefaultSizeClassMap SizeClassMap;
+# elif SANITIZER_WINDOWS
+const uptr kAllocatorSpace = ~(uptr)0;
+const uptr kAllocatorSize  =  0x8000000000ULL;  // 500G
+typedef DefaultSizeClassMap SizeClassMap;
 # else
 const uptr kAllocatorSpace = 0x600000000000ULL;
 const uptr kAllocatorSize  =  0x40000000000ULL;  // 4T.
-# endif
 typedef DefaultSizeClassMap SizeClassMap;
-typedef SizeClassAllocator64<kAllocatorSpace, kAllocatorSize, 0 /*metadata*/,
-    SizeClassMap, AsanMapUnmapCallback> PrimaryAllocator;
+# endif
+struct AP64 {  // Allocator64 parameters. Deliberately using a short name.
+  static const uptr kSpaceBeg = kAllocatorSpace;
+  static const uptr kSpaceSize = kAllocatorSize;
+  static const uptr kMetadataSize = 0;
+  typedef __asan::SizeClassMap SizeClassMap;
+  typedef AsanMapUnmapCallback MapUnmapCallback;
+  static const uptr kFlags = 0;
+};
+
+typedef SizeClassAllocator64<AP64> PrimaryAllocator;
 #else  // Fallback to SizeClassAllocator32.
 static const uptr kRegionSizeLog = 20;
 static const uptr kNumRegions = SANITIZER_MMAP_RANGE_SIZE >> kRegionSizeLog;

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_debugging.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_debugging.cc	Sun Apr  2 16:39:39 2017	(r316422)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_debugging.cc	Sun Apr  2 17:24:58 2017	(r316423)
@@ -14,74 +14,39 @@
 //===----------------------------------------------------------------------===//
 
 #include "asan_allocator.h"
+#include "asan_descriptions.h"
 #include "asan_flags.h"
 #include "asan_internal.h"
 #include "asan_mapping.h"
 #include "asan_report.h"
 #include "asan_thread.h"
 
-namespace __asan {
-
-void GetInfoForStackVar(uptr addr, AddressDescription *descr, AsanThread *t) {
-  descr->name[0] = 0;
-  descr->region_address = 0;
-  descr->region_size = 0;
-  descr->region_kind = "stack";
+namespace {
+using namespace __asan;
 
-  AsanThread::StackFrameAccess access;
-  if (!t->GetStackFrameAccessByAddr(addr, &access))
-    return;
+static void FindInfoForStackVar(uptr addr, const char *frame_descr, uptr offset,
+                                char *name, uptr name_size,
+                                uptr &region_address, uptr &region_size) {
   InternalMmapVector<StackVarDescr> vars(16);
-  if (!ParseFrameDescription(access.frame_descr, &vars)) {
+  if (!ParseFrameDescription(frame_descr, &vars)) {
     return;
   }
 
   for (uptr i = 0; i < vars.size(); i++) {
-    if (access.offset <= vars[i].beg + vars[i].size) {
-      internal_strncat(descr->name, vars[i].name_pos,
-                       Min(descr->name_size, vars[i].name_len));
-      descr->region_address = addr - (access.offset - vars[i].beg);
-      descr->region_size = vars[i].size;
+    if (offset <= vars[i].beg + vars[i].size) {
+      // We use name_len + 1 because strlcpy will guarantee a \0 at the end, so
+      // if we're limiting the copy due to name_len, we add 1 to ensure we copy
+      // the whole name and then terminate with '\0'.
+      internal_strlcpy(name, vars[i].name_pos,
+                       Min(name_size, vars[i].name_len + 1));
+      region_address = addr - (offset - vars[i].beg);
+      region_size = vars[i].size;
       return;
     }
   }
 }
 
-void GetInfoForHeapAddress(uptr addr, AddressDescription *descr) {
-  AsanChunkView chunk = FindHeapChunkByAddress(addr);
-
-  descr->name[0] = 0;
-  descr->region_address = 0;
-  descr->region_size = 0;
-
-  if (!chunk.IsValid()) {
-    descr->region_kind = "heap-invalid";
-    return;
-  }
-
-  descr->region_address = chunk.Beg();
-  descr->region_size = chunk.UsedSize();
-  descr->region_kind = "heap";
-}
-
-void AsanLocateAddress(uptr addr, AddressDescription *descr) {
-  if (DescribeAddressIfShadow(addr, descr, /* print */ false)) {
-    return;
-  }
-  if (GetInfoForAddressIfGlobal(addr, descr)) {
-    return;
-  }
-  asanThreadRegistry().Lock();
-  AsanThread *thread = FindThreadByStackAddress(addr);
-  asanThreadRegistry().Unlock();
-  if (thread) {
-    GetInfoForStackVar(addr, descr, thread);
-    return;
-  }
-  GetInfoForHeapAddress(addr, descr);
-}
-
-static uptr AsanGetStack(uptr addr, uptr *trace, u32 size, u32 *thread_id,
+uptr AsanGetStack(uptr addr, uptr *trace, u32 size, u32 *thread_id,
                          bool alloc_stack) {
   AsanChunkView chunk = FindHeapChunkByAddress(addr);
   if (!chunk.IsValid()) return 0;
@@ -108,18 +73,58 @@ static uptr AsanGetStack(uptr addr, uptr
   return 0;
 }
 
-} // namespace __asan
-
-using namespace __asan;
+}  // namespace
 
 SANITIZER_INTERFACE_ATTRIBUTE
 const char *__asan_locate_address(uptr addr, char *name, uptr name_size,
-                                  uptr *region_address, uptr *region_size) {
-  AddressDescription descr = { name, name_size, 0, 0, nullptr };
-  AsanLocateAddress(addr, &descr);
-  if (region_address) *region_address = descr.region_address;
-  if (region_size) *region_size = descr.region_size;
-  return descr.region_kind;
+                                  uptr *region_address_ptr,
+                                  uptr *region_size_ptr) {
+  AddressDescription descr(addr);
+  uptr region_address = 0;
+  uptr region_size = 0;
+  const char *region_kind = nullptr;
+  if (name && name_size > 0) name[0] = 0;
+
+  if (auto shadow = descr.AsShadow()) {
+    // region_{address,size} are already 0
+    switch (shadow->kind) {
+      case kShadowKindLow:
+        region_kind = "low shadow";
+        break;
+      case kShadowKindGap:
+        region_kind = "shadow gap";
+        break;
+      case kShadowKindHigh:
+        region_kind = "high shadow";
+        break;
+    }
+  } else if (auto heap = descr.AsHeap()) {
+    region_kind = "heap";
+    region_address = heap->chunk_access.chunk_begin;
+    region_size = heap->chunk_access.chunk_size;
+  } else if (auto stack = descr.AsStack()) {
+    region_kind = "stack";
+    if (!stack->frame_descr) {
+      // region_{address,size} are already 0
+    } else {
+      FindInfoForStackVar(addr, stack->frame_descr, stack->offset, name,
+                          name_size, region_address, region_size);
+    }
+  } else if (auto global = descr.AsGlobal()) {
+    region_kind = "global";
+    auto &g = global->globals[0];
+    internal_strlcpy(name, g.name, name_size);
+    region_address = g.beg;
+    region_size = g.size;
+  } else {
+    // region_{address,size} are already 0
+    region_kind = "heap-invalid";
+  }
+
+  CHECK(region_kind);
+  if (region_address_ptr) *region_address_ptr = region_address;
+  if (region_size_ptr) *region_size_ptr = region_size;
+  return region_kind;
 }
 
 SANITIZER_INTERFACE_ATTRIBUTE

Copied: stable/11/contrib/compiler-rt/lib/asan/asan_descriptions.cc (from r314564, head/contrib/compiler-rt/lib/asan/asan_descriptions.cc)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_descriptions.cc	Sun Apr  2 17:24:58 2017	(r316423, copy of r314564, head/contrib/compiler-rt/lib/asan/asan_descriptions.cc)
@@ -0,0 +1,486 @@
+//===-- asan_descriptions.cc ------------------------------------*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file is a part of AddressSanitizer, an address sanity checker.
+//
+// ASan functions for getting information about an address and/or printing it.
+//===----------------------------------------------------------------------===//
+
+#include "asan_descriptions.h"
+#include "asan_mapping.h"
+#include "asan_report.h"
+#include "asan_stack.h"
+#include "sanitizer_common/sanitizer_stackdepot.h"
+
+namespace __asan {
+
+// Return " (thread_name) " or an empty string if the name is empty.
+const char *ThreadNameWithParenthesis(AsanThreadContext *t, char buff[],
+                                      uptr buff_len) {
+  const char *name = t->name;
+  if (name[0] == '\0') return "";
+  buff[0] = 0;
+  internal_strncat(buff, " (", 3);
+  internal_strncat(buff, name, buff_len - 4);
+  internal_strncat(buff, ")", 2);
+  return buff;
+}
+
+const char *ThreadNameWithParenthesis(u32 tid, char buff[], uptr buff_len) {
+  if (tid == kInvalidTid) return "";
+  asanThreadRegistry().CheckLocked();
+  AsanThreadContext *t = GetThreadContextByTidLocked(tid);
+  return ThreadNameWithParenthesis(t, buff, buff_len);
+}
+
+void DescribeThread(AsanThreadContext *context) {
+  CHECK(context);
+  asanThreadRegistry().CheckLocked();
+  // No need to announce the main thread.
+  if (context->tid == 0 || context->announced) {
+    return;
+  }
+  context->announced = true;
+  char tname[128];
+  InternalScopedString str(1024);
+  str.append("Thread T%d%s", context->tid,
+             ThreadNameWithParenthesis(context->tid, tname, sizeof(tname)));
+  if (context->parent_tid == kInvalidTid) {
+    str.append(" created by unknown thread\n");
+    Printf("%s", str.data());
+    return;
+  }
+  str.append(
+      " created by T%d%s here:\n", context->parent_tid,
+      ThreadNameWithParenthesis(context->parent_tid, tname, sizeof(tname)));
+  Printf("%s", str.data());
+  StackDepotGet(context->stack_id).Print();
+  // Recursively described parent thread if needed.
+  if (flags()->print_full_thread_history) {
+    AsanThreadContext *parent_context =
+        GetThreadContextByTidLocked(context->parent_tid);
+    DescribeThread(parent_context);
+  }
+}
+
+// Shadow descriptions
+static bool GetShadowKind(uptr addr, ShadowKind *shadow_kind) {
+  CHECK(!AddrIsInMem(addr));
+  if (AddrIsInShadowGap(addr)) {
+    *shadow_kind = kShadowKindGap;
+  } else if (AddrIsInHighShadow(addr)) {
+    *shadow_kind = kShadowKindHigh;
+  } else if (AddrIsInLowShadow(addr)) {
+    *shadow_kind = kShadowKindLow;
+  } else {
+    CHECK(0 && "Address is not in memory and not in shadow?");
+    return false;
+  }
+  return true;
+}
+
+bool DescribeAddressIfShadow(uptr addr) {
+  ShadowAddressDescription descr;
+  if (!GetShadowAddressInformation(addr, &descr)) return false;
+  descr.Print();
+  return true;
+}
+
+bool GetShadowAddressInformation(uptr addr, ShadowAddressDescription *descr) {
+  if (AddrIsInMem(addr)) return false;
+  ShadowKind shadow_kind;
+  if (!GetShadowKind(addr, &shadow_kind)) return false;
+  if (shadow_kind != kShadowKindGap) descr->shadow_byte = *(u8 *)addr;
+  descr->addr = addr;
+  descr->kind = shadow_kind;
+  return true;
+}
+
+// Heap descriptions
+static void GetAccessToHeapChunkInformation(ChunkAccess *descr,
+                                            AsanChunkView chunk, uptr addr,
+                                            uptr access_size) {
+  descr->bad_addr = addr;
+  if (chunk.AddrIsAtLeft(addr, access_size, &descr->offset)) {
+    descr->access_type = kAccessTypeLeft;
+  } else if (chunk.AddrIsAtRight(addr, access_size, &descr->offset)) {
+    descr->access_type = kAccessTypeRight;
+    if (descr->offset < 0) {
+      descr->bad_addr -= descr->offset;
+      descr->offset = 0;
+    }
+  } else if (chunk.AddrIsInside(addr, access_size, &descr->offset)) {
+    descr->access_type = kAccessTypeInside;
+  } else {
+    descr->access_type = kAccessTypeUnknown;
+  }
+  descr->chunk_begin = chunk.Beg();
+  descr->chunk_size = chunk.UsedSize();
+  descr->alloc_type = chunk.GetAllocType();
+}
+
+static void PrintHeapChunkAccess(uptr addr, const ChunkAccess &descr) {
+  Decorator d;
+  InternalScopedString str(4096);
+  str.append("%s", d.Location());
+  switch (descr.access_type) {
+    case kAccessTypeLeft:
+      str.append("%p is located %zd bytes to the left of",
+                 (void *)descr.bad_addr, descr.offset);
+      break;
+    case kAccessTypeRight:
+      str.append("%p is located %zd bytes to the right of",
+                 (void *)descr.bad_addr, descr.offset);
+      break;
+    case kAccessTypeInside:
+      str.append("%p is located %zd bytes inside of", (void *)descr.bad_addr,
+                 descr.offset);
+      break;
+    case kAccessTypeUnknown:
+      str.append(
+          "%p is located somewhere around (this is AddressSanitizer bug!)",
+          (void *)descr.bad_addr);
+  }
+  str.append(" %zu-byte region [%p,%p)\n", descr.chunk_size,
+             (void *)descr.chunk_begin,
+             (void *)(descr.chunk_begin + descr.chunk_size));
+  str.append("%s", d.EndLocation());
+  Printf("%s", str.data());
+}
+
+bool GetHeapAddressInformation(uptr addr, uptr access_size,
+                               HeapAddressDescription *descr) {
+  AsanChunkView chunk = FindHeapChunkByAddress(addr);
+  if (!chunk.IsValid()) {
+    return false;
+  }
+  descr->addr = addr;
+  GetAccessToHeapChunkInformation(&descr->chunk_access, chunk, addr,
+                                  access_size);
+  CHECK_NE(chunk.AllocTid(), kInvalidTid);
+  descr->alloc_tid = chunk.AllocTid();
+  descr->alloc_stack_id = chunk.GetAllocStackId();
+  descr->free_tid = chunk.FreeTid();
+  if (descr->free_tid != kInvalidTid)
+    descr->free_stack_id = chunk.GetFreeStackId();
+  return true;
+}
+
+static StackTrace GetStackTraceFromId(u32 id) {
+  CHECK(id);
+  StackTrace res = StackDepotGet(id);
+  CHECK(res.trace);
+  return res;
+}
+
+bool DescribeAddressIfHeap(uptr addr, uptr access_size) {
+  HeapAddressDescription descr;
+  if (!GetHeapAddressInformation(addr, access_size, &descr)) {
+    Printf(
+        "AddressSanitizer can not describe address in more detail "
+        "(wild memory access suspected).\n");
+    return false;
+  }
+  descr.Print();
+  return true;
+}
+
+// Stack descriptions
+bool GetStackAddressInformation(uptr addr, uptr access_size,
+                                StackAddressDescription *descr) {
+  AsanThread *t = FindThreadByStackAddress(addr);
+  if (!t) return false;
+
+  descr->addr = addr;
+  descr->tid = t->tid();
+  // Try to fetch precise stack frame for this access.
+  AsanThread::StackFrameAccess access;
+  if (!t->GetStackFrameAccessByAddr(addr, &access)) {
+    descr->frame_descr = nullptr;
+    return true;
+  }
+
+  descr->offset = access.offset;
+  descr->access_size = access_size;
+  descr->frame_pc = access.frame_pc;
+  descr->frame_descr = access.frame_descr;
+
+#if SANITIZER_PPC64V1
+  // On PowerPC64 ELFv1, the address of a function actually points to a
+  // three-doubleword data structure with the first field containing
+  // the address of the function's code.
+  descr->frame_pc = *reinterpret_cast<uptr *>(descr->frame_pc);
+#endif
+  descr->frame_pc += 16;
+
+  return true;
+}
+
+static void PrintAccessAndVarIntersection(const StackVarDescr &var, uptr addr,
+                                          uptr access_size, uptr prev_var_end,
+                                          uptr next_var_beg) {
+  uptr var_end = var.beg + var.size;
+  uptr addr_end = addr + access_size;
+  const char *pos_descr = nullptr;
+  // If the variable [var.beg, var_end) is the nearest variable to the
+  // current memory access, indicate it in the log.
+  if (addr >= var.beg) {
+    if (addr_end <= var_end)
+      pos_descr = "is inside";  // May happen if this is a use-after-return.

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-src-all mailing list