Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 03 Sep 2019 14:07:00 -0000
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r346296 - in stable/11: . contrib/compiler-rt contrib/compiler-rt/include/sanitizer contrib/compiler-rt/include/xray contrib/compiler-rt/lib/asan contrib/compiler-rt/lib/builtins contri...
Message-ID:  <201904162005.x3GK5SUZ019987@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Tue Apr 16 20:05:24 2019
New Revision: 346296
URL: https://svnweb.freebsd.org/changeset/base/346296

Log:
  Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
  8.0.0 final release r356365.
  
  MFC r306265 (by emaste):
  
  Force LLVM_LIBUNWIND off if we don't have a C++11 compiler
  
  Tested by:	bde
  Differential Revision:	https://reviews.freebsd.org/D7746
  
  MFC r308100 (by emaste):
  
  compile libunwind c source with -fexceptions
  
  When an exception is thrown the unwinder must unwind its own C source
  (starting with _Unwind_RaiseException in UnwindLevel1.c), so it needs to
  be built with unwinding data.
  
  MFC r324998 (by bdrewery):
  
  Prefix {TARGET,BUILD}_TRIPLE with LLVM_ to avoid Makefile.inc1 collision.
  
  The Makefile.inc1 TARGET_TRIPLE is for specifying which -target is used
  during the build of world.
  
  Reviewed by:	dim, imp
  Sponsored by:	Dell EMC Isilon
  Differential Revision:	https://reviews.freebsd.org/D12792
  
  MFC r329093 (by emaste):
  
  Promote llvm-cov to a standalone option
  
  Introduce WITH_/WITHOUT_LLVM_COV to match GCC's WITH_/WITHOUT_GCOV.
  It is intended to provide a superset of the interface and functionality
  of gcov.
  
  It is enabled by default when building Clang, similarly to gcov and GCC.
  
  This change moves one file in libllvm to be compiled unconditionally.
  Previously it was included only when WITH_CLANG_EXTRAS was set, but the
  complexity of a new special case for (CLANG_EXTRAS | LLVM_COV) is not
  worth avoiding a tiny increase in build time.
  
  Reviewed by:	dim, imp
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D142645
  
  MFC r331244 (by jhb):
  
  Add support for MIPS to LLVM's libunwind.
  
  This is originally based on a patch from David Chisnall for soft-float
  N64 but has since been updated to support O32, N32, and hard-float ABIs.
  The soft-float O32, N32, and N64 support has been committed upstream.
  The hard-float changes are still in review upstream.
  
  Enable LLVM_LIBUNWIND on mips when building with a suitable (C+11-capable)
  toolchain.  This has been tested with external GCC for all ABIs and
  O32 and N64 with clang.
  
  Reviewed by:	emaste
  Obtained from:	CheriBSD (original N64 patch)
  Sponsored by:	DARPA / AFRL
  Differential Revision:	https://reviews.freebsd.org/D14701
  
  MFC r336691 (by emaste):
  
  llvm: remove __FreeBSD_version conditionals
  
  All supported FreeBSD build host versions have backtrace.h, so we can
  just eliminate that test.  For futimes() we can test the compiler's
  built-in __FreeBSD__ major version rather than relying on including
  osreldate.h.  This should reduce the frequency with which Clang gets
  rebuilt when building world.
  
  Reviewed by:	dim
  Sponsored by:	The FreeBSD Foundation
  
  MFC r337379 (by andrew):
  
  Default to armv5te in LINT on arm. This should fix building LINT there.
  
  MFC r337552:
  
  Add optional LLVM BPF target support
  
  BPF (eBPF) is an independent instruction set architecture which is
  introduced in Linux a few years ago. Originally, eBPF execute
  environment was only inside Linux kernel. However, recent years there
  are some user space implementation (https://github.com/iovisor/ubpf,
  https://doc.dpdk.org/guides/prog_guide/bpf_lib.html) and kernel space
  implementation for FreeBSD is going on
  (https://github.com/YutaroHayakawa/generic-ebpf).
  
  The BPF target support can be enabled using WITH_LLVM_TARGET_BPF, as it
  is not built by default.
  
  Submitted by:	Yutaro Hayakawa <yhayakawa3720@gmail.com>
  Reviewed by:	dim, bdrewery
  Differential Revision: https://reviews.freebsd.org/D16033
  
  MFC r337585:
  
  In r308100, an explicit -fexceptions flag was added for the C sources
  from LLVM's libunwind, which end up in libgcc_eh.a and libgcc_s.so.
  This is because the unwinder needs the unwinder data for its own
  functions.
  
  However, for the C++ sources in libunwind, -fexceptions is already the
  default, and this can have the side effect of generating a reference to
  __gxx_personality_v0, the so-called personality function, which is
  normally provided by the C++ ABI library (libcxxrt or libsupc++).
  
  If the reference ends up in the eventual libgcc_s.so, linking any
  non-C++ programs against it will fail with "undefined reference to
  `__gxx_personality_v0'".
  
  Note that at high optimization levels, the reference is usually
  optimized away, which is why we have never noticed this problem before.
  
  With clang 7.0.0 though, higher optimization levels don't help anymore,
  since the addition of address-significance tables [1] in
  <https://reviews.llvm.org/rL337339>.  Effectively, this always causes a
  reference to __gxx_personality_v0.
  
  After discussion with the upstream author of that change, it turns out
  that we should compile libunwind sources with the -fno-exceptions
  -funwind-tables flags instead.  This ensures unwind tables are
  generated, but no references to any personality functions are emitted.
  
  [1] https://lists.llvm.org/pipermail/llvm-dev/2018-May/123514.html
  
  Reported by:	jbeich
  PR:		230399
  
  MFC r340287 (by emaste):
  
  Consolidate gcov entries in OptionalObsoleteFiles
  
  Sponsored by:	The FreeBSD Foundation
  
  MFC r340289 (by emaste):
  
  llvm-cov: also install as gcov (if GNU gcov is disabled)
  
  llvm-cov provides a gcov-compatible interface when invoked as gcov.
  
  Reviewed by:	dim, markj
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D17923
  
  MFC r340296 (by emaste):
  
  Move llvm-profdata build into MK_LLVM_COV block
  
  llvm-profdata is used with llvm-cov for code coverage (although llvm-cov
  can also operate independently in a gcov-compatible mode).
  Although llvm-profdata can be used independently of llvm-cov it makes
  sense to group these under one option.
  
  Also handle these in OptionalObsoleteFiles.inc while here.
  
  Sponsored by:	The FreeBSD Foundation
  
  MFC r340300 (by emaste):
  
  libllvm: Move SampleProfWriter to SRCS_MIN
  
  It is required by llvm-profdata, now built by default under the
  LLVM_COV knob.  The additional complexity that would come from avoiding
  building it if CLANG_EXTRAS and LLVM_COV are both disabled is not worth
  the small savings in build time.
  
  Sponsored by:	The FreeBSD Foundation
  
  MFC r340972 (by emaste):
  
  llvm-objdump: initial man page
  
  Based on llvm-objdump's online documentation and usage information.
  This serves as a starting point; additional detail and cleanup still
  required.
  
  Also being submitted upstream in LLVM review D54864.  I expect to use
  this bespoke copy while we have LLVM 6.0 or 7.0 in FreeBSD; when we
  update to LLVM 8.0 it should be upstream and we will switch to it.
  
  PR:		233437
  Reviewed by:	bcr (man formatting)
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D18309
  
  MFC r340973 (by emaste):
  
  llvm-objdump.1: remove invalid options
  
  Some options appear in llvm-objdump's usage information as a side effect
  of its option parsing implementation and are not actually llvm-objdump
  options.  Reported in LLVM review https://reviews.llvm.org/D54864.
  
  Reported by:	Fangrui Song
  Sponsored by:	The FreeBSD Foundation
  
  MFC r340975 (by emaste):
  
  llvm-objdump.1: fix igor / mandoc -Tlint warnings
  
  Accidentally omitted from r340972.
  
  MFC r341055 (by emaste):
  
  llvm-objdump.1: remove more unintentional options
  
  Some options come from static constructors in LLVM libraries and are
  automatically added to llvm's usage output.  They're not really supposed
  to be llvm-objdump options.
  
  Reported by:	Fangrui Song in LLVM review D54864
  Sponsored by:	The FreeBSD Foundation
  
  MFC r344779:
  
  Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
  the upstream release_80 branch r355313 (effectively, 8.0.0 rc3).  The
  release will follow very soon, but no more functional changes are
  expected.
  
  Release notes for llvm, clang and lld 8.0.0 will soon be available here:
  <https://releases.llvm.org/8.0.0/docs/ReleaseNotes.html>;
  <https://releases.llvm.org/8.0.0/tools/clang/docs/ReleaseNotes.html>;
  <https://releases.llvm.org/8.0.0/tools/lld/docs/ReleaseNotes.html>;
  
  PR:		236062
  Relnotes:	yes
  
  MFC r344798 (by emaste):
  
  libllvm: promote WithColor and xxhash to SRCS_MIN
  
  The armv6 build failed in CI due to missing symbols (from these two
  source files) in the bootstrap Clang.
  
  This affected only armv6 because other Clang-using archs are using LLD
  as the bootstrap linker, and thus include SRCS_MIW via LLD_BOOTSTRAP.
  
  Reported by:	CI, via lwhsu
  Sponsored by:	The FreeBSD Foundation
  
  MFC r344825:
  
  Add a few missed files to the MK_LLVM_TARGET_BPF=yes case, otherwise
  clang and various other executables will fail to link with undefined
  symbols.
  
  Reported by:	O. Hartmann <ohartmann@walstatt.org>
  
  MFC r344852:
  
  Put in a temporary workaround for what is likely a gcc 6 bug (it does
  not occur with gcc 7 or later).  This should prevent the following error
  from breaking the head-amd64-gcc CI builds:
  
  In file included from /workspace/src/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp:14:0:
  /workspace/src/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h:128:54: error: 'template<class _InputIterator> lldb_private::MemoryRegionInfos::MemoryRegionInfos(_InputIterator, _InputIterator, const allocator_type&)' inherited from 'std::__1::vector<lldb_private::MemoryRegionInfo>'
     using std::vector<lldb_private::MemoryRegionInfo>::vector;
                                                        ^~~~~~
  /workspace/src/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h:128:54: error: conflicts with version inherited from 'std::__1::vector<lldb_private::MemoryRegionInfo>'
  
  Reported by:	CI
  
  MFC r344896:
  
  Pull in r354937 from upstream clang trunk (by Jörg Sonnenberger):
  
    Fix inline assembler constraint validation
  
    The current constraint logic is both too lax and too strict. It fails
    for input outside the [INT_MIN..INT_MAX] range, but it also
    implicitly accepts 0 as value when it should not. Adjust logic to
    handle both correctly.
  
    Differential Revision: https://reviews.llvm.org/D58649
  
  Pull in r355491 from upstream clang trunk (by Hans Wennborg):
  
    Inline asm constraints: allow ICE-like pointers for the "n"
    constraint (PR40890)
  
    Apparently GCC allows this, and there's code relying on it (see bug).
  
    The idea is to allow expression that would have been allowed if they
    were cast to int. So I based the code on how such a cast would be
    done (the CK_PointerToIntegral case in
    IntExprEvaluator::VisitCastExpr()).
  
    Differential Revision: https://reviews.llvm.org/D58821
  
  These should fix assertions and errors when using the inline assembly
  "n" constraint in certain ways.
  
  In case of devel/valgrind, a pointer was used as the input for the
  constraint, which lead to "Assertion failed: (isInt() && "Invalid
  accessor"), function getInt".
  
  In case of math/secp256k1, a very large integer value was used as input
  for the constraint, which lead to "error: value '4624529908474429119'
  out of range for constraint 'n'".
  
  PR:             236216, 236194
  
  MFC r344951:
  
  Merge llvm, clang, compiler-rt, libc++, lld, and lldb release_80 branch
  r355677 (effectively, 8.0.0 rc4), resolve conflicts, and bump version
  numbers.
  
  PR:		236062
  
  MFC r345018:
  
  Merge LLVM libunwind trunk r351319, from just before upstream's
  release_80 branch point.  Afterwards, we will merge the rest of the
  changes in the actual release_80 branch.
  
  PR:		236062
  
  MFC r345019:
  
  Merge LLVM libunwind release_80 branch r355677 (effectively, 8.0.0 rc4).
  
  PR:		236062
  
  MFC r345021:
  
  Pull in r355854 from upstream llvm trunk (by Jonas Paulsson):
  
    [RegAlloc]  Avoid compile time regression with multiple copy hints.
  
    As a fix for https://bugs.llvm.org/show_bug.cgi?id=40986 ("excessive
    compile time building opencollada"), this patch makes sure that no
    phys reg is hinted more than once from getRegAllocationHints().
  
    This handles the case were many virtual registers are assigned to the
    same physreg. The previous compile time fix (r343686) in
    weightCalcHelper() only made sure that physical/virtual registers are
    passed no more than once to addRegAllocationHint().
  
    Review: Dimitry Andric, Quentin Colombet
    https://reviews.llvm.org/D59201
  
  This should fix a hang when compiling certain generated .cpp files in
  the graphics/opencollada port.
  
  PR:		236313
  
  MFC r345068 (by jhb):
  
  Move libunwind out of contrib/llvm/projects.
  
  Move LLVM's libunwind to its own contrib/ directory similar to other
  runtime libraries like libc++ and libcxxrt.
  
  Reviewed by:	dim, emaste
  Differential Revision:	https://reviews.freebsd.org/D19534
  
  MFC r345073:
  
  Revert r308867 (which was originally committed in the clang390-import
  project branch):
  
    Work around LLVM PR30879, which is about a bad interaction between
    X86 Call Frame Optimization on i386 and libunwind, by disallowing the
    optimization for i386-freebsd12.
  
    This should fix some instances of broken exception handling when
    frame pointers are omitted, in particular some unittests run during
    the build of editors/libreoffice.
  
    This hack will be removed as soon as upstream has implemented a more
    permanent fix for this problem.
  
  And indeed, after r345018 and r345019, which updated LLVM libunwind to
  the most recent version, the above workaround is no longer needed.  The
  upstream commit which fixed this is:
  
    https://llvm.org/viewvc/llvm-project?view=revision&revision=292723
  
  Specifically, 32 bit (i386-freebsd) executables optimized with omitted
  frame pointers and Call Frame Optimization should now behave correctly
  when a C++ exception is thrown, and the stack is unwound.
  
  Upstream PR:	https://llvm.org/bugs/show_bug.cgi?id=30879
  PR:		236062
  
  MFC r345152:
  
  Merge llvm, clang, compiler-rt, libc++, libunwind, lld, and lldb
  release_80 branch r356034 (effectively, 8.0.0 rc5), resolve conflicts,
  and bump version numbers.
  
  PR:		236062
  
  MFC r345231:
  
  Add LLVM openmp trunk r351319 (just before the release_80 branch point)
  to contrib/llvm.  This is not yet connected to the build, the glue for
  that will come in a follow-up commit.
  
  PR:		236062
  
  MFC r345232:
  
  Bootstrap svn:mergeinfo on contrib/openmp.
  
  PR:		236062
  
  MFC r345233:
  
  Merge openmp release_80 branch r356034 (effectively, 8.0.0 rc5).
  
  PR:		236062
  
  MFC r345234:
  
  Add openmp __kmp_gettid() wrapper, using pthread_getthreadid_np(3).
  This has also been submitted upstream.
  
  PR:           236062
  
  MFC r345283:
  
  Enable building libomp.so for 32-bit x86.  This is done by selectively
  enabling the functions that save and restore MXCSR, since access to this
  register requires SSE support.
  
  Note that you may run into other issues with OpenMP on i386, since this
  *not* yet supported upstream, and certainly not extensively tested.
  
  PR:		236062, 236582
  
  MFC r345345:
  
  Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
  8.0.0 final release r356365.  There were no functional changes since the
  most recent merge, of 8.0.0 rc5.
  
  Release notes for llvm, clang, lld and libc++ 8.0.0 are now available:
  
  https://llvm.org/releases/8.0.0/docs/ReleaseNotes.html
  https://llvm.org/releases/8.0.0/tools/clang/docs/ReleaseNotes.html
  https://llvm.org/releases/8.0.0/tools/lld/docs/ReleaseNotes.html
  https://llvm.org/releases/8.0.0/projects/libcxx/docs/ReleaseNotes.html
  
  PR:		236062
  
  MFC r345349:
  
  Pull in r352826 from upstream lld trunk (by Fangrui Song):
  
    [ELF] Support --{,no-}allow-shlib-undefined
  
    Summary:
    In ld.bfd/gold, --no-allow-shlib-undefined is the default when
    linking an executable. This patch implements a check to error on
    undefined symbols in a shared object, if all of its DT_NEEDED entries
    are seen.
  
    Our approach resembles the one used in gold, achieves a good balance
    to be useful but not too smart (ld.bfd traces all DSOs and emulates
    the behavior of a dynamic linker to catch more cases).
  
    The error is issued based on the symbol table, different from
    undefined reference errors issued for relocations. It is most
    effective when there are DSOs that were not linked with -z defs (e.g.
    when static sanitizers runtime is used).
  
    gold has a comment that some system libraries on GNU/Linux may have
    spurious undefined references and thus system libraries should be
    excluded (https://sourceware.org/bugzilla/show_bug.cgi?id=6811). The
    story may have changed now but we make --allow-shlib-undefined the
    default for now. Its interaction with -shared can be discussed in the
    future.
  
    Reviewers: ruiu, grimar, pcc, espindola
  
    Reviewed By: ruiu
  
    Subscribers: joerg, emaste, arichardson, llvm-commits
  
    Differential Revision: https://reviews.llvm.org/D57385
  
  Pull in r352943 from upstream lld trunk (by Fangrui Song):
  
    [ELF] Default to --no-allow-shlib-undefined for executables
  
    Summary:
    This follows the ld.bfd/gold behavior.
  
    The error check is useful as it captures a common type of ld.so
    undefined symbol errors as link-time errors:
  
        // a.cc => a.so (not linked with -z defs)
        void f(); // f is undefined
        void g() { f(); }
  
        // b.cc => executable with a DT_NEEDED entry on a.so
        void g();
        int main() { g(); }
  
        // ld.so errors when g() is executed (lazy binding) or when the program is started (-z now)
        // symbol lookup error: ... undefined symbol: f
  
    Reviewers: ruiu, grimar, pcc, espindola
  
    Reviewed By: ruiu
  
    Subscribers: llvm-commits, emaste, arichardson
  
    Tags: #llvm
  
    Differential Revision: https://reviews.llvm.org/D57569
  
  Together, these add support for --no-allow-shlib-undefined, and make it
  the default for executables, so they will fail to link if any symbols
  from needed shared libraries are undefined.
  
  Reported by:	jbeich
  PR:		236062, 236141
  
  MFC r345449:
  
  Pull in r356809 from upstream llvm trunk (by Eli Friedman):
  
    [ARM] Don't form "ands" when it isn't scheduled correctly.
  
    In r322972/r323136, the iteration here was changed to catch cases at
    the beginning of a basic block... but we accidentally deleted an
    important safety check.  Restore that check to the way it was.
  
    Fixes https://bugs.llvm.org/show_bug.cgi?id=41116
  
    Differential Revision: https://reviews.llvm.org/D59680
  
  This should fix "Assertion failed: (LiveCPSR && "CPSR liveness tracking
  is wrong!"), function UpdateCPSRUse" errors when building the devel/xwpe
  port for armv7.
  
  PR:		236062, 236568

Added:
  stable/11/contrib/compiler-rt/lib/builtins/ppc/fixunstfti.c
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/builtins/ppc/fixunstfti.c
  stable/11/contrib/compiler-rt/lib/builtins/ppc/floattitf.c
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/builtins/ppc/floattitf.c
  stable/11/contrib/compiler-rt/lib/esan/esan_sideline_bsd.cpp
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/esan/esan_sideline_bsd.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltins.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltins.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWindows.cpp
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWindows.cpp
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_checks.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/hwasan/hwasan_checks.h
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_memintrinsics.cc
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/hwasan/hwasan_memintrinsics.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.cc
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_local_address_space_view.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_local_address_space_view.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_ring_buffer.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_ring_buffer.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.h
  stable/11/contrib/compiler-rt/lib/xray/xray_fdr_controller.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/xray/xray_fdr_controller.h
  stable/11/contrib/compiler-rt/lib/xray/xray_fdr_log_writer.h
     - copied unchanged from r344779, head/contrib/compiler-rt/lib/xray/xray_fdr_log_writer.h
  stable/11/contrib/libc++/include/bit
     - copied unchanged from r344779, head/contrib/libc++/include/bit
     - copied from r345068, head/contrib/libunwind/
  stable/11/contrib/llvm/include/llvm-c/Error.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm-c/Error.h
  stable/11/contrib/llvm/include/llvm-c/OptRemarks.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm-c/OptRemarks.h
  stable/11/contrib/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
  stable/11/contrib/llvm/include/llvm-c/Transforms/Coroutines.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm-c/Transforms/Coroutines.h
  stable/11/contrib/llvm/include/llvm/ADT/bit.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/ADT/bit.h
  stable/11/contrib/llvm/include/llvm/Analysis/GuardUtils.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/GuardUtils.h
  stable/11/contrib/llvm/include/llvm/Analysis/IVDescriptors.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/IVDescriptors.h
  stable/11/contrib/llvm/include/llvm/Analysis/IndirectCallVisitor.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/IndirectCallVisitor.h
  stable/11/contrib/llvm/include/llvm/Analysis/InstructionPrecedenceTracking.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/InstructionPrecedenceTracking.h
  stable/11/contrib/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/OrderedInstructions.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/OrderedInstructions.h
  stable/11/contrib/llvm/include/llvm/Analysis/StackSafetyAnalysis.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/StackSafetyAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/AMDGPUMetadataVerifier.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/AMDGPUMetadataVerifier.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/MSP430.def
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/MSP430.def
  stable/11/contrib/llvm/include/llvm/BinaryFormat/MsgPack.def
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPack.def
  stable/11/contrib/llvm/include/llvm/BinaryFormat/MsgPack.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPack.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/MsgPackReader.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPackReader.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/MsgPackTypes.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPackTypes.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/MsgPackWriter.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPackWriter.h
  stable/11/contrib/llvm/include/llvm/CodeGen/AsmPrinterHandler.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/AsmPrinterHandler.h
  stable/11/contrib/llvm/include/llvm/CodeGen/BuiltinGCs.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/BuiltinGCs.h
  stable/11/contrib/llvm/include/llvm/CodeGen/DbgEntityHistoryCalculator.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/DbgEntityHistoryCalculator.h
  stable/11/contrib/llvm/include/llvm/CodeGen/DebugHandlerBase.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/DebugHandlerBase.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachinePipeliner.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/MachinePipeliner.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBFrameData.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBFrameData.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
  stable/11/contrib/llvm/include/llvm/Demangle/Compiler.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/Compiler.h
  stable/11/contrib/llvm/include/llvm/Demangle/ItaniumDemangle.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/ItaniumDemangle.h
  stable/11/contrib/llvm/include/llvm/Demangle/MicrosoftDemangle.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/MicrosoftDemangle.h
  stable/11/contrib/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
  stable/11/contrib/llvm/include/llvm/Demangle/StringView.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/StringView.h
  stable/11/contrib/llvm/include/llvm/Demangle/Utility.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/Utility.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
  stable/11/contrib/llvm/include/llvm/IR/CFGDiff.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/IR/CFGDiff.h
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsRISCV.td
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/IR/IntrinsicsRISCV.td
  stable/11/contrib/llvm/include/llvm/IR/PassInstrumentation.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/IR/PassInstrumentation.h
  stable/11/contrib/llvm/include/llvm/IR/PassTimingInfo.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/IR/PassTimingInfo.h
  stable/11/contrib/llvm/include/llvm/LTO/SummaryBasedOptimizations.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/LTO/SummaryBasedOptimizations.h
  stable/11/contrib/llvm/include/llvm/MCA/
     - copied from r344779, head/contrib/llvm/include/llvm/MCA/
  stable/11/contrib/llvm/include/llvm/Passes/StandardInstrumentations.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Passes/StandardInstrumentations.h
  stable/11/contrib/llvm/include/llvm/Support/AArch64TargetParser.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/AArch64TargetParser.h
  stable/11/contrib/llvm/include/llvm/Support/ARMTargetParser.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/ARMTargetParser.h
  stable/11/contrib/llvm/include/llvm/Support/BuryPointer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/BuryPointer.h
  stable/11/contrib/llvm/include/llvm/Support/CFGUpdate.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/CFGUpdate.h
  stable/11/contrib/llvm/include/llvm/Support/FileCheck.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/FileCheck.h
  stable/11/contrib/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
  stable/11/contrib/llvm/include/llvm/Support/MSVCErrorWorkarounds.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/MSVCErrorWorkarounds.h
  stable/11/contrib/llvm/include/llvm/Support/SymbolRemappingReader.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/SymbolRemappingReader.h
  stable/11/contrib/llvm/include/llvm/Support/VirtualFileSystem.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/VirtualFileSystem.h
  stable/11/contrib/llvm/include/llvm/Target/TargetPfmCounters.td
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Target/TargetPfmCounters.td
  stable/11/contrib/llvm/include/llvm/TextAPI/
     - copied from r344779, head/contrib/llvm/include/llvm/TextAPI/
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
  stable/11/contrib/llvm/include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
  stable/11/contrib/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
  stable/11/contrib/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/Scalarizer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Scalar/Scalarizer.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/WarnMissedTransforms.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Scalar/WarnMissedTransforms.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/CanonicalizeAliases.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Utils/CanonicalizeAliases.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/GuardUtils.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Utils/GuardUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
  stable/11/contrib/llvm/include/llvm/XRay/BlockIndexer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/BlockIndexer.h
  stable/11/contrib/llvm/include/llvm/XRay/BlockPrinter.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/BlockPrinter.h
  stable/11/contrib/llvm/include/llvm/XRay/BlockVerifier.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/BlockVerifier.h
  stable/11/contrib/llvm/include/llvm/XRay/FDRLogBuilder.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRLogBuilder.h
  stable/11/contrib/llvm/include/llvm/XRay/FDRRecordConsumer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRRecordConsumer.h
  stable/11/contrib/llvm/include/llvm/XRay/FDRRecordProducer.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRRecordProducer.h
  stable/11/contrib/llvm/include/llvm/XRay/FDRRecords.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRRecords.h
  stable/11/contrib/llvm/include/llvm/XRay/FDRTraceExpander.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRTraceExpander.h
  stable/11/contrib/llvm/include/llvm/XRay/FDRTraceWriter.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRTraceWriter.h
  stable/11/contrib/llvm/include/llvm/XRay/FileHeaderReader.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FileHeaderReader.h
  stable/11/contrib/llvm/include/llvm/XRay/Profile.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/Profile.h
  stable/11/contrib/llvm/include/llvm/XRay/RecordPrinter.h
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/RecordPrinter.h
  stable/11/contrib/llvm/include/llvm/module.extern.modulemap
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/module.extern.modulemap
  stable/11/contrib/llvm/include/llvm/module.install.modulemap
     - copied unchanged from r344779, head/contrib/llvm/include/llvm/module.install.modulemap
  stable/11/contrib/llvm/lib/Analysis/GuardUtils.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Analysis/GuardUtils.cpp
  stable/11/contrib/llvm/lib/Analysis/IVDescriptors.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Analysis/IVDescriptors.cpp
  stable/11/contrib/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
  stable/11/contrib/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/OrderedInstructions.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Analysis/OrderedInstructions.cpp
  stable/11/contrib/llvm/lib/Analysis/StackSafetyAnalysis.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Analysis/StackSafetyAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
  stable/11/contrib/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
  stable/11/contrib/llvm/lib/BinaryFormat/MsgPackReader.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/BinaryFormat/MsgPackReader.cpp
  stable/11/contrib/llvm/lib/BinaryFormat/MsgPackTypes.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/BinaryFormat/MsgPackTypes.cpp
  stable/11/contrib/llvm/lib/BinaryFormat/MsgPackWriter.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/BinaryFormat/MsgPackWriter.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.h
     - copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.h
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/GISelChangeObserver.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/GlobalISel/GISelChangeObserver.cpp
  stable/11/contrib/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordHelpers.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordHelpers.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAFrameData.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAFrameData.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypePointer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypePointer.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeTypedef.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeTypedef.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeVTShape.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeVTShape.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolCache.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolCache.cpp
  stable/11/contrib/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
  stable/11/contrib/llvm/lib/IR/PassInstrumentation.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/IR/PassInstrumentation.cpp
  stable/11/contrib/llvm/lib/IR/PassTimingInfo.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/IR/PassTimingInfo.cpp
  stable/11/contrib/llvm/lib/LTO/SummaryBasedOptimizations.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/LTO/SummaryBasedOptimizations.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/WasmAsmParser.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/MC/MCParser/WasmAsmParser.cpp
  stable/11/contrib/llvm/lib/MCA/
     - copied from r344779, head/contrib/llvm/lib/MCA/
  stable/11/contrib/llvm/lib/OptRemarks/
     - copied from r344779, head/contrib/llvm/lib/OptRemarks/
  stable/11/contrib/llvm/lib/Passes/StandardInstrumentations.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Passes/StandardInstrumentations.cpp
  stable/11/contrib/llvm/lib/Support/AArch64TargetParser.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Support/AArch64TargetParser.cpp
  stable/11/contrib/llvm/lib/Support/ARMTargetParser.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Support/ARMTargetParser.cpp
  stable/11/contrib/llvm/lib/Support/BuryPointer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Support/BuryPointer.cpp
  stable/11/contrib/llvm/lib/Support/FileCheck.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Support/FileCheck.cpp
  stable/11/contrib/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
  stable/11/contrib/llvm/lib/Support/SymbolRemappingReader.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Support/SymbolRemappingReader.cpp
  stable/11/contrib/llvm/lib/Support/VirtualFileSystem.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Support/VirtualFileSystem.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64BranchTargets.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64BranchTargets.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64PfmCounters.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64PfmCounters.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUFixFunctionBitcasts.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUFixFunctionBitcasts.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFMIChecking.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BPFMIChecking.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BTF.def
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BTF.def
  stable/11/contrib/llvm/lib/Target/BPF/BTF.h
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BTF.h
  stable/11/contrib/llvm/lib/Target/BPF/BTFDebug.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BTFDebug.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BTFDebug.h
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BTFDebug.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV5.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV5.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV5.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV5.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV66.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV66.td
  stable/11/contrib/llvm/lib/Target/MSP430/AsmParser/
     - copied from r344779, head/contrib/llvm/lib/Target/MSP430/AsmParser/
  stable/11/contrib/llvm/lib/Target/MSP430/Disassembler/
     - copied from r344779, head/contrib/llvm/lib/Target/MSP430/Disassembler/
  stable/11/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h
  stable/11/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.h
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCPfmCounters.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/PowerPC/PPCPfmCounters.td
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVSystemOperands.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/RISCV/RISCVSystemOperands.td
  stable/11/contrib/llvm/lib/Target/RISCV/Utils/
     - copied from r344779, head/contrib/llvm/lib/Target/RISCV/Utils/
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.h
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyEHRestoreStackPointer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyEHRestoreStackPointer.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86CondBrFolding.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/X86/X86CondBrFolding.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86DiscriminateMemOps.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/X86/X86DiscriminateMemOps.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86InsertPrefetch.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/X86/X86InsertPrefetch.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86ScheduleBdVer2.td
     - copied unchanged from r344779, head/contrib/llvm/lib/Target/X86/X86ScheduleBdVer2.td
  stable/11/contrib/llvm/lib/Testing/Support/SupportHelpers.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Testing/Support/SupportHelpers.cpp
  stable/11/contrib/llvm/lib/TextAPI/
     - copied from r344779, head/contrib/llvm/lib/TextAPI/
  stable/11/contrib/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/GuardUtils.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Utils/GuardUtils.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
  stable/11/contrib/llvm/lib/XRay/BlockIndexer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/BlockIndexer.cpp
  stable/11/contrib/llvm/lib/XRay/BlockPrinter.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/BlockPrinter.cpp
  stable/11/contrib/llvm/lib/XRay/BlockVerifier.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/BlockVerifier.cpp
  stable/11/contrib/llvm/lib/XRay/FDRRecordProducer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/FDRRecordProducer.cpp
  stable/11/contrib/llvm/lib/XRay/FDRRecords.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/FDRRecords.cpp
  stable/11/contrib/llvm/lib/XRay/FDRTraceExpander.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/FDRTraceExpander.cpp
  stable/11/contrib/llvm/lib/XRay/FDRTraceWriter.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/FDRTraceWriter.cpp
  stable/11/contrib/llvm/lib/XRay/FileHeaderReader.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/FileHeaderReader.cpp
  stable/11/contrib/llvm/lib/XRay/LogBuilderConsumer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/LogBuilderConsumer.cpp
  stable/11/contrib/llvm/lib/XRay/Profile.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/Profile.cpp
  stable/11/contrib/llvm/lib/XRay/RecordInitializer.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/RecordInitializer.cpp
  stable/11/contrib/llvm/lib/XRay/RecordPrinter.cpp
     - copied unchanged from r344779, head/contrib/llvm/lib/XRay/RecordPrinter.cpp
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTContextAllocate.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/ASTContextAllocate.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTDumperUtils.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/ASTDumperUtils.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTImporterLookupTable.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/ASTImporterLookupTable.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/AttrVisitor.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/AttrVisitor.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/FormatString.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/FormatString.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/OSLog.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/OSLog.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TemplateArgumentVisitor.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/TemplateArgumentVisitor.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TextNodeDumper.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/TextNodeDumper.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/SelectorExtras.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Analysis/SelectorExtras.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.def
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAST.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAST.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysis.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysis.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticComment.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticComment.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTU.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTU.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriver.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriver.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontend.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontend.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLex.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLex.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParse.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParse.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoring.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoring.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSema.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSema.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerialization.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerialization.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/FixedPoint.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/FixedPoint.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/MSP430Target.def
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/MSP430Target.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensionTypes.def
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensionTypes.def
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/DarwinSDKInfo.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Driver/DarwinSDKInfo.h
  stable/11/contrib/llvm/tools/clang/include/clang/Parse/LoopHint.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Parse/LoopHint.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/PCHContainerOperations.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Serialization/PCHContainerOperations.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
  stable/11/contrib/llvm/tools/clang/lib/AST/ASTImporterLookupTable.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/ASTImporterLookupTable.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/FormatString.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/FormatString.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/FormatStringParsing.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/FormatStringParsing.h
  stable/11/contrib/llvm/tools/clang/lib/AST/OSLog.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/OSLog.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/PrintfFormatString.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/PrintfFormatString.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ScanfFormatString.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/ScanfFormatString.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/TextNodeDumper.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/TextNodeDumper.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/CodeGenOptions.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Basic/CodeGenOptions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/FixedPoint.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Basic/FixedPoint.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/DarwinSDKInfo.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/DarwinSDKInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.h
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.h
  stable/11/contrib/llvm/tools/clang/lib/Serialization/PCHContainerOperations.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Serialization/PCHContainerOperations.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
     - copied from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
     - copied from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RetainSummaryManager.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RetainSummaryManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TaintManager.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TaintManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/MSP430.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lld/ELF/Arch/MSP430.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/RISCV.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lld/ELF/Arch/RISCV.cpp
  stable/11/contrib/llvm/tools/lld/ELF/DWARF.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lld/ELF/DWARF.cpp
  stable/11/contrib/llvm/tools/lld/ELF/DWARF.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lld/ELF/DWARF.h
  stable/11/contrib/llvm/tools/lld/docs/missingkeyfunction.rst
     - copied unchanged from r344779, head/contrib/llvm/tools/lld/docs/missingkeyfunction.rst
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBInitializerOptions.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/API/SBInitializerOptions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Highlighter.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Core/Highlighter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/RichManglingContext.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Core/RichManglingContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/SafeMachO.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Host/SafeMachO.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameRecognizer.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameRecognizer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Broadcaster.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Broadcaster.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Event.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Event.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Listener.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Listener.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Predicate.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Predicate.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterValue.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterValue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Reproducer.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Reproducer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Scalar.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Scalar.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/State.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/State.h
  stable/11/contrib/llvm/tools/lldb/source/API/SBInitializerOptions.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/API/SBInitializerOptions.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.h
  stable/11/contrib/llvm/tools/lldb/source/Core/Highlighter.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Core/Highlighter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/RichManglingContext.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Core/RichManglingContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/
     - copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ClangCommon/
     - copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/ClangCommon/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/
     - copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/
     - copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
     - copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
  stable/11/contrib/llvm/tools/lldb/source/Target/StackFrameRecognizer.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Target/StackFrameRecognizer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Broadcaster.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Broadcaster.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Event.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Event.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Listener.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Listener.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/RegisterValue.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/RegisterValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Reproducer.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Reproducer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Scalar.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Scalar.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/State.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/State.cpp
  stable/11/contrib/llvm/tools/lldb/tools/driver/Options.td
     - copied unchanged from r344779, head/contrib/llvm/tools/lldb/tools/driver/Options.td
  stable/11/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.cpp
  stable/11/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.h
     - copied unchanged from r344779, head/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.h
  stable/11/contrib/llvm/tools/llvm-cxxmap/
     - copied from r344779, head/contrib/llvm/tools/llvm-cxxmap/
  stable/11/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
  stable/11/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.h
     - copied unchanged from r344779, head/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.h
  stable/11/contrib/llvm/tools/llvm-mca/Views/
     - copied from r344779, head/contrib/llvm/tools/llvm-mca/Views/
  stable/11/contrib/llvm/tools/llvm-mca/include/
     - copied from r344779, head/contrib/llvm/tools/llvm-mca/include/
  stable/11/contrib/llvm/tools/llvm-mca/lib/
     - copied from r344779, head/contrib/llvm/tools/llvm-mca/lib/
  stable/11/contrib/llvm/tools/llvm-objcopy/Buffer.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/llvm-objcopy/Buffer.cpp
  stable/11/contrib/llvm/tools/llvm-objcopy/Buffer.h
     - copied unchanged from r344779, head/contrib/llvm/tools/llvm-objcopy/Buffer.h
  stable/11/contrib/llvm/tools/llvm-objcopy/COFF/
     - copied from r344779, head/contrib/llvm/tools/llvm-objcopy/COFF/
  stable/11/contrib/llvm/tools/llvm-objcopy/CopyConfig.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/llvm-objcopy/CopyConfig.cpp
  stable/11/contrib/llvm/tools/llvm-objcopy/CopyConfig.h
     - copied unchanged from r344779, head/contrib/llvm/tools/llvm-objcopy/CopyConfig.h
  stable/11/contrib/llvm/tools/llvm-objcopy/ELF/
     - copied from r344779, head/contrib/llvm/tools/llvm-objcopy/ELF/
  stable/11/contrib/llvm/tools/llvm-xray/xray-fdr-dump.cpp
     - copied unchanged from r344779, head/contrib/llvm/tools/llvm-xray/xray-fdr-dump.cpp
  stable/11/contrib/llvm/utils/TableGen/ExegesisEmitter.cpp
     - copied unchanged from r344779, head/contrib/llvm/utils/TableGen/ExegesisEmitter.cpp
  stable/11/contrib/openmp/
     - copied from r345231, head/contrib/openmp/
  stable/11/tools/build/options/WITHOUT_LLVM_COV
     - copied unchanged from r329093, head/tools/build/options/WITHOUT_LLVM_COV
  stable/11/tools/build/options/WITH_LLVM_COV
     - copied unchanged from r329093, head/tools/build/options/WITH_LLVM_COV
  stable/11/tools/build/options/WITH_LLVM_TARGET_BPF
     - copied unchanged from r337552, head/tools/build/options/WITH_LLVM_TARGET_BPF
  stable/11/usr.bin/clang/llvm-objdump/llvm-objdump.1
     - copied, changed from r340972, head/usr.bin/clang/llvm-objdump/llvm-objdump.1
Directory Properties:
  stable/11/contrib/libunwind/   (props changed)
Deleted:
  stable/11/contrib/compiler-rt/lib/builtins/arm64/
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsDlsymWin.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeakAlias.cpp
  stable/11/contrib/libc++/include/experimental/dynarray
  stable/11/contrib/libc++/src/experimental/filesystem/
  stable/11/contrib/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GCs.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeBuiltinSymbol.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumSymbol.h
  stable/11/contrib/llvm/include/llvm/IR/TypeBuilder.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/OrderedInstructions.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
  stable/11/contrib/llvm/lib/CodeGen/MachinePassRegistry.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumSymbol.cpp
  stable/11/contrib/llvm/lib/Demangle/Compiler.h
  stable/11/contrib/llvm/lib/Demangle/StringView.h
  stable/11/contrib/llvm/lib/Demangle/Utility.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGatherPacketize.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV3.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td
  stable/11/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.h
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.h
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2BaseInfo.h
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2ELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2FixupKinds.h
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCAsmInfo.h
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCExpr.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCExpr.h
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2TargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2.h
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2.td
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2AsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2CallingConv.td
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2FrameLowering.h
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2ISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2ISelLowering.h
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2InstrFormats.td
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.h
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.td
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2MCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2MachineFunction.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2MachineFunction.h
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.h
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.td
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2Schedule.td
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2Subtarget.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2Subtarget.h
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2TargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2TargetMachine.h
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2TargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2TargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/Nios2/Nios2TargetStreamer.h
  stable/11/contrib/llvm/lib/Target/Nios2/TargetInfo/Nios2TargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
  stable/11/contrib/llvm/lib/Target/Sparc/SparcTargetStreamer.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/OrderedInstructions.cpp
  stable/11/contrib/llvm/projects/
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/OSLog.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PseudoConstantAnalysis.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNios2.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.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/Lex/PTHLexer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/LoopHint.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTContext.h
  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/OSLog.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Arch/
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.h
  stable/11/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/CodeGenOptions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp
  stable/11/contrib/llvm/tools/clang/lib/Headers/cuda/
  stable/11/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MisusedMovedObjectChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObjectChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Inclusions/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/ELF/GdbIndex.cpp
  stable/11/contrib/llvm/tools/lld/ELF/GdbIndex.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/TODO.txt
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Listener.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/RegisterValue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/State.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Predicate.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/SoftwareBreakpoint.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/OCamlASTContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Either.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/FastDemangle.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Range.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/SafeMachO.h
  stable/11/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Event.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Listener.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/RegisterValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/State.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/SoftwareBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/CMakeLists.txt
  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/PPC64/CMakeLists.txt
  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/OCaml/OCamlLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.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/OperatingSystem/Go/OperatingSystemGo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.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/DWARFASTParserOCaml.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h
  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/OCamlASTContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/FastDemangle.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Range.cpp
  stable/11/contrib/llvm/tools/llvm-mca/Context.cpp
  stable/11/contrib/llvm/tools/llvm-mca/Context.h
  stable/11/contrib/llvm/tools/llvm-mca/DispatchStage.cpp
  stable/11/contrib/llvm/tools/llvm-mca/DispatchStage.h
  stable/11/contrib/llvm/tools/llvm-mca/DispatchStatistics.cpp
  stable/11/contrib/llvm/tools/llvm-mca/DispatchStatistics.h
  stable/11/contrib/llvm/tools/llvm-mca/ExecuteStage.cpp
  stable/11/contrib/llvm/tools/llvm-mca/ExecuteStage.h
  stable/11/contrib/llvm/tools/llvm-mca/FetchStage.cpp
  stable/11/contrib/llvm/tools/llvm-mca/FetchStage.h
  stable/11/contrib/llvm/tools/llvm-mca/HWEventListener.cpp
  stable/11/contrib/llvm/tools/llvm-mca/HWEventListener.h
  stable/11/contrib/llvm/tools/llvm-mca/HardwareUnit.cpp
  stable/11/contrib/llvm/tools/llvm-mca/HardwareUnit.h
  stable/11/contrib/llvm/tools/llvm-mca/InstrBuilder.cpp
  stable/11/contrib/llvm/tools/llvm-mca/InstrBuilder.h
  stable/11/contrib/llvm/tools/llvm-mca/Instruction.cpp
  stable/11/contrib/llvm/tools/llvm-mca/Instruction.h
  stable/11/contrib/llvm/tools/llvm-mca/InstructionInfoView.cpp
  stable/11/contrib/llvm/tools/llvm-mca/InstructionInfoView.h
  stable/11/contrib/llvm/tools/llvm-mca/InstructionTables.cpp
  stable/11/contrib/llvm/tools/llvm-mca/InstructionTables.h
  stable/11/contrib/llvm/tools/llvm-mca/LSUnit.cpp
  stable/11/contrib/llvm/tools/llvm-mca/LSUnit.h
  stable/11/contrib/llvm/tools/llvm-mca/Pipeline.cpp
  stable/11/contrib/llvm/tools/llvm-mca/Pipeline.h
  stable/11/contrib/llvm/tools/llvm-mca/RegisterFile.cpp
  stable/11/contrib/llvm/tools/llvm-mca/RegisterFile.h
  stable/11/contrib/llvm/tools/llvm-mca/RegisterFileStatistics.cpp
  stable/11/contrib/llvm/tools/llvm-mca/RegisterFileStatistics.h
  stable/11/contrib/llvm/tools/llvm-mca/ResourcePressureView.cpp
  stable/11/contrib/llvm/tools/llvm-mca/ResourcePressureView.h
  stable/11/contrib/llvm/tools/llvm-mca/RetireControlUnit.cpp
  stable/11/contrib/llvm/tools/llvm-mca/RetireControlUnit.h
  stable/11/contrib/llvm/tools/llvm-mca/RetireControlUnitStatistics.cpp
  stable/11/contrib/llvm/tools/llvm-mca/RetireControlUnitStatistics.h
  stable/11/contrib/llvm/tools/llvm-mca/RetireStage.cpp
  stable/11/contrib/llvm/tools/llvm-mca/RetireStage.h
  stable/11/contrib/llvm/tools/llvm-mca/Scheduler.cpp
  stable/11/contrib/llvm/tools/llvm-mca/Scheduler.h
  stable/11/contrib/llvm/tools/llvm-mca/SchedulerStatistics.cpp
  stable/11/contrib/llvm/tools/llvm-mca/SchedulerStatistics.h
  stable/11/contrib/llvm/tools/llvm-mca/SourceMgr.h
  stable/11/contrib/llvm/tools/llvm-mca/Stage.cpp
  stable/11/contrib/llvm/tools/llvm-mca/Stage.h
  stable/11/contrib/llvm/tools/llvm-mca/SummaryView.cpp
  stable/11/contrib/llvm/tools/llvm-mca/SummaryView.h
  stable/11/contrib/llvm/tools/llvm-mca/Support.cpp
  stable/11/contrib/llvm/tools/llvm-mca/Support.h
  stable/11/contrib/llvm/tools/llvm-mca/TimelineView.cpp
  stable/11/contrib/llvm/tools/llvm-mca/TimelineView.h
  stable/11/contrib/llvm/tools/llvm-mca/View.cpp
  stable/11/contrib/llvm/tools/llvm-mca/View.h
  stable/11/contrib/llvm/tools/llvm-objcopy/Object.cpp
  stable/11/contrib/llvm/tools/llvm-objcopy/Object.h
  stable/11/contrib/llvm/tools/llvm-pdbutil/Analyze.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/Analyze.h
Modified:
  stable/11/ObsoleteFiles.inc
  stable/11/UPDATING
  stable/11/contrib/compiler-rt/LICENSE.TXT
  stable/11/contrib/compiler-rt/include/sanitizer/allocator_interface.h
  stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
  stable/11/contrib/compiler-rt/include/sanitizer/hwasan_interface.h
  stable/11/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
  stable/11/contrib/compiler-rt/include/xray/xray_log_interface.h
  stable/11/contrib/compiler-rt/lib/asan/asan_allocator.h
  stable/11/contrib/compiler-rt/lib/asan/asan_errors.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_errors.h
  stable/11/contrib/compiler-rt/lib/asan/asan_flags.inc
  stable/11/contrib/compiler-rt/lib/asan/asan_fuchsia.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_globals.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_globals_win.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_internal.h
  stable/11/contrib/compiler-rt/lib/asan/asan_linux.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_new_delete.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_posix.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_report.h
  stable/11/contrib/compiler-rt/lib/asan/asan_rtems.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_rtl.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_thread.cc
  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/builtins/arm/addsf3.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S
  stable/11/contrib/compiler-rt/lib/builtins/clzdi2.c
  stable/11/contrib/compiler-rt/lib/builtins/cpu_model.c
  stable/11/contrib/compiler-rt/lib/builtins/ctzdi2.c
  stable/11/contrib/compiler-rt/lib/builtins/divdc3.c
  stable/11/contrib/compiler-rt/lib/builtins/divdf3.c
  stable/11/contrib/compiler-rt/lib/builtins/divsc3.c
  stable/11/contrib/compiler-rt/lib/builtins/divsf3.c
  stable/11/contrib/compiler-rt/lib/builtins/divtc3.c
  stable/11/contrib/compiler-rt/lib/builtins/emutls.c
  stable/11/contrib/compiler-rt/lib/builtins/fp_lib.h
  stable/11/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c
  stable/11/contrib/compiler-rt/lib/builtins/int_lib.h
  stable/11/contrib/compiler-rt/lib/builtins/int_math.h
  stable/11/contrib/compiler-rt/lib/builtins/int_types.h
  stable/11/contrib/compiler-rt/lib/builtins/int_util.c
  stable/11/contrib/compiler-rt/lib/builtins/int_util.h
  stable/11/contrib/compiler-rt/lib/builtins/os_version_check.c
  stable/11/contrib/compiler-rt/lib/builtins/ppc/divtc3.c
  stable/11/contrib/compiler-rt/lib/cfi/cfi.cc
  stable/11/contrib/compiler-rt/lib/cfi/cfi_blacklist.txt
  stable/11/contrib/compiler-rt/lib/dfsan/dfsan.cc
  stable/11/contrib/compiler-rt/lib/esan/esan_interceptors.cpp
  stable/11/contrib/compiler-rt/lib/esan/esan_shadow.h
  stable/11/contrib/compiler-rt/lib/esan/esan_sideline.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerCommand.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerCorpus.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerDefs.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerDriver.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeak.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerFlags.def
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerIO.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerIO.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerInternal.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerOptions.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerUtil.h
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerUtilFuchsia.cpp
  stable/11/contrib/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan.h
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_allocator.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_allocator.h
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_flags.h
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_flags.inc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_interface_internal.h
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_linux.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_mapping.h
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_new_delete.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.h
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_report.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_report.h
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_thread.cc
  stable/11/contrib/compiler-rt/lib/hwasan/hwasan_thread.h
  stable/11/contrib/compiler-rt/lib/interception/interception.h
  stable/11/contrib/compiler-rt/lib/interception/interception_linux.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_allocator.h
  stable/11/contrib/compiler-rt/lib/lsan/lsan_common_mac.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/msan/msan.cc
  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_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/InstrProfilingPlatformLinux.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingPlatformOther.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingValue.c
  stable/11/contrib/compiler-rt/lib/profile/WindowsMMap.c
  stable/11/contrib/compiler-rt/lib/profile/WindowsMMap.h
  stable/11/contrib/compiler-rt/lib/safestack/safestack.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_bytemap.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary32.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_x86.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_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_file.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
  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_openbsd.cc
  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_netbsd.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h
  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_platform_limits_solaris.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.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_procmaps_solaris.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
  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_sparc.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_fuchsia.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_generic.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_aarch64.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_arm.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_x86_64.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
  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_malloc.cpp
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
  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_libdispatch_mac.cc
  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_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_amd64.S
  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/ubsan/ubsan_checks.inc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_flags.inc
  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_interface.inc
  stable/11/contrib/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_allocator.h
  stable/11/contrib/compiler-rt/lib/xray/xray_basic_logging.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_buffer_queue.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_buffer_queue.h
  stable/11/contrib/compiler-rt/lib/xray/xray_defs.h
  stable/11/contrib/compiler-rt/lib/xray/xray_fdr_log_records.h
  stable/11/contrib/compiler-rt/lib/xray/xray_fdr_logging.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_function_call_trie.h
  stable/11/contrib/compiler-rt/lib/xray/xray_init.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_interface.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_profile_collector.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_profile_collector.h
  stable/11/contrib/compiler-rt/lib/xray/xray_profiling.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_profiling_flags.inc
  stable/11/contrib/compiler-rt/lib/xray/xray_segmented_array.h
  stable/11/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S
  stable/11/contrib/compiler-rt/lib/xray/xray_tsc.h
  stable/11/contrib/compiler-rt/lib/xray/xray_utils.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_utils.h
  stable/11/contrib/compiler-rt/lib/xray/xray_x86_64.cc
  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_base
  stable/11/contrib/libc++/include/__hash_table
  stable/11/contrib/libc++/include/__libcpp_version
  stable/11/contrib/libc++/include/__locale
  stable/11/contrib/libc++/include/__mutex_base
  stable/11/contrib/libc++/include/__node_handle
  stable/11/contrib/libc++/include/__sso_allocator
  stable/11/contrib/libc++/include/__string
  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/any
  stable/11/contrib/libc++/include/array
  stable/11/contrib/libc++/include/atomic
  stable/11/contrib/libc++/include/bitset
  stable/11/contrib/libc++/include/charconv
  stable/11/contrib/libc++/include/chrono
  stable/11/contrib/libc++/include/cmath
  stable/11/contrib/libc++/include/complex
  stable/11/contrib/libc++/include/cstddef
  stable/11/contrib/libc++/include/deque
  stable/11/contrib/libc++/include/exception
  stable/11/contrib/libc++/include/experimental/any
  stable/11/contrib/libc++/include/experimental/chrono
  stable/11/contrib/libc++/include/experimental/coroutine
  stable/11/contrib/libc++/include/experimental/memory_resource
  stable/11/contrib/libc++/include/experimental/numeric
  stable/11/contrib/libc++/include/experimental/optional
  stable/11/contrib/libc++/include/experimental/ratio
  stable/11/contrib/libc++/include/experimental/string_view
  stable/11/contrib/libc++/include/experimental/system_error
  stable/11/contrib/libc++/include/experimental/tuple
  stable/11/contrib/libc++/include/filesystem
  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/iomanip
  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/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/optional
  stable/11/contrib/libc++/include/ostream
  stable/11/contrib/libc++/include/random
  stable/11/contrib/libc++/include/regex
  stable/11/contrib/libc++/include/scoped_allocator
  stable/11/contrib/libc++/include/set
  stable/11/contrib/libc++/include/shared_mutex
  stable/11/contrib/libc++/include/span
  stable/11/contrib/libc++/include/sstream
  stable/11/contrib/libc++/include/stddef.h
  stable/11/contrib/libc++/include/stdexcept
  stable/11/contrib/libc++/include/streambuf
  stable/11/contrib/libc++/include/string
  stable/11/contrib/libc++/include/string_view
  stable/11/contrib/libc++/include/thread
  stable/11/contrib/libc++/include/tuple
  stable/11/contrib/libc++/include/type_traits
  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/variant
  stable/11/contrib/libc++/include/vector
  stable/11/contrib/libc++/include/version
  stable/11/contrib/libc++/src/experimental/memory_resource.cpp
  stable/11/contrib/libc++/src/filesystem/filesystem_common.h
  stable/11/contrib/libc++/src/filesystem/operations.cpp
  stable/11/contrib/libc++/src/future.cpp
  stable/11/contrib/libc++/src/iostream.cpp
  stable/11/contrib/libc++/src/new.cpp
  stable/11/contrib/libc++/src/support/runtime/exception_fallback.ipp
  stable/11/contrib/libc++/src/support/runtime/exception_glibcxx.ipp
  stable/11/contrib/libc++/src/support/runtime/exception_libcxxrt.ipp
  stable/11/contrib/libc++/src/support/runtime/exception_msvc.ipp
  stable/11/contrib/libc++/src/thread.cpp
  stable/11/contrib/llvm/FREEBSD-Xlist
  stable/11/contrib/llvm/LICENSE.TXT
  stable/11/contrib/llvm/include/llvm-c/Core.h
  stable/11/contrib/llvm/include/llvm-c/DebugInfo.h
  stable/11/contrib/llvm/include/llvm-c/ExecutionEngine.h
  stable/11/contrib/llvm/include/llvm-c/OrcBindings.h
  stable/11/contrib/llvm/include/llvm-c/TargetMachine.h
  stable/11/contrib/llvm/include/llvm-c/Transforms/Scalar.h
  stable/11/contrib/llvm/include/llvm-c/Types.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/Any.h
  stable/11/contrib/llvm/include/llvm/ADT/BitVector.h
  stable/11/contrib/llvm/include/llvm/ADT/DenseMap.h
  stable/11/contrib/llvm/include/llvm/ADT/DenseSet.h
  stable/11/contrib/llvm/include/llvm/ADT/GraphTraits.h
  stable/11/contrib/llvm/include/llvm/ADT/Hashing.h
  stable/11/contrib/llvm/include/llvm/ADT/ImmutableList.h
  stable/11/contrib/llvm/include/llvm/ADT/IntervalMap.h
  stable/11/contrib/llvm/include/llvm/ADT/Optional.h
  stable/11/contrib/llvm/include/llvm/ADT/PointerIntPair.h
  stable/11/contrib/llvm/include/llvm/ADT/PointerSumType.h
  stable/11/contrib/llvm/include/llvm/ADT/PostOrderIterator.h
  stable/11/contrib/llvm/include/llvm/ADT/STLExtras.h
  stable/11/contrib/llvm/include/llvm/ADT/SmallBitVector.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/StringExtras.h
  stable/11/contrib/llvm/include/llvm/ADT/Triple.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/AliasSetTracker.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/CFG.h
  stable/11/contrib/llvm/include/llvm/Analysis/CFGPrinter.h
  stable/11/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h
  stable/11/contrib/llvm/include/llvm/Analysis/CaptureTracking.h
  stable/11/contrib/llvm/include/llvm/Analysis/CmpInstAnalysis.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/DivergenceAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/GlobalsModRef.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/IteratedDominanceFrontier.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/MemoryDependenceAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/MemoryLocation.h
  stable/11/contrib/llvm/include/llvm/Analysis/MemorySSA.h
  stable/11/contrib/llvm/include/llvm/Analysis/MemorySSAUpdater.h
  stable/11/contrib/llvm/include/llvm/Analysis/MustExecute.h
  stable/11/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
  stable/11/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
  stable/11/contrib/llvm/include/llvm/Analysis/Passes.h
  stable/11/contrib/llvm/include/llvm/Analysis/PhiValues.h
  stable/11/contrib/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
  stable/11/contrib/llvm/include/llvm/Analysis/SparsePropagation.h
  stable/11/contrib/llvm/include/llvm/Analysis/SyntheticCountsUtils.h
  stable/11/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def
  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/TypeMetadataUtils.h
  stable/11/contrib/llvm/include/llvm/Analysis/ValueTracking.h
  stable/11/contrib/llvm/include/llvm/Analysis/VectorUtils.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/Dwarf.def
  stable/11/contrib/llvm/include/llvm/BinaryFormat/Dwarf.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/ELF.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/MachO.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/Wasm.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/WasmRelocs.def
  stable/11/contrib/llvm/include/llvm/Bitcode/BitcodeReader.h
  stable/11/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.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/CommandFlags.inc
  stable/11/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
  stable/11/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GCMetadata.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GCStrategy.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveIntervals.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.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/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/MachineModuleInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineOutliner.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.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/Passes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegAllocRegistry.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegisterUsageInfo.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/SchedulerRegistry.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SelectionDAGAddressAnalysis.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/TargetFrameLowering.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TargetInstrInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TargetLowering.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/TargetRegisterInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.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/CodeViewRegisters.def
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.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/TypeIndex.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DIContext.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.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/DWARF/DWARFUnitIndex.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/MSFError.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSession.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawError.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawTypes.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiHashing.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
  stable/11/contrib/llvm/include/llvm/Demangle/Demangle.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/Core.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.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/LLJIT.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.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/OrcRemoteTargetClient.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
  stable/11/contrib/llvm/include/llvm/IR/Attributes.h
  stable/11/contrib/llvm/include/llvm/IR/Attributes.td
  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/Constant.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/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/DiagnosticInfo.h
  stable/11/contrib/llvm/include/llvm/IR/DomTreeUpdater.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/GlobalValue.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/InstVisitor.h
  stable/11/contrib/llvm/include/llvm/IR/InstrTypes.h
  stable/11/contrib/llvm/include/llvm/IR/Instruction.def
  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.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/IntrinsicsHexagon.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.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/LegacyPassManager.h
  stable/11/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
  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/ModuleSummaryIndexYAML.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/RuntimeLibcalls.def
  stable/11/contrib/llvm/include/llvm/IR/Value.h
  stable/11/contrib/llvm/include/llvm/InitializePasses.h
  stable/11/contrib/llvm/include/llvm/LTO/Config.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/ThinLTOCodeGenerator.h
  stable/11/contrib/llvm/include/llvm/LinkAllPasses.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmInfoWasm.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmMacro.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/MCDwarf.h
  stable/11/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h
  stable/11/contrib/llvm/include/llvm/MC/MCExpr.h
  stable/11/contrib/llvm/include/llvm/MC/MCInst.h
  stable/11/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h
  stable/11/contrib/llvm/include/llvm/MC/MCInstrDesc.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/MCTargetAsmParser.h
  stable/11/contrib/llvm/include/llvm/MC/MCRegisterInfo.h
  stable/11/contrib/llvm/include/llvm/MC/MCSchedule.h
  stable/11/contrib/llvm/include/llvm/MC/MCSection.h
  stable/11/contrib/llvm/include/llvm/MC/MCStreamer.h
  stable/11/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
  stable/11/contrib/llvm/include/llvm/MC/MCWasmObjectWriter.h
  stable/11/contrib/llvm/include/llvm/MC/MCWin64EH.h
  stable/11/contrib/llvm/include/llvm/MC/MCWinEH.h
  stable/11/contrib/llvm/include/llvm/Object/COFF.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/MachO.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/Wasm.h
  stable/11/contrib/llvm/include/llvm/Object/WasmTraits.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/COFFYAML.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/ELFYAML.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/WasmYAML.h
  stable/11/contrib/llvm/include/llvm/Option/OptTable.h
  stable/11/contrib/llvm/include/llvm/Pass.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/GCOV.h
  stable/11/contrib/llvm/include/llvm/ProfileData/InstrProf.h
  stable/11/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h
  stable/11/contrib/llvm/include/llvm/ProfileData/SampleProf.h
  stable/11/contrib/llvm/include/llvm/ProfileData/SampleProfReader.h
  stable/11/contrib/llvm/include/llvm/ProfileData/SampleProfWriter.h
  stable/11/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
  stable/11/contrib/llvm/include/llvm/Support/AMDGPUMetadata.h
  stable/11/contrib/llvm/include/llvm/Support/ARMTargetParser.def
  stable/11/contrib/llvm/include/llvm/Support/ARMWinEH.h
  stable/11/contrib/llvm/include/llvm/Support/Allocator.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryStreamArray.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryStreamReader.h
  stable/11/contrib/llvm/include/llvm/Support/Chrono.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/Debug.h
  stable/11/contrib/llvm/include/llvm/Support/DebugCounter.h
  stable/11/contrib/llvm/include/llvm/Support/Error.h
  stable/11/contrib/llvm/include/llvm/Support/ErrorHandling.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/FormatVariadicDetails.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/JSON.h
  stable/11/contrib/llvm/include/llvm/Support/LowLevelTypeImpl.h
  stable/11/contrib/llvm/include/llvm/Support/Path.h
  stable/11/contrib/llvm/include/llvm/Support/ScopedPrinter.h
  stable/11/contrib/llvm/include/llvm/Support/TargetOpcodes.def
  stable/11/contrib/llvm/include/llvm/Support/TargetParser.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/Win64EH.h
  stable/11/contrib/llvm/include/llvm/Support/WithColor.h
  stable/11/contrib/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.h
  stable/11/contrib/llvm/include/llvm/Support/X86TargetParser.def
  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/Support/type_traits.h
  stable/11/contrib/llvm/include/llvm/TableGen/StringMatcher.h
  stable/11/contrib/llvm/include/llvm/Target/CodeGenCWrappers.h
  stable/11/contrib/llvm/include/llvm/Target/GenericOpcodes.td
  stable/11/contrib/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
  stable/11/contrib/llvm/include/llvm/Target/Target.td
  stable/11/contrib/llvm/include/llvm/Target/TargetInstrPredicate.td
  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/TargetOptions.h
  stable/11/contrib/llvm/include/llvm/Target/TargetSchedule.td
  stable/11/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
  stable/11/contrib/llvm/include/llvm/Testing/Support/SupportHelpers.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO.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/SampleProfile.h
  stable/11/contrib/llvm/include/llvm/Transforms/Instrumentation.h
  stable/11/contrib/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/SCCP.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/Cloning.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/Local.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
  stable/11/contrib/llvm/include/llvm/Transforms/Vectorize.h
  stable/11/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
  stable/11/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
  stable/11/contrib/llvm/include/llvm/XRay/Trace.h
  stable/11/contrib/llvm/include/llvm/XRay/XRayRecord.h
  stable/11/contrib/llvm/include/llvm/XRay/YAMLXRayRecord.h
  stable/11/contrib/llvm/include/llvm/module.modulemap
  stable/11/contrib/llvm/lib/Analysis/AliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
  stable/11/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
  stable/11/contrib/llvm/lib/Analysis/Analysis.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/CFG.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/CGSCCPassManager.cpp
  stable/11/contrib/llvm/lib/Analysis/CallGraph.cpp
  stable/11/contrib/llvm/lib/Analysis/CallGraphSCCPass.cpp
  stable/11/contrib/llvm/lib/Analysis/CaptureTracking.cpp
  stable/11/contrib/llvm/lib/Analysis/CmpInstAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/ConstantFolding.cpp
  stable/11/contrib/llvm/lib/Analysis/DemandedBits.cpp
  stable/11/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/EHPersonalities.cpp
  stable/11/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
  stable/11/contrib/llvm/lib/Analysis/IndirectCallPromotionAnalysis.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/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/LoopAnalysisManager.cpp
  stable/11/contrib/llvm/lib/Analysis/LoopInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/LoopPass.cpp
  stable/11/contrib/llvm/lib/Analysis/MemDepPrinter.cpp
  stable/11/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/MemoryLocation.cpp
  stable/11/contrib/llvm/lib/Analysis/MemorySSA.cpp
  stable/11/contrib/llvm/lib/Analysis/MemorySSAUpdater.cpp
  stable/11/contrib/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/MustExecute.cpp
  stable/11/contrib/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/ObjCARCInstKind.cpp
  stable/11/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp
  stable/11/contrib/llvm/lib/Analysis/PhiValues.cpp
  stable/11/contrib/llvm/lib/Analysis/ProfileSummaryInfo.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/SyntheticCountsUtils.cpp
  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/BinaryFormat/Dwarf.cpp
  stable/11/contrib/llvm/lib/BinaryFormat/Magic.cpp
  stable/11/contrib/llvm/lib/BinaryFormat/Wasm.cpp
  stable/11/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
  stable/11/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
  stable/11/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.h
  stable/11/contrib/llvm/lib/Bitcode/Reader/ValueList.cpp
  stable/11/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
  stable/11/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
  stable/11/contrib/llvm/lib/CodeGen/Analysis.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AccelTable.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
  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/DebugHandlerBase.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
  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/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/DwarfStringPool.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.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/EHStreamer.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h
  stable/11/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/BranchFolding.cpp
  stable/11/contrib/llvm/lib/CodeGen/BreakFalseDeps.cpp
  stable/11/contrib/llvm/lib/CodeGen/BuiltinGCs.cpp
  stable/11/contrib/llvm/lib/CodeGen/CFIInstrInserter.cpp
  stable/11/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp
  stable/11/contrib/llvm/lib/CodeGen/CodeGen.cpp
  stable/11/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp
  stable/11/contrib/llvm/lib/CodeGen/ExpandMemCmp.cpp
  stable/11/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
  stable/11/contrib/llvm/lib/CodeGen/GCMetadata.cpp
  stable/11/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/LegalityPredicates.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.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/RegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/Utils.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/LLVMTargetMachine.cpp
  stable/11/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveDebugValues.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveDebugVariables.h
  stable/11/contrib/llvm/lib/CodeGen/LiveInterval.cpp
  stable/11/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
  stable/11/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRCanonicalizerPass.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/MIRParser.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineBlockPlacement.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/MachineModuleInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineOperand.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineOutliner.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachinePipeliner.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineRegisterInfo.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/MacroFusion.cpp
  stable/11/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp
  stable/11/contrib/llvm/lib/CodeGen/PHIElimination.cpp
  stable/11/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
  stable/11/contrib/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
  stable/11/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp
  stable/11/contrib/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocFast.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterUsageInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/SafeStack.cpp
  stable/11/contrib/llvm/lib/CodeGen/SafeStackColoring.cpp
  stable/11/contrib/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.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.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/SDNodeDbgValue.h
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.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/SlotIndexes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SplitKit.h
  stable/11/contrib/llvm/lib/CodeGen/StackColoring.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/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/TwoAddressInstructionPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
  stable/11/contrib/llvm/lib/CodeGen/WasmEHPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeIndex.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.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/DWARFDebugPubTable.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
  stable/11/contrib/llvm/lib/DebugInfo/MSF/MSFError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/GlobalsStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumModules.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/RawError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
  stable/11/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
  stable/11/contrib/llvm/lib/Demangle/ItaniumDemangle.cpp
  stable/11/contrib/llvm/lib/Demangle/MicrosoftDemangle.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.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/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/CompileOnDemandLayer.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/Core.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/Layer.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcABISupport.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.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/RuntimeDyldChecker.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  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/Targets/RuntimeDyldCOFFThumb.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
  stable/11/contrib/llvm/lib/FuzzMutate/IRMutator.cpp
  stable/11/contrib/llvm/lib/FuzzMutate/RandomIRBuilder.cpp
  stable/11/contrib/llvm/lib/IR/AsmWriter.cpp
  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/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/DebugLoc.cpp
  stable/11/contrib/llvm/lib/IR/DiagnosticInfo.cpp
  stable/11/contrib/llvm/lib/IR/DomTreeUpdater.cpp
  stable/11/contrib/llvm/lib/IR/Dominators.cpp
  stable/11/contrib/llvm/lib/IR/Function.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/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.h
  stable/11/contrib/llvm/lib/IR/LegacyPassManager.cpp
  stable/11/contrib/llvm/lib/IR/MDBuilder.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/SafepointIRVerifier.cpp
  stable/11/contrib/llvm/lib/IR/Type.cpp
  stable/11/contrib/llvm/lib/IR/Value.cpp
  stable/11/contrib/llvm/lib/IR/Verifier.cpp
  stable/11/contrib/llvm/lib/LTO/LTO.cpp
  stable/11/contrib/llvm/lib/LTO/LTOBackend.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/Linker/IRMover.cpp
  stable/11/contrib/llvm/lib/MC/ConstantPools.cpp
  stable/11/contrib/llvm/lib/MC/ELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmInfoWasm.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/MCDwarf.cpp
  stable/11/contrib/llvm/lib/MC/MCELFObjectTargetWriter.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/MCInstrAnalysis.cpp
  stable/11/contrib/llvm/lib/MC/MCInstrDesc.cpp
  stable/11/contrib/llvm/lib/MC/MCMachOStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCNullStreamer.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/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/MCSectionELF.cpp
  stable/11/contrib/llvm/lib/MC/MCStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCWasmStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCWin64EH.cpp
  stable/11/contrib/llvm/lib/MC/MachObjectWriter.cpp
  stable/11/contrib/llvm/lib/MC/WasmObjectWriter.cpp
  stable/11/contrib/llvm/lib/MC/WinCOFFObjectWriter.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/ELFObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/Error.cpp
  stable/11/contrib/llvm/lib/Object/MachOObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/ModuleSymbolTable.cpp
  stable/11/contrib/llvm/lib/Object/Object.cpp
  stable/11/contrib/llvm/lib/Object/ObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/WasmObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/WindowsResource.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/COFFYAML.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/ELFYAML.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/WasmYAML.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/GCOV.cpp
  stable/11/contrib/llvm/lib/ProfileData/InstrProf.cpp
  stable/11/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
  stable/11/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
  stable/11/contrib/llvm/lib/ProfileData/SampleProf.cpp
  stable/11/contrib/llvm/lib/ProfileData/SampleProfReader.cpp
  stable/11/contrib/llvm/lib/ProfileData/SampleProfWriter.cpp
  stable/11/contrib/llvm/lib/Support/APInt.cpp
  stable/11/contrib/llvm/lib/Support/BinaryStreamError.cpp
  stable/11/contrib/llvm/lib/Support/COM.cpp
  stable/11/contrib/llvm/lib/Support/CachePruning.cpp
  stable/11/contrib/llvm/lib/Support/CodeGenCoverage.cpp
  stable/11/contrib/llvm/lib/Support/CommandLine.cpp
  stable/11/contrib/llvm/lib/Support/Compression.cpp
  stable/11/contrib/llvm/lib/Support/DebugCounter.cpp
  stable/11/contrib/llvm/lib/Support/Error.cpp
  stable/11/contrib/llvm/lib/Support/FileOutputBuffer.cpp
  stable/11/contrib/llvm/lib/Support/FoldingSet.cpp
  stable/11/contrib/llvm/lib/Support/FormatVariadic.cpp
  stable/11/contrib/llvm/lib/Support/Hashing.cpp
  stable/11/contrib/llvm/lib/Support/Host.cpp
  stable/11/contrib/llvm/lib/Support/JSON.cpp
  stable/11/contrib/llvm/lib/Support/Locale.cpp
  stable/11/contrib/llvm/lib/Support/LockFileManager.cpp
  stable/11/contrib/llvm/lib/Support/Path.cpp
  stable/11/contrib/llvm/lib/Support/Process.cpp
  stable/11/contrib/llvm/lib/Support/RandomNumberGenerator.cpp
  stable/11/contrib/llvm/lib/Support/Signals.cpp
  stable/11/contrib/llvm/lib/Support/SourceMgr.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/Timer.cpp
  stable/11/contrib/llvm/lib/Support/Triple.cpp
  stable/11/contrib/llvm/lib/Support/Unix/Path.inc
  stable/11/contrib/llvm/lib/Support/Unix/Signals.inc
  stable/11/contrib/llvm/lib/Support/Unix/Threading.inc
  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/Program.inc
  stable/11/contrib/llvm/lib/Support/Windows/Threading.inc
  stable/11/contrib/llvm/lib/Support/Windows/WindowsSupport.h
  stable/11/contrib/llvm/lib/Support/WithColor.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/TGLexer.cpp
  stable/11/contrib/llvm/lib/TableGen/TGLexer.h
  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/AArch64A57FPLoadBalancing.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/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/AArch64FrameLowering.h
  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/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/AArch64InstructionSelector.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
  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/AArch64MacroFusion.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
  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/AArch64SchedExynosM1.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64Schedule.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/AArch64SystemOperands.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
  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/AArch64ExternalSymbolizer.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.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/AArch64ELFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.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/AArch64TargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h
  stable/11/contrib/llvm/lib/Target/AArch64/SVEInstrFormats.td
  stable/11/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
  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/AMDGPUAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.h
  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/AMDGPUCallingConv.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.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/AMDGPUInline.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
  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/AMDGPUUnifyDivergentExitNodes.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/BUFInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/DSInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/FLATInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNMinRegStrategy.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNProcessors.td
  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/AMDGPUELFObjectWriter.cpp
  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/MIMGInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
  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/R600MachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFixWWMLiveness.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
  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/SIInsertSkips.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.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/SIMachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
  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/SIShrinkInstructions.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SMInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SOPInstructions.td
  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/VOP1Instructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOP2Instructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOP3Instructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOPCInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOPInstructions.td
  stable/11/contrib/llvm/lib/Target/ARC/ARCTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp
  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/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/ARMCallLowering.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMCallLowering.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
  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/ARMFrameLowering.h
  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.h
  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/ARMInstructionSelector.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMMacroFusion.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMParallelDSP.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
  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/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/InstPrinter/ARMInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
  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/ARMMachObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.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/AVR/AVRExpandPseudoInsts.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRISelLowering.cpp
  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.td
  stable/11/contrib/llvm/lib/Target/AVR/AVRTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPF.h
  stable/11/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.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/Hexagon/AsmParser/HexagonAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/Hexagon.h
  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/HexagonBitSimplify.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepIICHVX.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepIICScalar.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrFormats.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepMappings.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepOperands.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepTimingClasses.h
  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/HexagonFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.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/HexagonISelDAGToDAGHVX.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/HexagonISelLoweringHVX.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.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/HexagonIntrinsics.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonPseudo.td
  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/HexagonSchedule.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV65.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.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/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/HexagonBaseInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
  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/MCTargetDesc/HexagonShuffler.h
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFGraph.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFLiveness.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
  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/LanaiMemAluCombiner.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h
  stable/11/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.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/MSP430.h
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430.td
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.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/MSP430ISelLowering.h
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430InstrFormats.td
  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/MSP430InstrInfo.td
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.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/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/MipsMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.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/MicroMipsSizeReduction.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips.h
  stable/11/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h
  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/MipsAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsBranchExpansion.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsCCState.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsCallLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsCallLowering.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsCondMov.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
  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/MipsInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsSchedule.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsScheduleGeneric.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsSubtarget.h
  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/TargetInfo/MipsTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.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/NVPTXISelDAGToDAG.cpp
  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/NVPTXInstrInfo.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVVMReflect.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/MCTargetDesc/PPCMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/PowerPC/P9InstrResources.td
  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/PPCCallingConv.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCExpandISEL.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/PPCFrameLowering.h
  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/PPCInstrHTM.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/PPCInstrSPE.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.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/PPCSchedule440.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500.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/PPCScheduleG3.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.h
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.h
  stable/11/contrib/llvm/lib/Target/RISCV/RISCV.h
  stable/11/contrib/llvm/lib/Target/RISCV/RISCV.td
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.h
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrFormats.td
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrFormatsC.td
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.td
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h
  stable/11/contrib/llvm/lib/Target/Sparc/LeonFeatures.td
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
  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/SparcISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
  stable/11/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td
  stable/11/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td
  stable/11/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h
  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/SparcTargetMachine.h
  stable/11/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.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/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/SystemZOperators.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZSchedule.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.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/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/AsmParser/WebAssemblyAsmParser.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/WebAssemblyFixupKinds.h
  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/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/README.txt
  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/WebAssemblyAddMissingPrototypes.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.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/WebAssemblyISD.def
  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/WebAssemblyISelLowering.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
  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/WebAssemblyInstrExceptRef.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.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/WebAssemblyLateEHPrepare.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
  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/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/WebAssemblyRuntimeLibcallSignatures.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
  stable/11/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
  stable/11/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
  stable/11/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
  stable/11/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
  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/X86MCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86TargetStreamer.h
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/X86/ShadowCallStack.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/X86AvoidStoreForwardingBlocks.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86CallLowering.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86CallLowering.h
  stable/11/contrib/llvm/lib/Target/X86/X86CallingConv.td
  stable/11/contrib/llvm/lib/Target/X86/X86CmovConversion.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86DomainReassignment.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/X86FlagsCopyLowering.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
  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/X86Instr3DNow.td
  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/X86InstrCMovSetCC.td
  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/X86InstrExtension.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/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/X86InstrVecCompiler.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrXOP.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstructionSelector.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86InterleavedAccess.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86LegalizerInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86MacroFusion.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86MacroFusion.h
  stable/11/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86PfmCounters.td
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterInfo.td
  stable/11/contrib/llvm/lib/Target/X86/X86RetpolineThunks.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86SchedBroadwell.td
  stable/11/contrib/llvm/lib/Target/X86/X86SchedHaswell.td
  stable/11/contrib/llvm/lib/Target/X86/X86SchedPredicates.td
  stable/11/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td
  stable/11/contrib/llvm/lib/Target/X86/X86SchedSkylakeClient.td
  stable/11/contrib/llvm/lib/Target/X86/X86SchedSkylakeServer.td
  stable/11/contrib/llvm/lib/Target/X86/X86Schedule.td
  stable/11/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td
  stable/11/contrib/llvm/lib/Target/X86/X86ScheduleBtVer2.td
  stable/11/contrib/llvm/lib/Target/X86/X86ScheduleSLM.td
  stable/11/contrib/llvm/lib/Target/X86/X86ScheduleZnver1.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/X86SpeculativeLoadHardening.cpp
  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/X86TargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86WinEHState.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.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/XCoreLowerThreadLocal.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
  stable/11/contrib/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
  stable/11/contrib/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
  stable/11/contrib/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
  stable/11/contrib/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h
  stable/11/contrib/llvm/lib/Transforms/Coroutines/CoroElide.cpp
  stable/11/contrib/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
  stable/11/contrib/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
  stable/11/contrib/llvm/lib/Transforms/Coroutines/Coroutines.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/ForceFunctionAttrs.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/Inliner.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/LoopExtractor.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/SCCP.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.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/CGProfile.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
  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/HWAddressSanitizer.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/Instrumentation.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/DependencyAnalysis.cpp
  stable/11/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.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/Scalar/ADCE.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/ConstantProp.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/DivRemPairs.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.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/GVNSink.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/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/LoopPassManager.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopPredication.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/LoopSink.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.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/LowerGuardIntrinsic.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/MergeICmps.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/NewGVN.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.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/SimpleLoopUnswitch.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.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/AddDiscriminators.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.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/CallPromotionUtils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/CloneModule.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/DemoteRegToStack.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.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/FunctionComparator.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/Local.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LoopRotationUtils.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/LoopUnrollAndJam.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LoopUnrollPeel.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/LowerMemIntrinsics.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/PredicateInfo.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SplitModule.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/Utils.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
  stable/11/contrib/llvm/lib/Transforms/Vectorize/VPlan.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/VPlan.h
  stable/11/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/VPlanValue.h
  stable/11/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp
  stable/11/contrib/llvm/lib/XRay/InstrumentationMap.cpp
  stable/11/contrib/llvm/lib/XRay/Trace.cpp
  stable/11/contrib/llvm/tools/bugpoint/CrashDebugger.cpp
  stable/11/contrib/llvm/tools/bugpoint/ExecutionDriver.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/clang/FREEBSD-Xlist
  stable/11/contrib/llvm/tools/clang/LICENSE.TXT
  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/ASTContext.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.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/BaseSubobject.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Comment.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.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/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/DeclVisitor.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.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/ExprOpenMP.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/LexicallyOrderedRecursiveASTVisitor.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Mangle.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ODRHash.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/PrettyPrinter.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.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/StmtDataCollectors.td
  stable/11/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TemplateName.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/ASTMatchers/ASTMatchers.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.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/ThreadSafetyTIL.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDeclContext.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/CloneDetection.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/ConstructionContext.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/AlignedAllocation.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.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/Builtins.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
  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/BuiltinsHexagon.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
  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/DiagnosticASTKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTUKinds.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/DiagnosticIDs.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
  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/Features.def
  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/LangOptions.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.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/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/Sanitizers.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.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/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/TokenKinds.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/X86Target.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/XRayInstr.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
  stable/11/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTUDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTranslationUnit.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/Distro.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Job.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/ToolChain.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Types.def
  stable/11/contrib/llvm/tools/clang/include/clang/Format/Format.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.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/FrontendAction.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.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/PrecompiledPreamble.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
  stable/11/contrib/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Index/IndexSymbol.h
  stable/11/contrib/llvm/tools/clang/include/clang/Index/IndexingAction.h
  stable/11/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.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/LexDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.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/Pragma.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/PreprocessorLexer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/ParsedAttr.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Scope.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/SemaDiagnostic.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/ContinuousRangeMap.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.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/CommonBugCategories.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/PathSensitive/AnalysisManager.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/CallEvent.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.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/RangedConstraintManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Regions.def
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.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.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/SymbolManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/Execution.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/StandaloneExecution.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/ObjCMT.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.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/ASTStructuralEquivalence.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/CXXInheritance.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/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/ExternalASTMerger.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Linkage.h
  stable/11/contrib/llvm/tools/clang/lib/AST/Mangle.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ODRHash.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/OpenMPClause.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/SelectorLocationsKind.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/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/Parser.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.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/CloneDetection.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.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/ThreadSafetyTIL.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Attributes.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Cuda.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Diagnostic.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/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/Targets/AArch64.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/X86.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets/X86.h
  stable/11/contrib/llvm/tools/clang/lib/Basic/Version.cpp
  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/CGBuiltin.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.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/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/CGCoroutine.cpp
  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/CGNonTrivialStruct.cpp
  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/CGRecordLayoutBuilder.cpp
  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/CGValue.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
  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/CodeGenTBAA.cpp
  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/ConstantEmitter.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/ItaniumCXXABI.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
  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/SwiftCallingConv.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
  stable/11/contrib/llvm/tools/clang/lib/CrossTU/CrossTranslationUnit.cpp
  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/Distro.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/SanitizerArgs.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Minix.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/Types.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/XRayArgs.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/Format.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/NamespaceEndCommentsFixer.cpp
  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/UnwrappedLineParser.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
  stable/11/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.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/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/PrecompiledPreamble.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/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/TextDiagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
  stable/11/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/adxintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/altivec.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/avx512pfintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vlvbmi2intrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/cuda_wrappers/new
  stable/11/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/float.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/opencl-c.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/vecintrin.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/IndexingAction.cpp
  stable/11/contrib/llvm/tools/clang/lib/Index/IndexingContext.cpp
  stable/11/contrib/llvm/tools/clang/lib/Index/SimpleFormatContext.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/PPDirectives.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/Pragma.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/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/Rewrite/RewriteRope.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.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/IdentifierResolver.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/ParsedAttr.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/SemaAccess.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/Serialization/ASTCommon.cpp
  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/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/GlobalModuleIndex.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
  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/BlockInCriticalSectionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.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/CStringSyntaxChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.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/CheckObjCInstMethSignature.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.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/CloneChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.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/FixedAddressChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.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/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/MallocOverflowSecurityChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.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/PointerSubChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.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/VLASizeChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.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/Checker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.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/ExprEngineCallAndReturn.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopWidening.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/RangedConstraintManager.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/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/Core/WorkList.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.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/Tooling/ASTDiff/ASTDiff.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
  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/Diagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Execution.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFinder.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRLocFinder.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/StandaloneExecution.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/cc1gen_reproducer_main.cpp
  stable/11/contrib/llvm/tools/clang/tools/driver/driver.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.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/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/DLL.h
  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/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/LTO.cpp
  stable/11/contrib/llvm/tools/lld/COFF/MapFile.cpp
  stable/11/contrib/llvm/tools/lld/COFF/MarkLive.cpp
  stable/11/contrib/llvm/tools/lld/COFF/MinGW.cpp
  stable/11/contrib/llvm/tools/lld/COFF/MinGW.h
  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/PDB.h
  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/Common/Args.cpp
  stable/11/contrib/llvm/tools/lld/Common/ErrorHandler.cpp
  stable/11/contrib/llvm/tools/lld/Common/Strings.cpp
  stable/11/contrib/llvm/tools/lld/Common/TargetOptionsCommandFlags.cpp
  stable/11/contrib/llvm/tools/lld/ELF/AArch64ErrataFix.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/AArch64.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/AMDGPU.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/ARM.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/AVR.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/Hexagon.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/Mips.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/PPC.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/PPC64.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/SPARCV9.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/X86.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Arch/X86_64.cpp
  stable/11/contrib/llvm/tools/lld/ELF/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/ELF/CallGraphSort.cpp
  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/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/MapFile.cpp
  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/ScriptLexer.cpp
  stable/11/contrib/llvm/tools/lld/ELF/ScriptLexer.h
  stable/11/contrib/llvm/tools/lld/ELF/ScriptParser.cpp
  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/SyntheticSections.cpp
  stable/11/contrib/llvm/tools/lld/ELF/SyntheticSections.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/FREEBSD-Xlist
  stable/11/contrib/llvm/tools/lld/LICENSE.TXT
  stable/11/contrib/llvm/tools/lld/docs/NewLLD.rst
  stable/11/contrib/llvm/tools/lld/docs/README.txt
  stable/11/contrib/llvm/tools/lld/docs/Readers.rst
  stable/11/contrib/llvm/tools/lld/docs/ReleaseNotes.rst
  stable/11/contrib/llvm/tools/lld/docs/WebAssembly.rst
  stable/11/contrib/llvm/tools/lld/docs/conf.py
  stable/11/contrib/llvm/tools/lld/docs/index.rst
  stable/11/contrib/llvm/tools/lld/docs/ld.lld.1
  stable/11/contrib/llvm/tools/lld/docs/open_projects.rst
  stable/11/contrib/llvm/tools/lld/docs/windows_support.rst
  stable/11/contrib/llvm/tools/lld/include/lld/Common/Args.h
  stable/11/contrib/llvm/tools/lld/include/lld/Common/ErrorHandler.h
  stable/11/contrib/llvm/tools/lld/include/lld/Common/LLVM.h
  stable/11/contrib/llvm/tools/lld/include/lld/Common/Strings.h
  stable/11/contrib/llvm/tools/lld/include/lld/Common/TargetOptionsCommandFlags.h
  stable/11/contrib/llvm/tools/lld/include/lld/Common/Threads.h
  stable/11/contrib/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
  stable/11/contrib/llvm/tools/lld/tools/lld/lld.cpp
  stable/11/contrib/llvm/tools/lldb/FREEBSD-Xlist
  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/SBBreakpoint.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/SBDebugger.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.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/SBFrame.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/SBProcess.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContext.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/SBThreadPlan.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.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/BreakpointName.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/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/Architecture.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/Debugger.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.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/FormatEntity.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.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/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/STLUtils.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/StreamAsynchronousIO.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.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/UniqueCStringMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.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/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/Expression/DWARFExpression.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/ExpressionVariable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.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/Debug.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/File.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.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/TaskPool.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/XML.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/openbsd/HostInfoOpenBSD.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.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/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/OptionArgParser.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/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/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/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/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/CompileUnit.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.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/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/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/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/InstrumentationRuntime.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.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/ProcessLaunchInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ProcessStructReader.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.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/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/UnixSignals.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Log.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Status.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Stream.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.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-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-types.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/module.modulemap
  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/SBBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBreakpointName.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.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/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/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/SBHostOS.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/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/SBProcessInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBQueue.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/SBStructuredData.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/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/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/SystemInitializerFull.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.h
  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/BreakpointName.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/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/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.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/CommandObjectTarget.cpp
  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/AddressResolverFileLine.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Communication.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/DumpDataExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DumpRegisterValue.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/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/IOHandler.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/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/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/StreamAsynchronousIO.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/UserSettingsController.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/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/ExpressionSourceCode.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/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/FileSystem.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/HostThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.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/NativeThreadProtocol.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/ProcessRunLock.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.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/TaskPool.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/netbsd/Host.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/openbsd/Host.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/openbsd/HostInfoOpenBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.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/PipePosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.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/CommandAlias.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/CommandReturnObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionArgParser.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/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/Architecture/Arm/ArchitectureArm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.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.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.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/ASTResultSynthesizer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
  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.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/ClangHost.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.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/Instruction/ARM/EmulateInstructionARM.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
  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/MIPS64/EmulateInstructionMIPS64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.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/CPlusPlusLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
  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/LibCxxBitset.cpp
  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/ObjC/CF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
  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/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/NSString.cpp
  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/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.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/RenderScriptExpressionOpts.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.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/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.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/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/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/NetBSD/PlatformNetBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
  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/Darwin/NativeProcessDarwin.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.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/ProcessFreeBSD.cpp
  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_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.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.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.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_powerpc.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/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/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_ppc64le.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.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.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_x86.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_ppc64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64le.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.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.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/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_arm64.cpp
  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_powerpc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.cpp
  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_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
  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.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/Process/minidump/MinidumpParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.h
  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/ScriptInterpreterPython.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
  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/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/DWARFDataExtractor.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.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/DWARFDebugMacro.cpp
  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.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/DWARFUnit.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.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/SymbolFileDWARFDwoDwp.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.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/PDBLocationToDWARFExpression.cpp
  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/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.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/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/CompilerType.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.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/LineEntry.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/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/InstrumentationRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/JITLoader.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/ModuleCache.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/RegisterContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/RegisterNumber.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/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/ThreadPlanCallOnFunctionExit.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/ArchSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/DataBufferLLVM.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/DataEncoder.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/DataExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/FileSpec.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/Log.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Logging.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Status.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Stream.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StreamString.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/StringList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Timer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/UUID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp
  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.h
  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/MICmdArgValFile.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
  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/MICmdCmdTarget.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
  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/MICmnStreamStdin.cpp
  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/MIDriverMain.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
  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/MIUtilMapIdToVariant.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.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/lli.cpp
  stable/11/contrib/llvm/tools/llvm-ar/llvm-ar.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/CoverageExporter.h
  stable/11/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp
  stable/11/contrib/llvm/tools/llvm-cov/CoverageExporterJson.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/SourceCoverageViewHTML.cpp
  stable/11/contrib/llvm/tools/llvm-cov/TestingSupport.cpp
  stable/11/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
  stable/11/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
  stable/11/contrib/llvm/tools/llvm-dwarfdump/Statistics.cpp
  stable/11/contrib/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
  stable/11/contrib/llvm/tools/llvm-lto/llvm-lto.cpp
  stable/11/contrib/llvm/tools/llvm-lto2/llvm-lto2.cpp
  stable/11/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
  stable/11/contrib/llvm/tools/llvm-mca/CodeRegion.cpp
  stable/11/contrib/llvm/tools/llvm-mca/CodeRegion.h
  stable/11/contrib/llvm/tools/llvm-mca/PipelinePrinter.cpp
  stable/11/contrib/llvm/tools/llvm-mca/PipelinePrinter.h
  stable/11/contrib/llvm/tools/llvm-mca/llvm-mca.cpp
  stable/11/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
  stable/11/contrib/llvm/tools/llvm-objcopy/ObjcopyOpts.td
  stable/11/contrib/llvm/tools/llvm-objcopy/StripOpts.td
  stable/11/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
  stable/11/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.h
  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-pdbutil/DumpOutputStyle.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.h
  stable/11/contrib/llvm/tools/llvm-pdbutil/InputFile.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/InputFile.h
  stable/11/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbutil/MinimalTypeDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/MinimalTypeDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbutil/PdbYaml.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/PdbYaml.h
  stable/11/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.h
  stable/11/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.h
  stable/11/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
  stable/11/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.h
  stable/11/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
  stable/11/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
  stable/11/contrib/llvm/tools/llvm-readobj/ELFDumper.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/WasmDumper.cpp
  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/llvm-xray/xray-account.cpp
  stable/11/contrib/llvm/tools/llvm-xray/xray-converter.cpp
  stable/11/contrib/llvm/tools/llvm-xray/xray-graph.cpp
  stable/11/contrib/llvm/tools/llvm-xray/xray-stacks.cpp
  stable/11/contrib/llvm/tools/opt/Debugify.cpp
  stable/11/contrib/llvm/tools/opt/NewPMDriver.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/CTagsEmitter.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/CodeGenRegisters.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenRegisters.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenSchedule.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenTarget.cpp
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcher.h
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
  stable/11/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/GlobalISelEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/InfoByHwMode.cpp
  stable/11/contrib/llvm/utils/TableGen/InfoByHwMode.h
  stable/11/contrib/llvm/utils/TableGen/InstrDocsEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/PredicateExpander.cpp
  stable/11/contrib/llvm/utils/TableGen/PredicateExpander.h
  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/WebAssemblyDisassemblerEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/X86ModRMFilters.h
  stable/11/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
  stable/11/contrib/openmp/runtime/src/kmp.h
  stable/11/contrib/openmp/runtime/src/kmp_runtime.cpp
  stable/11/contrib/openmp/runtime/src/kmp_wrapper_getpid.h
  stable/11/contrib/openmp/runtime/src/ompt-general.cpp
  stable/11/etc/mtree/BSD.debug.dist
  stable/11/etc/mtree/BSD.usr.dist
  stable/11/gnu/lib/libgcc/Makefile
  stable/11/lib/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/Common/Version.inc
  stable/11/lib/clang/include/llvm/Config/AsmParsers.def
  stable/11/lib/clang/include/llvm/Config/AsmPrinters.def
  stable/11/lib/clang/include/llvm/Config/Disassemblers.def
  stable/11/lib/clang/include/llvm/Config/Targets.def
  stable/11/lib/clang/include/llvm/Config/config.h
  stable/11/lib/clang/include/llvm/Config/llvm-config.h
  stable/11/lib/clang/include/llvm/Support/VCSRevision.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/libclang_rt/Makefile.inc
  stable/11/lib/libclang_rt/asan/Makefile
  stable/11/lib/libclang_rt/asan_dynamic/Makefile
  stable/11/lib/libclang_rt/msan/Makefile
  stable/11/lib/libclang_rt/safestack/Makefile
  stable/11/lib/libclang_rt/stats/Makefile
  stable/11/lib/libclang_rt/tsan/Makefile
  stable/11/lib/libclang_rt/ubsan_standalone/Makefile
  stable/11/share/man/man5/src.conf.5
  stable/11/share/mk/src.opts.mk
  stable/11/sys/arm/conf/NOTES
  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/lldb/Makefile
  stable/11/usr.bin/clang/llvm-cov/Makefile
  stable/11/usr.bin/clang/llvm-mca/Makefile
  stable/11/usr.bin/clang/llvm-objcopy/Makefile
  stable/11/usr.bin/clang/llvm-objdump/Makefile
  stable/11/usr.bin/clang/llvm-pdbutil/Makefile
  stable/11/usr.bin/clang/llvm-tblgen/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/ObsoleteFiles.inc
==============================================================================
--- stable/11/ObsoleteFiles.inc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/ObsoleteFiles.inc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -38,6 +38,158 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20190416: new libc++ import which bumps version from 7.0.1 to 8.0.0.
+OLD_FILES+=usr/include/c++/v1/experimental/dynarray
+# 20190416: new clang import which bumps version from 7.0.1 to 8.0.0.
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/allocator_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/asan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/common_interface_defs.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/coverage_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/dfsan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/esan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/hwasan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/linux_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/lsan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/msan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/netbsd_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/scudo_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/tsan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/tsan_interface_atomic.h
+OLD_DIRS+=usr/lib/clang/7.0.1/include/sanitizer
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_builtin_vars.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_cmath.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_complex_builtins.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_device_functions.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_intrinsics.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_libdevice_declares.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_math_forward_declares.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_runtime_wrapper.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__stddef_max_align_t.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__wmmintrin_aes.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__wmmintrin_pclmul.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/adxintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/altivec.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/ammintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/arm64intr.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/arm_acle.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/arm_fp16.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/arm_neon.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/armintr.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx2intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512bitalgintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512bwintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512cdintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512dqintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512erintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512fintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512ifmaintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512ifmavlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512pfintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vbmi2intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vbmiintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vbmivlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlbitalgintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlbwintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlcdintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vldqintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlvbmi2intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlvnniintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vnniintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vpopcntdqintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vpopcntdqvlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avxintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/bmi2intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/bmiintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/cetintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/cldemoteintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/clflushoptintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/clwbintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/clzerointrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/cpuid.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/emmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/f16cintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/fma4intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/fmaintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/fxsrintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/gfniintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/htmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/htmxlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/ia32intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/immintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/invpcidintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/lwpintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/lzcntintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/mm3dnow.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/mm_malloc.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/mmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/module.modulemap
+OLD_FILES+=usr/lib/clang/7.0.1/include/movdirintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/msa.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/mwaitxintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/nmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/opencl-c.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/pconfigintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/pkuintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/pmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/popcntintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/prfchwintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/ptwriteintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/rdseedintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/rtmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/s390intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sgxintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/shaintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/smmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/tbmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/tmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/vadefs.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/vaesintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/vecintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/vpclmulqdqintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/waitpkgintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/wbnoinvdintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/wmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/x86intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xopintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xsavecintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xsaveintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xsaveoptintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xsavesintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xtestintrin.h
+OLD_DIRS+=usr/lib/clang/7.0.1/include
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-i386.so
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-x86_64.so
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.msan-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.msan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-arm.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-armhf.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.safestack-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats_client-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a
+OLD_DIRS+=usr/lib/clang/7.0.1/lib/freebsd
+OLD_DIRS+=usr/lib/clang/7.0.1/lib
+OLD_DIRS+=usr/lib/clang/7.0.1
 # 20190216: new clang import which bumps version from 6.0.1 to 7.0.1.
 OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/allocator_interface.h
 OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/asan_interface.h

Modified: stable/11/UPDATING
==============================================================================
--- stable/11/UPDATING	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/UPDATING	Tue Apr 16 20:05:24 2019	(r346296)
@@ -16,6 +16,12 @@ from older versions of FreeBSD, try WITHOUT_CLANG and 
 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.
 
+20190416:
+	Clang, llvm, lld, lldb, compiler-rt and libc++ have been upgraded to
+	8.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.
+
 20190226:
 	geom_uzip(4) depends on the new module xz.  If geom_uzip is statically
 	compiled into your custom kernel, add 'device xz' statement to the

Modified: stable/11/contrib/compiler-rt/LICENSE.TXT
==============================================================================
--- stable/11/contrib/compiler-rt/LICENSE.TXT	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/LICENSE.TXT	Tue Apr 16 20:05:24 2019	(r346296)
@@ -14,7 +14,7 @@ Full text of the relevant licenses is included below.
 University of Illinois/NCSA
 Open Source License
 
-Copyright (c) 2009-2018 by the contributors listed in CREDITS.TXT
+Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT
 
 All rights reserved.
 

Modified: stable/11/contrib/compiler-rt/include/sanitizer/allocator_interface.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/sanitizer/allocator_interface.h	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/include/sanitizer/allocator_interface.h	Tue Apr 16 20:05:24 2019	(r346296)
@@ -82,7 +82,6 @@ extern "C" {
      Currently available with ASan only.
   */
   void __sanitizer_purge_allocator(void);
-
 #ifdef __cplusplus
 }  // extern "C"
 #endif

Modified: stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h	Tue Apr 16 20:05:24 2019	(r346296)
@@ -124,6 +124,12 @@ extern "C" {
 
   // Symbolizes the supplied 'pc' using the format string 'fmt'.
   // Outputs at most 'out_buf_size' bytes into 'out_buf'.
+  // If 'out_buf' is not empty then output is zero or more non empty C strings
+  // followed by single empty C string. Multiple strings can be returned if PC
+  // corresponds to inlined function. Inlined frames are printed in the order
+  // from "most-inlined" to the "least-inlined", so the last frame should be the
+  // not inlined function.
+  // Inlined frames can be removed with 'symbolize_inline_frames=0'.
   // 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,

Modified: stable/11/contrib/compiler-rt/include/sanitizer/hwasan_interface.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/sanitizer/hwasan_interface.h	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/include/sanitizer/hwasan_interface.h	Tue Apr 16 20:05:24 2019	(r346296)
@@ -19,6 +19,12 @@
 #ifdef __cplusplus
 extern "C" {
 #endif
+  // Initialize shadow but not the rest of the runtime.
+  // Does not call libc unless there is an error.
+  // Can be called multiple times, or not at all (in which case shadow will
+  // be initialized in compiler-inserted __hwasan_init() call).
+  void __hwasan_shadow_init(void);
+
   // This function may be optionally provided by user and should return
   // a string containing HWASan runtime options. See asan_flags.h for details.
   const char* __hwasan_default_options(void);
@@ -26,6 +32,51 @@ extern "C" {
   void __hwasan_enable_allocator_tagging(void);
   void __hwasan_disable_allocator_tagging(void);
 
+  // Mark region of memory with the given tag. Both address and size need to be
+  // 16-byte aligned.
+  void __hwasan_tag_memory(const volatile void *p, unsigned char tag,
+                           size_t size);
+
+  /// Set pointer tag. Previous tag is lost.
+  void *__hwasan_tag_pointer(const volatile void *p, unsigned char tag);
+
+  // Set memory tag from the current SP address to the given address to zero.
+  // This is meant to annotate longjmp and other non-local jumps.
+  // This function needs to know the (almost) exact destination frame address;
+  // clearing shadow for the entire thread stack like __asan_handle_no_return
+  // does would cause false reports.
+  void __hwasan_handle_longjmp(const void *sp_dst);
+
+  // Libc hook for thread creation. Should be called in the child thread before
+  // any instrumented code.
+  void __hwasan_thread_enter();
+
+  // Libc hook for thread destruction. No instrumented code should run after
+  // this call.
+  void __hwasan_thread_exit();
+
+  // Print shadow and origin for the memory range to stderr in a human-readable
+  // format.
+  void __hwasan_print_shadow(const volatile void *x, size_t size);
+
+  // Print one-line report about the memory usage of the current process.
+  void __hwasan_print_memory_usage();
+
+  int __sanitizer_posix_memalign(void **memptr, size_t alignment, size_t size);
+  void * __sanitizer_memalign(size_t alignment, size_t size);
+  void * __sanitizer_aligned_alloc(size_t alignment, size_t size);
+  void * __sanitizer___libc_memalign(size_t alignment, size_t size);
+  void * __sanitizer_valloc(size_t size);
+  void * __sanitizer_pvalloc(size_t size);
+  void __sanitizer_free(void *ptr);
+  void __sanitizer_cfree(void *ptr);
+  size_t __sanitizer_malloc_usable_size(const void *ptr);
+  struct mallinfo __sanitizer_mallinfo();
+  int __sanitizer_mallopt(int cmd, int value);
+  void __sanitizer_malloc_stats(void);
+  void * __sanitizer_calloc(size_t nmemb, size_t size);
+  void * __sanitizer_realloc(void *ptr, size_t size);
+  void * __sanitizer_malloc(size_t size);
 #ifdef __cplusplus
 }  // extern "C"
 #endif

Modified: stable/11/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h	Tue Apr 16 20:05:24 2019	(r346296)
@@ -21,8 +21,8 @@
 // DO NOT EDIT! THIS FILE HAS BEEN GENERATED!
 //
 // Generated with: generate_netbsd_syscalls.awk
-// Generated date: 2018-03-03
-// Generated from: syscalls.master,v 1.291 2018/01/06 16:41:23 kamil Exp
+// Generated date: 2018-10-30
+// Generated from: syscalls.master,v 1.293 2018/07/31 13:00:13 rjs Exp
 //
 //===----------------------------------------------------------------------===//
 #ifndef SANITIZER_NETBSD_SYSCALL_HOOKS_H
@@ -986,7 +986,15 @@
 #define __sanitizer_syscall_post_fpathconf(res, fd, name)                      \
   __sanitizer_syscall_post_impl_fpathconf(res, (long long)(fd),                \
                                           (long long)(name))
-/* syscall 193 has been skipped */
+#define __sanitizer_syscall_pre_getsockopt2(s, level, name, val, avalsize)     \
+  __sanitizer_syscall_pre_impl_getsockopt2(                                    \
+      (long long)(s), (long long)(level), (long long)(name), (long long)(val), \
+      (long long)(avalsize))
+#define __sanitizer_syscall_post_getsockopt2(res, s, level, name, val,         \
+                                             avalsize)                         \
+  __sanitizer_syscall_post_impl_getsockopt2(                                   \
+      res, (long long)(s), (long long)(level), (long long)(name),              \
+      (long long)(val), (long long)(avalsize))
 #define __sanitizer_syscall_pre_getrlimit(which, rlp)                          \
   __sanitizer_syscall_pre_impl_getrlimit((long long)(which), (long long)(rlp))
 #define __sanitizer_syscall_post_getrlimit(res, which, rlp)                    \
@@ -1752,18 +1760,8 @@
   __sanitizer_syscall_post_impl___sigaction_sigtramp(                          \
       res, (long long)(signum), (long long)(nsa), (long long)(osa),            \
       (long long)(tramp), (long long)(vers))
-#define __sanitizer_syscall_pre_pmc_get_info(ctr, op, args)                    \
-  __sanitizer_syscall_pre_impl_pmc_get_info((long long)(ctr), (long long)(op), \
-                                            (long long)(args))
-#define __sanitizer_syscall_post_pmc_get_info(res, ctr, op, args)              \
-  __sanitizer_syscall_post_impl_pmc_get_info(                                  \
-      res, (long long)(ctr), (long long)(op), (long long)(args))
-#define __sanitizer_syscall_pre_pmc_control(ctr, op, args)                     \
-  __sanitizer_syscall_pre_impl_pmc_control((long long)(ctr), (long long)(op),  \
-                                           (long long)(args))
-#define __sanitizer_syscall_post_pmc_control(res, ctr, op, args)               \
-  __sanitizer_syscall_post_impl_pmc_control(                                   \
-      res, (long long)(ctr), (long long)(op), (long long)(args))
+/* syscall 341 has been skipped */
+/* syscall 342 has been skipped */
 #define __sanitizer_syscall_pre_rasctl(addr, len, op)                          \
   __sanitizer_syscall_pre_impl_rasctl((long long)(addr), (long long)(len),     \
                                       (long long)(op))
@@ -3444,7 +3442,13 @@ void __sanitizer_syscall_post_impl_pathconf(long long 
 void __sanitizer_syscall_pre_impl_fpathconf(long long fd, long long name);
 void __sanitizer_syscall_post_impl_fpathconf(long long res, long long fd,
                                              long long name);
-/* syscall 193 has been skipped */
+void __sanitizer_syscall_pre_impl_getsockopt2(long long s, long long level,
+                                              long long name, long long val,
+                                              long long avalsize);
+void __sanitizer_syscall_post_impl_getsockopt2(long long res, long long s,
+                                               long long level, long long name,
+                                               long long val,
+                                               long long avalsize);
 void __sanitizer_syscall_pre_impl_getrlimit(long long which, long long rlp);
 void __sanitizer_syscall_post_impl_getrlimit(long long res, long long which,
                                              long long rlp);
@@ -4001,14 +4005,8 @@ void __sanitizer_syscall_pre_impl___sigaction_sigtramp
 void __sanitizer_syscall_post_impl___sigaction_sigtramp(
     long long res, long long signum, long long nsa, long long osa,
     long long tramp, long long vers);
-void __sanitizer_syscall_pre_impl_pmc_get_info(long long ctr, long long op,
-                                               long long args);
-void __sanitizer_syscall_post_impl_pmc_get_info(long long res, long long ctr,
-                                                long long op, long long args);
-void __sanitizer_syscall_pre_impl_pmc_control(long long ctr, long long op,
-                                              long long args);
-void __sanitizer_syscall_post_impl_pmc_control(long long res, long long ctr,
-                                               long long op, long long args);
+/* syscall 341 has been skipped */
+/* syscall 342 has been skipped */
 void __sanitizer_syscall_pre_impl_rasctl(long long addr, long long len,
                                          long long op);
 void __sanitizer_syscall_post_impl_rasctl(long long res, long long addr,

Modified: stable/11/contrib/compiler-rt/include/xray/xray_log_interface.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/xray/xray_log_interface.h	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/include/xray/xray_log_interface.h	Tue Apr 16 20:05:24 2019	(r346296)
@@ -158,8 +158,8 @@ struct XRayLogImpl {
   /// The log initialization routine provided by the implementation, always
   /// provided with the following parameters:
   ///
-  ///   - buffer size
-  ///   - maximum number of buffers
+  ///   - buffer size (unused)
+  ///   - maximum number of buffers (unused)
   ///   - a pointer to an argument struct that the implementation MUST handle
   ///   - the size of the argument struct
   ///
@@ -354,26 +354,5 @@ XRayLogFlushStatus __xray_log_process_buffers(void (*P
                                                                 XRayBuffer));
 
 } // extern "C"
-
-namespace __xray {
-
-/// DEPRECATED: Use __xray_log_init_mode(...) instead, and provide flag
-/// configuration strings to set the options instead.
-/// Options used by the LLVM XRay FDR logging implementation.
-struct FDRLoggingOptions {
-  bool ReportErrors = false;
-  int Fd = -1;
-};
-
-/// DEPRECATED: Use __xray_log_init_mode(...) instead, and provide flag
-/// configuration strings to set the options instead.
-/// Options used by the LLVM XRay Basic (Naive) logging implementation.
-struct BasicLoggingOptions {
-  int DurationFilterMicros = 0;
-  size_t MaxStackDepth = 0;
-  size_t ThreadBufferSize = 0;
-};
-
-} // namespace __xray
 
 #endif // XRAY_XRAY_LOG_INTERFACE_H

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_allocator.h
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_allocator.h	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_allocator.h	Tue Apr 16 20:05:24 2019	(r346296)
@@ -148,6 +148,7 @@ const uptr kAllocatorSpace = 0x600000000000ULL;
 const uptr kAllocatorSize  =  0x40000000000ULL;  // 4T.
 typedef DefaultSizeClassMap SizeClassMap;
 # endif
+template <typename AddressSpaceViewTy>
 struct AP64 {  // Allocator64 parameters. Deliberately using a short name.
   static const uptr kSpaceBeg = kAllocatorSpace;
   static const uptr kSpaceSize = kAllocatorSize;
@@ -155,37 +156,57 @@ struct AP64 {  // Allocator64 parameters. Deliberately
   typedef __asan::SizeClassMap SizeClassMap;
   typedef AsanMapUnmapCallback MapUnmapCallback;
   static const uptr kFlags = 0;
+  using AddressSpaceView = AddressSpaceViewTy;
 };
 
-typedef SizeClassAllocator64<AP64> PrimaryAllocator;
+template <typename AddressSpaceView>
+using PrimaryAllocatorASVT = SizeClassAllocator64<AP64<AddressSpaceView>>;
+using PrimaryAllocator = PrimaryAllocatorASVT<LocalAddressSpaceView>;
 #else  // Fallback to SizeClassAllocator32.
 static const uptr kRegionSizeLog = 20;
 static const uptr kNumRegions = SANITIZER_MMAP_RANGE_SIZE >> kRegionSizeLog;
 # if SANITIZER_WORDSIZE == 32
-typedef FlatByteMap<kNumRegions> ByteMap;
+template <typename AddressSpaceView>
+using ByteMapASVT = FlatByteMap<kNumRegions, AddressSpaceView>;
 # elif SANITIZER_WORDSIZE == 64
-typedef TwoLevelByteMap<(kNumRegions >> 12), 1 << 12> ByteMap;
+template <typename AddressSpaceView>
+using ByteMapASVT =
+    TwoLevelByteMap<(kNumRegions >> 12), 1 << 12, AddressSpaceView>;
 # endif
 typedef CompactSizeClassMap SizeClassMap;
+template <typename AddressSpaceViewTy>
 struct AP32 {
   static const uptr kSpaceBeg = 0;
   static const u64 kSpaceSize = SANITIZER_MMAP_RANGE_SIZE;
   static const uptr kMetadataSize = 16;
   typedef __asan::SizeClassMap SizeClassMap;
   static const uptr kRegionSizeLog = __asan::kRegionSizeLog;
-  typedef __asan::ByteMap ByteMap;
+  using AddressSpaceView = AddressSpaceViewTy;
+  using ByteMap = __asan::ByteMapASVT<AddressSpaceView>;
   typedef AsanMapUnmapCallback MapUnmapCallback;
   static const uptr kFlags = 0;
 };
-typedef SizeClassAllocator32<AP32> PrimaryAllocator;
+template <typename AddressSpaceView>
+using PrimaryAllocatorASVT = SizeClassAllocator32<AP32<AddressSpaceView> >;
+using PrimaryAllocator = PrimaryAllocatorASVT<LocalAddressSpaceView>;
 #endif  // SANITIZER_CAN_USE_ALLOCATOR64
 
 static const uptr kNumberOfSizeClasses = SizeClassMap::kNumClasses;
-typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
-typedef LargeMmapAllocator<AsanMapUnmapCallback> SecondaryAllocator;
-typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
-    SecondaryAllocator> AsanAllocator;
+template <typename AddressSpaceView>
+using AllocatorCacheASVT =
+    SizeClassAllocatorLocalCache<PrimaryAllocatorASVT<AddressSpaceView>>;
+using AllocatorCache = AllocatorCacheASVT<LocalAddressSpaceView>;
 
+template <typename AddressSpaceView>
+using SecondaryAllocatorASVT =
+    LargeMmapAllocator<AsanMapUnmapCallback, DefaultLargeMmapAllocatorPtrArray,
+                       AddressSpaceView>;
+template <typename AddressSpaceView>
+using AsanAllocatorASVT =
+    CombinedAllocator<PrimaryAllocatorASVT<AddressSpaceView>,
+                      AllocatorCacheASVT<AddressSpaceView>,
+                      SecondaryAllocatorASVT<AddressSpaceView>>;
+using AsanAllocator = AsanAllocatorASVT<LocalAddressSpaceView>;
 
 struct AsanThreadLocalMallocStorage {
   uptr quarantine_cache[16];

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_errors.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_errors.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_errors.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -125,9 +125,8 @@ void ErrorAllocTypeMismatch::Print() {
   Decorator d;
   Printf("%s", d.Error());
   Report("ERROR: AddressSanitizer: %s (%s vs %s) on %p\n",
-         scariness.GetDescription(),
-         alloc_names[alloc_type], dealloc_names[dealloc_type],
-         addr_description.addr);
+         scariness.GetDescription(), alloc_names[alloc_type],
+         dealloc_names[dealloc_type], addr_description.Address());
   Printf("%s", d.Default());
   CHECK_GT(dealloc_stack->size, 0);
   scariness.Print();

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_errors.h
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_errors.h	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_errors.h	Tue Apr 16 20:05:24 2019	(r346296)
@@ -110,8 +110,8 @@ struct ErrorFreeNotMalloced : ErrorBase {
 
 struct ErrorAllocTypeMismatch : ErrorBase {
   const BufferedStackTrace *dealloc_stack;
-  HeapAddressDescription addr_description;
   AllocType alloc_type, dealloc_type;
+  AddressDescription addr_description;
 
   ErrorAllocTypeMismatch() = default;  // (*)
   ErrorAllocTypeMismatch(u32 tid, BufferedStackTrace *stack, uptr addr,
@@ -119,9 +119,8 @@ struct ErrorAllocTypeMismatch : ErrorBase {
       : ErrorBase(tid, 10, "alloc-dealloc-mismatch"),
         dealloc_stack(stack),
         alloc_type(alloc_type_),
-        dealloc_type(dealloc_type_) {
-    GetHeapAddressInformation(addr, 1, &addr_description);
-  };
+        dealloc_type(dealloc_type_),
+        addr_description(addr, 1, false) {}
   void Print();
 };
 

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_flags.inc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_flags.inc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_flags.inc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -152,8 +152,6 @@ ASAN_FLAG(const char *, suppressions, "", "Suppression
 ASAN_FLAG(bool, halt_on_error, true,
           "Crash the program after printing the first error report "
           "(WARNING: USE AT YOUR OWN RISK!)")
-ASAN_FLAG(bool, use_odr_indicator, false,
-          "Use special ODR indicator symbol for ODR violation detection")
 ASAN_FLAG(bool, allocator_frees_and_returns_null_on_realloc_zero, true,
           "realloc(p, 0) is equivalent to free(p) by default (Same as the "
           "POSIX standard). If set to false, realloc(p, 0) will return a "

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_fuchsia.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_fuchsia.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_fuchsia.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -190,6 +190,13 @@ static void ThreadExitHook(void *hook, uptr os_id) {
   AsanThread::TSDDtor(per_thread);
 }
 
+bool HandleDlopenInit() {
+  // Not supported on this platform.
+  static_assert(!SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+                "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be false");
+  return false;
+}
+
 }  // namespace __asan
 
 // These are declared (in extern "C") by <zircon/sanitizer.h>.

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_globals.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_globals.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_globals.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -83,9 +83,11 @@ static bool IsAddressNearGlobal(uptr addr, const __asa
 }
 
 static void ReportGlobal(const Global &g, const char *prefix) {
-  Report("%s Global[%p]: beg=%p size=%zu/%zu name=%s module=%s dyn_init=%zu\n",
-         prefix, &g, (void *)g.beg, g.size, g.size_with_redzone, g.name,
-         g.module_name, g.has_dynamic_init);
+  Report(
+      "%s Global[%p]: beg=%p size=%zu/%zu name=%s module=%s dyn_init=%zu "
+      "odr_indicator=%p\n",
+      prefix, &g, (void *)g.beg, g.size, g.size_with_redzone, g.name,
+      g.module_name, g.has_dynamic_init, (void *)g.odr_indicator);
   if (g.location) {
     Report("  location (%p): name=%s[%p], %d %d\n", g.location,
            g.location->filename, g.location->filename, g.location->line_no,
@@ -133,6 +135,9 @@ enum GlobalSymbolState {
 // this method in case compiler instruments global variables through their
 // local aliases.
 static void CheckODRViolationViaIndicator(const Global *g) {
+  // Instrumentation requests to skip ODR check.
+  if (g->odr_indicator == UINTPTR_MAX)
+    return;
   u8 *odr_indicator = reinterpret_cast<u8 *>(g->odr_indicator);
   if (*odr_indicator == UNREGISTERED) {
     *odr_indicator = REGISTERED;
@@ -183,9 +188,7 @@ static void CheckODRViolationViaPoisoning(const Global
 // This routine chooses between two different methods of ODR violation
 // detection.
 static inline bool UseODRIndicator(const Global *g) {
-  // Use ODR indicator method iff use_odr_indicator flag is set and
-  // indicator symbol address is not 0.
-  return flags()->use_odr_indicator && g->odr_indicator > 0;
+  return g->odr_indicator > 0;
 }
 
 // Register a global variable.
@@ -248,7 +251,7 @@ static void UnregisterGlobal(const Global *g) {
   // implementation. It might not be worth doing anyway.
 
   // Release ODR indicator.
-  if (UseODRIndicator(g)) {
+  if (UseODRIndicator(g) && g->odr_indicator != UINTPTR_MAX) {
     u8 *odr_indicator = reinterpret_cast<u8 *>(g->odr_indicator);
     *odr_indicator = UNREGISTERED;
   }

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_globals_win.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_globals_win.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_globals_win.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -29,7 +29,7 @@ static void call_on_globals(void (*hook)(__asan_global
   __asan_global *end = &__asan_globals_end;
   uptr bytediff = (uptr)end - (uptr)start;
   if (bytediff % sizeof(__asan_global) != 0) {
-#ifdef SANITIZER_DLL_THUNK
+#if defined(SANITIZER_DLL_THUNK) || defined(SANITIZER_DYNAMIC_RUNTIME_THUNK)
     __debugbreak();
 #else
     CHECK("corrupt asan global array");

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_internal.h
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_internal.h	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_internal.h	Tue Apr 16 20:05:24 2019	(r346296)
@@ -111,6 +111,11 @@ void *AsanDlSymNext(const char *sym);
 
 void ReserveShadowMemoryRange(uptr beg, uptr end, const char *name);
 
+// Returns `true` iff most of ASan init process should be skipped due to the
+// ASan library being loaded via `dlopen()`. Platforms may perform any
+// `dlopen()` specific initialization inside this function.
+bool HandleDlopenInit();
+
 // Add convenient macro for interface functions that may be represented as
 // weak hooks.
 #define ASAN_MALLOC_HOOK(ptr, size)                                   \

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_linux.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_linux.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_linux.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -248,6 +248,13 @@ void *AsanDlSymNext(const char *sym) {
   return dlsym(RTLD_NEXT, sym);
 }
 
+bool HandleDlopenInit() {
+  // Not supported on this platform.
+  static_assert(!SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+                "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be false");
+  return false;
+}
+
 } // namespace __asan
 
 #endif  // SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_NETBSD ||

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -209,7 +209,7 @@ INTERCEPTOR(struct fake_mallinfo, mallinfo, void) {
 }
 
 INTERCEPTOR(int, mallopt, int cmd, int value) {
-  return -1;
+  return 0;
 }
 #endif // SANITIZER_INTERCEPT_MALLOPT_AND_MALLINFO
 

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -61,4 +61,25 @@ using namespace __asan;
 
 #include "sanitizer_common/sanitizer_malloc_mac.inc"
 
+namespace COMMON_MALLOC_NAMESPACE {
+bool HandleDlopenInit() {
+  static_assert(SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+                "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be true");
+  // We have no reliable way of knowing how we are being loaded
+  // so make it a requirement on Apple platforms to set this environment
+  // variable to indicate that we want to perform initialization via
+  // dlopen().
+  auto init_str = GetEnv("APPLE_ASAN_INIT_FOR_DLOPEN");
+  if (!init_str)
+    return false;
+  if (internal_strncmp(init_str, "1", 1) != 0)
+    return false;
+  // When we are loaded via `dlopen()` path we still initialize the malloc zone
+  // so Symbolication clients (e.g. `leaks`) that load the ASan allocator can
+  // find an initialized malloc zone.
+  InitMallocZoneFields();
+  return true;
+}
+}  // namespace COMMON_MALLOC_NAMESPACE
+
 #endif

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_malloc_win.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_malloc_win.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -14,9 +14,18 @@
 
 #include "sanitizer_common/sanitizer_platform.h"
 #if SANITIZER_WINDOWS
-#define WIN32_LEAN_AND_MEAN
-#include <windows.h>
+// Intentionally not including windows.h here, to avoid the risk of
+// pulling in conflicting declarations of these functions. (With mingw-w64,
+// there's a risk of windows.h pulling in stdint.h.)
+typedef int BOOL;
+typedef void *HANDLE;
+typedef const void *LPCVOID;
+typedef void *LPVOID;
 
+#define HEAP_ZERO_MEMORY           0x00000008
+#define HEAP_REALLOC_IN_PLACE_ONLY 0x00000010
+
+
 #include "asan_allocator.h"
 #include "asan_interceptors.h"
 #include "asan_internal.h"
@@ -125,13 +134,18 @@ void *_recalloc_base(void *p, size_t n, size_t elem_si
 }
 
 ALLOCATION_FUNCTION_ATTRIBUTE
-size_t _msize(const void *ptr) {
+size_t _msize(void *ptr) {
   GET_CURRENT_PC_BP_SP;
   (void)sp;
   return asan_malloc_usable_size(ptr, pc, bp);
 }
 
 ALLOCATION_FUNCTION_ATTRIBUTE
+size_t _msize_base(void *ptr) {
+  return _msize(ptr);
+}
+
+ALLOCATION_FUNCTION_ATTRIBUTE
 void *_expand(void *memblock, size_t size) {
   // _expand is used in realloc-like functions to resize the buffer if possible.
   // We don't want memory to stand still while resizing buffers, so return 0.
@@ -226,6 +240,7 @@ void ReplaceSystemMalloc() {
   TryToOverrideFunction("_recalloc_base", (uptr)_recalloc);
   TryToOverrideFunction("_recalloc_crt", (uptr)_recalloc);
   TryToOverrideFunction("_msize", (uptr)_msize);
+  TryToOverrideFunction("_msize_base", (uptr)_msize);
   TryToOverrideFunction("_expand", (uptr)_expand);
   TryToOverrideFunction("_expand_base", (uptr)_expand);
 

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_new_delete.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_new_delete.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_new_delete.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -26,7 +26,7 @@
 // anyway by passing extra -export flags to the linker, which is exactly that
 // dllexport would normally do. We need to export them in order to make the
 // VS2015 dynamic CRT (MD) work.
-#if SANITIZER_WINDOWS
+#if SANITIZER_WINDOWS && defined(_MSC_VER)
 #define CXX_OPERATOR_ATTRIBUTE
 #define COMMENT_EXPORT(sym) __pragma(comment(linker, "/export:" sym))
 #ifdef _WIN64

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_posix.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_posix.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_posix.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -40,6 +40,51 @@ void AsanOnDeadlySignal(int signo, void *siginfo, void
 
 // ---------------------- TSD ---------------- {{{1
 
+#if SANITIZER_NETBSD || SANITIZER_FREEBSD
+// Thread Static Data cannot be used in early init on NetBSD and FreeBSD.
+// Reuse the Asan TSD API for compatibility with existing code
+// with an alternative implementation.
+
+static void (*tsd_destructor)(void *tsd) = nullptr;
+
+struct tsd_key {
+  tsd_key() : key(nullptr) {}
+  ~tsd_key() {
+    CHECK(tsd_destructor);
+    if (key)
+      (*tsd_destructor)(key);
+  }
+  void *key;
+};
+
+static thread_local struct tsd_key key;
+
+void AsanTSDInit(void (*destructor)(void *tsd)) {
+  CHECK(!tsd_destructor);
+  tsd_destructor = destructor;
+}
+
+void *AsanTSDGet() {
+  CHECK(tsd_destructor);
+  return key.key;
+}
+
+void AsanTSDSet(void *tsd) {
+  CHECK(tsd_destructor);
+  CHECK(tsd);
+  CHECK(!key.key);
+  key.key = tsd;
+}
+
+void PlatformTSDDtor(void *tsd) {
+  CHECK(tsd_destructor);
+  CHECK_EQ(key.key, tsd);
+  key.key = nullptr;
+  // Make sure that signal handler can not see a stale current thread pointer.
+  atomic_signal_fence(memory_order_seq_cst);
+  AsanThread::TSDDtor(tsd);
+}
+#else
 static pthread_key_t tsd_key;
 static bool tsd_key_inited = false;
 void AsanTSDInit(void (*destructor)(void *tsd)) {
@@ -67,6 +112,7 @@ void PlatformTSDDtor(void *tsd) {
   }
   AsanThread::TSDDtor(tsd);
 }
+#endif
 }  // namespace __asan
 
 #endif  // SANITIZER_POSIX

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_report.h
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_report.h	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_report.h	Tue Apr 16 20:05:24 2019	(r346296)
@@ -12,6 +12,9 @@
 // ASan-private header for error reporting functions.
 //===----------------------------------------------------------------------===//
 
+#ifndef ASAN_REPORT_H
+#define ASAN_REPORT_H
+
 #include "asan_allocator.h"
 #include "asan_internal.h"
 #include "asan_thread.h"
@@ -92,3 +95,4 @@ void ReportMacCfReallocUnknown(uptr addr, uptr zone_pt
                                BufferedStackTrace *stack);
 
 }  // namespace __asan
+#endif  // ASAN_REPORT_H

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_rtems.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_rtems.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_rtems.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -213,6 +213,12 @@ static void HandleExit() {
   }
 }
 
+bool HandleDlopenInit() {
+  // Not supported on this platform.
+  static_assert(!SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+                "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be false");
+  return false;
+}
 }  // namespace __asan
 
 // These are declared (in extern "C") by <some_path/sanitizer.h>.

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_rtl.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_rtl.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_rtl.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -383,6 +383,19 @@ void PrintAddressSpaceLayout() {
           kHighShadowBeg > kMidMemEnd);
 }
 
+#if defined(__thumb__) && defined(__linux__)
+#define START_BACKGROUND_THREAD_IN_ASAN_INTERNAL
+#endif
+
+#ifndef START_BACKGROUND_THREAD_IN_ASAN_INTERNAL
+static bool UNUSED __local_asan_dyninit = [] {
+  MaybeStartBackgroudThread();
+  SetSoftRssLimitExceededCallback(AsanSoftRssLimitExceededCallback);
+
+  return false;
+}();
+#endif
+
 static void AsanInitInternal() {
   if (LIKELY(asan_inited)) return;
   SanitizerToolName = "AddressSanitizer";
@@ -396,6 +409,14 @@ static void AsanInitInternal() {
   // initialization steps look at flags().
   InitializeFlags();
 
+  // Stop performing init at this point if we are being loaded via
+  // dlopen() and the platform supports it.
+  if (SANITIZER_SUPPORTS_INIT_FOR_DLOPEN && UNLIKELY(HandleDlopenInit())) {
+    asan_init_is_running = false;
+    VReport(1, "AddressSanitizer init is being performed for dlopen().\n");
+    return;
+  }
+
   AsanCheckIncompatibleRT();
   AsanCheckDynamicRTPrereqs();
   AvoidCVE_2016_2143();
@@ -420,6 +441,8 @@ static void AsanInitInternal() {
   __asan_option_detect_stack_use_after_return =
       flags()->detect_stack_use_after_return;
 
+  __sanitizer::InitializePlatformEarly();
+
   // Re-exec ourselves if we need to set additional env or command line args.
   MaybeReexec();
 
@@ -447,8 +470,10 @@ static void AsanInitInternal() {
   allocator_options.SetFrom(flags(), common_flags());
   InitializeAllocator(allocator_options);
 
+#ifdef START_BACKGROUND_THREAD_IN_ASAN_INTERNAL
   MaybeStartBackgroudThread();
   SetSoftRssLimitExceededCallback(AsanSoftRssLimitExceededCallback);
+#endif
 
   // On Linux AsanThread::ThreadStart() calls malloc() that's why asan_inited
   // should be set to 1 prior to initializing the threads.

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_thread.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_thread.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_thread.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -223,9 +223,11 @@ void AsanThread::Init(const InitOptions *options) {
   atomic_store(&stack_switching_, false, memory_order_release);
   CHECK_EQ(this->stack_size(), 0U);
   SetThreadStackAndTls(options);
-  CHECK_GT(this->stack_size(), 0U);
-  CHECK(AddrIsInMem(stack_bottom_));
-  CHECK(AddrIsInMem(stack_top_ - 1));
+  if (stack_top_ != stack_bottom_) {
+    CHECK_GT(this->stack_size(), 0U);
+    CHECK(AddrIsInMem(stack_bottom_));
+    CHECK(AddrIsInMem(stack_top_ - 1));
+  }
   ClearShadowForThreadStackAndTLS();
   fake_stack_ = nullptr;
   if (__asan_option_detect_stack_use_after_return)
@@ -289,20 +291,23 @@ void AsanThread::SetThreadStackAndTls(const InitOption
   DCHECK_EQ(options, nullptr);
   uptr tls_size = 0;
   uptr stack_size = 0;
-  GetThreadStackAndTls(tid() == 0, const_cast<uptr *>(&stack_bottom_),
-                       const_cast<uptr *>(&stack_size), &tls_begin_, &tls_size);
+  GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size, &tls_begin_,
+                       &tls_size);
   stack_top_ = stack_bottom_ + stack_size;
   tls_end_ = tls_begin_ + tls_size;
   dtls_ = DTLS_Get();
 
-  int local;
-  CHECK(AddrIsInStack((uptr)&local));
+  if (stack_top_ != stack_bottom_) {
+    int local;
+    CHECK(AddrIsInStack((uptr)&local));
+  }
 }
 
 #endif  // !SANITIZER_FUCHSIA && !SANITIZER_RTEMS
 
 void AsanThread::ClearShadowForThreadStackAndTLS() {
-  PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
+  if (stack_top_ != stack_bottom_)
+    PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
   if (tls_begin_ != tls_end_) {
     uptr tls_begin_aligned = RoundDownTo(tls_begin_, SHADOW_GRANULARITY);
     uptr tls_end_aligned = RoundUpTo(tls_end_, SHADOW_GRANULARITY);
@@ -314,6 +319,9 @@ void AsanThread::ClearShadowForThreadStackAndTLS() {
 
 bool AsanThread::GetStackFrameAccessByAddr(uptr addr,
                                            StackFrameAccess *access) {
+  if (stack_top_ == stack_bottom_)
+    return false;
+
   uptr bottom = 0;
   if (AddrIsInStack(addr)) {
     bottom = stack_bottom();

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_win.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_win.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_win.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -159,6 +159,14 @@ INTERCEPTOR_WINAPI(DWORD, CreateThread,
 namespace __asan {
 
 void InitializePlatformInterceptors() {
+  // The interceptors were not designed to be removable, so we have to keep this
+  // module alive for the life of the process.
+  HMODULE pinned;
+  CHECK(GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS |
+                           GET_MODULE_HANDLE_EX_FLAG_PIN,
+                           (LPCWSTR)&InitializePlatformInterceptors,
+                           &pinned));
+
   ASAN_INTERCEPT_FUNC(CreateThread);
   ASAN_INTERCEPT_FUNC(SetUnhandledExceptionFilter);
 
@@ -312,6 +320,13 @@ int __asan_set_seh_filter() {
   if (prev_seh_handler != &SEHHandler)
     default_seh_handler = prev_seh_handler;
   return 0;
+}
+
+bool HandleDlopenInit() {
+  // Not supported on this platform.
+  static_assert(!SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+                "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be false");
+  return false;
 }
 
 #if !ASAN_DYNAMIC

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc	Tue Apr 16 20:05:24 2019	(r346296)
@@ -48,6 +48,7 @@ INTERCEPT_WRAP_W_WWW(_recalloc)
 INTERCEPT_WRAP_W_WWW(_recalloc_base)
 
 INTERCEPT_WRAP_W_W(_msize)
+INTERCEPT_WRAP_W_W(_msize_base)
 INTERCEPT_WRAP_W_W(_expand)
 INTERCEPT_WRAP_W_W(_expand_dbg)
 

Modified: stable/11/contrib/compiler-rt/lib/builtins/arm/addsf3.S
==============================================================================
--- stable/11/contrib/compiler-rt/lib/builtins/arm/addsf3.S	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/builtins/arm/addsf3.S	Tue Apr 16 20:05:24 2019	(r346296)
@@ -178,7 +178,7 @@ LOCAL_LABEL(do_substraction):
 
   push {r0, r1, r2, r3}
   movs r0, r4
-  bl   __clzsi2
+  bl   SYMBOL_NAME(__clzsi2)
   movs r5, r0
   pop {r0, r1, r2, r3}
   // shift = rep_clz(aSignificand) - rep_clz(implicitBit << 3);

Modified: stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
==============================================================================
--- stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S	Tue Apr 16 20:04:22 2019	(r346295)
+++ stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S	Tue Apr 16 20:05:24 2019	(r346296)
@@ -55,7 +55,7 @@ DEFINE_COMPILERRT_FUNCTION(__aeabi_cdcmpeq)
         mov ip, #APSR_C
         msr APSR_nzcvq, ip
 #else
-        msr CPSR_f, #APSR_C
+        msr APSR_nzcvq, #APSR_C

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





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904162005.x3GK5SUZ019987>