Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Sep 2017 19:56:41 +0000 (UTC)
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: r324023 - in stable/11: . contrib/compiler-rt/include/sanitizer contrib/compiler-rt/include/xray contrib/compiler-rt/lib/asan contrib/compiler-rt/lib/builtins contrib/compiler-rt/lib/bu...
Message-ID:  <201709261956.v8QJuf2V022547@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Tue Sep 26 19:56:36 2017
New Revision: 324023
URL: https://svnweb.freebsd.org/changeset/base/324023

Log:
  Merge clang, llvm, lld, lldb, compiler-rt and libc++ 5.0.0 release.
  
  MFC r309126 (by emaste):
  
    Correct lld llvm-tblgen dependency file name
  
  MFC r309169:
  
    Get rid of separate Subversion mergeinfo properties for llvm-dwarfdump
    and llvm-lto.  The mergeinfo confuses Subversion enormously, and these
    directories will just use the mergeinfo for llvm itself.
  
  MFC r312765:
  
    Pull in r276136 from upstream llvm trunk (by Wei Mi):
  
      Use ValueOffsetPair to enhance value reuse during SCEV expansion.
  
      In D12090, the ExprValueMap was added to reuse existing value during
      SCEV expansion. However, const folding and sext/zext distribution can
      make the reuse still difficult.
  
      A simplified case is: suppose we know S1 expands to V1 in
      ExprValueMap, and
        S1 = S2 + C_a
        S3 = S2 + C_b
      where C_a and C_b are different SCEVConstants. Then we'd like to
      expand S3 as V1 - C_a + C_b instead of expanding S2 literally. It is
      helpful when S2 is a complex SCEV expr and S2 has no entry in
      ExprValueMap, which is usually caused by the fact that S3 is
      generated from S1 after const folding.
  
      In order to do that, we represent ExprValueMap as a mapping from SCEV
      to ValueOffsetPair. We will save both S1->{V1, 0} and S2->{V1, C_a}
      into the ExprValueMap when we create SCEV for V1. When S3 is
      expanded, it will first expand S2 to V1 - C_a because of S2->{V1,
      C_a} in the map, then expand S3 to V1 - C_a + C_b.
  
      Differential Revision: https://reviews.llvm.org/D21313
  
    This should fix assertion failures when building OpenCV >= 3.1.
  
    PR:		215649
  
  MFC r312831:
  
    Revert r312765 for now, since it causes assertions when building
    lang/spidermonkey24.
  
    Reported by:	antoine
    PR:		215649
  
  MFC r316511 (by jhb):
  
    Add an implementation of __ffssi2() derived from __ffsdi2().
  
    Newer versions of GCC include an __ffssi2() symbol in libgcc and the
    compiler can emit calls to it in generated code.  This is true for at
    least GCC 6.2 when compiling world for mips and mips64.
  
    Reviewed by:	jmallett, dim
    Sponsored by:	DARPA / AFRL
    Differential Revision:	https://reviews.freebsd.org/D10086
  
  MFC r318601 (by adrian):
  
    [libcompiler-rt] add bswapdi2/bswapsi2
  
    This is required for mips gcc 6.3 userland to build/run.
  
    Reviewed by:	emaste, dim
    Approved by:	emaste
    Differential Revision:	https://reviews.freebsd.org/D10838
  
  MFC r318884 (by emaste):
  
    lldb: map TRAP_CAP to a trace trap
  
    In the absense of a more specific handler for TRAP_CAP (generated by
    ENOTCAPABLE or ECAPMODE while in capability mode) treat it as a trace
    trap.
  
    Example usage (testing the bug in PR219173):
  
    % proccontrol -m trapcap lldb usr.bin/hexdump/obj/hexdump -- -Cv -s 1 /bin/ls
    ...
    (lldb) run
    Process 12980 launching
    Process 12980 launched: '.../usr.bin/hexdump/obj/hexdump' (x86_64)
    Process 12980 stopped
    * thread #1, stop reason = trace
        frame #0: 0x0000004b80c65f1a libc.so.7`__sys_lseek + 10
    ...
  
    In the future we should have LLDB control the trapcap procctl itself
    (as it does with ASLR), as well as report a specific stop reason.
    This change eliminates an assertion failure from LLDB for now.
  
  MFC r319796:
  
    Remove a few unneeded files from libllvm, libclang and liblldb.
  
  MFC r319885 (by emaste):
  
    lld: ELF: Fix ICF crash on absolute symbol relocations.
  
    If two sections contained relocations to absolute symbols with the same
    value we would crash when trying to access their sections. Add a check that
    both symbols point to sections before accessing their sections, and treat
    absolute symbols as equal if their values are equal.
  
    Obtained from:	LLD commit r292578
  
  MFC r319918:
  
    Revert r319796 for now, it can cause undefined references when linking
    in some circumstances.
  
    Reported by:	Shawn Webb <shawn.webb@hardenedbsd.org>
  
  MFC r319957 (by emaste):
  
    lld: Add armelf emulation mode
  
    Obtained from:	LLD r305375
  
  MFC r321369:
  
    Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
    5.0.0 (trunk r308421).  Upstream has branched for the 5.0.0 release,
    which should be in about a month.  Please report bugs and regressions,
    so we can get them into the release.
  
    Please note that from 3.5.0 onwards, clang, llvm and lldb require C++11
    support to build; see UPDATING for more information.
  
  MFC r321420:
  
    Add a few more object files to liblldb, which should solve errors when
    linking the lldb executable in some cases.  In particular, when the
    -ffunction-sections -fdata-sections options are turned off, or
    ineffective.
  
    Reported by:	Shawn Webb, Mark Millard
  
  MFC r321433:
  
    Cleanup stale Options.inc files from the previous libllvm build for
    clang 4.0.0.  Otherwise, these can get included before the two newly
    generated ones (which are different) for clang 5.0.0.
  
    Reported by:	Mark Millard
  
  MFC r321439 (by bdrewery):
  
    Move llvm Options.inc hack from r321433 for NO_CLEAN to lib/clang/libllvm.
  
    The files are only ever generated to .OBJDIR, not to WORLDTMP (as a
    sysroot) and are only ever included from a compilation.  So using
    a beforebuild target here removes the file before the compilation
    tries to include it.
  
  MFC r321664:
  
    Pull in r308891 from upstream llvm trunk (by Benjamin Kramer):
  
      [CodeGenPrepare] Cut off FindAllMemoryUses if there are too many uses.
  
      This avoids excessive compile time. The case I'm looking at is
      Function.cpp from an old version of LLVM that still had the giant
      memcmp string matcher in it. Before r308322 this compiled in about 2
      minutes, after it, clang takes infinite* time to compile it. With
      this patch we're at 5 min, which is still bad but this is a
      pathological case.
  
      The cut off at 20 uses was chosen by looking at other cut-offs in LLVM
      for user scanning. It's probably too high, but does the job and is
      very unlikely to regress anything.
  
      Fixes PR33900.
  
      * I'm impatient and aborted after 15 minutes, on the bug report it was
        killed after 2h.
  
    Pull in r308986 from upstream llvm trunk (by Simon Pilgrim):
  
      [X86][CGP] Reduce memcmp() expansion to 2 load pairs (PR33914)
  
      D35067/rL308322 attempted to support up to 4 load pairs for memcmp
      inlining which resulted in regressions for some optimized libc memcmp
      implementations (PR33914).
  
      Until we can match these more optimal cases, this patch reduces the
      memcmp expansion to a maximum of 2 load pairs (which matches what we
      do for -Os).
  
      This patch should be considered for the 5.0.0 release branch as well
  
      Differential Revision: https://reviews.llvm.org/D35830
  
    These fix a hang (or extremely long compile time) when building older
    LLVM ports.
  
    Reported by:    antoine
    PR:             219139
  
  MFC r321719:
  
    Pull in r309503 from upstream clang trunk (by Richard Smith):
  
      PR33902: Invalidate line number cache when adding more text to
      existing buffer.
  
      This led to crashes as the line number cache would report a bogus
      line number for a line of code, and we'd try to find a nonexistent
      column within the line when printing diagnostics.
  
    This fixes an assertion when building the graphics/champlain port.
  
    Reported by:	antoine, kwm
    PR:		219139
  
  MFC r321723:
  
    Upgrade our copies of clang, llvm, lld and lldb to r309439 from the
    upstream release_50 branch.  This is just after upstream's 5.0.0-rc1.
  
  MFC r322320:
  
    Upgrade our copies of clang, llvm and libc++ to r310316 from the
    upstream release_50 branch.
  
  MFC r322326 (by emaste):
  
    lldb: Make i386-*-freebsd expression work on JIT path
  
    * Enable i386 ABI creation for freebsd
    * Added an extra argument in ABISysV_i386::PrepareTrivialCall for mmap
      syscall
    * Unlike linux, the last argument of mmap is actually 64-bit(off_t).
      This requires us to push an additional word for the higher order bits.
    * Prior to this change, ktrace dump will show mmap failures due to
      invalid argument coming from the 6th mmap argument.
  
    Submitted by:	Karnajit Wangkhem
    Differential Revision:	https://reviews.llvm.org/D34776
  
  MFC r322360 (by emaste):
  
    lldb: Report inferior signals as signals, not exceptions, on FreeBSD
  
    This is the FreeBSD equivalent of LLVM r238549.
  
    This serves 2 purposes:
  
    * LLDB should handle inferior process signals SIGSEGV/SIGILL/SIGBUS/
      SIGFPE the way it is suppose to be handled. Prior to this fix these
      signals will neither create a coredump, nor exit from the debugger
      or work for signal handling scenario.
    * eInvalidCrashReason need not report "unknown crash reason" if we have
      a valid si_signo
  
    llvm.org/pr23699
  
    Patch by Karnajit Wangkhem
  
    Differential Revision:  https://reviews.llvm.org/D35223
  
    Submitted by:	Karnajit Wangkhem
    Obtained from:	LLVM r310591
  
  MFC r322474 (by emaste):
  
    lld: Add `-z muldefs` option.
  
    Obtained from:	LLVM r310757
  
  MFC r322740:
  
    Upgrade our copies of clang, llvm, lld and libc++ to r311219 from the
    upstream release_50 branch.
  
  MFC r322855:
  
    Upgrade our copies of clang, llvm, lldb and compiler-rt to r311606 from
    the upstream release_50 branch.
  
    As of this version, lib/msun's trig test should also work correctly
    again (see bug 220989 for more information).
  
    PR:		220989
  
  MFC r323112:
  
    Upgrade our copies of clang, llvm, lldb and compiler-rt to r312293 from
    the upstream release_50 branch.  This corresponds to 5.0.0 rc4.
  
    As of this version, the cad/stepcode port should now compile in a more
    reasonable time on i386 (see bug 221836 for more information).
  
    PR:		221836
  
  MFC r323245:
  
    Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
    5.0.0 release (upstream r312559).
  
    Release notes for llvm, clang and lld will be available here soon:
    <http://releases.llvm.org/5.0.0/docs/ReleaseNotes.html>;
    <http://releases.llvm.org/5.0.0/tools/clang/docs/ReleaseNotes.html>;
    <http://releases.llvm.org/5.0.0/tools/lld/docs/ReleaseNotes.html>;
  
    Relnotes:	yes

Added:
  stable/11/contrib/compiler-rt/include/sanitizer/tsan_interface.h
     - copied unchanged from r321369, head/contrib/compiler-rt/include/sanitizer/tsan_interface.h
  stable/11/contrib/compiler-rt/include/xray/xray_log_interface.h
     - copied unchanged from r321369, head/contrib/compiler-rt/include/xray/xray_log_interface.h
  stable/11/contrib/compiler-rt/lib/asan/asan_interface.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/asan/asan_interface.inc
  stable/11/contrib/compiler-rt/lib/asan/asan_win_weak_interception.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/asan/asan_win_weak_interception.cc
  stable/11/contrib/compiler-rt/lib/builtins/arm/addsf3.S
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/builtins/arm/addsf3.S
  stable/11/contrib/compiler-rt/lib/builtins/bswapdi2.c
     - copied, changed from r318601, head/contrib/compiler-rt/lib/builtins/bswapdi2.c
  stable/11/contrib/compiler-rt/lib/builtins/bswapsi2.c
     - copied, changed from r318601, head/contrib/compiler-rt/lib/builtins/bswapsi2.c
  stable/11/contrib/compiler-rt/lib/builtins/ffssi2.c
     - copied unchanged from r316511, head/contrib/compiler-rt/lib/builtins/ffssi2.c
  stable/11/contrib/compiler-rt/lib/builtins/os_version_check.c
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/builtins/os_version_check.c
  stable/11/contrib/compiler-rt/lib/lsan/lsan_common_mac.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/lsan/lsan_common_mac.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_linux.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/lsan/lsan_linux.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_mac.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/lsan/lsan_mac.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_malloc_mac.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/lsan/lsan_malloc_mac.cc
  stable/11/contrib/compiler-rt/lib/lsan/weak_symbols.txt
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/lsan/weak_symbols.txt
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingNameVar.c
     - copied, changed from r321369, head/contrib/compiler-rt/lib/profile/InstrProfilingNameVar.c
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface_posix.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface_posix.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_interface.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_interface.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno_codes.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno_codes.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ar_to_bc.sh
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ar_to_bc.sh
  stable/11/contrib/compiler-rt/lib/scudo/scudo_allocator_combined.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/scudo/scudo_allocator_combined.h
  stable/11/contrib/compiler-rt/lib/scudo/scudo_tls.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/scudo/scudo_tls.h
  stable/11/contrib/compiler-rt/lib/scudo/scudo_tls_android.cpp
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/scudo/scudo_tls_android.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_tls_android.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/scudo/scudo_tls_android.inc
  stable/11/contrib/compiler-rt/lib/scudo/scudo_tls_context_android.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/scudo/scudo_tls_context_android.inc
  stable/11/contrib/compiler-rt/lib/scudo/scudo_tls_context_linux.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/scudo/scudo_tls_context_linux.inc
  stable/11/contrib/compiler-rt/lib/scudo/scudo_tls_linux.cpp
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/scudo/scudo_tls_linux.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_tls_linux.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/scudo/scudo_tls_linux.inc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_external.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/tsan/rtl/tsan_external.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_interface.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/ubsan/ubsan_interface.inc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_always_instrument.txt
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_always_instrument.txt
  stable/11/contrib/compiler-rt/lib/xray/xray_fdr_log_records.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_fdr_log_records.h
  stable/11/contrib/compiler-rt/lib/xray/xray_fdr_logging.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_fdr_logging.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_fdr_logging.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_fdr_logging.h
  stable/11/contrib/compiler-rt/lib/xray/xray_fdr_logging_impl.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_fdr_logging_impl.h
  stable/11/contrib/compiler-rt/lib/xray/xray_log_interface.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_log_interface.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_mips.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_mips.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_mips64.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_mips64.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_never_instrument.txt
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_never_instrument.txt
  stable/11/contrib/compiler-rt/lib/xray/xray_powerpc64.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_powerpc64.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_powerpc64.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_powerpc64.inc
  stable/11/contrib/compiler-rt/lib/xray/xray_trampoline_mips.S
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_trampoline_mips.S
  stable/11/contrib/compiler-rt/lib/xray/xray_trampoline_mips64.S
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_trampoline_mips64.S
  stable/11/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64_asm.S
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_trampoline_powerpc64_asm.S
  stable/11/contrib/compiler-rt/lib/xray/xray_tsc.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_tsc.h
  stable/11/contrib/compiler-rt/lib/xray/xray_utils.cc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_utils.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_utils.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_utils.h
  stable/11/contrib/compiler-rt/lib/xray/xray_x86_64.inc
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/xray/xray_x86_64.inc
  stable/11/contrib/libc++/include/__undef_macros
     - copied unchanged from r321369, head/contrib/libc++/include/__undef_macros
  stable/11/contrib/libc++/include/experimental/coroutine
     - copied unchanged from r321369, head/contrib/libc++/include/experimental/coroutine
  stable/11/contrib/libc++/src/experimental/filesystem/filesystem_time_helper.h
     - copied unchanged from r321369, head/contrib/libc++/src/experimental/filesystem/filesystem_time_helper.h
  stable/11/contrib/libc++/src/functional.cpp
     - copied unchanged from r321369, head/contrib/libc++/src/functional.cpp
  stable/11/contrib/libc++/src/include/refstring.h
     - copied unchanged from r321369, head/contrib/libc++/src/include/refstring.h
  stable/11/contrib/libc++/src/support/
     - copied from r321369, head/contrib/libc++/src/support/
  stable/11/contrib/libc++/src/vector.cpp
     - copied unchanged from r321369, head/contrib/libc++/src/vector.cpp
  stable/11/contrib/llvm/include/llvm/ADT/BreadthFirstIterator.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/ADT/BreadthFirstIterator.h
  stable/11/contrib/llvm/include/llvm/Analysis/CFLAliasAnalysisUtils.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Analysis/CFLAliasAnalysisUtils.h
  stable/11/contrib/llvm/include/llvm/Analysis/MemorySSA.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Analysis/MemorySSA.h
  stable/11/contrib/llvm/include/llvm/Analysis/MemorySSAUpdater.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Analysis/MemorySSAUpdater.h
  stable/11/contrib/llvm/include/llvm/Analysis/ObjectUtils.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Analysis/ObjectUtils.h
  stable/11/contrib/llvm/include/llvm/BinaryFormat/
     - copied from r321369, head/contrib/llvm/include/llvm/BinaryFormat/
  stable/11/contrib/llvm/include/llvm/CodeGen/ExecutionDepsFix.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/ExecutionDepsFix.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ExpandReductions.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/ExpandReductions.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MIRPrinter.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/MIRPrinter.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MacroFusion.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/MacroFusion.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SelectionDAGAddressAnalysis.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/CodeGen/SelectionDAGAddressAnalysis.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewSymbols.def
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewSymbols.def
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewTypes.def
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewTypes.def
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/Formatters.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/Formatters.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/GUID.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/GUID.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/StringsAndChecksums.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/StringsAndChecksums.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeCollection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeCollection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeName.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeName.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableCollection.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableCollection.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Native/
     - copied from r321369, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/UDTLayout.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/DebugInfo/PDB/UDTLayout.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
  stable/11/contrib/llvm/include/llvm/IR/DerivedUser.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/IR/DerivedUser.h
  stable/11/contrib/llvm/include/llvm/IR/SafepointIRVerifier.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/IR/SafepointIRVerifier.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmInfoWasm.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/MC/MCAsmInfoWasm.h
  stable/11/contrib/llvm/include/llvm/MC/MCSectionWasm.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/MC/MCSectionWasm.h
  stable/11/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
  stable/11/contrib/llvm/include/llvm/MC/MCWasmObjectWriter.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/MC/MCWasmObjectWriter.h
  stable/11/contrib/llvm/include/llvm/MC/MCWasmStreamer.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/MC/MCWasmStreamer.h
  stable/11/contrib/llvm/include/llvm/Object/COFFModuleDefinition.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Object/COFFModuleDefinition.h
  stable/11/contrib/llvm/include/llvm/Object/IRSymtab.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Object/IRSymtab.h
  stable/11/contrib/llvm/include/llvm/Object/WindowsResource.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Object/WindowsResource.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLDebugSections.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLDebugSections.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLSymbols.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLSymbols.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypes.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypes.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/DWARFEmitter.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/ObjectYAML/DWARFEmitter.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/WasmYAML.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/ObjectYAML/WasmYAML.h
  stable/11/contrib/llvm/include/llvm/Support/AMDGPUCodeObjectMetadata.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/AMDGPUCodeObjectMetadata.h
  stable/11/contrib/llvm/include/llvm/Support/ARMAttributeParser.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/ARMAttributeParser.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryByteStream.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/BinaryByteStream.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryItemStream.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/BinaryItemStream.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryStream.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/BinaryStream.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryStreamArray.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/BinaryStreamArray.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryStreamError.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/BinaryStreamError.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryStreamReader.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/BinaryStreamReader.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryStreamRef.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/BinaryStreamRef.h
  stable/11/contrib/llvm/include/llvm/Support/BinaryStreamWriter.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/BinaryStreamWriter.h
  stable/11/contrib/llvm/include/llvm/Support/DebugCounter.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/DebugCounter.h
  stable/11/contrib/llvm/include/llvm/Support/KnownBits.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/KnownBits.h
  stable/11/contrib/llvm/include/llvm/Support/LowLevelTypeImpl.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/LowLevelTypeImpl.h
  stable/11/contrib/llvm/include/llvm/Support/Parallel.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/Parallel.h
  stable/11/contrib/llvm/include/llvm/Support/ReverseIteration.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Support/ReverseIteration.h
  stable/11/contrib/llvm/include/llvm/Support/Solaris/
     - copied from r321369, head/contrib/llvm/include/llvm/Support/Solaris/
  stable/11/contrib/llvm/include/llvm/Target/GlobalISel/
     - copied from r321369, head/contrib/llvm/include/llvm/Target/GlobalISel/
  stable/11/contrib/llvm/include/llvm/Testing/
     - copied from r321369, head/contrib/llvm/include/llvm/Testing/
  stable/11/contrib/llvm/include/llvm/ToolDrivers/
     - copied from r321369, head/contrib/llvm/include/llvm/ToolDrivers/
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/ArgumentPromotion.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/IPO/ArgumentPromotion.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopLoadElimination.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/Scalar/LoopLoadElimination.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopPredication.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/Scalar/LoopPredication.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopSink.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/Scalar/LoopSink.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/OrderedInstructions.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/Utils/OrderedInstructions.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/VNCoercion.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/Transforms/Utils/VNCoercion.h
  stable/11/contrib/llvm/include/llvm/XRay/Graph.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/XRay/Graph.h
  stable/11/contrib/llvm/include/llvm/XRay/InstrumentationMap.h
     - copied unchanged from r321369, head/contrib/llvm/include/llvm/XRay/InstrumentationMap.h
  stable/11/contrib/llvm/lib/Analysis/MemorySSA.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Analysis/MemorySSA.cpp
  stable/11/contrib/llvm/lib/Analysis/MemorySSAUpdater.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Analysis/MemorySSAUpdater.cpp
  stable/11/contrib/llvm/lib/BinaryFormat/
     - copied from r321369, head/contrib/llvm/lib/BinaryFormat/
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHashAttributes.def
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHashAttributes.def
  stable/11/contrib/llvm/lib/CodeGen/BranchCoalescing.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/BranchCoalescing.cpp
  stable/11/contrib/llvm/lib/CodeGen/ExpandReductions.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/ExpandReductions.cpp
  stable/11/contrib/llvm/lib/CodeGen/FEntryInserter.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/FEntryInserter.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveRangeShrink.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/LiveRangeShrink.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveRegUnits.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/LiveRegUnits.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineFrameInfo.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/MachineFrameInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineOutliner.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/MachineOutliner.cpp
  stable/11/contrib/llvm/lib/CodeGen/MacroFusion.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/MacroFusion.cpp
  stable/11/contrib/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugLinesSubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugLinesSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/Formatters.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/Formatters.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/StringsAndChecksums.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/StringsAndChecksums.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeIndex.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/TypeIndex.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeName.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/TypeName.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeTableCollection.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/CodeView/TypeTableCollection.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
     - copied, changed from r321369, head/contrib/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Native/
     - copied from r321369, head/contrib/llvm/lib/DebugInfo/PDB/Native/
  stable/11/contrib/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
  stable/11/contrib/llvm/lib/IR/SafepointIRVerifier.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/IR/SafepointIRVerifier.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmInfoWasm.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/MC/MCAsmInfoWasm.cpp
  stable/11/contrib/llvm/lib/MC/MCSectionWasm.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/MC/MCSectionWasm.cpp
  stable/11/contrib/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
  stable/11/contrib/llvm/lib/MC/MCWasmStreamer.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/MC/MCWasmStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCWinCOFFStreamer.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/MC/MCWinCOFFStreamer.cpp
  stable/11/contrib/llvm/lib/MC/WasmObjectWriter.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/MC/WasmObjectWriter.cpp
  stable/11/contrib/llvm/lib/Object/COFFImportFile.cpp
     - copied, changed from r321369, head/contrib/llvm/lib/Object/COFFImportFile.cpp
  stable/11/contrib/llvm/lib/Object/COFFModuleDefinition.cpp
     - copied, changed from r321369, head/contrib/llvm/lib/Object/COFFModuleDefinition.cpp
  stable/11/contrib/llvm/lib/Object/IRSymtab.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Object/IRSymtab.cpp
  stable/11/contrib/llvm/lib/Object/WindowsResource.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Object/WindowsResource.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/CodeViewYAMLTypes.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/ObjectYAML/CodeViewYAMLTypes.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/DWARFEmitter.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/ObjectYAML/DWARFEmitter.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/DWARFVisitor.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/ObjectYAML/DWARFVisitor.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/DWARFVisitor.h
     - copied unchanged from r321369, head/contrib/llvm/lib/ObjectYAML/DWARFVisitor.h
  stable/11/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp
  stable/11/contrib/llvm/lib/Support/AMDGPUCodeObjectMetadata.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/AMDGPUCodeObjectMetadata.cpp
  stable/11/contrib/llvm/lib/Support/ARMAttributeParser.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/ARMAttributeParser.cpp
  stable/11/contrib/llvm/lib/Support/BinaryStreamError.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/BinaryStreamError.cpp
  stable/11/contrib/llvm/lib/Support/BinaryStreamReader.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/BinaryStreamReader.cpp
  stable/11/contrib/llvm/lib/Support/BinaryStreamRef.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/BinaryStreamRef.cpp
  stable/11/contrib/llvm/lib/Support/BinaryStreamWriter.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/BinaryStreamWriter.cpp
  stable/11/contrib/llvm/lib/Support/DebugCounter.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/DebugCounter.cpp
  stable/11/contrib/llvm/lib/Support/LowLevelType.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/LowLevelType.cpp
  stable/11/contrib/llvm/lib/Support/Parallel.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/Parallel.cpp
  stable/11/contrib/llvm/lib/Support/Unix/DynamicLibrary.inc
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/Unix/DynamicLibrary.inc
  stable/11/contrib/llvm/lib/Support/Unix/Threading.inc
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/Unix/Threading.inc
  stable/11/contrib/llvm/lib/Support/Windows/Threading.inc
     - copied unchanged from r321369, head/contrib/llvm/lib/Support/Windows/Threading.inc
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.cpp
     - copied, changed from r321369, head/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterBanks.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/AArch64RegisterBanks.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkorDetails.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkorDetails.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegAsmNames.inc.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPURegAsmNames.inc.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNMinRegStrategy.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/GCNMinRegStrategy.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUCodeObjectMetadataStreamer.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUCodeObjectMetadataStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUCodeObjectMetadataStreamer.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUCodeObjectMetadataStreamer.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFixVGPRCopies.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/SIFixVGPRCopies.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMMacroFusion.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/ARM/ARMMacroFusion.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMRegisterBanks.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/ARM/ARMRegisterBanks.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMScheduleA57.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/ARM/ARMScheduleA57.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMScheduleA57WriteRes.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/ARM/ARMScheduleA57WriteRes.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMScheduleM3.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/ARM/ARMScheduleM3.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepIICHVX.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepIICHVX.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepIICScalar.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepIICScalar.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrFormats.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrFormats.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrInfo.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepMappings.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepMappings.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepOperands.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepOperands.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonDepTimingClasses.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonDepTimingClasses.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIICHVX.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonIICHVX.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIICScalar.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonIICScalar.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV62.gen.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV62.gen.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonPseudo.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonPseudo.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFRegisters.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/RDFRegisters.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFRegisters.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Hexagon/RDFRegisters.h
  stable/11/contrib/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsMTInstrFormats.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Mips/MipsMTInstrFormats.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsMTInstrInfo.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Mips/MipsMTInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/Relocation.txt
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/Mips/Relocation.txt
  stable/11/contrib/llvm/lib/Target/Nios2/
     - copied from r321369, head/contrib/llvm/lib/Target/Nios2/
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCExpandISEL.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/PowerPC/PPCExpandISEL.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrDFP.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/SystemZ/SystemZInstrDFP.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrHFP.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/SystemZ/SystemZInstrHFP.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZInstrSystem.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/SystemZ/SystemZInstrSystem.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
     - copied, changed from r321369, head/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
  stable/11/contrib/llvm/lib/Target/X86/X86CmovConversion.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86CmovConversion.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86GenRegisterBankInfo.def
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86GenRegisterBankInfo.def
  stable/11/contrib/llvm/lib/Target/X86/X86InstructionSelector.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86InstructionSelector.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86LegalizerInfo.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86LegalizerInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86LegalizerInfo.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86LegalizerInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86MacroFusion.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86MacroFusion.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86MacroFusion.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86MacroFusion.h
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.h
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterBanks.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86RegisterBanks.td
  stable/11/contrib/llvm/lib/Target/X86/X86ScheduleZnver1.td
     - copied unchanged from r321369, head/contrib/llvm/lib/Target/X86/X86ScheduleZnver1.td
  stable/11/contrib/llvm/lib/Testing/
     - copied from r321369, head/contrib/llvm/lib/Testing/
  stable/11/contrib/llvm/lib/ToolDrivers/
     - copied from r321369, head/contrib/llvm/lib/ToolDrivers/
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/GVNSink.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Transforms/Scalar/GVNSink.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopPredication.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Transforms/Scalar/LoopPredication.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/OrderedInstructions.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Transforms/Utils/OrderedInstructions.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/PredicateInfo.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Transforms/Utils/PredicateInfo.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/VNCoercion.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/Transforms/Utils/VNCoercion.cpp
  stable/11/contrib/llvm/lib/XRay/InstrumentationMap.cpp
     - copied unchanged from r321369, head/contrib/llvm/lib/XRay/InstrumentationMap.cpp
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ExternalASTMerger.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/AST/ExternalASTMerger.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ODRHash.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/AST/ODRHash.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/AttrSubjectMatchRules.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/Basic/AttrSubjectMatchRules.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNios2.def
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNios2.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/MemoryBufferCache.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/Basic/MemoryBufferCache.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/XRayLists.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/Basic/XRayLists.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitBuilder.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitBuilder.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitFuture.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitFuture.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/ClangOptionDocs.td
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/Driver/ClangOptionDocs.td
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/XRayArgs.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/Driver/XRayArgs.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
  stable/11/contrib/llvm/tools/clang/include/clang/Parse/RAIIObjectsForParser.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/Parse/RAIIObjectsForParser.h
  stable/11/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SimpleConstraintManager.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SimpleConstraintManager.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/
     - copied from r321369, head/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/
  stable/11/contrib/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ExternalASTMerger.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/AST/ExternalASTMerger.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ODRHash.cpp
     - copied, changed from r321369, head/contrib/llvm/tools/clang/lib/AST/ODRHash.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/MemoryBufferCache.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Basic/MemoryBufferCache.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/XRayLists.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Basic/XRayLists.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGGPUBuiltin.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/CodeGen/CGGPUBuiltin.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ConstantInitBuilder.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/CodeGen/ConstantInitBuilder.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/Arch/
     - copied from r321369, head/contrib/llvm/tools/clang/lib/Driver/Arch/
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/
     - copied from r321369, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/
  stable/11/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.h
  stable/11/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.h
  stable/11/contrib/llvm/tools/clang/lib/Frontend/PrecompiledPreamble.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Frontend/PrecompiledPreamble.cpp
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqintrin.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/clzerointrin.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Headers/clzerointrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/lwpintrin.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Headers/lwpintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Sema/CoroutineStmtBuilder.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/Sema/CoroutineStmtBuilder.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MisusedMovedObjectChecker.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MisusedMovedObjectChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.h
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Refactoring/
     - copied from r321369, head/contrib/llvm/tools/clang/lib/Tooling/Refactoring/
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
  stable/11/contrib/llvm/tools/lld/COFF/LTO.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/COFF/LTO.cpp
  stable/11/contrib/llvm/tools/lld/COFF/LTO.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/COFF/LTO.h
  stable/11/contrib/llvm/tools/lld/COFF/MapFile.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/COFF/MapFile.cpp
  stable/11/contrib/llvm/tools/lld/COFF/MapFile.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/COFF/MapFile.h
  stable/11/contrib/llvm/tools/lld/ELF/Arch/
     - copied from r321369, head/contrib/llvm/tools/lld/ELF/Arch/
  stable/11/contrib/llvm/tools/lld/ELF/Filesystem.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/ELF/Filesystem.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Filesystem.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/ELF/Filesystem.h
  stable/11/contrib/llvm/tools/lld/ELF/MapFile.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/ELF/MapFile.cpp
  stable/11/contrib/llvm/tools/lld/ELF/MapFile.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/ELF/MapFile.h
  stable/11/contrib/llvm/tools/lld/ELF/ScriptLexer.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/ELF/ScriptLexer.cpp
  stable/11/contrib/llvm/tools/lld/ELF/ScriptLexer.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/ELF/ScriptLexer.h
  stable/11/contrib/llvm/tools/lld/include/lld/Core/TargetOptionsCommandFlags.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/include/lld/Core/TargetOptionsCommandFlags.h
  stable/11/contrib/llvm/tools/lld/lib/Core/TargetOptionsCommandFlags.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lld/lib/Core/TargetOptionsCommandFlags.cpp
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTrace.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/API/SBTrace.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTraceOptions.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/API/SBTraceOptions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/openbsd/
     - copied from r321369, head/contrib/llvm/tools/lldb/include/lldb/Host/openbsd/
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ModuleCache.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Target/ModuleCache.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ProcessStructReader.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Target/ProcessStructReader.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/RegisterNumber.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Target/RegisterNumber.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/DataBuffer.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/DataBuffer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Endian.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/Endian.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/FastDemangle.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/FastDemangle.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Flags.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/Flags.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/History.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/History.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/IOObject.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/IOObject.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Log.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/Log.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Logging.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/Logging.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Status.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/Status.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Stream.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/Stream.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/TildeExpressionResolver.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/TildeExpressionResolver.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/TraceOptions.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/TraceOptions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/UriParser.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/UriParser.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.h
  stable/11/contrib/llvm/tools/lldb/source/API/SBTrace.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/API/SBTrace.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBTraceOptions.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/API/SBTraceOptions.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/openbsd/
     - copied from r321369, head/contrib/llvm/tools/lldb/source/Host/openbsd/
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/
     - copied from r321369, head/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
     - copied from r321369, head/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/
     - copied from r321369, head/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/
     - copied from r321369, head/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/
     - copied from r321369, head/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/
     - copied from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/
     - copied from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.h
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Target/ModuleCache.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Target/ModuleCache.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/RegisterNumber.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Target/RegisterNumber.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Baton.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/Baton.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Connection.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/Connection.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/DataBufferLLVM.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/DataBufferLLVM.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/DataEncoder.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/DataEncoder.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/DataExtractor.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/DataExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/FastDemangle.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/FastDemangle.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/FileSpec.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/FileSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/History.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/History.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/IOObject.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/IOObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Log.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/Log.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Logging.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/Logging.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/RegularExpression.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/RegularExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Status.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/Status.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Stream.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/Stream.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StreamCallback.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/StreamCallback.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StreamString.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/StreamString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StringList.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/StringList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Timer.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/Timer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/UUID.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/UUID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/UserID.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/UserID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp
  stable/11/contrib/llvm/tools/lldb/tools/intel-mpx/
     - copied from r321369, head/contrib/llvm/tools/lldb/tools/intel-mpx/
  stable/11/contrib/llvm/tools/llvm-pdbutil/
     - copied from r321369, head/contrib/llvm/tools/llvm-pdbutil/
  stable/11/contrib/llvm/tools/llvm-readobj/WasmDumper.cpp
     - copied unchanged from r321369, head/contrib/llvm/tools/llvm-readobj/WasmDumper.cpp
  stable/11/contrib/llvm/tools/llvm-xray/xray-color-helper.cc
     - copied unchanged from r321369, head/contrib/llvm/tools/llvm-xray/xray-color-helper.cc
  stable/11/contrib/llvm/tools/llvm-xray/xray-color-helper.h
     - copied unchanged from r321369, head/contrib/llvm/tools/llvm-xray/xray-color-helper.h
  stable/11/contrib/llvm/tools/llvm-xray/xray-graph-diff.cc
     - copied unchanged from r321369, head/contrib/llvm/tools/llvm-xray/xray-graph-diff.cc
  stable/11/contrib/llvm/tools/llvm-xray/xray-graph-diff.h
     - copied unchanged from r321369, head/contrib/llvm/tools/llvm-xray/xray-graph-diff.h
  stable/11/contrib/llvm/tools/llvm-xray/xray-graph.cc
     - copied unchanged from r321369, head/contrib/llvm/tools/llvm-xray/xray-graph.cc
  stable/11/contrib/llvm/tools/llvm-xray/xray-graph.h
     - copied unchanged from r321369, head/contrib/llvm/tools/llvm-xray/xray-graph.h
  stable/11/contrib/llvm/utils/TableGen/RegisterBankEmitter.cpp
     - copied unchanged from r321369, head/contrib/llvm/utils/TableGen/RegisterBankEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
     - copied unchanged from r321369, head/contrib/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
  stable/11/lib/clang/include/lldb/
     - copied from r321369, head/lib/clang/include/lldb/
  stable/11/lib/clang/include/llvm/Support/VCSRevision.h
     - copied, changed from r321369, head/lib/clang/include/llvm/Support/VCSRevision.h
  stable/11/usr.bin/clang/llvm-pdbutil/
     - copied from r321369, head/usr.bin/clang/llvm-pdbutil/
Replaced:
  stable/11/contrib/compiler-rt/lib/scudo/scudo_crc32.h
     - copied unchanged from r321369, head/contrib/compiler-rt/lib/scudo/scudo_crc32.h
Deleted:
  stable/11/contrib/compiler-rt/lib/asan/asan_globals_win.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_mapping_libcdep.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_emulate_tsc.h
  stable/11/contrib/compiler-rt/lib/xray/xray_x86_64.h
  stable/11/contrib/libc++/include/__refstring
  stable/11/contrib/libc++/include/__undef_min_max
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineFunctionInitializer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolTypes.def
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeDumper.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/ModuleSubstreamVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabase.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDatabaseVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumperBase.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecords.def
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/ByteStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/SequencedItemStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/StreamArray.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/StreamInterface.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/StreamReader.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/StreamRef.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/StreamWriter.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/Raw/
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
  stable/11/contrib/llvm/include/llvm/LibDriver/
  stable/11/contrib/llvm/include/llvm/Object/ModuleSummaryIndexObjectFile.h
  stable/11/contrib/llvm/include/llvm/Support/COFF.h
  stable/11/contrib/llvm/include/llvm/Support/Dwarf.def
  stable/11/contrib/llvm/include/llvm/Support/Dwarf.h
  stable/11/contrib/llvm/include/llvm/Support/ELF.h
  stable/11/contrib/llvm/include/llvm/Support/ELFRelocs/
  stable/11/contrib/llvm/include/llvm/Support/MachO.def
  stable/11/contrib/llvm/include/llvm/Support/MachO.h
  stable/11/contrib/llvm/include/llvm/Support/Solaris.h
  stable/11/contrib/llvm/include/llvm/Support/Wasm.h
  stable/11/contrib/llvm/include/llvm/Target/TargetGlobalISel.td
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/MemorySSA.h
  stable/11/contrib/llvm/lib/CodeGen/MIRPrinter.h
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CVTypeDumper.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/ModuleSubstreamVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabase.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeDatabaseVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeRecord.cpp
  stable/11/contrib/llvm/lib/DebugInfo/MSF/StreamReader.cpp
  stable/11/contrib/llvm/lib/DebugInfo/MSF/StreamWriter.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/Raw/
  stable/11/contrib/llvm/lib/IR/AttributeSetNode.h
  stable/11/contrib/llvm/lib/LibDriver/
  stable/11/contrib/llvm/lib/MC/WinCOFFStreamer.cpp
  stable/11/contrib/llvm/lib/Object/ModuleSummaryIndexObjectFile.cpp
  stable/11/contrib/llvm/lib/Support/Dwarf.cpp
  stable/11/contrib/llvm/lib/Support/SearchForAddressOfSpecialSymbol.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64AddressTypePromotion.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstructionSelector.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedVulcan.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURuntimeMetadata.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPURuntimeMD.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SITypeRewriter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstructionSelector.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonCallingConv.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrAlias.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrEnc.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV60.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoVector.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIsetDx.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSystemInst.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXInferAddressSpaces.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86InstrTablesInfo.h
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoadCombine.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/MemorySSA.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp
  stable/11/contrib/llvm/lib/XRay/CMakeLists.txt
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCUDABuiltin.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ConstantBuilder.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/CrossWindowsToolChain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/MSVCToolChain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/MinGWToolChain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Tools.h
  stable/11/contrib/llvm/tools/clang/lib/Format/Comments.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/Comments.h
  stable/11/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorPastEndChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
  stable/11/contrib/llvm/tools/lld/COFF/Librarian.cpp
  stable/11/contrib/llvm/tools/lld/COFF/ModuleDef.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Mips.cpp
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Parallel.h
  stable/11/contrib/llvm/tools/lld/include/lld/Support/
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Baton.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Connection.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ConstString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataBuffer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataBufferHeap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataBufferMemoryMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataEncoder.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/DataExtractor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Error.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/FastDemangle.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Flags.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/History.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Log.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Logging.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/RegularExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Stream.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamCallback.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StreamTee.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StringList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/StructuredData.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Timer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/UUID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/UserID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/VMRange.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Config.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Endian.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/FileSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/IOObject.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/ThisThread.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContextRegisterInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/Config.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostThreadFreeBSD.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/Config.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostThreadNetBSD.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/MainLoopPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/ConvertEnum.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/PriorityPointerPair.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessStructReader.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/PseudoTerminal.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterNumber.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Utils.h
  stable/11/contrib/llvm/tools/lldb/source/Core/Baton.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Connection.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ConstString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DataBufferHeap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DataBufferMemoryMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DataEncoder.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/DataExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Error.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/FastDemangle.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/History.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Log.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Logging.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/RegularExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Stream.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StreamCallback.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StreamGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StreamString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StringList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/StructuredData.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Timer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/UUID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/UserID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/VMRange.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/FileSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/IOObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContextRegisterInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/ThisThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/freebsd/HostThreadFreeBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/freebsd/ThisThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/netbsd/HostThreadNetBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/netbsd/ThisThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/MainLoopPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/AddressSanitizerRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/ThreadSanitizerRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ThreadSanitizer/ThreadSanitizerRuntime.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ConvertEnum.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ModuleCache.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/ModuleCache.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/PseudoTerminal.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/RegisterNumber.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/UriParser.h
  stable/11/contrib/llvm/tools/llvm-pdbdump/
  stable/11/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/ARMAttributeParser.h
  stable/11/contrib/llvm/tools/llvm-readobj/CodeView.h
  stable/11/contrib/llvm/tools/llvm-xray/xray-extract.h
  stable/11/contrib/llvm/tools/llvm-xray/xray-sleds.h
  stable/11/usr.bin/clang/llvm-pdbdump/
Modified:
  stable/11/ObsoleteFiles.inc
  stable/11/UPDATING
  stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
  stable/11/contrib/compiler-rt/include/sanitizer/coverage_interface.h
  stable/11/contrib/compiler-rt/include/xray/xray_interface.h
  stable/11/contrib/compiler-rt/include/xray/xray_records.h
  stable/11/contrib/compiler-rt/lib/asan/asan.syms.extra
  stable/11/contrib/compiler-rt/lib/asan/asan_activation.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_allocator.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_allocator.h
  stable/11/contrib/compiler-rt/lib/asan/asan_descriptions.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_errors.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_flags.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_flags.inc
  stable/11/contrib/compiler-rt/lib/asan/asan_globals.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_globals_win.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_interceptors.h
  stable/11/contrib/compiler-rt/lib/asan/asan_interface_internal.h
  stable/11/contrib/compiler-rt/lib/asan/asan_internal.h
  stable/11/contrib/compiler-rt/lib/asan/asan_linux.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_mac.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_mapping.h
  stable/11/contrib/compiler-rt/lib/asan/asan_memory_profile.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_new_delete.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_posix.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_report.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_report.h
  stable/11/contrib/compiler-rt/lib/asan/asan_rtl.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_suppressions.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_thread.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_thread.h
  stable/11/contrib/compiler-rt/lib/asan/asan_win.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
  stable/11/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
  stable/11/contrib/compiler-rt/lib/asan/weak_symbols.txt
  stable/11/contrib/compiler-rt/lib/builtins/README.txt
  stable/11/contrib/compiler-rt/lib/builtins/adddf3.c
  stable/11/contrib/compiler-rt/lib/builtins/addsf3.c
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmpeq_check_nan.c
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmpeq_check_nan.c
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_dcmp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_div0.c
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_drsub.c
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_frsub.c
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_memset.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_uidivmod.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/aeabi_uldivmod.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/comparesf2.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/udivsi3.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/unorddf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.S
  stable/11/contrib/compiler-rt/lib/builtins/ashldi3.c
  stable/11/contrib/compiler-rt/lib/builtins/ashrdi3.c
  stable/11/contrib/compiler-rt/lib/builtins/assembly.h
  stable/11/contrib/compiler-rt/lib/builtins/clear_cache.c
  stable/11/contrib/compiler-rt/lib/builtins/comparedf2.c
  stable/11/contrib/compiler-rt/lib/builtins/comparesf2.c
  stable/11/contrib/compiler-rt/lib/builtins/cpu_model.c
  stable/11/contrib/compiler-rt/lib/builtins/divdf3.c
  stable/11/contrib/compiler-rt/lib/builtins/divsf3.c
  stable/11/contrib/compiler-rt/lib/builtins/divsi3.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/extendhfsf2.c
  stable/11/contrib/compiler-rt/lib/builtins/extendsfdf2.c
  stable/11/contrib/compiler-rt/lib/builtins/fixdfdi.c
  stable/11/contrib/compiler-rt/lib/builtins/fixdfsi.c
  stable/11/contrib/compiler-rt/lib/builtins/fixsfdi.c
  stable/11/contrib/compiler-rt/lib/builtins/fixsfsi.c
  stable/11/contrib/compiler-rt/lib/builtins/fixunsdfdi.c
  stable/11/contrib/compiler-rt/lib/builtins/fixunsdfsi.c
  stable/11/contrib/compiler-rt/lib/builtins/fixunssfdi.c
  stable/11/contrib/compiler-rt/lib/builtins/fixunssfsi.c
  stable/11/contrib/compiler-rt/lib/builtins/floatdidf.c
  stable/11/contrib/compiler-rt/lib/builtins/floatdisf.c
  stable/11/contrib/compiler-rt/lib/builtins/floatsidf.c
  stable/11/contrib/compiler-rt/lib/builtins/floatsisf.c
  stable/11/contrib/compiler-rt/lib/builtins/floatundidf.c
  stable/11/contrib/compiler-rt/lib/builtins/floatundisf.c
  stable/11/contrib/compiler-rt/lib/builtins/floatunsidf.c
  stable/11/contrib/compiler-rt/lib/builtins/floatunsisf.c
  stable/11/contrib/compiler-rt/lib/builtins/int_lib.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/lshrdi3.c
  stable/11/contrib/compiler-rt/lib/builtins/muldf3.c
  stable/11/contrib/compiler-rt/lib/builtins/muldi3.c
  stable/11/contrib/compiler-rt/lib/builtins/mulsf3.c
  stable/11/contrib/compiler-rt/lib/builtins/negdf2.c
  stable/11/contrib/compiler-rt/lib/builtins/negsf2.c
  stable/11/contrib/compiler-rt/lib/builtins/subdf3.c
  stable/11/contrib/compiler-rt/lib/builtins/subsf3.c
  stable/11/contrib/compiler-rt/lib/builtins/truncdfhf2.c
  stable/11/contrib/compiler-rt/lib/builtins/truncdfsf2.c
  stable/11/contrib/compiler-rt/lib/builtins/truncsfhf2.c
  stable/11/contrib/compiler-rt/lib/builtins/udivsi3.c
  stable/11/contrib/compiler-rt/lib/builtins/x86_64/floatdidf.c
  stable/11/contrib/compiler-rt/lib/builtins/x86_64/floatdisf.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/done_abilist.txt
  stable/11/contrib/compiler-rt/lib/esan/esan_interceptors.cpp
  stable/11/contrib/compiler-rt/lib/esan/esan_sideline_linux.cpp
  stable/11/contrib/compiler-rt/lib/esan/working_set.cpp
  stable/11/contrib/compiler-rt/lib/interception/interception_win.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan.h
  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.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_common.h
  stable/11/contrib/compiler-rt/lib/lsan/lsan_common_linux.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_thread.cc
  stable/11/contrib/compiler-rt/lib/lsan/lsan_thread.h
  stable/11/contrib/compiler-rt/lib/msan/msan.h
  stable/11/contrib/compiler-rt/lib/msan/msan_allocator.cc
  stable/11/contrib/compiler-rt/lib/msan/msan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/msan/msan_new_delete.cc
  stable/11/contrib/compiler-rt/lib/profile/InstrProfData.inc
  stable/11/contrib/compiler-rt/lib/profile/InstrProfiling.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingBuffer.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingFile.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingInternal.h
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingValue.c
  stable/11/contrib/compiler-rt/lib/profile/InstrProfilingWriter.c
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_interface.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.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_atomic_clang.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_other.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interface_internal.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_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_linux_s390.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_list.h
  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_mutex.h
  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_posix.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.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_printf.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_freebsd.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.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_tls_get_addr.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h
  stable/11/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
  stable/11/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
  stable/11/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
  stable/11/contrib/compiler-rt/lib/sanitizer_common/weak_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_allocator_secondary.h
  stable/11/contrib/compiler-rt/lib/scudo/scudo_crc32.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_flags.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_flags.inc
  stable/11/contrib/compiler-rt/lib/scudo/scudo_new_delete.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_utils.cpp
  stable/11/contrib/compiler-rt/lib/scudo/scudo_utils.h
  stable/11/contrib/compiler-rt/lib/tsan/dd/dd_interceptors.cc
  stable/11/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan.syms.extra
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_dense_alloc.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_new_delete.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_platform_posix.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_report.h
  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_mutex.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.h
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.h
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_checks.inc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_diag.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_flags.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_handlers.h
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_init.cc
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_init.h
  stable/11/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_AArch64.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_arm.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_flags.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_flags.h
  stable/11/contrib/compiler-rt/lib/xray/xray_flags.inc
  stable/11/contrib/compiler-rt/lib/xray/xray_init.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_inmemory_log.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_interface.cc
  stable/11/contrib/compiler-rt/lib/xray/xray_interface_internal.h
  stable/11/contrib/compiler-rt/lib/xray/xray_trampoline_AArch64.S
  stable/11/contrib/compiler-rt/lib/xray/xray_trampoline_arm.S
  stable/11/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S
  stable/11/contrib/compiler-rt/lib/xray/xray_x86_64.cc
  stable/11/contrib/libc++/CREDITS.TXT
  stable/11/contrib/libc++/include/__bit_reference
  stable/11/contrib/libc++/include/__bsd_locale_defaults.h
  stable/11/contrib/libc++/include/__bsd_locale_fallbacks.h
  stable/11/contrib/libc++/include/__config
  stable/11/contrib/libc++/include/__debug
  stable/11/contrib/libc++/include/__functional_03
  stable/11/contrib/libc++/include/__functional_base
  stable/11/contrib/libc++/include/__hash_table
  stable/11/contrib/libc++/include/__libcpp_version
  stable/11/contrib/libc++/include/__locale
  stable/11/contrib/libc++/include/__mutex_base
  stable/11/contrib/libc++/include/__split_buffer
  stable/11/contrib/libc++/include/__std_stream
  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/chrono
  stable/11/contrib/libc++/include/cmath
  stable/11/contrib/libc++/include/complex
  stable/11/contrib/libc++/include/condition_variable
  stable/11/contrib/libc++/include/cstddef
  stable/11/contrib/libc++/include/cstdio
  stable/11/contrib/libc++/include/cstdlib
  stable/11/contrib/libc++/include/ctype.h
  stable/11/contrib/libc++/include/deque
  stable/11/contrib/libc++/include/exception
  stable/11/contrib/libc++/include/experimental/__config
  stable/11/contrib/libc++/include/experimental/algorithm
  stable/11/contrib/libc++/include/experimental/any
  stable/11/contrib/libc++/include/experimental/dynarray
  stable/11/contrib/libc++/include/experimental/filesystem
  stable/11/contrib/libc++/include/experimental/functional
  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/string_view
  stable/11/contrib/libc++/include/ext/hash_map
  stable/11/contrib/libc++/include/ext/hash_set
  stable/11/contrib/libc++/include/forward_list
  stable/11/contrib/libc++/include/fstream
  stable/11/contrib/libc++/include/functional
  stable/11/contrib/libc++/include/future
  stable/11/contrib/libc++/include/initializer_list
  stable/11/contrib/libc++/include/ios
  stable/11/contrib/libc++/include/istream
  stable/11/contrib/libc++/include/iterator
  stable/11/contrib/libc++/include/limits
  stable/11/contrib/libc++/include/list
  stable/11/contrib/libc++/include/locale
  stable/11/contrib/libc++/include/map
  stable/11/contrib/libc++/include/math.h
  stable/11/contrib/libc++/include/memory
  stable/11/contrib/libc++/include/module.modulemap
  stable/11/contrib/libc++/include/mutex
  stable/11/contrib/libc++/include/new
  stable/11/contrib/libc++/include/numeric
  stable/11/contrib/libc++/include/optional
  stable/11/contrib/libc++/include/ostream
  stable/11/contrib/libc++/include/queue
  stable/11/contrib/libc++/include/random
  stable/11/contrib/libc++/include/ratio
  stable/11/contrib/libc++/include/regex
  stable/11/contrib/libc++/include/set
  stable/11/contrib/libc++/include/shared_mutex
  stable/11/contrib/libc++/include/sstream
  stable/11/contrib/libc++/include/stack
  stable/11/contrib/libc++/include/stddef.h
  stable/11/contrib/libc++/include/stdexcept
  stable/11/contrib/libc++/include/stdio.h
  stable/11/contrib/libc++/include/stdlib.h
  stable/11/contrib/libc++/include/streambuf
  stable/11/contrib/libc++/include/string
  stable/11/contrib/libc++/include/string_view
  stable/11/contrib/libc++/include/strstream
  stable/11/contrib/libc++/include/system_error
  stable/11/contrib/libc++/include/thread
  stable/11/contrib/libc++/include/tuple
  stable/11/contrib/libc++/include/type_traits
  stable/11/contrib/libc++/include/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/wchar.h
  stable/11/contrib/libc++/src/chrono.cpp
  stable/11/contrib/libc++/src/condition_variable.cpp
  stable/11/contrib/libc++/src/exception.cpp
  stable/11/contrib/libc++/src/experimental/filesystem/directory_iterator.cpp
  stable/11/contrib/libc++/src/experimental/filesystem/operations.cpp
  stable/11/contrib/libc++/src/experimental/filesystem/path.cpp
  stable/11/contrib/libc++/src/include/atomic_support.h
  stable/11/contrib/libc++/src/ios.cpp
  stable/11/contrib/libc++/src/iostream.cpp
  stable/11/contrib/libc++/src/locale.cpp
  stable/11/contrib/libc++/src/memory.cpp
  stable/11/contrib/libc++/src/mutex.cpp
  stable/11/contrib/libc++/src/new.cpp
  stable/11/contrib/libc++/src/stdexcept.cpp
  stable/11/contrib/libc++/src/string.cpp
  stable/11/contrib/libc++/src/strstream.cpp
  stable/11/contrib/libc++/src/system_error.cpp
  stable/11/contrib/libc++/src/thread.cpp
  stable/11/contrib/libc++/src/typeinfo.cpp
  stable/11/contrib/llvm/include/llvm-c/Core.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/Support.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/Transforms/Vectorize.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/APSInt.h
  stable/11/contrib/llvm/include/llvm/ADT/AllocatorList.h
  stable/11/contrib/llvm/include/llvm/ADT/ArrayRef.h
  stable/11/contrib/llvm/include/llvm/ADT/BitVector.h
  stable/11/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
  stable/11/contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h
  stable/11/contrib/llvm/include/llvm/ADT/DenseMap.h
  stable/11/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
  stable/11/contrib/llvm/include/llvm/ADT/DenseSet.h
  stable/11/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h
  stable/11/contrib/llvm/include/llvm/ADT/EquivalenceClasses.h
  stable/11/contrib/llvm/include/llvm/ADT/FoldingSet.h
  stable/11/contrib/llvm/include/llvm/ADT/GraphTraits.h
  stable/11/contrib/llvm/include/llvm/ADT/ImmutableList.h
  stable/11/contrib/llvm/include/llvm/ADT/ImmutableMap.h
  stable/11/contrib/llvm/include/llvm/ADT/ImmutableSet.h
  stable/11/contrib/llvm/include/llvm/ADT/IndexedMap.h
  stable/11/contrib/llvm/include/llvm/ADT/IntervalMap.h
  stable/11/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
  stable/11/contrib/llvm/include/llvm/ADT/MapVector.h
  stable/11/contrib/llvm/include/llvm/ADT/None.h
  stable/11/contrib/llvm/include/llvm/ADT/Optional.h
  stable/11/contrib/llvm/include/llvm/ADT/PackedVector.h
  stable/11/contrib/llvm/include/llvm/ADT/PointerEmbeddedInt.h
  stable/11/contrib/llvm/include/llvm/ADT/PointerUnion.h
  stable/11/contrib/llvm/include/llvm/ADT/PostOrderIterator.h
  stable/11/contrib/llvm/include/llvm/ADT/PriorityWorklist.h
  stable/11/contrib/llvm/include/llvm/ADT/SCCIterator.h
  stable/11/contrib/llvm/include/llvm/ADT/STLExtras.h
  stable/11/contrib/llvm/include/llvm/ADT/ScopedHashTable.h
  stable/11/contrib/llvm/include/llvm/ADT/Sequence.h
  stable/11/contrib/llvm/include/llvm/ADT/SetVector.h
  stable/11/contrib/llvm/include/llvm/ADT/SmallBitVector.h
  stable/11/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
  stable/11/contrib/llvm/include/llvm/ADT/SmallSet.h
  stable/11/contrib/llvm/include/llvm/ADT/SmallVector.h
  stable/11/contrib/llvm/include/llvm/ADT/SparseBitVector.h
  stable/11/contrib/llvm/include/llvm/ADT/SparseMultiSet.h
  stable/11/contrib/llvm/include/llvm/ADT/SparseSet.h
  stable/11/contrib/llvm/include/llvm/ADT/Statistic.h
  stable/11/contrib/llvm/include/llvm/ADT/StringExtras.h
  stable/11/contrib/llvm/include/llvm/ADT/StringMap.h
  stable/11/contrib/llvm/include/llvm/ADT/StringRef.h
  stable/11/contrib/llvm/include/llvm/ADT/StringSet.h
  stable/11/contrib/llvm/include/llvm/ADT/TinyPtrVector.h
  stable/11/contrib/llvm/include/llvm/ADT/Triple.h
  stable/11/contrib/llvm/include/llvm/ADT/UniqueVector.h
  stable/11/contrib/llvm/include/llvm/ADT/ilist_base.h
  stable/11/contrib/llvm/include/llvm/ADT/ilist_iterator.h
  stable/11/contrib/llvm/include/llvm/ADT/ilist_node.h
  stable/11/contrib/llvm/include/llvm/ADT/iterator.h
  stable/11/contrib/llvm/include/llvm/ADT/iterator_range.h
  stable/11/contrib/llvm/include/llvm/ADT/simple_ilist.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/AssumptionCache.h
  stable/11/contrib/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
  stable/11/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/CFGPrinter.h
  stable/11/contrib/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h
  stable/11/contrib/llvm/include/llvm/Analysis/CallGraph.h
  stable/11/contrib/llvm/include/llvm/Analysis/ConstantFolding.h
  stable/11/contrib/llvm/include/llvm/Analysis/DemandedBits.h
  stable/11/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h
  stable/11/contrib/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
  stable/11/contrib/llvm/include/llvm/Analysis/IVUsers.h
  stable/11/contrib/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.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/LazyBlockFrequencyInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h
  stable/11/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/Loads.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h
  stable/11/contrib/llvm/include/llvm/Analysis/LoopPass.h
  stable/11/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h
  stable/11/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
  stable/11/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
  stable/11/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
  stable/11/contrib/llvm/include/llvm/Analysis/OptimizationDiagnosticInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/OrderedBasicBlock.h
  stable/11/contrib/llvm/include/llvm/Analysis/PostDominators.h
  stable/11/contrib/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/PtrUseVisitor.h
  stable/11/contrib/llvm/include/llvm/Analysis/RegionInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h
  stable/11/contrib/llvm/include/llvm/Analysis/RegionIterator.h
  stable/11/contrib/llvm/include/llvm/Analysis/RegionPass.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
  stable/11/contrib/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h
  stable/11/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def
  stable/11/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h
  stable/11/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
  stable/11/contrib/llvm/include/llvm/Analysis/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/Bitcode/BitcodeReader.h
  stable/11/contrib/llvm/include/llvm/Bitcode/BitcodeWriter.h
  stable/11/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/Analysis.h
  stable/11/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
  stable/11/contrib/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
  stable/11/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h
  stable/11/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h
  stable/11/contrib/llvm/include/llvm/CodeGen/CommandFlags.h
  stable/11/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h
  stable/11/contrib/llvm/include/llvm/CodeGen/DIE.h
  stable/11/contrib/llvm/include/llvm/CodeGen/FastISel.h
  stable/11/contrib/llvm/include/llvm/CodeGen/FaultMaps.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/IRTranslator.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.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/RegBankSelect.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/GlobalISel/Types.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/LexicalScopes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveRegMatrix.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LiveStackAnalysis.h
  stable/11/contrib/llvm/include/llvm/CodeGen/LowLevelType.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineDominators.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineFunction.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineFunctionPass.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/MachineInstrBundleIterator.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineOperand.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineRegionInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
  stable/11/contrib/llvm/include/llvm/CodeGen/MachineValueType.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PBQP/CostAllocator.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PBQP/Math.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
  stable/11/contrib/llvm/include/llvm/CodeGen/Passes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegAllocRegistry.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
  stable/11/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ScheduleDFS.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/StackMaps.h
  stable/11/contrib/llvm/include/llvm/CodeGen/StackProtector.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TailDuplicator.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h
  stable/11/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ValueTypes.h
  stable/11/contrib/llvm/include/llvm/CodeGen/ValueTypes.td
  stable/11/contrib/llvm/include/llvm/CodeGen/VirtRegMap.h
  stable/11/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/Line.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/SymbolRecordMapping.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.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/TypeRecordMapping.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSerializer.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DIContext.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.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/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/DWARFRelocMap.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/MSF/MSFBuilder.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/MSFCommon.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.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/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/PDB.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.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/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/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/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/PDBSymbolUsingNamespace.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
  stable/11/contrib/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/GenericValue.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/ExecutionUtils.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
  stable/11/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
  stable/11/contrib/llvm/include/llvm/IR/Argument.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/Comdat.h
  stable/11/contrib/llvm/include/llvm/IR/Constant.h
  stable/11/contrib/llvm/include/llvm/IR/ConstantRange.h
  stable/11/contrib/llvm/include/llvm/IR/Constants.h
  stable/11/contrib/llvm/include/llvm/IR/DIBuilder.h
  stable/11/contrib/llvm/include/llvm/IR/DataLayout.h
  stable/11/contrib/llvm/include/llvm/IR/DebugInfo.h
  stable/11/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
  stable/11/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
  stable/11/contrib/llvm/include/llvm/IR/DebugLoc.h
  stable/11/contrib/llvm/include/llvm/IR/DerivedTypes.h
  stable/11/contrib/llvm/include/llvm/IR/DiagnosticInfo.h
  stable/11/contrib/llvm/include/llvm/IR/Dominators.h
  stable/11/contrib/llvm/include/llvm/IR/Function.h
  stable/11/contrib/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalAlias.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalIFunc.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalObject.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalValue.h
  stable/11/contrib/llvm/include/llvm/IR/GlobalVariable.h
  stable/11/contrib/llvm/include/llvm/IR/IRBuilder.h
  stable/11/contrib/llvm/include/llvm/IR/InlineAsm.h
  stable/11/contrib/llvm/include/llvm/IR/InstIterator.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.h
  stable/11/contrib/llvm/include/llvm/IR/Intrinsics.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsARM.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
  stable/11/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td
  stable/11/contrib/llvm/include/llvm/IR/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/LegacyPassNameParser.h
  stable/11/contrib/llvm/include/llvm/IR/MDBuilder.h
  stable/11/contrib/llvm/include/llvm/IR/Mangler.h
  stable/11/contrib/llvm/include/llvm/IR/Metadata.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/OperandTraits.h
  stable/11/contrib/llvm/include/llvm/IR/Operator.h
  stable/11/contrib/llvm/include/llvm/IR/OptBisect.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/PredIteratorCache.h
  stable/11/contrib/llvm/include/llvm/IR/ProfileSummary.h
  stable/11/contrib/llvm/include/llvm/IR/Statepoint.h
  stable/11/contrib/llvm/include/llvm/IR/SymbolTableListTraits.h
  stable/11/contrib/llvm/include/llvm/IR/TrackingMDRef.h
  stable/11/contrib/llvm/include/llvm/IR/Type.h
  stable/11/contrib/llvm/include/llvm/IR/TypeFinder.h
  stable/11/contrib/llvm/include/llvm/IR/Use.h
  stable/11/contrib/llvm/include/llvm/IR/UseListOrder.h
  stable/11/contrib/llvm/include/llvm/IR/User.h
  stable/11/contrib/llvm/include/llvm/IR/Value.def
  stable/11/contrib/llvm/include/llvm/IR/Value.h
  stable/11/contrib/llvm/include/llvm/IR/ValueHandle.h
  stable/11/contrib/llvm/include/llvm/IR/ValueMap.h
  stable/11/contrib/llvm/include/llvm/IR/ValueSymbolTable.h
  stable/11/contrib/llvm/include/llvm/IR/Verifier.h
  stable/11/contrib/llvm/include/llvm/InitializePasses.h
  stable/11/contrib/llvm/include/llvm/LTO/Caching.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/LTOBackend.h
  stable/11/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
  stable/11/contrib/llvm/include/llvm/LTO/legacy/LTOModule.h
  stable/11/contrib/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
  stable/11/contrib/llvm/include/llvm/LinkAllIR.h
  stable/11/contrib/llvm/include/llvm/LinkAllPasses.h
  stable/11/contrib/llvm/include/llvm/Linker/IRMover.h
  stable/11/contrib/llvm/include/llvm/Linker/Linker.h
  stable/11/contrib/llvm/include/llvm/MC/ConstantPools.h
  stable/11/contrib/llvm/include/llvm/MC/LaneBitmask.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmBackend.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmInfo.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmInfoCOFF.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h
  stable/11/contrib/llvm/include/llvm/MC/MCAsmInfoELF.h
  stable/11/contrib/llvm/include/llvm/MC/MCAssembler.h
  stable/11/contrib/llvm/include/llvm/MC/MCCodeEmitter.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/MCDisassembler/MCDisassembler.h
  stable/11/contrib/llvm/include/llvm/MC/MCDisassembler/MCRelocationInfo.h
  stable/11/contrib/llvm/include/llvm/MC/MCDisassembler/MCSymbolizer.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/MCELFStreamer.h
  stable/11/contrib/llvm/include/llvm/MC/MCExpr.h
  stable/11/contrib/llvm/include/llvm/MC/MCFixup.h
  stable/11/contrib/llvm/include/llvm/MC/MCFragment.h
  stable/11/contrib/llvm/include/llvm/MC/MCInst.h
  stable/11/contrib/llvm/include/llvm/MC/MCInstPrinter.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/MCInstrItineraries.h
  stable/11/contrib/llvm/include/llvm/MC/MCLabel.h
  stable/11/contrib/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
  stable/11/contrib/llvm/include/llvm/MC/MCMachObjectWriter.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/MCObjectWriter.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/AsmCond.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
  stable/11/contrib/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
  stable/11/contrib/llvm/include/llvm/MC/MCRegisterInfo.h
  stable/11/contrib/llvm/include/llvm/MC/MCSection.h
  stable/11/contrib/llvm/include/llvm/MC/MCSectionCOFF.h
  stable/11/contrib/llvm/include/llvm/MC/MCSectionELF.h
  stable/11/contrib/llvm/include/llvm/MC/MCSectionMachO.h
  stable/11/contrib/llvm/include/llvm/MC/MCStreamer.h
  stable/11/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h
  stable/11/contrib/llvm/include/llvm/MC/MCSymbol.h
  stable/11/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h
  stable/11/contrib/llvm/include/llvm/MC/MCTargetOptions.h
  stable/11/contrib/llvm/include/llvm/MC/MCValue.h
  stable/11/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
  stable/11/contrib/llvm/include/llvm/MC/MCWinCOFFStreamer.h
  stable/11/contrib/llvm/include/llvm/MC/MachineLocation.h
  stable/11/contrib/llvm/include/llvm/MC/StringTableBuilder.h
  stable/11/contrib/llvm/include/llvm/MC/SubtargetFeature.h
  stable/11/contrib/llvm/include/llvm/Object/Archive.h
  stable/11/contrib/llvm/include/llvm/Object/ArchiveWriter.h
  stable/11/contrib/llvm/include/llvm/Object/Binary.h
  stable/11/contrib/llvm/include/llvm/Object/COFF.h
  stable/11/contrib/llvm/include/llvm/Object/COFFImportFile.h
  stable/11/contrib/llvm/include/llvm/Object/Decompressor.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/IRObjectFile.h
  stable/11/contrib/llvm/include/llvm/Object/MachO.h
  stable/11/contrib/llvm/include/llvm/Object/MachOUniversal.h
  stable/11/contrib/llvm/include/llvm/Object/ModuleSymbolTable.h
  stable/11/contrib/llvm/include/llvm/Object/ObjectFile.h
  stable/11/contrib/llvm/include/llvm/Object/RelocVisitor.h
  stable/11/contrib/llvm/include/llvm/Object/StackMapParser.h
  stable/11/contrib/llvm/include/llvm/Object/SymbolicFile.h
  stable/11/contrib/llvm/include/llvm/Object/Wasm.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/COFFYAML.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/DWARFYAML.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/ELFYAML.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/MachOYAML.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/ObjectYAML.h
  stable/11/contrib/llvm/include/llvm/ObjectYAML/YAML.h
  stable/11/contrib/llvm/include/llvm/Option/Arg.h
  stable/11/contrib/llvm/include/llvm/Option/ArgList.h
  stable/11/contrib/llvm/include/llvm/Option/OptParser.td
  stable/11/contrib/llvm/include/llvm/Option/OptSpecifier.h
  stable/11/contrib/llvm/include/llvm/Option/OptTable.h
  stable/11/contrib/llvm/include/llvm/Option/Option.h
  stable/11/contrib/llvm/include/llvm/Pass.h
  stable/11/contrib/llvm/include/llvm/PassInfo.h
  stable/11/contrib/llvm/include/llvm/PassSupport.h
  stable/11/contrib/llvm/include/llvm/Passes/PassBuilder.h
  stable/11/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
  stable/11/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMappingReader.h
  stable/11/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
  stable/11/contrib/llvm/include/llvm/ProfileData/InstrProf.h
  stable/11/contrib/llvm/include/llvm/ProfileData/InstrProfData.inc
  stable/11/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h
  stable/11/contrib/llvm/include/llvm/ProfileData/InstrProfWriter.h
  stable/11/contrib/llvm/include/llvm/ProfileData/ProfileCommon.h
  stable/11/contrib/llvm/include/llvm/ProfileData/SampleProf.h
  stable/11/contrib/llvm/include/llvm/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/ARMBuildAttributes.h
  stable/11/contrib/llvm/include/llvm/Support/ARMTargetParser.def
  stable/11/contrib/llvm/include/llvm/Support/Allocator.h
  stable/11/contrib/llvm/include/llvm/Support/ArrayRecycler.h
  stable/11/contrib/llvm/include/llvm/Support/Atomic.h
  stable/11/contrib/llvm/include/llvm/Support/BlockFrequency.h
  stable/11/contrib/llvm/include/llvm/Support/BranchProbability.h
  stable/11/contrib/llvm/include/llvm/Support/CBindingWrapping.h
  stable/11/contrib/llvm/include/llvm/Support/CachePruning.h
  stable/11/contrib/llvm/include/llvm/Support/Casting.h
  stable/11/contrib/llvm/include/llvm/Support/Chrono.h
  stable/11/contrib/llvm/include/llvm/Support/CommandLine.h
  stable/11/contrib/llvm/include/llvm/Support/Compiler.h
  stable/11/contrib/llvm/include/llvm/Support/Compression.h
  stable/11/contrib/llvm/include/llvm/Support/ConvertUTF.h
  stable/11/contrib/llvm/include/llvm/Support/DataExtractor.h
  stable/11/contrib/llvm/include/llvm/Support/Debug.h
  stable/11/contrib/llvm/include/llvm/Support/DynamicLibrary.h
  stable/11/contrib/llvm/include/llvm/Support/Endian.h
  stable/11/contrib/llvm/include/llvm/Support/Errno.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/ErrorOr.h
  stable/11/contrib/llvm/include/llvm/Support/FileSystem.h
  stable/11/contrib/llvm/include/llvm/Support/Format.h
  stable/11/contrib/llvm/include/llvm/Support/FormatAdapters.h
  stable/11/contrib/llvm/include/llvm/Support/FormatCommon.h
  stable/11/contrib/llvm/include/llvm/Support/FormatProviders.h
  stable/11/contrib/llvm/include/llvm/Support/FormatVariadic.h
  stable/11/contrib/llvm/include/llvm/Support/GCOV.h
  stable/11/contrib/llvm/include/llvm/Support/GenericDomTree.h
  stable/11/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h
  stable/11/contrib/llvm/include/llvm/Support/GraphWriter.h
  stable/11/contrib/llvm/include/llvm/Support/Host.h
  stable/11/contrib/llvm/include/llvm/Support/LEB128.h
  stable/11/contrib/llvm/include/llvm/Support/MD5.h
  stable/11/contrib/llvm/include/llvm/Support/ManagedStatic.h
  stable/11/contrib/llvm/include/llvm/Support/MathExtras.h
  stable/11/contrib/llvm/include/llvm/Support/MemoryBuffer.h
  stable/11/contrib/llvm/include/llvm/Support/Path.h
  stable/11/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
  stable/11/contrib/llvm/include/llvm/Support/RWMutex.h
  stable/11/contrib/llvm/include/llvm/Support/Recycler.h
  stable/11/contrib/llvm/include/llvm/Support/Regex.h
  stable/11/contrib/llvm/include/llvm/Support/SMLoc.h
  stable/11/contrib/llvm/include/llvm/Support/ScopedPrinter.h
  stable/11/contrib/llvm/include/llvm/Support/SourceMgr.h
  stable/11/contrib/llvm/include/llvm/Support/StringPool.h
  stable/11/contrib/llvm/include/llvm/Support/StringSaver.h
  stable/11/contrib/llvm/include/llvm/Support/TargetParser.h
  stable/11/contrib/llvm/include/llvm/Support/TargetRegistry.h
  stable/11/contrib/llvm/include/llvm/Support/ThreadPool.h
  stable/11/contrib/llvm/include/llvm/Support/Threading.h
  stable/11/contrib/llvm/include/llvm/Support/Timer.h
  stable/11/contrib/llvm/include/llvm/Support/TrailingObjects.h
  stable/11/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h
  stable/11/contrib/llvm/include/llvm/Support/UniqueLock.h
  stable/11/contrib/llvm/include/llvm/Support/YAMLParser.h
  stable/11/contrib/llvm/include/llvm/Support/YAMLTraits.h
  stable/11/contrib/llvm/include/llvm/Support/raw_sha1_ostream.h
  stable/11/contrib/llvm/include/llvm/Support/thread.h
  stable/11/contrib/llvm/include/llvm/Support/type_traits.h
  stable/11/contrib/llvm/include/llvm/TableGen/Main.h
  stable/11/contrib/llvm/include/llvm/TableGen/Record.h
  stable/11/contrib/llvm/include/llvm/TableGen/SetTheory.h
  stable/11/contrib/llvm/include/llvm/TableGen/StringMatcher.h
  stable/11/contrib/llvm/include/llvm/TableGen/StringToOffsetTable.h
  stable/11/contrib/llvm/include/llvm/Target/GenericOpcodes.td
  stable/11/contrib/llvm/include/llvm/Target/Target.td
  stable/11/contrib/llvm/include/llvm/Target/TargetCallingConv.h
  stable/11/contrib/llvm/include/llvm/Target/TargetInstrInfo.h
  stable/11/contrib/llvm/include/llvm/Target/TargetLowering.h
  stable/11/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
  stable/11/contrib/llvm/include/llvm/Target/TargetMachine.h
  stable/11/contrib/llvm/include/llvm/Target/TargetOpcodes.def
  stable/11/contrib/llvm/include/llvm/Target/TargetOptions.h
  stable/11/contrib/llvm/include/llvm/Target/TargetRegisterInfo.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/Target/TargetSubtargetInfo.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/GlobalDCE.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
  stable/11/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
  stable/11/contrib/llvm/include/llvm/Transforms/InstrProfiling.h
  stable/11/contrib/llvm/include/llvm/Transforms/Instrumentation.h
  stable/11/contrib/llvm/include/llvm/Transforms/PGOInstrumentation.h
  stable/11/contrib/llvm/include/llvm/Transforms/SampleProfile.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/Float2Int.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.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/MemCpyOptimizer.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/Reassociate.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/SROA.h
  stable/11/contrib/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
  stable/11/contrib/llvm/include/llvm/Transforms/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/EscapeEnumerator.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/Local.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
  stable/11/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h
  stable/11/contrib/llvm/include/llvm/Transforms/Vectorize.h
  stable/11/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
  stable/11/contrib/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
  stable/11/contrib/llvm/include/llvm/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/AssumptionCache.cpp
  stable/11/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
  stable/11/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/CFLGraph.h
  stable/11/contrib/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/CGSCCPassManager.cpp
  stable/11/contrib/llvm/lib/Analysis/CallGraph.cpp
  stable/11/contrib/llvm/lib/Analysis/CallGraphSCCPass.cpp
  stable/11/contrib/llvm/lib/Analysis/CallPrinter.cpp
  stable/11/contrib/llvm/lib/Analysis/CaptureTracking.cpp
  stable/11/contrib/llvm/lib/Analysis/CodeMetrics.cpp
  stable/11/contrib/llvm/lib/Analysis/ConstantFolding.cpp
  stable/11/contrib/llvm/lib/Analysis/CostModel.cpp
  stable/11/contrib/llvm/lib/Analysis/DemandedBits.cpp
  stable/11/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/DomPrinter.cpp
  stable/11/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
  stable/11/contrib/llvm/lib/Analysis/EHPersonalities.cpp
  stable/11/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
  stable/11/contrib/llvm/lib/Analysis/IVUsers.cpp
  stable/11/contrib/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/InlineCost.cpp
  stable/11/contrib/llvm/lib/Analysis/InstCount.cpp
  stable/11/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
  stable/11/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
  stable/11/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/LazyBranchProbabilityInfo.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/MemDerefPrinter.cpp
  stable/11/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp
  stable/11/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/MemoryLocation.cpp
  stable/11/contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
  stable/11/contrib/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
  stable/11/contrib/llvm/lib/Analysis/ObjCARCInstKind.cpp
  stable/11/contrib/llvm/lib/Analysis/OptimizationDiagnosticInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp
  stable/11/contrib/llvm/lib/Analysis/PHITransAddr.cpp
  stable/11/contrib/llvm/lib/Analysis/PostDominators.cpp
  stable/11/contrib/llvm/lib/Analysis/ProfileSummaryInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/RegionInfo.cpp
  stable/11/contrib/llvm/lib/Analysis/RegionPass.cpp
  stable/11/contrib/llvm/lib/Analysis/RegionPrinter.cpp
  stable/11/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
  stable/11/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
  stable/11/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
  stable/11/contrib/llvm/lib/Analysis/SparsePropagation.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/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/Reader/ValueList.h
  stable/11/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
  stable/11/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
  stable/11/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h
  stable/11/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
  stable/11/contrib/llvm/lib/CodeGen/Analysis.cpp
  stable/11/contrib/llvm/lib/CodeGen/AntiDepBreaker.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
  stable/11/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/BranchFolding.cpp
  stable/11/contrib/llvm/lib/CodeGen/BranchFolding.h
  stable/11/contrib/llvm/lib/CodeGen/BranchRelaxation.cpp
  stable/11/contrib/llvm/lib/CodeGen/BuiltinGCs.cpp
  stable/11/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp
  stable/11/contrib/llvm/lib/CodeGen/CallingConvLower.cpp
  stable/11/contrib/llvm/lib/CodeGen/CodeGen.cpp
  stable/11/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/CountingFunctionInserter.cpp
  stable/11/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
  stable/11/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
  stable/11/contrib/llvm/lib/CodeGen/DetectDeadLanes.cpp
  stable/11/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp
  stable/11/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp
  stable/11/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp
  stable/11/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
  stable/11/contrib/llvm/lib/CodeGen/FaultMaps.cpp
  stable/11/contrib/llvm/lib/CodeGen/FuncletLayout.cpp
  stable/11/contrib/llvm/lib/CodeGen/GCMetadata.cpp
  stable/11/contrib/llvm/lib/CodeGen/GCMetadataPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/GCStrategy.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
  stable/11/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelector.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/RegisterBank.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/InlineSpiller.cpp
  stable/11/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp
  stable/11/contrib/llvm/lib/CodeGen/LexicalScopes.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/LiveIntervalAnalysis.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp
  stable/11/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveRangeCalc.h
  stable/11/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp
  stable/11/contrib/llvm/lib/CodeGen/LiveVariables.cpp
  stable/11/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
  stable/11/contrib/llvm/lib/CodeGen/LowLevelType.cpp
  stable/11/contrib/llvm/lib/CodeGen/LowerEmuTLS.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MILexer.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MILexer.h
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MIParser.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MIParser.h
  stable/11/contrib/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/MIRPrintingPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineCSE.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineCombiner.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineDominators.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/MachineLICM.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachinePipeliner.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachinePostDominators.cpp
  stable/11/contrib/llvm/lib/CodeGen/MachineRegionInfo.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/OptimizePHIs.cpp
  stable/11/contrib/llvm/lib/CodeGen/PHIElimination.cpp
  stable/11/contrib/llvm/lib/CodeGen/PatchableFunction.cpp
  stable/11/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
  stable/11/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
  stable/11/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
  stable/11/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocBase.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocFast.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp
  stable/11/contrib/llvm/lib/CodeGen/RegisterUsageInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
  stable/11/contrib/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/SafeStack.cpp
  stable/11/contrib/llvm/lib/CodeGen/SafeStackColoring.cpp
  stable/11/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp
  stable/11/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
  stable/11/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/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/ScheduleDAGVLIW.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
  stable/11/contrib/llvm/lib/CodeGen/ShrinkWrap.cpp
  stable/11/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/SlotIndexes.cpp
  stable/11/contrib/llvm/lib/CodeGen/SpillPlacement.cpp
  stable/11/contrib/llvm/lib/CodeGen/SplitKit.cpp
  stable/11/contrib/llvm/lib/CodeGen/SplitKit.h
  stable/11/contrib/llvm/lib/CodeGen/StackColoring.cpp
  stable/11/contrib/llvm/lib/CodeGen/StackMaps.cpp
  stable/11/contrib/llvm/lib/CodeGen/StackProtector.cpp
  stable/11/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp
  stable/11/contrib/llvm/lib/CodeGen/TailDuplication.cpp
  stable/11/contrib/llvm/lib/CodeGen/TailDuplicator.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetPassConfig.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetSchedule.cpp
  stable/11/contrib/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
  stable/11/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
  stable/11/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp
  stable/11/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
  stable/11/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp
  stable/11/contrib/llvm/lib/CodeGen/XRayInstrumentation.cpp   (contents, props changed)
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeSerializer.cpp
  stable/11/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.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/DWARFDebugInfoEntry.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.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/DWARFDie.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/DWARFTypeUnit.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/SyntaxHighlighting.cpp
  stable/11/contrib/llvm/lib/DebugInfo/DWARF/SyntaxHighlighting.h
  stable/11/contrib/llvm/lib/DebugInfo/MSF/MSFBuilder.cpp
  stable/11/contrib/llvm/lib/DebugInfo/MSF/MSFCommon.cpp
  stable/11/contrib/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.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/DIARawSymbol.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBContext.cpp
  stable/11/contrib/llvm/lib/DebugInfo/PDB/PDBExtras.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/DIPrinter.cpp
  stable/11/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
  stable/11/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
  stable/11/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
  stable/11/contrib/llvm/lib/Demangle/ItaniumDemangle.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
  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/OProfileJIT/OProfileJITEventListener.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.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/OrcError.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/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/RuntimeDyldELF.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
  stable/11/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
  stable/11/contrib/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
  stable/11/contrib/llvm/lib/IR/AsmWriter.cpp
  stable/11/contrib/llvm/lib/IR/AttributeImpl.h
  stable/11/contrib/llvm/lib/IR/Attributes.cpp
  stable/11/contrib/llvm/lib/IR/AutoUpgrade.cpp
  stable/11/contrib/llvm/lib/IR/BasicBlock.cpp
  stable/11/contrib/llvm/lib/IR/Comdat.cpp
  stable/11/contrib/llvm/lib/IR/ConstantFold.cpp
  stable/11/contrib/llvm/lib/IR/ConstantRange.cpp
  stable/11/contrib/llvm/lib/IR/Constants.cpp
  stable/11/contrib/llvm/lib/IR/ConstantsContext.h
  stable/11/contrib/llvm/lib/IR/Core.cpp
  stable/11/contrib/llvm/lib/IR/DIBuilder.cpp
  stable/11/contrib/llvm/lib/IR/DataLayout.cpp
  stable/11/contrib/llvm/lib/IR/DebugInfo.cpp
  stable/11/contrib/llvm/lib/IR/DebugInfoMetadata.cpp
  stable/11/contrib/llvm/lib/IR/DebugLoc.cpp
  stable/11/contrib/llvm/lib/IR/DiagnosticInfo.cpp
  stable/11/contrib/llvm/lib/IR/DiagnosticPrinter.cpp
  stable/11/contrib/llvm/lib/IR/Dominators.cpp
  stable/11/contrib/llvm/lib/IR/Function.cpp
  stable/11/contrib/llvm/lib/IR/GCOV.cpp
  stable/11/contrib/llvm/lib/IR/Globals.cpp
  stable/11/contrib/llvm/lib/IR/IRBuilder.cpp
  stable/11/contrib/llvm/lib/IR/IRPrintingPasses.cpp
  stable/11/contrib/llvm/lib/IR/InlineAsm.cpp
  stable/11/contrib/llvm/lib/IR/Instruction.cpp
  stable/11/contrib/llvm/lib/IR/Instructions.cpp
  stable/11/contrib/llvm/lib/IR/IntrinsicInst.cpp
  stable/11/contrib/llvm/lib/IR/LLVMContext.cpp
  stable/11/contrib/llvm/lib/IR/LLVMContextImpl.cpp
  stable/11/contrib/llvm/lib/IR/LLVMContextImpl.h
  stable/11/contrib/llvm/lib/IR/LegacyPassManager.cpp
  stable/11/contrib/llvm/lib/IR/MDBuilder.cpp
  stable/11/contrib/llvm/lib/IR/Mangler.cpp
  stable/11/contrib/llvm/lib/IR/Metadata.cpp
  stable/11/contrib/llvm/lib/IR/Module.cpp
  stable/11/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
  stable/11/contrib/llvm/lib/IR/Operator.cpp
  stable/11/contrib/llvm/lib/IR/OptBisect.cpp
  stable/11/contrib/llvm/lib/IR/Pass.cpp
  stable/11/contrib/llvm/lib/IR/PassManager.cpp
  stable/11/contrib/llvm/lib/IR/PassRegistry.cpp
  stable/11/contrib/llvm/lib/IR/Statepoint.cpp
  stable/11/contrib/llvm/lib/IR/Type.cpp
  stable/11/contrib/llvm/lib/IR/TypeFinder.cpp
  stable/11/contrib/llvm/lib/IR/User.cpp
  stable/11/contrib/llvm/lib/IR/Value.cpp
  stable/11/contrib/llvm/lib/IR/ValueSymbolTable.cpp
  stable/11/contrib/llvm/lib/IR/ValueTypes.cpp
  stable/11/contrib/llvm/lib/IR/Verifier.cpp
  stable/11/contrib/llvm/lib/LTO/Caching.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/Linker/LinkModules.cpp
  stable/11/contrib/llvm/lib/MC/ConstantPools.cpp
  stable/11/contrib/llvm/lib/MC/ELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmBackend.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmInfo.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmInfoELF.cpp
  stable/11/contrib/llvm/lib/MC/MCAsmStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCAssembler.cpp
  stable/11/contrib/llvm/lib/MC/MCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/MC/MCCodeView.cpp
  stable/11/contrib/llvm/lib/MC/MCContext.cpp
  stable/11/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp
  stable/11/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
  stable/11/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
  stable/11/contrib/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
  stable/11/contrib/llvm/lib/MC/MCDwarf.cpp
  stable/11/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp
  stable/11/contrib/llvm/lib/MC/MCELFStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCExpr.cpp
  stable/11/contrib/llvm/lib/MC/MCFragment.cpp
  stable/11/contrib/llvm/lib/MC/MCInst.cpp
  stable/11/contrib/llvm/lib/MC/MCInstPrinter.cpp
  stable/11/contrib/llvm/lib/MC/MCInstrAnalysis.cpp
  stable/11/contrib/llvm/lib/MC/MCLabel.cpp
  stable/11/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp
  stable/11/contrib/llvm/lib/MC/MCMachOStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCMachObjectTargetWriter.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/MCObjectWriter.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/AsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/MCAsmParserExtension.cpp
  stable/11/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
  stable/11/contrib/llvm/lib/MC/MCRegisterInfo.cpp
  stable/11/contrib/llvm/lib/MC/MCSection.cpp
  stable/11/contrib/llvm/lib/MC/MCSectionCOFF.cpp
  stable/11/contrib/llvm/lib/MC/MCSectionELF.cpp
  stable/11/contrib/llvm/lib/MC/MCSectionMachO.cpp
  stable/11/contrib/llvm/lib/MC/MCStreamer.cpp
  stable/11/contrib/llvm/lib/MC/MCSubtargetInfo.cpp
  stable/11/contrib/llvm/lib/MC/MCSymbol.cpp
  stable/11/contrib/llvm/lib/MC/MCSymbolELF.cpp
  stable/11/contrib/llvm/lib/MC/MCTargetOptions.cpp
  stable/11/contrib/llvm/lib/MC/MCValue.cpp
  stable/11/contrib/llvm/lib/MC/MCWinEH.cpp
  stable/11/contrib/llvm/lib/MC/MachObjectWriter.cpp
  stable/11/contrib/llvm/lib/MC/StringTableBuilder.cpp
  stable/11/contrib/llvm/lib/MC/SubtargetFeature.cpp
  stable/11/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Object/Archive.cpp
  stable/11/contrib/llvm/lib/Object/ArchiveWriter.cpp
  stable/11/contrib/llvm/lib/Object/Binary.cpp
  stable/11/contrib/llvm/lib/Object/COFFObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/Decompressor.cpp
  stable/11/contrib/llvm/lib/Object/ELF.cpp
  stable/11/contrib/llvm/lib/Object/ELFObjectFile.cpp
  stable/11/contrib/llvm/lib/Object/IRObjectFile.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/RecordStreamer.cpp
  stable/11/contrib/llvm/lib/Object/RecordStreamer.h
  stable/11/contrib/llvm/lib/Object/SymbolicFile.cpp
  stable/11/contrib/llvm/lib/Object/WasmObjectFile.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/COFFYAML.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/DWARFYAML.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/ELFYAML.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/MachOYAML.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/ObjectYAML.cpp
  stable/11/contrib/llvm/lib/ObjectYAML/YAML.cpp
  stable/11/contrib/llvm/lib/Option/Arg.cpp
  stable/11/contrib/llvm/lib/Option/ArgList.cpp
  stable/11/contrib/llvm/lib/Option/OptTable.cpp
  stable/11/contrib/llvm/lib/Option/Option.cpp
  stable/11/contrib/llvm/lib/Passes/PassBuilder.cpp
  stable/11/contrib/llvm/lib/Passes/PassRegistry.def
  stable/11/contrib/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
  stable/11/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
  stable/11/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
  stable/11/contrib/llvm/lib/ProfileData/InstrProf.cpp
  stable/11/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
  stable/11/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp
  stable/11/contrib/llvm/lib/ProfileData/SampleProf.cpp
  stable/11/contrib/llvm/lib/ProfileData/SampleProfReader.cpp
  stable/11/contrib/llvm/lib/ProfileData/SampleProfWriter.cpp
  stable/11/contrib/llvm/lib/Support/APFloat.cpp
  stable/11/contrib/llvm/lib/Support/APInt.cpp
  stable/11/contrib/llvm/lib/Support/ARMBuildAttrs.cpp
  stable/11/contrib/llvm/lib/Support/Atomic.cpp
  stable/11/contrib/llvm/lib/Support/BranchProbability.cpp
  stable/11/contrib/llvm/lib/Support/CachePruning.cpp
  stable/11/contrib/llvm/lib/Support/Chrono.cpp
  stable/11/contrib/llvm/lib/Support/CommandLine.cpp
  stable/11/contrib/llvm/lib/Support/Compression.cpp
  stable/11/contrib/llvm/lib/Support/ConvertUTF.cpp
  stable/11/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp
  stable/11/contrib/llvm/lib/Support/CrashRecoveryContext.cpp
  stable/11/contrib/llvm/lib/Support/DataExtractor.cpp
  stable/11/contrib/llvm/lib/Support/DynamicLibrary.cpp
  stable/11/contrib/llvm/lib/Support/Errno.cpp
  stable/11/contrib/llvm/lib/Support/Error.cpp
  stable/11/contrib/llvm/lib/Support/ErrorHandling.cpp
  stable/11/contrib/llvm/lib/Support/FileOutputBuffer.cpp
  stable/11/contrib/llvm/lib/Support/FoldingSet.cpp
  stable/11/contrib/llvm/lib/Support/FormattedStream.cpp
  stable/11/contrib/llvm/lib/Support/GraphWriter.cpp
  stable/11/contrib/llvm/lib/Support/Host.cpp
  stable/11/contrib/llvm/lib/Support/LockFileManager.cpp
  stable/11/contrib/llvm/lib/Support/MD5.cpp
  stable/11/contrib/llvm/lib/Support/ManagedStatic.cpp
  stable/11/contrib/llvm/lib/Support/MemoryBuffer.cpp
  stable/11/contrib/llvm/lib/Support/Mutex.cpp
  stable/11/contrib/llvm/lib/Support/Path.cpp
  stable/11/contrib/llvm/lib/Support/PrettyStackTrace.cpp
  stable/11/contrib/llvm/lib/Support/Process.cpp
  stable/11/contrib/llvm/lib/Support/RWMutex.cpp
  stable/11/contrib/llvm/lib/Support/Regex.cpp
  stable/11/contrib/llvm/lib/Support/SHA1.cpp
  stable/11/contrib/llvm/lib/Support/ScopedPrinter.cpp
  stable/11/contrib/llvm/lib/Support/Signals.cpp
  stable/11/contrib/llvm/lib/Support/SourceMgr.cpp
  stable/11/contrib/llvm/lib/Support/SpecialCaseList.cpp
  stable/11/contrib/llvm/lib/Support/Statistic.cpp
  stable/11/contrib/llvm/lib/Support/StringExtras.cpp
  stable/11/contrib/llvm/lib/Support/StringRef.cpp
  stable/11/contrib/llvm/lib/Support/TargetParser.cpp
  stable/11/contrib/llvm/lib/Support/ThreadLocal.cpp
  stable/11/contrib/llvm/lib/Support/ThreadPool.cpp
  stable/11/contrib/llvm/lib/Support/Threading.cpp
  stable/11/contrib/llvm/lib/Support/Timer.cpp
  stable/11/contrib/llvm/lib/Support/TrigramIndex.cpp
  stable/11/contrib/llvm/lib/Support/Triple.cpp
  stable/11/contrib/llvm/lib/Support/Twine.cpp
  stable/11/contrib/llvm/lib/Support/Unix/Host.inc
  stable/11/contrib/llvm/lib/Support/Unix/Memory.inc
  stable/11/contrib/llvm/lib/Support/Unix/Path.inc
  stable/11/contrib/llvm/lib/Support/Unix/Process.inc
  stable/11/contrib/llvm/lib/Support/Unix/Program.inc
  stable/11/contrib/llvm/lib/Support/Unix/Signals.inc
  stable/11/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc
  stable/11/contrib/llvm/lib/Support/Windows/Host.inc
  stable/11/contrib/llvm/lib/Support/Windows/Mutex.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/RWMutex.inc
  stable/11/contrib/llvm/lib/Support/Windows/Signals.inc
  stable/11/contrib/llvm/lib/Support/Windows/ThreadLocal.inc
  stable/11/contrib/llvm/lib/Support/Windows/WindowsSupport.h
  stable/11/contrib/llvm/lib/Support/YAMLParser.cpp
  stable/11/contrib/llvm/lib/Support/YAMLTraits.cpp
  stable/11/contrib/llvm/lib/Support/raw_ostream.cpp
  stable/11/contrib/llvm/lib/TableGen/Record.cpp
  stable/11/contrib/llvm/lib/TableGen/SetTheory.cpp
  stable/11/contrib/llvm/lib/TableGen/StringMatcher.cpp
  stable/11/contrib/llvm/lib/TableGen/TGParser.cpp
  stable/11/contrib/llvm/lib/TableGen/TGParser.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64.td
  stable/11/contrib/llvm/lib/Target/AArch64/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/AArch64CleanupLocalDynamicTLSPass.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64GenRegisterBankInfo.def
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td
  stable/11/contrib/llvm/lib/Target/AArch64/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/AArch64MCInstLower.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedA53.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SchedM1.td
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.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/AArch64TargetMachine.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/AArch64VectorByElementOpt.cpp
  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/InstPrinter/AArch64InstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.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/AArch64FixupKinds.h
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/AArch64/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/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/AMDGPUFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/BUFInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/DSInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/FLATInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/MIMGInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/Processors.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.h
  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/R600Intrinsics.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInsertWaits.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstrFormats.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIIntrinsics.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SISchedule.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/SMInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/SOPInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
  stable/11/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
  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/VOPCInstructions.td
  stable/11/contrib/llvm/lib/Target/AMDGPU/VOPInstructions.td
  stable/11/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARM.h
  stable/11/contrib/llvm/lib/Target/ARM/ARM.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/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/ARMBasicBlockInfo.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/ARMCallingConv.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMFeatures.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMISelLowering.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMInstrInfo.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/ARMMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMSchedule.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td
  stable/11/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.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/ARMTargetMachine.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
  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/ARMFixupKinds.h
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.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/ARMUnwindOpAsm.cpp
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
  stable/11/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h
  stable/11/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
  stable/11/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVR.h
  stable/11/contrib/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRDevices.td
  stable/11/contrib/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRISelLowering.h
  stable/11/contrib/llvm/lib/Target/AVR/AVRInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
  stable/11/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
  stable/11/contrib/llvm/lib/Target/AVR/AVRInstrumentFunctions.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRMCInstLower.cpp
  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/AVRSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRSubtarget.h
  stable/11/contrib/llvm/lib/Target/AVR/AVRTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AVRTargetMachine.h
  stable/11/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.h
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.h
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFISelLowering.h
  stable/11/contrib/llvm/lib/Target/BPF/BPFInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFInstrInfo.td
  stable/11/contrib/llvm/lib/Target/BPF/BPFMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFMCInstLower.h
  stable/11/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/BitTracker.h
  stable/11/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/Hexagon.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.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/HexagonEarlyIfConv.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonSplitDouble.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/HexagonTargetMachine.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.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/HexagonMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFCopy.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFCopy.h
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFGraph.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFGraph.h
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFLiveness.cpp
  stable/11/contrib/llvm/lib/Target/Hexagon/RDFLiveness.h
  stable/11/contrib/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.h
  stable/11/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
  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/MSP430BranchSelector.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430CallingConv.td
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h
  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/MSP430MachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp
  stable/11/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h
  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/MipsABIFlagsSection.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MicroMips64r6InstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/Mips.h
  stable/11/contrib/llvm/lib/Target/Mips/Mips.td
  stable/11/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
  stable/11/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.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/MipsCCState.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsCCState.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsCallingConv.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.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/MipsFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsHazardSchedule.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.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsOptionRecord.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
  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/MipsScheduleP5600.td
  stable/11/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp
  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/MipsTargetMachine.h
  stable/11/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h
  stable/11/contrib/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTX.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
  stable/11/contrib/llvm/lib/Target/NVPTX/NVVMReflect.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/PPCAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPC.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/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/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/PPCInstrVSX.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
  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/PPCScheduleP8.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetStreamer.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
  stable/11/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/RISCV/RISCVInstrFormats.td
  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/DelaySlotFiller.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/LeonPasses.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/LeonPasses.h
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/Sparc.h
  stable/11/contrib/llvm/lib/Target/Sparc/Sparc.td
  stable/11/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
  stable/11/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
  stable/11/contrib/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
  stable/11/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h
  stable/11/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/SystemZ/README.txt
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZ.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZFeatures.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h
  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/SystemZLDCleanup.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZOperands.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZPatterns.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZSchedule.td
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.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/SystemZShortenInst.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZTDC.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/Target.cpp
  stable/11/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/TargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/TargetMachineC.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.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/README.txt
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssembly.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.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/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/WebAssemblyInstrCall.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.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/WebAssemblyInstrMemory.td
  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/WebAssemblyMCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
  stable/11/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
  stable/11/contrib/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
  stable/11/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp
  stable/11/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h
  stable/11/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
  stable/11/contrib/llvm/lib/Target/X86/AsmParser/X86Operand.h
  stable/11/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
  stable/11/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
  stable/11/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h
  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/X86InstComments.cpp
  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/X86ELFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
  stable/11/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
  stable/11/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
  stable/11/contrib/llvm/lib/Target/X86/X86.h
  stable/11/contrib/llvm/lib/Target/X86/X86.td
  stable/11/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86AsmPrinter.h
  stable/11/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86CallLowering.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86CallLowering.h
  stable/11/contrib/llvm/lib/Target/X86/X86CallingConv.cpp   (contents, props changed)
  stable/11/contrib/llvm/lib/Target/X86/X86CallingConv.td
  stable/11/contrib/llvm/lib/Target/X86/X86EvexToVex.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FastISel.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FixupBWInsts.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86FrameLowering.h
  stable/11/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86ISelLowering.h
  stable/11/contrib/llvm/lib/Target/X86/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/X86InstrBuilder.h
  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/X86InstrFMA.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.h
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFormats.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86InstrInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86InstrInfo.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrMMX.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrMPX.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrSSE.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrSystem.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrTSX.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrVMX.td
  stable/11/contrib/llvm/lib/Target/X86/X86InstrXOP.td
  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/X86MCInstLower.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86RegisterInfo.td
  stable/11/contrib/llvm/lib/Target/X86/X86SchedHaswell.td
  stable/11/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td
  stable/11/contrib/llvm/lib/Target/X86/X86Schedule.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/X86SelectionDAGInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.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/X86TargetObjectFile.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h
  stable/11/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h
  stable/11/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp
  stable/11/contrib/llvm/lib/Target/X86/X86WinEHState.cpp
  stable/11/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.cpp
  stable/11/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h
  stable/11/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
  stable/11/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
  stable/11/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h
  stable/11/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td
  stable/11/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
  stable/11/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
  stable/11/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h
  stable/11/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
  stable/11/contrib/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
  stable/11/contrib/llvm/lib/ToolDrivers/llvm-dlltool/Options.td
  stable/11/contrib/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
  stable/11/contrib/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
  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/CoroInstr.h
  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/ArgumentPromotion.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/ExtractGV.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/GlobalSplit.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/IPO.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/Inliner.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/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/SampleProfile.cpp
  stable/11/contrib/llvm/lib/Transforms/IPO/StripSymbols.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/BoundsChecking.cpp
  stable/11/contrib/llvm/lib/Transforms/Instrumentation/CFGMST.h
  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/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/MaximumSpanningTree.h
  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/BlotMapVector.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/ObjCARC/ProvenanceAnalysis.cpp
  stable/11/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
  stable/11/contrib/llvm/lib/Transforms/ObjCARC/PtrState.cpp
  stable/11/contrib/llvm/lib/Transforms/ObjCARC/PtrState.h
  stable/11/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/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/EarlyCSE.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Float2Int.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/GVN.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/GVNHoist.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/GuardWidening.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LICM.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopPassManager.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopSink.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/NewGVN.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SROA.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Scalarizer.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
  stable/11/contrib/llvm/lib/Transforms/Scalar/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/BuildLibCalls.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.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/CmpInstAnalysis.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/CodeExtractor.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/GlobalStatus.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/InstructionNamer.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LCSSA.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/LoopSimplify.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/LoopUnroll.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/LowerSwitch.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/Mem2Reg.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SanitizerStats.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/SimplifyInstructions.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/Utils.cpp
  stable/11/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
  stable/11/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.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/Vectorize.cpp
  stable/11/contrib/llvm/lib/XRay/Trace.cpp
  stable/11/contrib/llvm/tools/bugpoint/CrashDebugger.cpp
  stable/11/contrib/llvm/tools/bugpoint/ExtractFunction.cpp
  stable/11/contrib/llvm/tools/bugpoint/FindBugs.cpp
  stable/11/contrib/llvm/tools/bugpoint/ListReducer.h
  stable/11/contrib/llvm/tools/bugpoint/Miscompilation.cpp
  stable/11/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp
  stable/11/contrib/llvm/tools/bugpoint/ToolRunner.cpp
  stable/11/contrib/llvm/tools/bugpoint/bugpoint.cpp
  stable/11/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
  stable/11/contrib/llvm/tools/clang/include/clang-c/Index.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
  stable/11/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/CommentSema.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/DeclContextInternals.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.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/ExternalASTSource.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/Type.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def
  stable/11/contrib/llvm/tools/clang/include/clang/AST/TypeOrdering.h
  stable/11/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
  stable/11/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h
  stable/11/contrib/llvm/tools/clang/include/clang/Analysis/CloneDetection.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.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/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/BuiltinsNVPTX.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.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/DeclNodes.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/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/Linkage.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Module.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
  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/PartialDiagnostic.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/SourceManagerInternals.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/Visibility.h
  stable/11/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h
  stable/11/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Distro.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Job.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Multilib.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Options.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Options.td
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/Tool.h
  stable/11/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
  stable/11/contrib/llvm/tools/clang/include/clang/Edit/EditedSource.h
  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/CodeGenOptions.def
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Frontend/Utils.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/HeaderSearch.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
  stable/11/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.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/Token.h
  stable/11/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
  stable/11/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.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/MultiplexExternalSemaSource.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.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/Template.h
  stable/11/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/Module.h
  stable/11/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
  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/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/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/ConstraintManager.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/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/SymExpr.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/Tooling/ArgumentsAdjusters.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/FixIt.h
  stable/11/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.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/ObjCMT.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
  stable/11/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.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/CXXInheritance.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Comment.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/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/ExternalASTSource.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Mangle.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/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/OpenMPClause.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.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/StmtOpenMP.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/Type.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp
  stable/11/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Diagnostics.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  stable/11/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/CloneDetection.cpp
  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/ReachableCode.cpp
  stable/11/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.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/Diagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Module.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/Version.cpp
  stable/11/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/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/CGCXXABI.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/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/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/CGOpenCLRuntime.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/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/CodeGenTypeCache.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/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/DriverOptions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Job.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/Multilib.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.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/Gnu.cpp
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.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/NetBSD.h
  stable/11/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp
  stable/11/contrib/llvm/tools/clang/lib/Edit/EditedSource.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/BreakableToken.h
  stable/11/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.h
  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/TokenAnnotator.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h
  stable/11/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
  stable/11/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
  stable/11/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h
  stable/11/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/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/FrontendOptions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/LangStandards.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.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/RewriteMacros.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/SerializedDiagnosticPrinter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
  stable/11/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
  stable/11/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
  stable/11/contrib/llvm/tools/clang/lib/Headers/altivec.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/arm_acle.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx2intrin.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/avx512vldqintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/avxintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/cpuid.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/float.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.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/mmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/module.modulemap
  stable/11/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/prfchwintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/stdarg.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/stdatomic.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/stdint.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/tgmath.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/vecintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/x86intrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
  stable/11/contrib/llvm/tools/clang/lib/Headers/xopintrin.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/IndexingContext.h
  stable/11/contrib/llvm/tools/clang/lib/Index/USRGeneration.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/MacroArgs.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPCaching.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp
  stable/11/contrib/llvm/tools/clang/lib/Parse/Parser.cpp
  stable/11/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp
  stable/11/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h
  stable/11/contrib/llvm/tools/clang/lib/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/GeneratePCH.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/Module.cpp
  stable/11/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.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/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/CastToStructChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.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/ExprInspectionChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
  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/MallocChecker.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/NullabilityChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.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/BugReporter.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.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/MemRegion.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.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/Frontend/AnalysisConsumer.cpp
  stable/11/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.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/JSONCompilationDatabase.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
  stable/11/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp
  stable/11/contrib/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
  stable/11/contrib/llvm/tools/clang/tools/driver/cc1as_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/ClangDiagnosticsEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp
  stable/11/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h
  stable/11/contrib/llvm/tools/llc/llc.cpp
  stable/11/contrib/llvm/tools/lld/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/COFF/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/COFF/Chunks.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Chunks.h
  stable/11/contrib/llvm/tools/lld/COFF/Config.h
  stable/11/contrib/llvm/tools/lld/COFF/DLL.cpp
  stable/11/contrib/llvm/tools/lld/COFF/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/Error.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Error.h
  stable/11/contrib/llvm/tools/lld/COFF/ICF.cpp
  stable/11/contrib/llvm/tools/lld/COFF/InputFiles.cpp
  stable/11/contrib/llvm/tools/lld/COFF/InputFiles.h
  stable/11/contrib/llvm/tools/lld/COFF/MarkLive.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Options.td
  stable/11/contrib/llvm/tools/lld/COFF/PDB.cpp
  stable/11/contrib/llvm/tools/lld/COFF/PDB.h
  stable/11/contrib/llvm/tools/lld/COFF/Strings.cpp
  stable/11/contrib/llvm/tools/lld/COFF/SymbolTable.cpp
  stable/11/contrib/llvm/tools/lld/COFF/SymbolTable.h
  stable/11/contrib/llvm/tools/lld/COFF/Symbols.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Symbols.h
  stable/11/contrib/llvm/tools/lld/COFF/Writer.cpp
  stable/11/contrib/llvm/tools/lld/COFF/Writer.h
  stable/11/contrib/llvm/tools/lld/ELF/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/ELF/Config.h
  stable/11/contrib/llvm/tools/lld/ELF/Driver.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Driver.h
  stable/11/contrib/llvm/tools/lld/ELF/DriverUtils.cpp
  stable/11/contrib/llvm/tools/lld/ELF/EhFrame.cpp
  stable/11/contrib/llvm/tools/lld/ELF/EhFrame.h
  stable/11/contrib/llvm/tools/lld/ELF/Error.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Error.h
  stable/11/contrib/llvm/tools/lld/ELF/GdbIndex.cpp
  stable/11/contrib/llvm/tools/lld/ELF/GdbIndex.h
  stable/11/contrib/llvm/tools/lld/ELF/ICF.cpp
  stable/11/contrib/llvm/tools/lld/ELF/ICF.h
  stable/11/contrib/llvm/tools/lld/ELF/InputFiles.cpp
  stable/11/contrib/llvm/tools/lld/ELF/InputFiles.h
  stable/11/contrib/llvm/tools/lld/ELF/InputSection.cpp
  stable/11/contrib/llvm/tools/lld/ELF/InputSection.h
  stable/11/contrib/llvm/tools/lld/ELF/LTO.cpp
  stable/11/contrib/llvm/tools/lld/ELF/LTO.h
  stable/11/contrib/llvm/tools/lld/ELF/LinkerScript.cpp
  stable/11/contrib/llvm/tools/lld/ELF/LinkerScript.h
  stable/11/contrib/llvm/tools/lld/ELF/MarkLive.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Memory.h
  stable/11/contrib/llvm/tools/lld/ELF/Options.td
  stable/11/contrib/llvm/tools/lld/ELF/OutputSections.cpp
  stable/11/contrib/llvm/tools/lld/ELF/OutputSections.h
  stable/11/contrib/llvm/tools/lld/ELF/Relocations.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Relocations.h
  stable/11/contrib/llvm/tools/lld/ELF/ScriptParser.cpp
  stable/11/contrib/llvm/tools/lld/ELF/ScriptParser.h
  stable/11/contrib/llvm/tools/lld/ELF/Strings.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Strings.h
  stable/11/contrib/llvm/tools/lld/ELF/SymbolTable.cpp
  stable/11/contrib/llvm/tools/lld/ELF/SymbolTable.h
  stable/11/contrib/llvm/tools/lld/ELF/Symbols.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Symbols.h
  stable/11/contrib/llvm/tools/lld/ELF/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/Threads.h
  stable/11/contrib/llvm/tools/lld/ELF/Thunks.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Thunks.h
  stable/11/contrib/llvm/tools/lld/ELF/Writer.cpp
  stable/11/contrib/llvm/tools/lld/ELF/Writer.h
  stable/11/contrib/llvm/tools/lld/README.md
  stable/11/contrib/llvm/tools/lld/include/lld/Core/Reader.h
  stable/11/contrib/llvm/tools/lld/include/lld/Driver/Driver.h
  stable/11/contrib/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
  stable/11/contrib/llvm/tools/lld/lib/Core/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/lib/Core/Reader.cpp
  stable/11/contrib/llvm/tools/lld/lib/Core/SymbolTable.cpp
  stable/11/contrib/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.cpp
  stable/11/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
  stable/11/contrib/llvm/tools/lld/tools/lld/lld.cpp
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointLocation.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBError.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBPlatform.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/API/SBWatchpoint.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/BreakpointLocation.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/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/WatchpointOptions.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ArchSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.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/EmulateInstruction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Event.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/Listener.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/MappedHash.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Module.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ModuleChild.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Opcode.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/PluginManager.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/RegisterValue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/State.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Core/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/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/Core/dwarf.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/FormattersContainer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.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/ValueObjectPrinter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/Materializer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/File.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/FileCache.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/PosixApi.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.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/Symbols.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/XML.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeThreadProtocol.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeWatchpointList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/SoftwareBreakpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/Args.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/CommandObjectRegexCommand.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/Property.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/GoASTContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/JavaASTContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/LineEntry.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/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/MemoryRegionInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/Process.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ProcessInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/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/StopInfo.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.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/ThreadList.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.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/ThreadSpec.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/NameMatches.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Range.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/SafeMachO.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/StringExtractor.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/TaskPool.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/Utility/Timeout.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-enumerations.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
  stable/11/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
  stable/11/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBlock.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBreakpointLocation.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBBroadcaster.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBCommunication.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBCompileUnit.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBData.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBDeclaration.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBError.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBEvent.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBFileSpecList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBFunction.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBLineEntry.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBListener.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBModule.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBModuleSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBPlatform.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBProcess.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBQueue.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBSection.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBStream.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBSymbolContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/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/SBTypeEnumMember.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBValueList.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SBWatchpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointIDList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp
  stable/11/contrib/llvm/tools/lldb/source/Breakpoint/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/Watchpoint.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/CommandObjectArgs.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectArgs.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
  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/CommandObjectHelp.h
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
  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/CommandObjectType.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Address.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/AddressRange.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/AddressResolver.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Broadcaster.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/DynamicLoader.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Event.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/Listener.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/RegisterValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/Section.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/State.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/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/ValueObjectConstResultCast.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
  stable/11/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/IRInterpreter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp
  stable/11/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/File.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/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/HostProcess.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/PipeBase.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/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/posix/ConnectionFileDescriptorPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
  stable/11/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/Args.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
  stable/11/contrib/llvm/tools/lldb/source/Interpreter/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/ScriptInterpreter.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/Disassembler/llvm/DisassemblerLLVMC.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.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/ClangExpressionParser.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
  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/IRForTarget.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.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/Instruction/ARM/EmulateInstructionARM.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  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/CxxStringTypes.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
  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/JavaLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/CMakeLists.txt
  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/Language/ObjC/CF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
  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/RenderScriptScriptGroup.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.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/Darwin/NativeThreadDarwin.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/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_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_x86.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoInterface.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/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.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/CMakeLists.txt
  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_64.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
  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/CMakeLists.txt
  stable/11/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.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/DWARFASTParserOCaml.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnames.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugPubnamesSet.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
  stable/11/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/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/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
  stable/11/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp
  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/ClangExternalASTSourceCommon.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.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/Declaration.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/OCamlASTContext.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/UnwindPlan.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
  stable/11/contrib/llvm/tools/lldb/source/Symbol/VariableList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/ABI.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/FileAction.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/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/ObjCLanguageRuntime.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/RegisterContext.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/StackID.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
  stable/11/contrib/llvm/tools/lldb/source/Target/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/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/Utility/ARM64_DWARF_Registers.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.h
  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/NameMatches.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/Range.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.h
  stable/11/contrib/llvm/tools/lldb/source/Utility/StringLexer.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/TaskPool.cpp
  stable/11/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp
  stable/11/contrib/llvm/tools/lldb/tools/argdumper/argdumper.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/MICmdBase.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.h
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
  stable/11/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
  stable/11/contrib/llvm/tools/lli/OrcLazyJIT.cpp
  stable/11/contrib/llvm/tools/lli/OrcLazyJIT.h
  stable/11/contrib/llvm/tools/lli/RemoteJITUtils.h
  stable/11/contrib/llvm/tools/lli/lli.cpp
  stable/11/contrib/llvm/tools/llvm-ar/llvm-ar.cpp
  stable/11/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
  stable/11/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp
  stable/11/contrib/llvm/tools/llvm-cov/CoverageReport.cpp
  stable/11/contrib/llvm/tools/llvm-cov/CoverageReport.h
  stable/11/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.h
  stable/11/contrib/llvm/tools/llvm-cov/TestingSupport.cpp
  stable/11/contrib/llvm/tools/llvm-cov/gcov.cpp
  stable/11/contrib/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
  stable/11/contrib/llvm/tools/llvm-diff/DiffConsumer.cpp
  stable/11/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
  stable/11/contrib/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
  stable/11/contrib/llvm/tools/llvm-extract/llvm-extract.cpp
  stable/11/contrib/llvm/tools/llvm-link/llvm-link.cpp
  stable/11/contrib/llvm/tools/llvm-lto/llvm-lto.cpp
  stable/11/contrib/llvm/tools/llvm-lto2/llvm-lto2.cpp
  stable/11/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
  stable/11/contrib/llvm/tools/llvm-modextract/llvm-modextract.cpp
  stable/11/contrib/llvm/tools/llvm-nm/llvm-nm.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-profdata/llvm-profdata.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
  stable/11/contrib/llvm/tools/llvm-readobj/COFFImportDumper.cpp
  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/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/llvm-xray.cc
  stable/11/contrib/llvm/tools/llvm-xray/xray-account.cc
  stable/11/contrib/llvm/tools/llvm-xray/xray-converter.cc
  stable/11/contrib/llvm/tools/llvm-xray/xray-extract.cc
  stable/11/contrib/llvm/tools/opt/BreakpointPrinter.cpp
  stable/11/contrib/llvm/tools/opt/GraphPrinters.cpp
  stable/11/contrib/llvm/tools/opt/NewPMDriver.cpp
  stable/11/contrib/llvm/tools/opt/NewPMDriver.h
  stable/11/contrib/llvm/tools/opt/opt.cpp
  stable/11/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/Attributes.cpp
  stable/11/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenInstruction.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenRegisters.h
  stable/11/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenTarget.cpp
  stable/11/contrib/llvm/utils/TableGen/CodeGenTarget.h
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcher.h
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
  stable/11/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.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/InstrInfoEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/OptParserEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/SearchableTableEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
  stable/11/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
  stable/11/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.h
  stable/11/contrib/llvm/utils/TableGen/TableGen.cpp
  stable/11/contrib/llvm/utils/TableGen/TableGenBackends.h
  stable/11/contrib/llvm/utils/TableGen/Types.cpp
  stable/11/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp
  stable/11/contrib/llvm/utils/TableGen/X86DisassemblerTables.h
  stable/11/contrib/llvm/utils/TableGen/X86ModRMFilters.h
  stable/11/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
  stable/11/contrib/llvm/utils/TableGen/X86RecognizableInstr.h
  stable/11/etc/mtree/BSD.debug.dist
  stable/11/etc/mtree/BSD.usr.dist
  stable/11/lib/clang/freebsd_cc_version.h
  stable/11/lib/clang/headers/Makefile
  stable/11/lib/clang/include/clang/Basic/Version.inc
  stable/11/lib/clang/include/clang/Config/config.h
  stable/11/lib/clang/include/lld/Config/Version.inc
  stable/11/lib/clang/include/llvm/Config/abi-breaking.h
  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/DataTypes.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/include/Makefile
  stable/11/lib/libclang_rt/profile/Makefile
  stable/11/lib/libclang_rt/safestack/Makefile
  stable/11/lib/libclang_rt/stats/Makefile
  stable/11/lib/libclang_rt/ubsan_standalone/Makefile
  stable/11/lib/libcompiler_rt/Makefile.inc
  stable/11/sys/sys/param.h
  stable/11/tools/build/mk/OptionalObsoleteFiles.inc
  stable/11/usr.bin/clang/Makefile
  stable/11/usr.bin/clang/clang-tblgen/Makefile
  stable/11/usr.bin/clang/lld/Makefile
  stable/11/usr.bin/clang/llvm-tblgen/Makefile
  stable/11/usr.bin/clang/llvm-xray/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/ObsoleteFiles.inc
==============================================================================
--- stable/11/ObsoleteFiles.inc	Tue Sep 26 19:21:43 2017	(r324022)
+++ stable/11/ObsoleteFiles.inc	Tue Sep 26 19:56:36 2017	(r324023)
@@ -38,6 +38,119 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 2017mmdd: new clang import which bumps version from 4.0.0 to 5.0.0.
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/allocator_interface.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/asan_interface.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/common_interface_defs.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/coverage_interface.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/dfsan_interface.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/esan_interface.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/linux_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/lsan_interface.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/msan_interface.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/tsan_interface_atomic.h
+OLD_DIRS+=usr/lib/clang/4.0.0/include/sanitizer
+OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_builtin_vars.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_cmath.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_complex_builtins.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_intrinsics.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_math_forward_declares.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_runtime_wrapper.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/__stddef_max_align_t.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/__wmmintrin_aes.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/__wmmintrin_pclmul.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/adxintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/altivec.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/ammintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/arm_acle.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/arm_neon.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/armintr.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx2intrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512bwintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512cdintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512dqintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512erintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512fintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512ifmaintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512ifmavlintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512pfintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vbmiintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vbmivlintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vlbwintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vlcdintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vldqintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vlintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/avxintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/bmi2intrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/bmiintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/clflushoptintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/cpuid.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/emmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/f16cintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/fma4intrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/fmaintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/fxsrintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/htmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/htmxlintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/ia32intrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/immintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/lzcntintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/mm3dnow.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/mm_malloc.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/mmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/module.modulemap
+OLD_FILES+=usr/lib/clang/4.0.0/include/msa.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/mwaitxintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/nmmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/opencl-c.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/pkuintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/pmmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/popcntintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/prfchwintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/rdseedintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/rtmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/s390intrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/shaintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/smmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/tbmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/tmmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/vadefs.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/vecintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/wmmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/x86intrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/xmmintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/xopintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/xsavecintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/xsaveintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/xsaveoptintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/xsavesintrin.h
+OLD_FILES+=usr/lib/clang/4.0.0/include/xtestintrin.h
+OLD_DIRS+=usr/lib/clang/4.0.0/include
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-i386.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-i386.so
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-x86_64.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-x86_64.so
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.profile-arm.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.profile-i386.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.profile-x86_64.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.safestack-i386.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.stats-i386.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.stats-x86_64.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.stats_client-i386.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a
+OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a
+OLD_DIRS+=usr/lib/clang/4.0.0/lib/freebsd
+OLD_DIRS+=usr/lib/clang/4.0.0/lib
+OLD_DIRS+=usr/lib/clang/4.0.0
+OLD_FILES+=usr/bin/llvm-pdbdump
 # 20170802: ksyms(4) ioctl interface was removed
 OLD_FILES+=usr/include/sys/ksyms.h
 # 20170620: remove stale manpage

Modified: stable/11/UPDATING
==============================================================================
--- stable/11/UPDATING	Tue Sep 26 19:21:43 2017	(r324022)
+++ stable/11/UPDATING	Tue Sep 26 19:56:36 2017	(r324023)
@@ -16,6 +16,11 @@ 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.
 
+2017mmdd:
+	Clang, llvm, lldb, compiler-rt and libc++ have been upgraded to 5.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.
+
 20170822:
 	Since the switch to GPT disk labels, fsck for UFS/FFS has been
 	unable to automatically find alternate superblocks. As of r322806,

Modified: stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h	Tue Sep 26 19:21:43 2017	(r324022)
+++ stable/11/contrib/compiler-rt/include/sanitizer/common_interface_defs.h	Tue Sep 26 19:56:36 2017	(r324023)
@@ -158,8 +158,10 @@ extern "C" {
   // Prints stack traces for all live heap allocations ordered by total
   // allocation size until `top_percent` of total live heap is shown.
   // `top_percent` should be between 1 and 100.
+  // At most `max_number_of_contexts` contexts (stack traces) is printed.
   // Experimental feature currently available only with asan on Linux/x86_64.
-  void __sanitizer_print_memory_profile(size_t top_percent);
+  void __sanitizer_print_memory_profile(size_t top_percent,
+                                        size_t max_number_of_contexts);
 
   // Fiber annotation interface.
   // Before switching to a different stack, one must call

Modified: stable/11/contrib/compiler-rt/include/sanitizer/coverage_interface.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/sanitizer/coverage_interface.h	Tue Sep 26 19:21:43 2017	(r324022)
+++ stable/11/contrib/compiler-rt/include/sanitizer/coverage_interface.h	Tue Sep 26 19:56:36 2017	(r324023)
@@ -19,50 +19,12 @@
 extern "C" {
 #endif
 
-  // Initialize coverage.
-  void __sanitizer_cov_init();
   // Record and dump coverage info.
   void __sanitizer_cov_dump();
 
   //  Dump collected coverage info. Sorts pcs by module into individual
   //  .sancov files.
   void __sanitizer_dump_coverage(const uintptr_t *pcs, uintptr_t len);
-
-  // Open <name>.sancov.packed in the coverage directory and return the file
-  // descriptor. Returns -1 on failure, or if coverage dumping is disabled.
-  // This is intended for use by sandboxing code.
-  intptr_t __sanitizer_maybe_open_cov_file(const char *name);
-  // Get the number of unique covered blocks (or edges).
-  // This can be useful for coverage-directed in-process fuzzers.
-  uintptr_t __sanitizer_get_total_unique_coverage();
-  // Get the number of unique indirect caller-callee pairs.
-  uintptr_t __sanitizer_get_total_unique_caller_callee_pairs();
-
-  // Reset the basic-block (edge) coverage to the initial state.
-  // Useful for in-process fuzzing to start collecting coverage from scratch.
-  // Experimental, will likely not work for multi-threaded process.
-  void __sanitizer_reset_coverage();
-  // Set *data to the array of covered PCs and return the size of that array.
-  // Some of the entries in *data will be zero.
-  uintptr_t __sanitizer_get_coverage_guards(uintptr_t **data);
-
-  // The coverage instrumentation may optionally provide imprecise counters.
-  // Rather than exposing the counter values to the user we instead map
-  // the counters to a bitset.
-  // Every counter is associated with 8 bits in the bitset.
-  // We define 8 value ranges: 1, 2, 3, 4-7, 8-15, 16-31, 32-127, 128+
-  // The i-th bit is set to 1 if the counter value is in the i-th range.
-  // This counter-based coverage implementation is *not* thread-safe.
-
-  // Returns the number of registered coverage counters.
-  uintptr_t __sanitizer_get_number_of_counters();
-  // Updates the counter 'bitset', clears the counters and returns the number of
-  // new bits in 'bitset'.
-  // If 'bitset' is nullptr, only clears the counters.
-  // Otherwise 'bitset' should be at least
-  // __sanitizer_get_number_of_counters bytes long and 8-aligned.
-  uintptr_t
-  __sanitizer_update_counter_bitset_and_clear_counters(uint8_t *bitset);
 
 #ifdef __cplusplus
 }  // extern "C"

Copied: stable/11/contrib/compiler-rt/include/sanitizer/tsan_interface.h (from r321369, head/contrib/compiler-rt/include/sanitizer/tsan_interface.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/11/contrib/compiler-rt/include/sanitizer/tsan_interface.h	Tue Sep 26 19:56:36 2017	(r324023, copy of r321369, head/contrib/compiler-rt/include/sanitizer/tsan_interface.h)
@@ -0,0 +1,138 @@
+//===-- tsan_interface.h ----------------------------------------*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file is a part of ThreadSanitizer (TSan), a race detector.
+//
+// Public interface header for TSan.
+//===----------------------------------------------------------------------===//
+#ifndef SANITIZER_TSAN_INTERFACE_H
+#define SANITIZER_TSAN_INTERFACE_H
+
+#include <sanitizer/common_interface_defs.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+// __tsan_release establishes a happens-before relation with a preceding
+// __tsan_acquire on the same address.
+void __tsan_acquire(void *addr);
+void __tsan_release(void *addr);
+
+// Annotations for custom mutexes.
+// The annotations allow to get better reports (with sets of locked mutexes),
+// detect more types of bugs (e.g. mutex misuses, races between lock/unlock and
+// destruction and potential deadlocks) and improve precision and performance
+// (by ignoring individual atomic operations in mutex code). However, the
+// downside is that annotated mutex code itself is not checked for correctness.
+
+// Mutex creation flags are passed to __tsan_mutex_create annotation.
+// If mutex has no constructor and __tsan_mutex_create is not called,
+// the flags may be passed to __tsan_mutex_pre_lock/__tsan_mutex_post_lock
+// annotations.
+
+// Mutex has static storage duration and no-op constructor and destructor.
+// This effectively makes tsan ignore destroy annotation.
+const unsigned __tsan_mutex_linker_init      = 1 << 0;
+// Mutex is write reentrant.
+const unsigned __tsan_mutex_write_reentrant  = 1 << 1;
+// Mutex is read reentrant.
+const unsigned __tsan_mutex_read_reentrant   = 1 << 2;
+
+// Mutex operation flags:
+
+// Denotes read lock operation.
+const unsigned __tsan_mutex_read_lock        = 1 << 3;
+// Denotes try lock operation.
+const unsigned __tsan_mutex_try_lock         = 1 << 4;
+// Denotes that a try lock operation has failed to acquire the mutex.
+const unsigned __tsan_mutex_try_lock_failed  = 1 << 5;
+// Denotes that the lock operation acquires multiple recursion levels.
+// Number of levels is passed in recursion parameter.
+// This is useful for annotation of e.g. Java builtin monitors,
+// for which wait operation releases all recursive acquisitions of the mutex.
+const unsigned __tsan_mutex_recursive_lock   = 1 << 6;
+// Denotes that the unlock operation releases all recursion levels.
+// Number of released levels is returned and later must be passed to
+// the corresponding __tsan_mutex_post_lock annotation.
+const unsigned __tsan_mutex_recursive_unlock = 1 << 7;
+
+// Annotate creation of a mutex.
+// Supported flags: mutex creation flags.
+void __tsan_mutex_create(void *addr, unsigned flags);
+
+// Annotate destruction of a mutex.
+// Supported flags:
+//   - __tsan_mutex_linker_init
+void __tsan_mutex_destroy(void *addr, unsigned flags);
+
+// Annotate start of lock operation.
+// Supported flags:
+//   - __tsan_mutex_read_lock
+//   - __tsan_mutex_try_lock
+//   - all mutex creation flags
+void __tsan_mutex_pre_lock(void *addr, unsigned flags);
+
+// Annotate end of lock operation.
+// Supported flags:
+//   - __tsan_mutex_read_lock (must match __tsan_mutex_pre_lock)
+//   - __tsan_mutex_try_lock (must match __tsan_mutex_pre_lock)
+//   - __tsan_mutex_try_lock_failed
+//   - __tsan_mutex_recursive_lock
+//   - all mutex creation flags
+void __tsan_mutex_post_lock(void *addr, unsigned flags, int recursion);
+
+// Annotate start of unlock operation.
+// Supported flags:
+//   - __tsan_mutex_read_lock
+//   - __tsan_mutex_recursive_unlock
+int __tsan_mutex_pre_unlock(void *addr, unsigned flags);
+
+// Annotate end of unlock operation.
+// Supported flags:
+//   - __tsan_mutex_read_lock (must match __tsan_mutex_pre_unlock)
+void __tsan_mutex_post_unlock(void *addr, unsigned flags);
+
+// Annotate start/end of notify/signal/broadcast operation.
+// Supported flags: none.
+void __tsan_mutex_pre_signal(void *addr, unsigned flags);
+void __tsan_mutex_post_signal(void *addr, unsigned flags);
+
+// Annotate start/end of a region of code where lock/unlock/signal operation
+// diverts to do something else unrelated to the mutex. This can be used to
+// annotate, for example, calls into cooperative scheduler or contention
+// profiling code.
+// These annotations must be called only from within
+// __tsan_mutex_pre/post_lock, __tsan_mutex_pre/post_unlock,
+// __tsan_mutex_pre/post_signal regions.
+// Supported flags: none.
+void __tsan_mutex_pre_divert(void *addr, unsigned flags);
+void __tsan_mutex_post_divert(void *addr, unsigned flags);
+
+// External race detection API.
+// Can be used by non-instrumented libraries to detect when their objects are
+// being used in an unsafe manner.
+//   - __tsan_external_read/__tsan_external_write annotates the logical reads
+//       and writes of the object at the specified address. 'caller_pc' should
+//       be the PC of the library user, which the library can obtain with e.g.
+//       `__builtin_return_address(0)`.
+//   - __tsan_external_register_tag registers a 'tag' with the specified name,
+//       which is later used in read/write annotations to denote the object type
+//   - __tsan_external_assign_tag can optionally mark a heap object with a tag
+void *__tsan_external_register_tag(const char *object_type);
+void __tsan_external_register_header(void *tag, const char *header);
+void __tsan_external_assign_tag(void *addr, void *tag);
+void __tsan_external_read(void *addr, void *caller_pc, void *tag);
+void __tsan_external_write(void *addr, void *caller_pc, void *tag);
+
+#ifdef __cplusplus
+}  // extern "C"
+#endif
+
+#endif  // SANITIZER_TSAN_INTERFACE_H

Modified: stable/11/contrib/compiler-rt/include/xray/xray_interface.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/xray/xray_interface.h	Tue Sep 26 19:21:43 2017	(r324022)
+++ stable/11/contrib/compiler-rt/include/xray/xray_interface.h	Tue Sep 26 19:56:36 2017	(r324023)
@@ -1,4 +1,4 @@
-//===-- xray_interface.h ----------------------------------------*- C++ -*-===//
+//===- xray_interface.h -----------------------------------------*- C++ -*-===//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -11,41 +11,69 @@
 //
 // APIs for controlling XRay functionality explicitly.
 //===----------------------------------------------------------------------===//
+
 #ifndef XRAY_XRAY_INTERFACE_H
 #define XRAY_XRAY_INTERFACE_H
 
+#include <cstddef>
 #include <cstdint>
 
 extern "C" {
 
-enum XRayEntryType { ENTRY = 0, EXIT = 1, TAIL = 2 };
+/// Synchronize this with AsmPrinter::SledKind in LLVM.
+enum XRayEntryType {
+  ENTRY = 0,
+  EXIT = 1,
+  TAIL = 2,
+  LOG_ARGS_ENTRY = 3,
+  CUSTOM_EVENT = 4,
+};
 
-// Provide a function to invoke for when instrumentation points are hit. This is
-// a user-visible control surface that overrides the default implementation. The
-// function provided should take the following arguments:
-//
-//   - function id: an identifier that indicates the id of a function; this id
-//                  is generated by xray; the mapping between the function id
-//                  and the actual function pointer is available through
-//                  __xray_table.
-//   - entry type: identifies what kind of instrumentation point was encountered
-//                 (function entry, function exit, etc.). See the enum
-//                 XRayEntryType for more details.
-//
-// The user handler must handle correctly spurious calls after this handler is
-// removed or replaced with another handler, because it would be too costly for
-// XRay runtime to avoid spurious calls.
-// To prevent circular calling, the handler function itself and all its
-// direct&indirect callees must not be instrumented with XRay, which can be
-// achieved by marking them all with: __attribute__((xray_never_instrument))
-//
-// Returns 1 on success, 0 on error.
+/// Provide a function to invoke for when instrumentation points are hit. This
+/// is a user-visible control surface that overrides the default implementation.
+/// The function provided should take the following arguments:
+///
+///   - function id: an identifier that indicates the id of a function; this id
+///                  is generated by xray; the mapping between the function id
+///                  and the actual function pointer is available through
+///                  __xray_table.
+///   - entry type: identifies what kind of instrumentation point was
+///                 encountered (function entry, function exit, etc.). See the
+///                 enum XRayEntryType for more details.
+///
+/// The user handler must handle correctly spurious calls after this handler is
+/// removed or replaced with another handler, because it would be too costly for
+/// XRay runtime to avoid spurious calls.
+/// To prevent circular calling, the handler function itself and all its
+/// direct&indirect callees must not be instrumented with XRay, which can be
+/// achieved by marking them all with: __attribute__((xray_never_instrument))
+///
+/// Returns 1 on success, 0 on error.
 extern int __xray_set_handler(void (*entry)(int32_t, XRayEntryType));
 
-// This removes whatever the currently provided handler is. Returns 1 on
-// success, 0 on error.
+/// This removes whatever the currently provided handler is. Returns 1 on
+/// success, 0 on error.
 extern int __xray_remove_handler();
 
+/// Use XRay to log the first argument of each (instrumented) function call.
+/// When this function exits, all threads will have observed the effect and
+/// start logging their subsequent affected function calls (if patched).
+///
+/// Returns 1 on success, 0 on error.
+extern int __xray_set_handler_arg1(void (*entry)(int32_t, XRayEntryType,
+                                                 uint64_t));
+
+/// Disables the XRay handler used to log first arguments of function calls.
+/// Returns 1 on success, 0 on error.
+extern int __xray_remove_handler_arg1();
+
+/// Provide a function to invoke when XRay encounters a custom event.
+extern int __xray_set_customevent_handler(void (*entry)(void*, std::size_t));
+
+/// This removes whatever the currently provided custom event handler is.
+/// Returns 1 on success, 0 on error.
+extern int __xray_remove_customevent_handler();
+
 enum XRayPatchingStatus {
   NOT_INITIALIZED = 0,
   SUCCESS = 1,
@@ -53,13 +81,31 @@ enum XRayPatchingStatus {
   FAILED = 3,
 };
 
-// This tells XRay to patch the instrumentation points. See XRayPatchingStatus
-// for possible result values.
+/// This tells XRay to patch the instrumentation points. See XRayPatchingStatus
+/// for possible result values.
 extern XRayPatchingStatus __xray_patch();
 
-// Reverses the effect of __xray_patch(). See XRayPatchingStatus for possible
-// result values.
+/// Reverses the effect of __xray_patch(). See XRayPatchingStatus for possible
+/// result values.
 extern XRayPatchingStatus __xray_unpatch();
-}
 
-#endif
+/// This patches a specific function id. See XRayPatchingStatus for possible
+/// result values.
+extern XRayPatchingStatus __xray_patch_function(int32_t FuncId);
+
+/// This unpatches a specific function id. See XRayPatchingStatus for possible
+/// result values.
+extern XRayPatchingStatus __xray_unpatch_function(int32_t FuncId);
+
+/// This function returns the address of the function provided a valid function
+/// id. We return 0 if we encounter any error, even if 0 may be a valid function
+/// address.
+extern uintptr_t __xray_function_address(int32_t FuncId);
+
+/// This function returns the maximum valid function id. Returns 0 if we
+/// encounter errors (when there are no instrumented functions, etc.).
+extern size_t __xray_max_function_id();
+
+} // end extern "C"
+
+#endif // XRAY_XRAY_INTERFACE_H

Copied: stable/11/contrib/compiler-rt/include/xray/xray_log_interface.h (from r321369, head/contrib/compiler-rt/include/xray/xray_log_interface.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/11/contrib/compiler-rt/include/xray/xray_log_interface.h	Tue Sep 26 19:56:36 2017	(r324023, copy of r321369, head/contrib/compiler-rt/include/xray/xray_log_interface.h)
@@ -0,0 +1,231 @@
+//===-- xray_log_interface.h ----------------------------------------------===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file is a part of XRay, a function call tracing system.
+//
+// APIs for installing a new logging implementation.
+//
+//===----------------------------------------------------------------------===//
+///
+/// XRay allows users to implement their own logging handlers and install them
+/// to replace the default runtime-controllable implementation that comes with
+/// compiler-rt/xray. The "flight data recorder" (FDR) mode implementation uses
+/// this API to install itself in an XRay-enabled binary. See
+/// compiler-rt/lib/xray_fdr_logging.{h,cc} for details of that implementation.
+///
+/// The high-level usage pattern for these APIs look like the following:
+///
+///   // Before we try initializing the log implementation, we must set it as
+///   // the log implementation. We provide the function pointers that define
+///   // the various initialization, finalization, and other pluggable hooks
+///   // that we need.
+///   __xray_set_log_impl({...});
+///
+///   // Once that's done, we can now initialize the implementation. Each
+///   // implementation has a chance to let users customize the implementation
+///   // with a struct that their implementation supports. Roughly this might
+///   // look like:
+///   MyImplementationOptions opts;
+///   opts.enable_feature = true;
+///   ...
+///   auto init_status = __xray_log_init(
+///       BufferSize, MaxBuffers, &opts, sizeof opts);
+///   if (init_status != XRayLogInitStatus::XRAY_LOG_INITIALIZED) {
+///     // deal with the error here, if there is one.
+///   }
+///
+///   // When the log implementation has had the chance to initialize, we can
+///   // now patch the sleds.
+///   auto patch_status = __xray_patch();
+///   if (patch_status != XRayPatchingStatus::SUCCESS) {
+///     // deal with the error here, if it is an error.
+///   }
+///
+///   // If we want to stop the implementation, we can then finalize it (before
+///   // optionally flushing the log).
+///   auto fin_status = __xray_log_finalize();
+///   if (fin_status != XRayLogInitStatus::XRAY_LOG_FINALIZED) {
+///     // deal with the error here, if it is an error.
+///   }
+///
+///   // We can optionally wait before flushing the log to give other threads a
+///   // chance to see that the implementation is already finalized. Also, at
+///   // this point we can optionally unpatch the sleds to reduce overheads at
+///   // runtime.
+///   auto unpatch_status = __xray_unpatch();
+///   if (unpatch_status != XRayPatchingStatus::SUCCESS) {
+//      // deal with the error here, if it is an error.
+//    }
+///
+///   // If there are logs or data to be flushed somewhere, we can do so only
+///   // after we've finalized the log. Some implementations may not actually
+///   // have anything to log (it might keep the data in memory, or periodically
+///   // be logging the data anyway).
+///   auto flush_status = __xray_log_flushLog();
+///   if (flush_status != XRayLogFlushStatus::XRAY_LOG_FLUSHED) {
+///     // deal with the error here, if it is an error.
+///   }
+///
+///
+/// NOTE: Before calling __xray_patch() again, consider re-initializing the
+/// implementation first. Some implementations might stay in an "off" state when
+/// they are finalized, while some might be in an invalid/unknown state.
+///
+#ifndef XRAY_XRAY_LOG_INTERFACE_H
+#define XRAY_XRAY_LOG_INTERFACE_H
+
+#include "xray/xray_interface.h"
+#include <stddef.h>
+
+extern "C" {
+
+/// This enum defines the valid states in which the logging implementation can
+/// be at.
+enum XRayLogInitStatus {
+  /// The default state is uninitialized, and in case there were errors in the
+  /// initialization, the implementation MUST return XRAY_LOG_UNINITIALIZED.
+  XRAY_LOG_UNINITIALIZED = 0,
+
+  /// Some implementations support multi-stage init (or asynchronous init), and
+  /// may return XRAY_LOG_INITIALIZING to signal callers of the API that
+  /// there's an ongoing initialization routine running. This allows
+  /// implementations to support concurrent threads attempting to initialize,
+  /// while only signalling success in one.
+  XRAY_LOG_INITIALIZING = 1,
+
+  /// When an implementation is done initializing, it MUST return
+  /// XRAY_LOG_INITIALIZED. When users call `__xray_patch()`, they are
+  /// guaranteed that the implementation installed with
+  /// `__xray_set_log_impl(...)` has been initialized.
+  XRAY_LOG_INITIALIZED = 2,
+
+  /// Some implementations might support multi-stage finalization (or
+  /// asynchronous finalization), and may return XRAY_LOG_FINALIZING to signal
+  /// callers of the API that there's an ongoing finalization routine running.
+  /// This allows implementations to support concurrent threads attempting to
+  /// finalize, while only signalling success/completion in one.
+  XRAY_LOG_FINALIZING = 3,
+
+  /// When an implementation is done finalizing, it MUST return
+  /// XRAY_LOG_FINALIZED. It is up to the implementation to determine what the
+  /// semantics of a finalized implementation is. Some implementations might
+  /// allow re-initialization once the log is finalized, while some might always
+  /// be on (and that finalization is a no-op).
+  XRAY_LOG_FINALIZED = 4,
+};
+
+/// This enum allows an implementation to signal log flushing operations via
+/// `__xray_log_flushLog()`, and the state of flushing the log.
+enum XRayLogFlushStatus {
+  XRAY_LOG_NOT_FLUSHING = 0,
+  XRAY_LOG_FLUSHING = 1,
+  XRAY_LOG_FLUSHED = 2,
+};
+
+/// A valid XRay logging implementation MUST provide all of the function
+/// pointers in XRayLogImpl when being installed through `__xray_set_log_impl`.
+/// To be precise, ALL the functions pointers MUST NOT be nullptr.
+struct XRayLogImpl {
+  /// The log initialization routine provided by the implementation, always
+  /// provided with the following parameters:
+  ///
+  ///   - buffer size
+  ///   - maximum number of buffers
+  ///   - a pointer to an argument struct that the implementation MUST handle
+  ///   - the size of the argument struct
+  ///
+  /// See XRayLogInitStatus for details on what the implementation MUST return
+  /// when called.
+  ///
+  /// If the implementation needs to install handlers aside from the 0-argument
+  /// function call handler, it MUST do so in this initialization handler.
+  ///
+  /// See xray_interface.h for available handler installation routines.
+  XRayLogInitStatus (*log_init)(size_t, size_t, void *, size_t);
+
+  /// The log finalization routine provided by the implementation.
+  ///
+  /// See XRayLogInitStatus for details on what the implementation MUST return
+  /// when called.
+  XRayLogInitStatus (*log_finalize)();
+
+  /// The 0-argument function call handler. XRay logging implementations MUST
+  /// always have a handler for function entry and exit events. In case the
+  /// implementation wants to support arg1 (or other future extensions to XRay
+  /// logging) those MUST be installed by the installed 'log_init' handler.
+  void (*handle_arg0)(int32_t, XRayEntryType);
+
+  /// The log implementation provided routine for when __xray_log_flushLog() is
+  /// called.
+  ///
+  /// See XRayLogFlushStatus for details on what the implementation MUST return
+  /// when called.
+  XRayLogFlushStatus (*flush_log)();
+};
+
+/// This function installs a new logging implementation that XRay will use. In
+/// case there are any nullptr members in Impl, XRay will *uninstall any
+/// existing implementations*. It does NOT patch the instrumentation sleds.
+///
+/// NOTE: This function does NOT attempt to finalize the currently installed
+/// implementation. Use with caution.
+///
+/// It is guaranteed safe to call this function in the following states:
+///
+///   - When the implementation is UNINITIALIZED.
+///   - When the implementation is FINALIZED.
+///   - When there is no current implementation installed.
+///
+/// It is logging implementation defined what happens when this function is
+/// called while in any other states.
+void __xray_set_log_impl(XRayLogImpl Impl);
+
+/// This function removes the currently installed implementation. It will also
+/// uninstall any handlers that have been previously installed. It does NOT
+/// unpatch the instrumentation sleds.
+///
+/// NOTE: This function does NOT attempt to finalize the currently installed
+/// implementation. Use with caution.
+///
+/// It is guaranteed safe to call this function in the following states:
+///
+///   - When the implementation is UNINITIALIZED.
+///   - When the implementation is FINALIZED.
+///   - When there is no current implementation installed.
+///
+/// It is logging implementation defined what happens when this function is
+/// called while in any other states.
+void __xray_remove_log_impl();
+
+/// Invokes the installed implementation initialization routine. See
+/// XRayLogInitStatus for what the return values mean.
+XRayLogInitStatus __xray_log_init(size_t BufferSize, size_t MaxBuffers,
+                                  void *Args, size_t ArgsSize);
+
+/// Invokes the installed implementation finalization routine. See
+/// XRayLogInitStatus for what the return values mean.
+XRayLogInitStatus __xray_log_finalize();
+
+/// Invokes the install implementation log flushing routine. See
+/// XRayLogFlushStatus for what the return values mean.
+XRayLogFlushStatus __xray_log_flushLog();
+
+} // extern "C"
+
+namespace __xray {
+
+// Options used by the LLVM XRay FDR implementation.
+struct FDRLoggingOptions {
+  bool ReportErrors = false;
+  int Fd = -1;
+};
+
+} // namespace __xray
+
+#endif // XRAY_XRAY_LOG_INTERFACE_H

Modified: stable/11/contrib/compiler-rt/include/xray/xray_records.h
==============================================================================
--- stable/11/contrib/compiler-rt/include/xray/xray_records.h	Tue Sep 26 19:21:43 2017	(r324022)
+++ stable/11/contrib/compiler-rt/include/xray/xray_records.h	Tue Sep 26 19:56:36 2017	(r324023)
@@ -21,8 +21,17 @@ namespace __xray {
 
 enum FileTypes {
   NAIVE_LOG = 0,
+  FDR_LOG = 1,
 };
 
+// FDR mode use of the union field in the XRayFileHeader.
+struct alignas(16) FdrAdditionalHeaderData {
+  uint64_t ThreadBufferSize;
+};
+
+static_assert(sizeof(FdrAdditionalHeaderData) == 16,
+              "FdrAdditionalHeaderData != 16 bytes");
+
 // This data structure is used to describe the contents of the file. We use this
 // for versioning the supported XRay file formats.
 struct alignas(32) XRayFileHeader {
@@ -40,6 +49,16 @@ struct alignas(32) XRayFileHeader {
 
   // The frequency by which TSC increases per-second.
   alignas(8) uint64_t CycleFrequency = 0;
+
+  union {
+    char FreeForm[16];
+    // The current civiltime timestamp, as retrived from 'clock_gettime'. This
+    // allows readers of the file to determine when the file was created or
+    // written down.
+    struct timespec TS;
+
+    struct FdrAdditionalHeaderData FdrData;
+  };
 } __attribute__((packed));
 
 static_assert(sizeof(XRayFileHeader) == 32, "XRayFileHeader != 32 bytes");

Modified: stable/11/contrib/compiler-rt/lib/asan/asan.syms.extra
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan.syms.extra	Tue Sep 26 19:21:43 2017	(r324022)
+++ stable/11/contrib/compiler-rt/lib/asan/asan.syms.extra	Tue Sep 26 19:56:36 2017	(r324023)
@@ -1,3 +1,4 @@
 __asan_*
 __lsan_*
 __ubsan_*
+__sancov_*

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_activation.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_activation.cc	Tue Sep 26 19:21:43 2017	(r324022)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_activation.cc	Tue Sep 26 19:56:36 2017	(r324023)
@@ -106,7 +106,6 @@ void AsanDeactivate() {
   // Deactivate the runtime.
   SetCanPoisonMemory(false);
   SetMallocContextSize(1);
-  ReInitializeCoverage(false, nullptr);
 
   AllocatorOptions disabled = asan_deactivated_flags.allocator_options;
   disabled.quarantine_size_mb = 0;
@@ -130,8 +129,6 @@ void AsanActivate() {
 
   SetCanPoisonMemory(asan_deactivated_flags.poison_heap);
   SetMallocContextSize(asan_deactivated_flags.malloc_context_size);
-  ReInitializeCoverage(asan_deactivated_flags.coverage,
-                       asan_deactivated_flags.coverage_dir);
   ReInitializeAllocator(asan_deactivated_flags.allocator_options);
 
   asan_is_deactivated = false;

Modified: stable/11/contrib/compiler-rt/lib/asan/asan_allocator.cc
==============================================================================
--- stable/11/contrib/compiler-rt/lib/asan/asan_allocator.cc	Tue Sep 26 19:21:43 2017	(r324022)
+++ stable/11/contrib/compiler-rt/lib/asan/asan_allocator.cc	Tue Sep 26 19:56:36 2017	(r324023)
@@ -21,7 +21,9 @@
 #include "asan_report.h"
 #include "asan_stack.h"
 #include "asan_thread.h"
+#include "sanitizer_common/sanitizer_allocator_checks.h"
 #include "sanitizer_common/sanitizer_allocator_interface.h"
+#include "sanitizer_common/sanitizer_errno.h"
 #include "sanitizer_common/sanitizer_flags.h"
 #include "sanitizer_common/sanitizer_internal_defs.h"
 #include "sanitizer_common/sanitizer_list.h"
@@ -160,7 +162,11 @@ struct QuarantineCallback {
   }
 
   void *Allocate(uptr size) {
-    return get_allocator().Allocate(cache_, size, 1, false);
+    void *res = get_allocator().Allocate(cache_, size, 1);
+    // TODO(alekseys): Consider making quarantine OOM-friendly.
+    if (UNLIKELY(!res))
+      return DieOnFailure::OnOOM();
+    return res;
   }
 
   void Deallocate(void *p) {
@@ -235,6 +241,8 @@ struct Allocator {
   AllocatorCache fallback_allocator_cache;
   QuarantineCache fallback_quarantine_cache;
 
+  atomic_uint8_t rss_limit_exceeded;
+
   // ------------------- Options --------------------------
   atomic_uint16_t min_redzone;
   atomic_uint16_t max_redzone;
@@ -264,10 +272,19 @@ struct Allocator {
   }
 
   void Initialize(const AllocatorOptions &options) {
-    allocator.Init(options.may_return_null, options.release_to_os_interval_ms);
+    SetAllocatorMayReturnNull(options.may_return_null);
+    allocator.Init(options.release_to_os_interval_ms);
     SharedInitCode(options);
   }
 
+  bool RssLimitExceeded() {
+    return atomic_load(&rss_limit_exceeded, memory_order_relaxed);
+  }
+
+  void SetRssLimitExceeded(bool limit_exceeded) {
+    atomic_store(&rss_limit_exceeded, limit_exceeded, memory_order_relaxed);
+  }
+
   void RePoisonChunk(uptr chunk) {
     // This could be a user-facing chunk (with redzones), or some internal
     // housekeeping chunk, like TransferBatch. Start by assuming the former.
@@ -292,7 +309,7 @@ struct Allocator {
   }
 
   void ReInitialize(const AllocatorOptions &options) {
-    allocator.SetMayReturnNull(options.may_return_null);
+    SetAllocatorMayReturnNull(options.may_return_null);
     allocator.SetReleaseToOSIntervalMs(options.release_to_os_interval_ms);
     SharedInitCode(options);
 
@@ -313,7 +330,7 @@ struct Allocator {
     options->thread_local_quarantine_size_kb = quarantine.GetCacheSize() >> 10;
     options->min_redzone = atomic_load(&min_redzone, memory_order_acquire);
     options->max_redzone = atomic_load(&max_redzone, memory_order_acquire);
-    options->may_return_null = allocator.MayReturnNull();
+    options->may_return_null = AllocatorMayReturnNull();
     options->alloc_dealloc_mismatch =
         atomic_load(&alloc_dealloc_mismatch, memory_order_acquire);
     options->release_to_os_interval_ms = allocator.ReleaseToOSIntervalMs();
@@ -363,6 +380,8 @@ struct Allocator {
                  AllocType alloc_type, bool can_fill) {
     if (UNLIKELY(!asan_inited))
       AsanInitFromRtl();
+    if (RssLimitExceeded())
+      return AsanAllocator::FailureHandler::OnOOM();
     Flags &fl = *flags();
     CHECK(stack);
     const uptr min_alignment = SHADOW_GRANULARITY;
@@ -395,25 +414,22 @@ struct Allocator {
     if (size > kMaxAllowedMallocSize || needed_size > kMaxAllowedMallocSize) {
       Report("WARNING: AddressSanitizer failed to allocate 0x%zx bytes\n",
              (void*)size);
-      return allocator.ReturnNullOrDieOnBadRequest();
+      return AsanAllocator::FailureHandler::OnBadRequest();
     }
 
     AsanThread *t = GetCurrentThread();
     void *allocated;
-    bool check_rss_limit = true;
     if (t) {
       AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage());
-      allocated =
-          allocator.Allocate(cache, needed_size, 8, false, check_rss_limit);
+      allocated = allocator.Allocate(cache, needed_size, 8);
     } else {
       SpinMutexLock l(&fallback_mutex);
       AllocatorCache *cache = &fallback_allocator_cache;
-      allocated =
-          allocator.Allocate(cache, needed_size, 8, false, check_rss_limit);
+      allocated = allocator.Allocate(cache, needed_size, 8);
     }
+    if (!allocated)
+      return nullptr;
 
-    if (!allocated) return allocator.ReturnNullOrDieOnOOM();
-
     if (*(u8 *)MEM_TO_SHADOW((uptr)allocated) == 0 && CanPoisonMemory()) {
       // Heap poisoning is enabled, but the allocator provides an unpoisoned
       // chunk. This is possible if CanPoisonMemory() was false for some
@@ -514,8 +530,7 @@ struct Allocator {
 
   // Expects the chunk to already be marked as quarantined by using
   // AtomicallySetQuarantineFlagIfAllocated.
-  void QuarantineChunk(AsanChunk *m, void *ptr, BufferedStackTrace *stack,
-                       AllocType alloc_type) {
+  void QuarantineChunk(AsanChunk *m, void *ptr, BufferedStackTrace *stack) {
     CHECK_EQ(m->chunk_state, CHUNK_QUARANTINE);
     CHECK_GE(m->alloc_tid, 0);
     if (SANITIZER_WORDSIZE == 64)  // On 32-bits this resides in user area.
@@ -523,6 +538,18 @@ struct Allocator {
     AsanThread *t = GetCurrentThread();
     m->free_tid = t ? t->tid() : 0;
     m->free_context_id = StackDepotPut(*stack);
+
+    Flags &fl = *flags();
+    if (fl.max_free_fill_size > 0) {
+      // We have to skip the chunk header, it contains free_context_id.
+      uptr scribble_start = (uptr)m + kChunkHeaderSize + kChunkHeader2Size;
+      if (m->UsedSize() >= kChunkHeader2Size) {  // Skip Header2 in user area.
+        uptr size_to_fill = m->UsedSize() - kChunkHeader2Size;
+        size_to_fill = Min(size_to_fill, (uptr)fl.max_free_fill_size);
+        REAL(memset)((void *)scribble_start, fl.free_fill_byte, size_to_fill);
+      }
+    }
+
     // Poison the region.
     PoisonShadow(m->Beg(),
                  RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
@@ -554,7 +581,17 @@ struct Allocator {
     uptr chunk_beg = p - kChunkHeaderSize;
     AsanChunk *m = reinterpret_cast<AsanChunk *>(chunk_beg);
 
+    // On Windows, uninstrumented DLLs may allocate memory before ASan hooks
+    // malloc. Don't report an invalid free in this case.
+    if (SANITIZER_WINDOWS &&
+        !get_allocator().PointerIsMine(ptr)) {
+      if (!IsSystemHeapAddress(p))
+        ReportFreeNotMalloced(p, stack);
+      return;
+    }
+
     ASAN_FREE_HOOK(ptr);
+
     // Must mark the chunk as quarantined before any changes to its metadata.
     // Do not quarantine given chunk if we failed to set CHUNK_QUARANTINE flag.
     if (!AtomicallySetQuarantineFlagIfAllocated(m, ptr, stack)) return;
@@ -571,7 +608,7 @@ struct Allocator {
       ReportNewDeleteSizeMismatch(p, delete_size, stack);
     }
 
-    QuarantineChunk(m, ptr, stack, alloc_type);
+    QuarantineChunk(m, ptr, stack);
   }
 
   void *Reallocate(void *old_ptr, uptr new_size, BufferedStackTrace *stack) {
@@ -600,8 +637,8 @@ struct Allocator {
   }
 
   void *Calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) {
-    if (CallocShouldReturnNullDueToOverflow(size, nmemb))
-      return allocator.ReturnNullOrDieOnBadRequest();
+    if (CheckForCallocOverflow(size, nmemb))
+      return AsanAllocator::FailureHandler::OnBadRequest();
     void *ptr = Allocate(nmemb * size, 8, stack, FROM_MALLOC, false);
     // If the memory comes from the secondary allocator no need to clear it
     // as it comes directly from mmap.
@@ -764,11 +801,6 @@ void PrintInternalAllocatorStats() {
   instance.PrintStats();
 }
 
-void *asan_memalign(uptr alignment, uptr size, BufferedStackTrace *stack,
-                    AllocType alloc_type) {
-  return instance.Allocate(size, alignment, stack, alloc_type, true);
-}
-
 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type) {
   instance.Deallocate(ptr, 0, stack, alloc_type);
 }
@@ -779,40 +811,59 @@ void asan_sized_free(void *ptr, uptr size, BufferedSta
 }
 
 void *asan_malloc(uptr size, BufferedStackTrace *stack) {
-  return instance.Allocate(size, 8, stack, FROM_MALLOC, true);
+  return SetErrnoOnNull(instance.Allocate(size, 8, stack, FROM_MALLOC, true));
 }
 
 void *asan_calloc(uptr nmemb, uptr size, BufferedStackTrace *stack) {
-  return instance.Calloc(nmemb, size, stack);
+  return SetErrnoOnNull(instance.Calloc(nmemb, size, stack));
 }
 
 void *asan_realloc(void *p, uptr size, BufferedStackTrace *stack) {
   if (!p)
-    return instance.Allocate(size, 8, stack, FROM_MALLOC, true);
+    return SetErrnoOnNull(instance.Allocate(size, 8, stack, FROM_MALLOC, true));
   if (size == 0) {
-    instance.Deallocate(p, 0, stack, FROM_MALLOC);
-    return nullptr;
+    if (flags()->allocator_frees_and_returns_null_on_realloc_zero) {
+      instance.Deallocate(p, 0, stack, FROM_MALLOC);
+      return nullptr;
+    }
+    // Allocate a size of 1 if we shouldn't free() on Realloc to 0
+    size = 1;
   }
-  return instance.Reallocate(p, size, stack);

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



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