Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 May 2020 20:20:29 +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-12@freebsd.org
Subject:   svn commit: r360545 - in stable/12: . contrib/llvm-project contrib/llvm-project/clang/include/clang contrib/llvm-project/clang/include/clang-c contrib/llvm-project/clang/include/clang/AST contrib/l...
Message-ID:  <202005012020.041KKTaB053181@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Fri May  1 20:20:23 2020
New Revision: 360545
URL: https://svnweb.freebsd.org/changeset/base/360545

Log:
  Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
  10.0.0 release.
  
  MFC r356479 (by bdragon):
  
  [PowerPC] Fix libllvmminimal build when building from powerpc64 ELFv1.
  
  When bootstrapping on powerpc64 ELFv1, it is necessary to use binutils
  ld.bfd from ports for the bootstrap, as this is the only modern linker for
  ELFv1 host tools.
  
  As binutils ld.bfd is rather strict in its handling of undefined symbols,
  it is necessary to pull in Support/Atomic.cpp to avoid an undefined symbol.
  
  Reviewed by:	dim, emaste
  Sponsored by:	Tag1 Consulting, Inc.
  Differential Revision:	https://reviews.freebsd.org/D23072
  
  MFC r356930:
  
  Add more Subversion mergeinfo bootstrap information, to hopefully
  increase the probability of merging in vendor changes.
  
  MFC r358408 (by brooks):
  
  Merge commit 7214f7a79 from llvm git (by Sam Elliott):
  
    [RISCV] Lower llvm.trap and llvm.debugtrap
  
    Summary:
    Until this commit, these have lowered to a call to abort().
  
    `llvm.trap()` now lowers to `unimp`, which should trap on all systems.
  
    `llvm.debugtrap()` now lowers to `ebreak`, which is exactly what this
    instruction is for.
  
    Reviewers: asb, luismarques
  
    Reviewed By: asb
  
    Tags: #llvm
  
    Differential Revision: https://reviews.llvm.org/D69390
  
  This fixes miscompilation resulting in linking failures with
  INVARIANTS disabled.
  
  Reviewed by:	dim
  Differential Revision:	https://reviews.freebsd.org/D23857
  
  MFC r358851:
  
  Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
  10.0.0-rc3 c290cb61fdc.
  
  Release notes for llvm, clang, lld and libc++ 10.0.0 will become
  available here:
  
  https://releases.llvm.org/10.0.0/docs/ReleaseNotes.html
  https://releases.llvm.org/10.0.0/tools/clang/docs/ReleaseNotes.html
  https://releases.llvm.org/10.0.0/tools/lld/docs/ReleaseNotes.html
  https://releases.llvm.org/10.0.0/projects/libcxx/docs/ReleaseNotes.html
  
  PR:		244251
  
  MFC r358854:
  
  Add one additional file to libllvmminimal, to help the ppc64 bootstrap.
  
  Reported by:	bdragon
  PR:		244251
  
  MFC r358857:
  
  Move another file in libllvm from sources required for world, to sources
  required for bootstrap, as the PowerPC builds need this.
  
  Reported by:	bdragon
  PR:		244251
  
  MFC r358907:
  
  Allow -DNO_CLEAN build across r358851.
  
  The openmp 10.0.0 import renamed one .c file to .cpp, and this is
  something our dependency system does not handle correctly.  Add another
  ad-hoc cleanup to get rid of the stale dependency.
  
  PR:		244251
  
  MFC r358909 (by emaste):
  
  Extend r358907 to explicitly remove stale lib32 dependency
  
  After r325072 stale lib32 dependencies were not remooved.  A more
  holistic approach is needed to address this but for the immediate issue
  (-DNO_CLEAN builds across r358851) just readd the explicit lib32 path.
  
  Reported by:	dim
  Sponsored by:	The FreeBSD Foundation
  
  MFC r358910 (by emaste):
  
  Makefile.inc1: move dependency hack comment to the block it applies to
  
  MFC r359035 (by emaste):
  
  Makefile.inc1: add a note when deleting stale dependencies
  
  We have ad-hoc stale dependency handling in Makefile.inc1 to handle the
  cases where file extensions change, but it appears that some cases are
  not functional.  Add a note when about to clean stale deps to help
  when investigating failure reports.
  
  Sponsored by:	The FreeBSD Foundation
  
  MFC r359082:
  
  Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
  llvmorg-10.0.0-rc4-5-g52c365aa9ca.  The actual release should follow Real
  Soon Now.
  
  PR:             244251
  MFC after:      6 weeks
  
  MFC r359083 (by emaste):
  
  invoke _cleanobj_fast_depend_hack unconditionally
  
  Apparently make ${CLEANDIR} is leaving stale entries in .depend files;
  for now invoke the hacky cleanup in both the -DNO_CLEAN and normal
  (no -DNO_CLEAN) cases.
  
  In collaboration with:	dim
  Sponsored by:	The FreeBSD Foundation
  
  MFC r359084:
  
  Merge commit 00925aadb from llvm git (by Fangrui Song):
  
    [ELF][PPC32] Fix canonical PLTs when the order does not match the PLT order
  
    Reviewed By: Bdragon28
  
    Differential Revision: https://reviews.llvm.org/D75394
  
  This is needed to fix miscompiled canonical PLTs on ppc32/lld10.
  
  Requested by:	bdragon
  Differential Revision: https://reviews.freebsd.org/D24109
  
  MFC r359085:
  
  Merge commit 315f8a55f from llvm git (by Fangrui Song):
  
    [ELF][PPC32] Don't report "relocation refers to a discarded section"
    for .got2
  
    Similar to D63182 [ELF][PPC64] Don't report "relocation refers to a
    discarded section" for .toc
  
    Reviewed By: Bdragon28
  
    Differential Revision: https://reviews.llvm.org/D75419
  
  This is needed to fix compile errors when building for ppc32/lld10.
  
  Requested by:	bdragon
  Differential Revision: https://reviews.freebsd.org/D24110
  
  MFC r359086:
  
  Merge commit b8ebc11f0 from llvm git (by Sanjay Patel):
  
    [EarlyCSE] avoid crashing when detecting min/max/abs patterns (PR41083)
  
    As discussed in PR41083:
    https://bugs.llvm.org/show_bug.cgi?id=41083
    ...we can assert/crash in EarlyCSE using the current hashing scheme
    and instructions with flags.
  
    ValueTracking's matchSelectPattern() may rely on overflow (nsw, etc)
    or other flags when detecting patterns such as min/max/abs composed
    of compare+select. But the value numbering / hashing mechanism used
    by EarlyCSE intersects those flags to allow more CSE.
  
    Several alternatives to solve this are discussed in the bug report.
    This patch avoids the issue by doing simple matching of min/max/abs
    patterns that never requires instruction flags. We give up some CSE
    power because of that, but that is not expected to result in much
    actual performance difference because InstCombine will canonicalize
    these patterns when possible. It even has this comment for abs/nabs:
  
      /// Canonicalize all these variants to 1 pattern.
      /// This makes CSE more likely.
  
    (And this patch adds PhaseOrdering tests to verify that the expected
    transforms are still happening in the standard optimization
    pipelines.
  
    I left this code to use ValueTracking's "flavor" enum values, so we
    don't have to change the callers' code. If we decide to go back to
    using the ValueTracking call (by changing the hashing algorithm
    instead), it should be obvious how to replace this chunk.
  
    Differential Revision: https://reviews.llvm.org/D74285
  
  This fixes an assertion when building the math/gsl port on PowerPC64.
  
  Requested by:	pkubja
  
  MFC r359087:
  
  Merge commit 585a3cc31 from llvm git (by me):
  
    Fix -Wdeprecated-copy-dtor and -Wdeprecated-dynamic-exception-spec
    warnings.
  
    Summary:
    The former are like:
  
    libcxx/include/typeinfo:322:11: warning: definition of implicit copy
    constructor for 'bad_cast' is deprecated because it has a
    user-declared destructor [-Wdeprecated-copy-dtor]
      virtual ~bad_cast() _NOEXCEPT;
  	    ^
    libcxx/include/typeinfo:344:11: note: in implicit copy constructor
    for 'std::bad_cast' first required here
        throw bad_cast();
  	    ^
  
    Fix these by adding an explicitly defaulted copy constructor.
  
    The latter are like:
  
    libcxx/include/codecvt:105:37: warning: dynamic exception
    specifications are deprecated [-Wdeprecated-dynamic-exception-spec]
        virtual int do_encoding() const throw();
  				      ^~~~~~~
  
    Fix these by using the _NOEXCEPT macro instead.
  
    Reviewers: EricWF, mclow.lists, ldionne, #libc
  
    Reviewed By: EricWF, #libc
  
    Subscribers: dexonsmith, libcxx-commits
  
    Tags: #libc
  
    Differential Revision: https://reviews.llvm.org/D76150
  
  This is because we use -Wsystem-headers during buildworld, and the two
  warnings above are now triggered by default with clang 10, preventing
  most C++ code from compiling without NO_WERROR.
  
  Requested by:	brooks
  Differential Revision: https://reviews.freebsd.org/D24049
  
  MFC r359089 (by emaste):
  
  Revert r359083, fixed properly by r359088
  
  r359083 introduced a workaround for stale libomp dependencies during a
  regular (no -DNO_CLEAN) buildworld.  r359088 addressed the reason the
  clean step missed libomp, so revert the workaround.
  
  Sponsored by:	The FreeBSD Foundation
  
  MFC r359333:
  
  Merge commit f0990e104 from llvm git (by Justin Hibbits):
  
    [PowerPC]: e500 target can't use lwsync, use msync instead
  
    The e500 core has a silicon bug that triggers an illegal instruction
    program trap on any sync other than msync. Other cores will typically
    ignore illegal sync types, and the documentation even implies that
    the 'illegal' bits are ignored.
  
    Address this hardware deficiency by only using msync, like the PPC440.
  
    Differential Revision:  https://reviews.llvm.org/D76614
  
  Requested by:	jhibbits
  
  MFC r359334:
  
  Merge commit 459e8e948 from llvm git (by Justin Hibbits):
  
    [PowerPC]: Don't allow r0 as a target for LD_GOT_TPREL_L/32
  
    Summary:
    The linker is free to relax this (relocation R_PPC_GOT_TPREL16)
    against R_PPC_TLS, if it sees fit (initial exec to local exec). If r0
    is used, this can generate execution-invalid code (converts to 'addi
    %rX, %r0, FOO, which translates in PPC-lingo to li %rX, FOO). Forbid
    this instead.
  
    This fixes static binaries using locales on FreeBSD/powerpc (tested
    on FreeBSD/powerpcspe).
  
    Reviewed By: nemanjai
    Differential Revision: https://reviews.llvm.org/D76662
  
  Requested by:	jhibbits
  
  MFC r359338:
  
  Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
  llvmorg-10.0.0-0-gd32170dbd5b (aka 10.0.0 release).
  
  PR:		244251
  
  MFC r359506 (by emaste):
  
  lldb: stop excluding bindings/ subdir
  
  With liblua in the tree we should be able to enable lldb's lua
  scripting.  We'll need the files in bindings/, so start by allowing them
  to come in with the next import.
  
  Approved by:	dim
  Sponsored by:	The FreeBSD Foundation
  
  MFC r359578:
  
  Merge once more from ^/vendor/llvm-project/release-10.x, to get the
  lldb/bindings directory, which will be used to provide lua bindings for
  lldb.
  
  Requested by:	emaste
  
  MFC r359826:
  
  Merge commit 30588a739 from llvm git (by Erich Keane):
  
    Make target features check work with ctor and dtor-
  
    The problem was reported in PR45468, applying target features to an
    always_inline constructor/destructor runs afoul of GlobalDecl
    construction assert when checking for target-feature compatibility.
  
    The core problem is fixed by using the version of the check that
    takes a FunctionDecl rather than the GlobalDecl. However, while
    writing the test, I discovered that source locations weren't properly
    set for this check on ctors/dtors. This patch also fixes constructors
    and CALLED destructors.
  
    Unfortunately, it doesn't seem too possible to get a meaningful
    source location for a 'cleanup' destructor, so those are still
    'frontend' level errors unfortunately. A fixme was added to the test
    to cover that situation.
  
  This should fix 'Assertion failed: (!isa<CXXConstructorDecl>(D) && "Use
  other ctor with ctor decls!"), function Init, file
  /usr/src/contrib/llvm-project/clang/include/clang/AST/GlobalDecl.h, line
  45' when compiling the security/botan2 port.
  
  PR:		245550
  
  MFC r359981:
  
  Revert commit a9ad65a2b from llvm git (by Nemanja Ivanovic):
  
    [PowerPC] Change default for unaligned FP access for older subtargets
  
    This is a fix for https://bugs.llvm.org/show_bug.cgi?id=40554
  
    Some CPU's trap to the kernel on unaligned floating point access and
    there are kernels that do not handle the interrupt. The program then
    fails with a SIGBUS according to the PR. This just switches the
    default for unaligned access to only allow it on recent server CPUs
    that are known to allow this.
  
    Differential revision: https://reviews.llvm.org/D71954
  
  This upstream commit causes a compiler hang when building certain ports
  (e.g. security/nss, multimedia/x264) for powerpc64.  The hang has been
  reported in https://bugs.llvm.org/show_bug.cgi?id=45186, but in the mean
  time it is more convenient to revert the commit.
  
  Requested by:	jhibbits
  
  MFC r359994:
  
  Revert commit b6cf400aa fro llvm git (by Nemanja Ivanovic):
  
    Fix bots after a9ad65a2b34f
  
    In the last commit, I neglected to initialize the new subtarget
    feature I added which caused failures on a few bots. This should fix
    that.
  
  This unbreaks the build after r359981, which reverted upstream commit
  a9ad65a2b34f.
  
  Reported by:	jhibbits (and jenkins :)
  
  MFC r360129:
  
  Merge commit ce5173c0e from llvm git (by Reid Kleckner):
  
    Use FinishThunk to finish musttail thunks
  
    FinishThunk, and the invariant of setting and then unsetting
    CurCodeDecl, was added in 7f416cc42638 (2015). The invariant didn't
    exist when I added this musttail codepath in ab2090d10765 (2014).
    Recently in 28328c3771, I started using this codepath on non-Windows
    platforms, and users reported problems during release testing
    (PR44987).
  
    The issue was already present for users of EH on i686-windows-msvc,
    so I added a test for that case as well.
  
    Reviewed By: hans
  
    Differential Revision: https://reviews.llvm.org/D76444
  
  This should fix 'Assertion failed: (!empty() && "popping exception stack
  when not empty"), function popTerminate, file
  /usr/src/contrib/llvm-project/clang/lib/CodeGen/CGCleanup.h, line 583'
  when building the net-p2p/libtorrent-rasterbar
  
  PR:		244830
  Reported by:	jbeich, yuri
  
  MFC r360134:
  
  Merge commit 64b31d96d from llvm git (by Nemanja Ivanovic):
  
    [PowerPC] Do not attempt to reuse load for 64-bit FP_TO_UINT without
    FPCVT
  
    We call the function that attempts to reuse the conversion without
    checking whether the target matches the constraints that the callee
    expects. This patch adds the check prior to the call.
  
    Fixes: https://bugs.llvm.org/show_bug.cgi?id=43976
  
    Differential revision: https://reviews.llvm.org/D77564
  
  This should fix 'Assertion failed: ((Op.getOpcode() == ISD::FP_TO_SINT
  || Subtarget.hasFPCVT()) && "i64 FP_TO_UINT is supported only with
  FPCVT"), function LowerFP_TO_INTForReuse, file
  /usr/src/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp, line 7276'
  when building the devel/libslang2 port (and a few others) for PowerPC64.
  
  Requested by:	pkubaj
  
  MFC r360350:
  
  Tentatively apply https://reviews.llvm.org/D78877 (by Dave Green):
  
    [ARM] Only produce qadd8b under hasV6Ops
  
    When compiling for a arm5te cpu from clang, the +dsp attribute is
    set. This meant we could try and generate qadd8 instructions where we
    would end up having no pattern. I've changed the condition here to be
    hasV6Ops && hasDSP, which is what other parts of ARMISelLowering seem
    to use for similar instructions.
  
    Fixed PR45677.
  
  This fixes "fatal error: error in backend: Cannot select: t37: i32 =
  ARMISD::QADD8b t43, t44" when compiling sys/dev/sound/pcm/feeder_mixer.c
  for armv5. For some reason we do not encounter this on head, but this
  error popped up while building universes for stable/12.

Added:
  stable/12/contrib/llvm-project/clang/include/clang-c/ExternC.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang-c/ExternC.h
  stable/12/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/AbstractBasicReader.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/AbstractBasicReader.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/AbstractBasicWriter.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/AbstractBasicWriter.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/AbstractTypeReader.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/AbstractTypeReader.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/AbstractTypeWriter.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/AbstractTypeWriter.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/CXXRecordDeclDefinitionBits.def
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/CXXRecordDeclDefinitionBits.def
  stable/12/contrib/llvm-project/clang/include/clang/AST/ExprConcepts.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/ExprConcepts.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/PropertiesBase.td
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/PropertiesBase.td
  stable/12/contrib/llvm-project/clang/include/clang/AST/TypeProperties.td
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/AST/TypeProperties.td
  stable/12/contrib/llvm-project/clang/include/clang/Analysis/PathDiagnostic.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Analysis/PathDiagnostic.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/AArch64SVEACLETypes.def
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Basic/AArch64SVEACLETypes.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/ASTNode.td
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Basic/ASTNode.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/AttributeCommonInfo.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Basic/AttributeCommonInfo.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/BuiltinsBPF.def
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Basic/BuiltinsBPF.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/LangStandard.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Basic/LangStandard.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/LangStandards.def
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Basic/LangStandards.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/TypeNodes.td
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Basic/TypeNodes.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/arm_mve.td
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Basic/arm_mve.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/arm_mve_defs.td
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Basic/arm_mve_defs.td
  stable/12/contrib/llvm-project/clang/include/clang/Driver/OptionUtils.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Driver/OptionUtils.h
  stable/12/contrib/llvm-project/clang/include/clang/Index/IndexingOptions.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Index/IndexingOptions.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/PreprocessorExcludedConditionalDirectiveSkipMapping.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Lex/PreprocessorExcludedConditionalDirectiveSkipMapping.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/SemaConcept.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Sema/SemaConcept.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordReader.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordReader.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordWriter.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordWriter.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/ModuleFile.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Serialization/ModuleFile.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/TypeBitCodes.def
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Serialization/TypeBitCodes.def
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicCastInfo.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicCastInfo.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningFilesystem.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningFilesystem.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningService.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningService.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningTool.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningTool.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Extract/SourceExtraction.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Extract/SourceExtraction.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Mutations.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Mutations.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
     - copied from r358851, head/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
  stable/12/contrib/llvm-project/clang/lib/AST/ASTConcept.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/AST/ASTConcept.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ExprConcepts.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/AST/ExprConcepts.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/Interp/
     - copied from r358851, head/contrib/llvm-project/clang/lib/AST/Interp/
  stable/12/contrib/llvm-project/clang/lib/Analysis/PathDiagnostic.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Analysis/PathDiagnostic.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/LangStandards.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Basic/LangStandards.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Stack.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Basic/Stack.cpp
  stable/12/contrib/llvm-project/clang/lib/DirectoryWatcher/windows/
     - copied from r358851, head/contrib/llvm-project/clang/lib/DirectoryWatcher/windows/
  stable/12/contrib/llvm-project/clang/lib/Driver/OptionUtils.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Driver/OptionUtils.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.h
  stable/12/contrib/llvm-project/clang/lib/Headers/arm_cmse.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Headers/arm_cmse.h
  stable/12/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/pmmintrin.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/pmmintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/smmintrin.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/smmintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/tmmintrin.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/tmmintrin.h
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaConcept.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Sema/SemaConcept.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/ModuleFile.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Serialization/ModuleFile.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckPlacementNew.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckPlacementNew.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugIteratorModeling.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugIteratorModeling.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FuchsiaHandleChecker.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FuchsiaHandleChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InvalidatedIteratorChecker.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InvalidatedIteratorChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.h
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorModeling.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorModeling.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorRangeChecker.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorRangeChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MismatchedIteratorChecker.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MismatchedIteratorChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Yaml.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Yaml.h
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicType.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicType.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningFilesystem.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningFilesystem.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningService.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningService.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningTool.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningTool.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/ExpandResponseFilesCompilationDatabase.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Tooling/ExpandResponseFilesCompilationDatabase.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Syntax/ComputeReplacements.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Tooling/Syntax/ComputeReplacements.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Syntax/Mutations.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Tooling/Syntax/Mutations.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Syntax/Synthesis.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/lib/Tooling/Syntax/Synthesis.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Transformer/
     - copied from r358851, head/contrib/llvm-project/clang/lib/Tooling/Transformer/
  stable/12/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.h
     - copied unchanged from r358851, head/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.h
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangASTPropertiesEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/utils/TableGen/ClangASTPropertiesEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangOpcodesEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/utils/TableGen/ClangOpcodesEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangTypeNodesEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/utils/TableGen/ClangTypeNodesEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/MveEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/clang/utils/TableGen/MveEmitter.cpp
  stable/12/contrib/llvm-project/compiler-rt/include/fuzzer/
     - copied from r358851, head/contrib/llvm-project/compiler-rt/include/fuzzer/
  stable/12/contrib/llvm-project/compiler-rt/include/profile/
     - copied from r358851, head/contrib/llvm-project/compiler-rt/include/profile/
  stable/12/contrib/llvm-project/compiler-rt/include/sanitizer/ubsan_interface.h
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/include/sanitizer/ubsan_interface.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/fp_mode.c
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/fp_mode.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/arm/fp_mode.c
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/builtins/arm/fp_mode.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.c
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.h
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.h
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/i386/fp_mode.c
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/builtins/i386/fp_mode.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixtfti.c
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixtfti.c
  stable/12/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.h
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.h
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_exceptions.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_exceptions.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_setjmp.S
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_setjmp.S
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_type_test.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_type_test.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/msan/msan.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_netbsd_compat.inc
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_netbsd_compat.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_glibc_version.h
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_glibc_version.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/stats/stats.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/stats/stats.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_libdispatch.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_libdispatch.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mach_vm.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mach_vm.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cpp
  stable/12/contrib/llvm-project/libcxx/include/execution
     - copied unchanged from r358851, head/contrib/llvm-project/libcxx/include/execution
  stable/12/contrib/llvm-project/lld/Common/DWARF.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lld/Common/DWARF.cpp
  stable/12/contrib/llvm-project/lld/ELF/ARMErrataFix.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lld/ELF/ARMErrataFix.cpp
  stable/12/contrib/llvm-project/lld/ELF/ARMErrataFix.h
     - copied unchanged from r358851, head/contrib/llvm-project/lld/ELF/ARMErrataFix.h
  stable/12/contrib/llvm-project/lld/include/lld/Common/DWARF.h
     - copied unchanged from r358851, head/contrib/llvm-project/lld/include/lld/Common/DWARF.h
  stable/12/contrib/llvm-project/lldb/bindings/
     - copied from r359578, head/contrib/llvm-project/lldb/bindings/
  stable/12/contrib/llvm-project/lldb/docs/man/
     - copied from r358851, head/contrib/llvm-project/lldb/docs/man/
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBFile.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/include/lldb/API/SBFile.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/IOHandlerCursesGUI.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/include/lldb/Core/IOHandlerCursesGUI.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/PropertiesBase.td
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/include/lldb/Core/PropertiesBase.td
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/LZMA.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/include/lldb/Host/LZMA.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionGroupPythonClassWithDict.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionGroupPythonClassWithDict.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/CallFrameInfo.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/include/lldb/Symbol/CallFrameInfo.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTMetadata.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTMetadata.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/GDBRemote.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/include/lldb/Utility/GDBRemote.h
  stable/12/contrib/llvm-project/lldb/source/API/SBFile.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/API/SBFile.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/CoreProperties.td
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Core/CoreProperties.td
  stable/12/contrib/llvm-project/lldb/source/Core/IOHandlerCursesGUI.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Core/IOHandlerCursesGUI.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/LZMA.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Host/common/LZMA.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/posix/FileSystemPosix.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Host/posix/FileSystemPosix.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/InterpreterProperties.td
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Interpreter/InterpreterProperties.td
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecList.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecList.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arc/
     - copied from r358851, head/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arc/
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDBProperties.td
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDBProperties.td
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
     - copied from r358851, head/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
  stable/12/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLogProperties.td
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLogProperties.td
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td
  stable/12/contrib/llvm-project/lldb/source/Symbol/ClangASTMetadata.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Symbol/ClangASTMetadata.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/MemoryRegionInfo.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Target/MemoryRegionInfo.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/TargetProperties.td
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Target/TargetProperties.td
  stable/12/contrib/llvm-project/lldb/source/Utility/GDBRemote.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/source/Utility/GDBRemote.cpp
  stable/12/contrib/llvm-project/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
  stable/12/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.cpp
  stable/12/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.h
     - copied unchanged from r358851, head/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/ExternC.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm-c/ExternC.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/DirectedGraph.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/ADT/DirectedGraph.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/EnumeratedArray.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/ADT/EnumeratedArray.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/FloatingPointMode.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/ADT/FloatingPointMode.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/DDG.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Analysis/DDG.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceGraphBuilder.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceGraphBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/LoopCacheAnalysis.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Analysis/LoopCacheAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/GISelKnownBits.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/GISelKnownBits.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRangeCalc.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRangeCalc.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRFormatter.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRFormatter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopUtils.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineSizeOpts.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineSizeOpts.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/ModuloSchedule.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/CodeGen/ModuloSchedule.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/NonRelocatableStringpool.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/CodeGen/NonRelocatableStringpool.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
     - copied from r358851, head/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFLocationExpression.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFLocationExpression.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileWriter.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileWriter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymCreator.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymCreator.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymReader.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymReader.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Header.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Header.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineTable.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineTable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LookupResult.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LookupResult.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_arm64.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_arm64.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/DebugUtils.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/DebugUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
     - copied from r358851, head/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Speculation.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Speculation.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Frontend/
     - copied from r358851, head/contrib/llvm-project/llvm/include/llvm/Frontend/
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/ConstrainedOps.def
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/IR/ConstrainedOps.def
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/FPEnv.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/IR/FPEnv.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/FixedMetadataKinds.def
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/IR/FixedMetadataKinds.def
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCRegister.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/MC/MCRegister.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/CodeEmitter.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/MCA/CodeEmitter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/TapiFile.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Object/TapiFile.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/TapiUniversal.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Object/TapiUniversal.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ObjectYAML/yaml2obj.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/ObjectYAML/yaml2obj.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkContainer.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkContainer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkParser.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkParser.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkSerializer.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkSerializer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkLinker.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkLinker.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/YAMLRemarkSerializer.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Remarks/YAMLRemarkSerializer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Alignment.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Support/Alignment.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Automaton.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Support/Automaton.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/FileCollector.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Support/FileCollector.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/TypeSize.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Support/TypeSize.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Windows/
     - copied from r358851, head/contrib/llvm-project/llvm/include/llvm/Support/Windows/
  stable/12/contrib/llvm-project/llvm/include/llvm/TableGen/Automaton.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/TableGen/Automaton.td
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Combine.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Combine.td
  stable/12/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Platform.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Platform.h
  stable/12/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Target.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Target.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/CFGuard.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Transforms/CFGuard.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/MergeFunctions.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/MergeFunctions.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/SanitizerCoverage.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/SanitizerCoverage.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerConstantIntrinsics.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerConstantIntrinsics.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerMatrixIntrinsics.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerMatrixIntrinsics.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeMoverUtils.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeMoverUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Debugify.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Debugify.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/InjectTLIMappings.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/InjectTLIMappings.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/MisExpect.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/MisExpect.h
  stable/12/contrib/llvm-project/llvm/lib/Analysis/DDG.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Analysis/DDG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/DependenceGraphBuilder.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Analysis/DependenceGraphBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LoopCacheAnalysis.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Analysis/LoopCacheAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/VFABIDemangling.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Analysis/VFABIDemangling.cpp
  stable/12/contrib/llvm-project/llvm/lib/BinaryFormat/XCOFF.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/BinaryFormat/XCOFF.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/CFGuardLongjmp.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/CFGuardLongjmp.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRNamerPass.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/MIRNamerPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopUtils.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineSizeOpts.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/MachineSizeOpts.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ModuloSchedule.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/ModuloSchedule.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/NonRelocatableStringpool.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/NonRelocatableStringpool.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TypePromotion.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/CodeGen/TypePromotion.cpp
  stable/12/contrib/llvm-project/llvm/lib/DWARFLinker/
     - copied from r358851, head/contrib/llvm-project/llvm/lib/DWARFLinker/
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFLocationExpression.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFLocationExpression.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FileWriter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FileWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymReader.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymReader.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Header.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Header.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LineTable.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LineTable.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LookupResult.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LookupResult.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_arm64.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_arm64.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/DebugUtils.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/DebugUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/SpeculateAnalyses.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/SpeculateAnalyses.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Speculation.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Speculation.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/OrcError/
     - copied from r358851, head/contrib/llvm-project/llvm/lib/ExecutionEngine/OrcError/
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFAArch64.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFAArch64.h
  stable/12/contrib/llvm-project/llvm/lib/Frontend/
     - copied from r358851, head/contrib/llvm-project/llvm/lib/Frontend/
  stable/12/contrib/llvm-project/llvm/lib/IR/FPEnv.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/IR/FPEnv.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/CodeEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/MCA/CodeEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/TapiFile.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Object/TapiFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/TapiUniversal.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Object/TapiUniversal.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/COFFEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ObjectYAML/COFFEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/ELFEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ObjectYAML/ELFEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/MachOEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ObjectYAML/MachOEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/WasmEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ObjectYAML/WasmEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/yaml2obj.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/ObjectYAML/yaml2obj.cpp
  stable/12/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.h
  stable/12/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkSerializer.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkSerializer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Remarks/RemarkLinker.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Remarks/RemarkLinker.cpp
  stable/12/contrib/llvm-project/llvm/lib/Remarks/RemarkSerializer.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Remarks/RemarkSerializer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/ABIBreak.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Support/ABIBreak.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/FileCheckImpl.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Support/FileCheckImpl.h
  stable/12/contrib/llvm-project/llvm/lib/Support/FileCollector.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Support/FileCollector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Combine.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Combine.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM5.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM5.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackOffset.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackOffset.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTaggingPreRA.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTaggingPreRA.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MVEGatherScatterLowering.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/ARM/MVEGatherScatterLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MVETailPredication.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/ARM/MVETailPredication.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MVEVPTBlockPass.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/ARM/MVEVPTBlockPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsPfmCounters.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/Mips/MipsPfmCounters.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopInstrFormPrep.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopInstrFormPrep.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLowerMASSVEntries.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLowerMASSVEntries.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstructionSelector.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstructionSelector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBanks.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBanks.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket32.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket32.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket64.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket64.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedule.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedule.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleZ15.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleZ15.td
  stable/12/contrib/llvm-project/llvm/lib/Target/VE/
     - copied from r358851, head/contrib/llvm-project/llvm/lib/Target/VE/
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidTrailingCall.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidTrailingCall.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver2.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver2.td
  stable/12/contrib/llvm-project/llvm/lib/TextAPI/MachO/Platform.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/TextAPI/MachO/Platform.cpp
  stable/12/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/CFGuard/
     - copied from r358851, head/contrib/llvm-project/llvm/lib/Transforms/CFGuard/
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.h
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfilePlugins.inc
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfilePlugins.inc
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerConstantIntrinsics.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerConstantIntrinsics.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerMatrixIntrinsics.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerMatrixIntrinsics.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeMoverUtils.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeMoverUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/Debugify.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Utils/Debugify.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/InjectTLIMappings.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Utils/InjectTLIMappings.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/MisExpect.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Utils/MisExpect.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/CommonOpts.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/tools/llvm-objcopy/CommonOpts.td
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/InstallNameToolOpts.td
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/tools/llvm-objcopy/InstallNameToolOpts.td
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/GICombinerEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/utils/TableGen/GICombinerEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
     - copied from r358851, head/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
  stable/12/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.h
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/OptRSTEmitter.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/llvm/utils/TableGen/OptRSTEmitter.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.cpp
     - copied unchanged from r358851, head/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.cpp
  stable/12/lib/clang/include/llvm/Support/Extension.def
     - copied unchanged from r358851, head/lib/clang/include/llvm/Support/Extension.def
  stable/12/usr.bin/clang/lldb/lldb.1
     - copied unchanged from r358851, head/usr.bin/clang/lldb/lldb.1
Deleted:
  stable/12/contrib/llvm-project/clang/include/clang/AST/TypeNodes.def
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/LangStandard.h
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/LangStandards.def
  stable/12/contrib/llvm-project/clang/include/clang/Index/CodegenNameGenerator.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/Module.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RangeSelector.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/SourceCode.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Stencil.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Transformer.h
  stable/12/contrib/llvm-project/clang/lib/Frontend/LangStandards.cpp
  stable/12/contrib/llvm-project/clang/lib/Index/CodegenNameGenerator.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/Module.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/RangeSelector.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/SourceCode.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/Stencil.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/Transformer.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/utils/
  stable/12/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfData.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/secondary.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/stats/stats.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_libdispatch.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cc
  stable/12/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cc
  stable/12/contrib/llvm-project/libcxx/src/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/COFF/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/Common/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/ELF/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/docs/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/lib/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/lib/Core/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/lib/Driver/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/YAML/CMakeLists.txt
  stable/12/contrib/llvm-project/lld/tools/lld/CMakeLists.txt
  stable/12/contrib/llvm-project/lldb/docs/lldb.1
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/STLUtils.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLMap.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLVector.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeValidator.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/VerifyDecl.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/CleanUp.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/FileCollector.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/JSON.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/StreamGDBRemote.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.h
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/TypeValidator.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/posix/FileSystem.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
  stable/12/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/VerifyDecl.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/FileCollector.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/JSON.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/PPC64LE_ehframe_Registers.h
  stable/12/contrib/llvm-project/lldb/source/Utility/StreamGDBRemote.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnConfig.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIDataTypes.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMain.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIExtensions.txt
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIReadMe.txt
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonBase.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/Platform.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-mi/module.modulemap
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/VariadicFunction.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCCodePadder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/JamCRC.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/MutexGuard.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Options.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/ScalableSize.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/UniqueLock.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeCalc.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOAtomGraphBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOAtomGraphBuilder.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCCodePadder.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/JamCRC.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Mutex.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Options.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Unix/Mutex.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Unix/RWMutex.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/Mutex.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/RWMutex.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/WindowsSupport.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleArch13.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
  stable/12/contrib/llvm-project/llvm/tools/opt/Debugify.cpp
  stable/12/contrib/llvm-project/llvm/tools/opt/Debugify.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_taskq.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.c
Modified:
  stable/12/Makefile.inc1
  stable/12/ObsoleteFiles.inc
  stable/12/UPDATING
  stable/12/contrib/llvm-project/FREEBSD-Xlist
  stable/12/contrib/llvm-project/clang/include/clang-c/BuildSystem.h
  stable/12/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h
  stable/12/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h
  stable/12/contrib/llvm-project/clang/include/clang-c/CXString.h
  stable/12/contrib/llvm-project/clang/include/clang-c/Documentation.h
  stable/12/contrib/llvm-project/clang/include/clang-c/Index.h
  stable/12/contrib/llvm-project/clang/include/clang-c/Platform.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/APValue.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTConsumer.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTContext.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTFwd.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTImporter.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTImporterSharedState.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTLambda.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTNodeTraverser.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTStructuralEquivalence.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ASTTypeTraits.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/Attr.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/CXXInheritance.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/CharUnits.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/Comment.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/CommentCommands.td
  stable/12/contrib/llvm-project/clang/include/clang/AST/CommentLexer.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ComparisonCategories.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/Decl.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/DeclBase.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/DeclCXX.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/DeclObjC.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/DeclTemplate.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/DeclarationName.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/Expr.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ExprCXX.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ExprObjC.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ExternalASTMerger.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/ExternalASTSource.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/FormatString.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/GlobalDecl.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/JSONNodeDumper.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/Mangle.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/NSAPI.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/OpenMPClause.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/OperationKinds.def
  stable/12/contrib/llvm-project/clang/include/clang/AST/PrettyPrinter.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/RawCommentList.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/RecursiveASTVisitor.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/Stmt.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/StmtDataCollectors.td
  stable/12/contrib/llvm-project/clang/include/clang/AST/StmtOpenMP.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/StmtVisitor.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/TemplateBase.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/TemplateName.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/TextNodeDumper.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/Type.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/TypeLoc.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/TypeLocNodes.def
  stable/12/contrib/llvm-project/clang/include/clang/AST/TypeVisitor.h
  stable/12/contrib/llvm-project/clang/include/clang/AST/UnresolvedSet.h
  stable/12/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchFinder.h
  stable/12/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchers.h
  stable/12/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
  stable/12/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/Parser.h
  stable/12/contrib/llvm-project/clang/include/clang/Analysis/AnalysisDeclContext.h
  stable/12/contrib/llvm-project/clang/include/clang/Analysis/CFG.h
  stable/12/contrib/llvm-project/clang/include/clang/Analysis/CallGraph.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/AddressSpaces.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Attr.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/AttrDocs.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Builtins.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Builtins.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/BuiltinsAArch64.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/BuiltinsAMDGPU.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/BuiltinsARM.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/BuiltinsPPC.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/BuiltinsWebAssembly.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/BuiltinsX86.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/BuiltinsX86_64.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/CodeGenOptions.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/CodeGenOptions.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/CommentNodes.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Cuda.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DebugInfoOptions.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DeclNodes.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Diagnostic.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticASTKinds.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticCommentKinds.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticCommonKinds.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticDriverKinds.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticFrontendKinds.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticGroups.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticLexKinds.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticOptions.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticParseKinds.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSemaKinds.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSerializationKinds.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Features.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/FileManager.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/IdentifierTable.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/LangOptions.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/LangOptions.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Linkage.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/ObjCRuntime.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/OpenCLOptions.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/OpenMPKinds.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/OpenMPKinds.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/OperatorKinds.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/PartialDiagnostic.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/SanitizerSpecialCaseList.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Sanitizers.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/SourceLocation.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/SourceManager.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Specifiers.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/Stack.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/StmtNodes.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/SyncScope.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/TargetBuiltins.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/TargetCXXABI.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/TargetInfo.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/TokenKinds.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/TokenKinds.h
  stable/12/contrib/llvm-project/clang/include/clang/Basic/X86Target.def
  stable/12/contrib/llvm-project/clang/include/clang/Basic/arm_fp16.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/arm_neon.td
  stable/12/contrib/llvm-project/clang/include/clang/Basic/arm_neon_incl.td
  stable/12/contrib/llvm-project/clang/include/clang/CodeGen/CGFunctionInfo.h
  stable/12/contrib/llvm-project/clang/include/clang/CrossTU/CrossTranslationUnit.h
  stable/12/contrib/llvm-project/clang/include/clang/DirectoryWatcher/DirectoryWatcher.h
  stable/12/contrib/llvm-project/clang/include/clang/Driver/Action.h
  stable/12/contrib/llvm-project/clang/include/clang/Driver/CC1Options.td
  stable/12/contrib/llvm-project/clang/include/clang/Driver/CLCompatOptions.td
  stable/12/contrib/llvm-project/clang/include/clang/Driver/Distro.h
  stable/12/contrib/llvm-project/clang/include/clang/Driver/Driver.h
  stable/12/contrib/llvm-project/clang/include/clang/Driver/Job.h
  stable/12/contrib/llvm-project/clang/include/clang/Driver/Options.h
  stable/12/contrib/llvm-project/clang/include/clang/Driver/Options.td
  stable/12/contrib/llvm-project/clang/include/clang/Driver/Phases.h
  stable/12/contrib/llvm-project/clang/include/clang/Driver/SanitizerArgs.h
  stable/12/contrib/llvm-project/clang/include/clang/Driver/ToolChain.h
  stable/12/contrib/llvm-project/clang/include/clang/Driver/Types.def
  stable/12/contrib/llvm-project/clang/include/clang/Driver/Types.h
  stable/12/contrib/llvm-project/clang/include/clang/Format/Format.h
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/ASTUnit.h
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/CompilerInstance.h
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/CompilerInvocation.h
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/FrontendActions.h
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/FrontendOptions.h
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/MultiplexConsumer.h
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/PrecompiledPreamble.h
  stable/12/contrib/llvm-project/clang/include/clang/Frontend/Utils.h
  stable/12/contrib/llvm-project/clang/include/clang/Index/IndexDataConsumer.h
  stable/12/contrib/llvm-project/clang/include/clang/Index/IndexingAction.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/DependencyDirectivesSourceMinimizer.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/DirectoryLookup.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/HeaderMap.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/HeaderSearch.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/HeaderSearchOptions.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/Lexer.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/MacroArgs.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/ModuleLoader.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/ModuleMap.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/PPCallbacks.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/Preprocessor.h
  stable/12/contrib/llvm-project/clang/include/clang/Lex/PreprocessorOptions.h
  stable/12/contrib/llvm-project/clang/include/clang/Parse/Parser.h
  stable/12/contrib/llvm-project/clang/include/clang/Parse/RAIIObjectsForParser.h
  stable/12/contrib/llvm-project/clang/include/clang/Rewrite/Core/Rewriter.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/CodeCompleteConsumer.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/DeclSpec.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/ExternalSemaSource.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/MultiplexExternalSemaSource.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/ObjCMethodList.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/Overload.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/ParsedAttr.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/ParsedTemplate.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/Scope.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/ScopeInfo.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/Sema.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/SemaInternal.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/Template.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/TemplateDeduction.h
  stable/12/contrib/llvm-project/clang/include/clang/Sema/TypoCorrection.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/ASTBitCodes.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/ASTReader.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/ASTWriter.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/ContinuousRangeMap.h
  stable/12/contrib/llvm-project/clang/include/clang/Serialization/ModuleManager.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/Checker.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
  stable/12/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/ASTDiff.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/AllTUsExecution.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/ArgumentsAdjusters.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/CompilationDatabase.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningWorker.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Execution.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/HeaderIncludes.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/IncludeStyle.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ASTSelection.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/StandaloneExecution.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Syntax/BuildTree.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Nodes.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Tokens.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Tree.h
  stable/12/contrib/llvm-project/clang/include/clang/Tooling/Tooling.h
  stable/12/contrib/llvm-project/clang/include/clang/module.modulemap
  stable/12/contrib/llvm-project/clang/lib/ARCMigrate/ARCMT.cpp
  stable/12/contrib/llvm-project/clang/lib/ARCMigrate/FileRemapper.cpp
  stable/12/contrib/llvm-project/clang/lib/ARCMigrate/ObjCMT.cpp
  stable/12/contrib/llvm-project/clang/lib/ARCMigrate/PlistReporter.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/APValue.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ASTContext.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ASTDiagnostic.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ASTImporter.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ASTStructuralEquivalence.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ASTTypeTraits.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/CXXInheritance.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/Comment.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/CommentLexer.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/CommentParser.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/CommentSema.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ComparisonCategories.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/Decl.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/DeclBase.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/DeclCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/DeclObjC.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/DeclPrinter.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/DeclTemplate.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/DeclarationName.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/Expr.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ExprCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ExprClassification.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ExprConstant.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ExternalASTMerger.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ExternalASTSource.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/FormatString.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/FormatStringParsing.h
  stable/12/contrib/llvm-project/clang/lib/AST/InheritViz.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ItaniumCXXABI.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ItaniumMangle.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/JSONNodeDumper.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/Mangle.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/MicrosoftCXXABI.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/MicrosoftMangle.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/NSAPI.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/NestedNameSpecifier.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/ODRHash.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/OpenMPClause.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/PrintfFormatString.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/QualTypeNames.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/RawCommentList.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/RecordLayoutBuilder.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/Stmt.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/StmtOpenMP.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/StmtPrinter.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/StmtProfile.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/TemplateBase.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/TextNodeDumper.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/Type.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/TypeLoc.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/TypePrinter.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/VTTBuilder.cpp
  stable/12/contrib/llvm-project/clang/lib/AST/VTableBuilder.cpp
  stable/12/contrib/llvm-project/clang/lib/ASTMatchers/ASTMatchFinder.cpp
  stable/12/contrib/llvm-project/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
  stable/12/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Marshallers.h
  stable/12/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Parser.cpp
  stable/12/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/AnalysisDeclContext.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/BodyFarm.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/CFG.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/CallGraph.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/CloneDetection.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/CocoaConventions.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/Consumed.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/ProgramPoint.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/ReachableCode.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/RetainSummaryManager.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/ThreadSafety.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/ThreadSafetyCommon.cpp
  stable/12/contrib/llvm-project/clang/lib/Analysis/plugins/SampleAnalyzer/MainCallChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Attributes.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Builtins.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Cuda.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Diagnostic.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/FileManager.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/IdentifierTable.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Module.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/OpenMPKinds.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/SanitizerBlacklist.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/SanitizerSpecialCaseList.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/SourceManager.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/TargetInfo.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/AArch64.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/AArch64.h
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/AMDGPU.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/ARM.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/ARM.h
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/BPF.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/BPF.h
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/Hexagon.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/Mips.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/NVPTX.h
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/OSTargets.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/OSTargets.h
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/PPC.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/PPC.h
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/RISCV.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/SPIR.h
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/Sparc.h
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/SystemZ.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/TCE.h
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/X86.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Targets/X86.h
  stable/12/contrib/llvm-project/clang/lib/Basic/TokenKinds.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/Version.cpp
  stable/12/contrib/llvm-project/clang/lib/Basic/XRayLists.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/BackendUtil.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGAtomic.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGBlocks.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGBuilder.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGBuiltin.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGCUDANV.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGCXXABI.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGCXXABI.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGCall.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGCall.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGClass.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGCleanup.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGDebugInfo.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGDebugInfo.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGDecl.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGDeclCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGException.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGExpr.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGExprAgg.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGExprCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGExprComplex.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGExprConstant.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGExprScalar.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGLoopInfo.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGLoopInfo.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGNonTrivialStruct.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGObjC.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGObjCGNU.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGObjCMac.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGObjCRuntime.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGOpenCLRuntime.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntime.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntime.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGStmt.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGStmtOpenMP.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGVTables.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CGValue.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CodeGenAction.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CodeGenPGO.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CodeGenPGO.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CodeGenTBAA.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CodeGenTypes.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/ConstantEmitter.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/ConstantInitBuilder.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/CoverageMappingGen.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/EHScopeStack.h
  stable/12/contrib/llvm-project/clang/lib/CodeGen/ItaniumCXXABI.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/ModuleBuilder.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/SanitizerMetadata.cpp
  stable/12/contrib/llvm-project/clang/lib/CodeGen/TargetInfo.cpp
  stable/12/contrib/llvm-project/clang/lib/CrossTU/CrossTranslationUnit.cpp
  stable/12/contrib/llvm-project/clang/lib/DirectoryWatcher/default/DirectoryWatcher-not-implemented.cpp
  stable/12/contrib/llvm-project/clang/lib/DirectoryWatcher/linux/DirectoryWatcher-linux.cpp
  stable/12/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/DirectoryWatcher-mac.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/Action.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/Compilation.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/Distro.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/Driver.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/DriverOptions.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/Job.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/Phases.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/SanitizerArgs.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChain.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/AMDGPU.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/AMDGPU.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/AVR.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Ananas.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/ARM.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/Mips.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/PPC.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/RISCV.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/SystemZ.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/X86.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/BareMetal.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/CloudABI.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/CommonArgs.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/CommonArgs.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/CrossWindows.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Cuda.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Cuda.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/DragonFly.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Fuchsia.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Fuchsia.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/HIP.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/HIP.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Hexagon.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/MSP430.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/MSVC.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/MSVC.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/MinGW.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/MinGW.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Minix.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Myriad.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/NaCl.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/NetBSD.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/OpenBSD.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/OpenBSD.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/PPCLinux.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/PS4CPU.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/PS4CPU.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/RISCVToolchain.h
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/Solaris.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/WebAssembly.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/ToolChains/XCore.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/Types.cpp
  stable/12/contrib/llvm-project/clang/lib/Driver/XRayArgs.cpp
  stable/12/contrib/llvm-project/clang/lib/Format/BreakableToken.cpp
  stable/12/contrib/llvm-project/clang/lib/Format/BreakableToken.h
  stable/12/contrib/llvm-project/clang/lib/Format/ContinuationIndenter.cpp
  stable/12/contrib/llvm-project/clang/lib/Format/Encoding.h
  stable/12/contrib/llvm-project/clang/lib/Format/Format.cpp
  stable/12/contrib/llvm-project/clang/lib/Format/FormatToken.h
  stable/12/contrib/llvm-project/clang/lib/Format/FormatTokenLexer.cpp
  stable/12/contrib/llvm-project/clang/lib/Format/FormatTokenLexer.h
  stable/12/contrib/llvm-project/clang/lib/Format/NamespaceEndCommentsFixer.cpp
  stable/12/contrib/llvm-project/clang/lib/Format/TokenAnnotator.cpp
  stable/12/contrib/llvm-project/clang/lib/Format/TokenAnnotator.h
  stable/12/contrib/llvm-project/clang/lib/Format/UnwrappedLineFormatter.cpp
  stable/12/contrib/llvm-project/clang/lib/Format/UnwrappedLineParser.cpp
  stable/12/contrib/llvm-project/clang/lib/Format/UnwrappedLineParser.h
  stable/12/contrib/llvm-project/clang/lib/Format/WhitespaceManager.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/ASTConsumers.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/ASTUnit.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/ChainedIncludesSource.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/CompilerInstance.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/CompilerInvocation.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/DependencyFile.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/DependencyGraph.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/FrontendAction.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/FrontendActions.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/FrontendOptions.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/HeaderIncludeGen.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/InitHeaderSearch.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/InitPreprocessor.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/InterfaceStubFunctionsConsumer.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/ModuleDependencyCollector.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/MultiplexConsumer.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/PrecompiledPreamble.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/PrintPreprocessedOutput.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/Rewrite/FrontendActions.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/TextDiagnostic.cpp
  stable/12/contrib/llvm-project/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
  stable/12/contrib/llvm-project/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
  stable/12/contrib/llvm-project/clang/lib/Headers/__clang_cuda_intrinsics.h
  stable/12/contrib/llvm-project/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
  stable/12/contrib/llvm-project/clang/lib/Headers/altivec.h
  stable/12/contrib/llvm-project/clang/lib/Headers/arm_acle.h
  stable/12/contrib/llvm-project/clang/lib/Headers/avx512bwintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/avx512fintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/avx512vlbwintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/avx512vlintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/avxintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/bmiintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/cpuid.h
  stable/12/contrib/llvm-project/clang/lib/Headers/emmintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/ia32intrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/immintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/intrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/mwaitxintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/opencl-c-base.h
  stable/12/contrib/llvm-project/clang/lib/Headers/pmmintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/emmintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/mm_malloc.h
  stable/12/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/mmintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/xmmintrin.h
  stable/12/contrib/llvm-project/clang/lib/Headers/xmmintrin.h
  stable/12/contrib/llvm-project/clang/lib/Index/CommentToXML.cpp
  stable/12/contrib/llvm-project/clang/lib/Index/IndexDecl.cpp
  stable/12/contrib/llvm-project/clang/lib/Index/IndexSymbol.cpp
  stable/12/contrib/llvm-project/clang/lib/Index/IndexingAction.cpp
  stable/12/contrib/llvm-project/clang/lib/Index/IndexingContext.cpp
  stable/12/contrib/llvm-project/clang/lib/Index/USRGeneration.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/HeaderMap.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/HeaderSearch.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/Lexer.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/LiteralSupport.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/MacroArgs.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/ModuleMap.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/PPDirectives.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/PPLexerChange.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/PPMacroExpansion.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/Pragma.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/Preprocessor.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/TokenLexer.cpp
  stable/12/contrib/llvm-project/clang/lib/Lex/UnicodeCharSets.h
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseAST.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseCXXInlineMethods.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseDecl.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseDeclCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseExpr.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseExprCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseInit.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseObjc.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseOpenMP.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParsePragma.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseStmt.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseStmtAsm.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseTemplate.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/ParseTentative.cpp
  stable/12/contrib/llvm-project/clang/lib/Parse/Parser.cpp
  stable/12/contrib/llvm-project/clang/lib/Rewrite/Rewriter.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/AnalysisBasedWarnings.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/DeclSpec.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/JumpDiagnostics.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/MultiplexExternalSemaSource.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/OpenCLBuiltins.td
  stable/12/contrib/llvm-project/clang/lib/Sema/ParsedAttr.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/Sema.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaAccess.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaAttr.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaCUDA.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaCXXScopeSpec.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaCast.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaChecking.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaCodeComplete.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaCoroutine.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaDecl.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaDeclAttr.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaDeclCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaDeclObjC.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaExceptionSpec.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaExpr.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaExprCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaExprMember.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaExprObjC.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaInit.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaLambda.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaLookup.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaObjCProperty.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaOpenMP.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaOverload.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaPseudoObject.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaStmt.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaStmtAsm.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaStmtAttr.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaTemplate.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaTemplateDeduction.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiate.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaTemplateVariadic.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/SemaType.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/TreeTransform.h
  stable/12/contrib/llvm-project/clang/lib/Sema/TypeLocBuilder.cpp
  stable/12/contrib/llvm-project/clang/lib/Sema/TypeLocBuilder.h
  stable/12/contrib/llvm-project/clang/lib/Serialization/ASTCommon.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/ASTReader.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/ASTReaderDecl.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/ASTReaderStmt.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/ASTWriter.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/ASTWriterDecl.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/ASTWriterStmt.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/GlobalModuleIndex.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/ModuleManager.cpp
  stable/12/contrib/llvm-project/clang/lib/Serialization/PCHContainerOperations.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CastValueChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MIGChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.h
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Taint.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Taint.h
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Checker.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Environment.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Store.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/WorkList.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
  stable/12/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/AllTUsExecution.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/ArgumentsAdjusters.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/CommonOptionsParser.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/CompilationDatabase.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Core/Replacement.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/GuessTargetAndModeCompilationDatabase.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Inclusions/IncludeStyle.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/JSONCompilationDatabase.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/ASTSelectionRequirements.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/RefactoringActions.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/RenamingAction.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/USRFindingAction.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/RefactoringCallbacks.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/StandaloneExecution.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Syntax/BuildTree.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Syntax/Nodes.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Syntax/Tokens.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Syntax/Tree.cpp
  stable/12/contrib/llvm-project/clang/lib/Tooling/Tooling.cpp
  stable/12/contrib/llvm-project/clang/tools/clang-format/ClangFormat.cpp
  stable/12/contrib/llvm-project/clang/tools/driver/cc1_main.cpp
  stable/12/contrib/llvm-project/clang/tools/driver/cc1as_main.cpp
  stable/12/contrib/llvm-project/clang/tools/driver/driver.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangASTNodesEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangAttrEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangOpenCLBuiltinEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangOptionDocEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/ClangSACheckersEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/NeonEmitter.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/TableGen.cpp
  stable/12/contrib/llvm-project/clang/utils/TableGen/TableGenBackends.h
  stable/12/contrib/llvm-project/compiler-rt/include/sanitizer/asan_interface.h
  stable/12/contrib/llvm-project/compiler-rt/include/sanitizer/dfsan_interface.h
  stable/12/contrib/llvm-project/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
  stable/12/contrib/llvm-project/compiler-rt/include/sanitizer/tsan_interface_atomic.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_interface.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_interface_internal.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_internal.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_scariness_score.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.h
  stable/12/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.h
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/adddf3.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/addsf3.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/addtf3.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/atomic.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/clear_cache.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/divtf3.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/emutls.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/extenddftf2.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/extendsftf2.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/fixunsxfdi.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/fixunsxfsi.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/fixxfdi.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/fp_add_impl.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/fp_lib.h
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/fp_trunc_impl.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixunstfti.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/subdf3.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/subsf3.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/subtf3.c
  stable/12/contrib/llvm-project/compiler-rt/lib/builtins/udivmoddi4.c
  stable/12/contrib/llvm-project/compiler-rt/lib/crt/crtbegin.c
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerDefs.h
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtFunctions.def
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeak.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtraCounters.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerFlags.def
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIO.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIO.h
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerInternal.h
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerMerge.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerOptions.h
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerTracePC.h
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtil.h
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilDarwin.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilFuchsia.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilLinux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilPosix.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/definitions.h
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/guarded_pool_allocator.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/guarded_pool_allocator.h
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace.h
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace_linux_libc.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace_sanitizer_common.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/options.h
  stable/12/contrib/llvm-project/compiler-rt/lib/gwp_asan/options.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan.h
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_allocator.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_allocator.h
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_flags.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_interceptors.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_interface_internal.h
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_linux.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_new_delete.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_report.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_tag_mismatch_aarch64.S
  stable/12/contrib/llvm-project/compiler-rt/lib/interception/interception.h
  stable/12/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.h
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan.h
  stable/12/contrib/llvm-project/compiler-rt/lib/msan/msan_blacklist.txt
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfiling.c
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfiling.h
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingBuffer.c
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingFile.c
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingInternal.h
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingMerge.c
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingMergeFile.c
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingPort.h
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.c
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.h
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingValue.c
  stable/12/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingWriter.c
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_asm.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_getauxval.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_malloc_mac.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_vector.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
  stable/12/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/scudo_allocator_secondary.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/scudo_errors.cpp
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/allocator_config.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/atomic_helpers.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/bytemap.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/chunk.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/combined.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/internal_defs.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/list.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/local_cache.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/mutex.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/platform.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/primary32.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/primary64.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/quarantine.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/release.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/secondary.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/size_class_map.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/stats.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd_exclusive.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd_shared.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/vector.h
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.inc
  stable/12/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_checks.h
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_dispatch_defs.h
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.h
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.h
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.h
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform.h
  stable/12/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.h
  stable/12/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_checks.inc
  stable/12/contrib/llvm-project/libcxx/CREDITS.TXT
  stable/12/contrib/llvm-project/libcxx/include/__bit_reference
  stable/12/contrib/llvm-project/libcxx/include/__config
  stable/12/contrib/llvm-project/libcxx/include/__debug
  stable/12/contrib/llvm-project/libcxx/include/__functional_03
  stable/12/contrib/llvm-project/libcxx/include/__functional_base
  stable/12/contrib/llvm-project/libcxx/include/__hash_table
  stable/12/contrib/llvm-project/libcxx/include/__libcpp_version
  stable/12/contrib/llvm-project/libcxx/include/__mutex_base
  stable/12/contrib/llvm-project/libcxx/include/__split_buffer
  stable/12/contrib/llvm-project/libcxx/include/__string
  stable/12/contrib/llvm-project/libcxx/include/__threading_support
  stable/12/contrib/llvm-project/libcxx/include/__tree
  stable/12/contrib/llvm-project/libcxx/include/__tuple
  stable/12/contrib/llvm-project/libcxx/include/algorithm
  stable/12/contrib/llvm-project/libcxx/include/atomic
  stable/12/contrib/llvm-project/libcxx/include/bit
  stable/12/contrib/llvm-project/libcxx/include/chrono
  stable/12/contrib/llvm-project/libcxx/include/codecvt
  stable/12/contrib/llvm-project/libcxx/include/cstdlib
  stable/12/contrib/llvm-project/libcxx/include/ctime
  stable/12/contrib/llvm-project/libcxx/include/deque
  stable/12/contrib/llvm-project/libcxx/include/exception
  stable/12/contrib/llvm-project/libcxx/include/experimental/coroutine
  stable/12/contrib/llvm-project/libcxx/include/experimental/functional
  stable/12/contrib/llvm-project/libcxx/include/experimental/iterator
  stable/12/contrib/llvm-project/libcxx/include/experimental/propagate_const
  stable/12/contrib/llvm-project/libcxx/include/experimental/type_traits
  stable/12/contrib/llvm-project/libcxx/include/ext/hash_map
  stable/12/contrib/llvm-project/libcxx/include/ext/hash_set
  stable/12/contrib/llvm-project/libcxx/include/filesystem
  stable/12/contrib/llvm-project/libcxx/include/forward_list
  stable/12/contrib/llvm-project/libcxx/include/fstream
  stable/12/contrib/llvm-project/libcxx/include/functional
  stable/12/contrib/llvm-project/libcxx/include/future
  stable/12/contrib/llvm-project/libcxx/include/ios
  stable/12/contrib/llvm-project/libcxx/include/istream
  stable/12/contrib/llvm-project/libcxx/include/iterator
  stable/12/contrib/llvm-project/libcxx/include/list
  stable/12/contrib/llvm-project/libcxx/include/map
  stable/12/contrib/llvm-project/libcxx/include/math.h
  stable/12/contrib/llvm-project/libcxx/include/memory
  stable/12/contrib/llvm-project/libcxx/include/module.modulemap
  stable/12/contrib/llvm-project/libcxx/include/mutex
  stable/12/contrib/llvm-project/libcxx/include/new
  stable/12/contrib/llvm-project/libcxx/include/numeric
  stable/12/contrib/llvm-project/libcxx/include/ostream
  stable/12/contrib/llvm-project/libcxx/include/queue
  stable/12/contrib/llvm-project/libcxx/include/random
  stable/12/contrib/llvm-project/libcxx/include/regex
  stable/12/contrib/llvm-project/libcxx/include/set
  stable/12/contrib/llvm-project/libcxx/include/span
  stable/12/contrib/llvm-project/libcxx/include/stdexcept
  stable/12/contrib/llvm-project/libcxx/include/string
  stable/12/contrib/llvm-project/libcxx/include/string_view
  stable/12/contrib/llvm-project/libcxx/include/system_error
  stable/12/contrib/llvm-project/libcxx/include/thread
  stable/12/contrib/llvm-project/libcxx/include/tuple
  stable/12/contrib/llvm-project/libcxx/include/type_traits
  stable/12/contrib/llvm-project/libcxx/include/typeinfo
  stable/12/contrib/llvm-project/libcxx/include/utility
  stable/12/contrib/llvm-project/libcxx/include/vector
  stable/12/contrib/llvm-project/libcxx/include/version
  stable/12/contrib/llvm-project/libcxx/src/algorithm.cpp
  stable/12/contrib/llvm-project/libcxx/src/chrono.cpp
  stable/12/contrib/llvm-project/libcxx/src/condition_variable.cpp
  stable/12/contrib/llvm-project/libcxx/src/debug.cpp
  stable/12/contrib/llvm-project/libcxx/src/experimental/memory_resource.cpp
  stable/12/contrib/llvm-project/libcxx/src/filesystem/directory_iterator.cpp
  stable/12/contrib/llvm-project/libcxx/src/filesystem/int128_builtins.cpp
  stable/12/contrib/llvm-project/libcxx/src/filesystem/operations.cpp
  stable/12/contrib/llvm-project/libcxx/src/iostream.cpp
  stable/12/contrib/llvm-project/libcxx/src/locale.cpp
  stable/12/contrib/llvm-project/libcxx/src/memory.cpp
  stable/12/contrib/llvm-project/libcxx/src/mutex.cpp
  stable/12/contrib/llvm-project/libcxx/src/mutex_destructor.cpp
  stable/12/contrib/llvm-project/libcxx/src/regex.cpp
  stable/12/contrib/llvm-project/libcxx/src/shared_mutex.cpp
  stable/12/contrib/llvm-project/libcxx/src/thread.cpp
  stable/12/contrib/llvm-project/libcxx/src/utility.cpp
  stable/12/contrib/llvm-project/libcxx/src/valarray.cpp
  stable/12/contrib/llvm-project/libunwind/include/__libunwind_config.h
  stable/12/contrib/llvm-project/libunwind/include/libunwind.h
  stable/12/contrib/llvm-project/libunwind/src/AddressSpace.hpp
  stable/12/contrib/llvm-project/libunwind/src/DwarfInstructions.hpp
  stable/12/contrib/llvm-project/libunwind/src/RWMutex.hpp
  stable/12/contrib/llvm-project/libunwind/src/Registers.hpp
  stable/12/contrib/llvm-project/libunwind/src/Unwind-EHABI.cpp
  stable/12/contrib/llvm-project/libunwind/src/UnwindCursor.hpp
  stable/12/contrib/llvm-project/libunwind/src/UnwindLevel1-gcc-ext.c
  stable/12/contrib/llvm-project/libunwind/src/UnwindRegistersRestore.S
  stable/12/contrib/llvm-project/libunwind/src/UnwindRegistersSave.S
  stable/12/contrib/llvm-project/libunwind/src/libunwind.cpp
  stable/12/contrib/llvm-project/lld/COFF/Chunks.h
  stable/12/contrib/llvm-project/lld/COFF/Config.h
  stable/12/contrib/llvm-project/lld/COFF/DLL.cpp
  stable/12/contrib/llvm-project/lld/COFF/DebugTypes.cpp
  stable/12/contrib/llvm-project/lld/COFF/Driver.cpp
  stable/12/contrib/llvm-project/lld/COFF/Driver.h
  stable/12/contrib/llvm-project/lld/COFF/DriverUtils.cpp
  stable/12/contrib/llvm-project/lld/COFF/ICF.cpp
  stable/12/contrib/llvm-project/lld/COFF/InputFiles.cpp
  stable/12/contrib/llvm-project/lld/COFF/InputFiles.h
  stable/12/contrib/llvm-project/lld/COFF/LTO.cpp
  stable/12/contrib/llvm-project/lld/COFF/MapFile.cpp
  stable/12/contrib/llvm-project/lld/COFF/MinGW.cpp
  stable/12/contrib/llvm-project/lld/COFF/MinGW.h
  stable/12/contrib/llvm-project/lld/COFF/Options.td
  stable/12/contrib/llvm-project/lld/COFF/PDB.cpp
  stable/12/contrib/llvm-project/lld/COFF/PDB.h
  stable/12/contrib/llvm-project/lld/COFF/SymbolTable.cpp
  stable/12/contrib/llvm-project/lld/COFF/SymbolTable.h
  stable/12/contrib/llvm-project/lld/COFF/Symbols.cpp
  stable/12/contrib/llvm-project/lld/COFF/Symbols.h
  stable/12/contrib/llvm-project/lld/COFF/Writer.cpp
  stable/12/contrib/llvm-project/lld/Common/ErrorHandler.cpp
  stable/12/contrib/llvm-project/lld/Common/Filesystem.cpp
  stable/12/contrib/llvm-project/lld/Common/Strings.cpp
  stable/12/contrib/llvm-project/lld/Common/TargetOptionsCommandFlags.cpp
  stable/12/contrib/llvm-project/lld/ELF/AArch64ErrataFix.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/AArch64.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/AMDGPU.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/ARM.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/AVR.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/Hexagon.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/MSP430.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/Mips.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/MipsArchTree.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/PPC.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/PPC64.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/RISCV.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/SPARCV9.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/X86.cpp
  stable/12/contrib/llvm-project/lld/ELF/Arch/X86_64.cpp
  stable/12/contrib/llvm-project/lld/ELF/CallGraphSort.cpp
  stable/12/contrib/llvm-project/lld/ELF/Config.h
  stable/12/contrib/llvm-project/lld/ELF/DWARF.cpp
  stable/12/contrib/llvm-project/lld/ELF/DWARF.h
  stable/12/contrib/llvm-project/lld/ELF/Driver.cpp
  stable/12/contrib/llvm-project/lld/ELF/DriverUtils.cpp
  stable/12/contrib/llvm-project/lld/ELF/EhFrame.cpp
  stable/12/contrib/llvm-project/lld/ELF/ICF.cpp
  stable/12/contrib/llvm-project/lld/ELF/InputFiles.cpp
  stable/12/contrib/llvm-project/lld/ELF/InputFiles.h
  stable/12/contrib/llvm-project/lld/ELF/InputSection.cpp
  stable/12/contrib/llvm-project/lld/ELF/InputSection.h
  stable/12/contrib/llvm-project/lld/ELF/LTO.cpp
  stable/12/contrib/llvm-project/lld/ELF/LinkerScript.cpp
  stable/12/contrib/llvm-project/lld/ELF/LinkerScript.h
  stable/12/contrib/llvm-project/lld/ELF/MapFile.cpp
  stable/12/contrib/llvm-project/lld/ELF/MarkLive.cpp
  stable/12/contrib/llvm-project/lld/ELF/Options.td
  stable/12/contrib/llvm-project/lld/ELF/OutputSections.cpp
  stable/12/contrib/llvm-project/lld/ELF/OutputSections.h
  stable/12/contrib/llvm-project/lld/ELF/Relocations.cpp
  stable/12/contrib/llvm-project/lld/ELF/Relocations.h
  stable/12/contrib/llvm-project/lld/ELF/ScriptLexer.cpp
  stable/12/contrib/llvm-project/lld/ELF/ScriptParser.cpp
  stable/12/contrib/llvm-project/lld/ELF/SymbolTable.cpp
  stable/12/contrib/llvm-project/lld/ELF/SymbolTable.h
  stable/12/contrib/llvm-project/lld/ELF/Symbols.cpp
  stable/12/contrib/llvm-project/lld/ELF/Symbols.h
  stable/12/contrib/llvm-project/lld/ELF/SyntheticSections.cpp
  stable/12/contrib/llvm-project/lld/ELF/SyntheticSections.h
  stable/12/contrib/llvm-project/lld/ELF/Target.cpp
  stable/12/contrib/llvm-project/lld/ELF/Target.h
  stable/12/contrib/llvm-project/lld/ELF/Thunks.cpp
  stable/12/contrib/llvm-project/lld/ELF/Thunks.h
  stable/12/contrib/llvm-project/lld/ELF/Writer.cpp
  stable/12/contrib/llvm-project/lld/ELF/Writer.h
  stable/12/contrib/llvm-project/lld/docs/Driver.rst
  stable/12/contrib/llvm-project/lld/docs/NewLLD.rst
  stable/12/contrib/llvm-project/lld/docs/ReleaseNotes.rst
  stable/12/contrib/llvm-project/lld/docs/WebAssembly.rst
  stable/12/contrib/llvm-project/lld/docs/conf.py
  stable/12/contrib/llvm-project/lld/docs/index.rst
  stable/12/contrib/llvm-project/lld/docs/ld.lld.1
  stable/12/contrib/llvm-project/lld/docs/windows_support.rst
  stable/12/contrib/llvm-project/lld/include/lld/Common/Driver.h
  stable/12/contrib/llvm-project/lld/include/lld/Common/ErrorHandler.h
  stable/12/contrib/llvm-project/lld/include/lld/Common/LLVM.h
  stable/12/contrib/llvm-project/lld/include/lld/Common/Strings.h
  stable/12/contrib/llvm-project/lld/include/lld/Common/TargetOptionsCommandFlags.h
  stable/12/contrib/llvm-project/lld/include/lld/Core/Atom.h
  stable/12/contrib/llvm-project/lld/include/lld/Core/Error.h
  stable/12/contrib/llvm-project/lld/include/lld/Core/File.h
  stable/12/contrib/llvm-project/lld/include/lld/Core/Instrumentation.h
  stable/12/contrib/llvm-project/lld/include/lld/Core/Reference.h
  stable/12/contrib/llvm-project/lld/include/lld/Core/UndefinedAtom.h
  stable/12/contrib/llvm-project/lld/include/lld/ReaderWriter/MachOLinkingContext.h
  stable/12/contrib/llvm-project/lld/lib/Core/Resolver.cpp
  stable/12/contrib/llvm-project/lld/lib/Core/SymbolTable.cpp
  stable/12/contrib/llvm-project/lld/lib/Driver/DarwinLdDriver.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/FileArchive.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/DebugInfo.h
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/File.h
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/GOTPass.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ShimPass.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/MachO/TLVPass.cpp
  stable/12/contrib/llvm-project/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
  stable/12/contrib/llvm-project/lld/tools/lld/lld.cpp
  stable/12/contrib/llvm-project/lldb/include/lldb/API/LLDB.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBBreakpoint.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointLocation.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointName.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBCommandReturnObject.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBDebugger.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBDefines.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBError.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBInstruction.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBInstructionList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBProcess.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBReproducer.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBStream.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBStructuredData.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBThread.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBThreadPlan.h
  stable/12/contrib/llvm-project/lldb/include/lldb/API/SBValue.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/Breakpoint.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointID.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocation.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointOptions.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolver.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointSite.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/Watchpoint.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointOptions.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/Address.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/AddressRange.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverFileLine.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverName.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/ClangForward.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/Debugger.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/Disassembler.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/FileLineResolver.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/FileSpecList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/FormatEntity.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/Highlighter.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/IOHandler.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/LoadedModuleInfoList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/Mangled.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/Module.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/ModuleChild.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/ModuleList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/ModuleSpec.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/PluginManager.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/SearchFilter.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/Section.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/SourceManager.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/StreamFile.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/StructuredDataImpl.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeDenseMap.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/Value.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/ValueObject.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Core/dwarf.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/DataVisualization.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatCache.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatClasses.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatManager.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormattersContainer.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/LanguageCategory.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/StringPrinter.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategory.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
  stable/12/contrib/llvm-project/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/DWARFExpression.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/DiagnosticManager.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/Expression.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionParser.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionSourceCode.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionVariable.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/FunctionCaller.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/IRExecutionUnit.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/LLVMUserExpression.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/Materializer.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/REPL.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/UserExpression.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Expression/UtilityFunction.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/Editline.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/File.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/FileCache.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/FileSystem.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/HostInfoBase.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/HostProcess.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/PseudoTerminal.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/Socket.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/SocketAddress.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/Terminal.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/XML.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Host/common/NativeProcessProtocol.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandAlias.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandCompletions.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandInterpreter.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObject.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandReturnObject.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValue.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueArch.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueBoolean.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueProperties.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueRegex.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueUUID.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/Options.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/Property.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Interpreter/ScriptInterpreter.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/Block.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTContext.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTImporter.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/ClangUtil.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/CompileUnit.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDecl.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDeclContext.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerType.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/DebugMacros.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/DeclVendor.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/Declaration.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/FuncUnwinders.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/Function.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/LineEntry.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/LineTable.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/ObjectFile.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/PostfixExpression.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/Symbol.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolContext.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolFile.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolVendor.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/Symtab.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/Type.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/TypeList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/TypeSystem.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindPlan.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindTable.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/Variable.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Symbol/VariableList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/ABI.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/DynamicLoader.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/Language.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/MemoryRegionInfo.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/Platform.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/Process.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/Queue.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/RemoteAwarePlatform.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/StackFrame.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/StopInfo.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/Target.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/TargetList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/Thread.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanPython.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepOut.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepRange.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Target/Unwind.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/AnsiTerminal.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/ArchSpec.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Args.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Baton.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Broadcaster.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/CompletionRequest.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Connection.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/ConstString.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/DataEncoder.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/DataExtractor.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/FileSpec.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Flags.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/IOObject.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Log.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Logging.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Predicate.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/ProcessInfo.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/RangeMap.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/RegularExpression.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Reproducer.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/ReproducerInstrumentation.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Scalar.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Status.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/Stream.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractor.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/StringLexer.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/StringList.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/StructuredData.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/UUID.h
  stable/12/contrib/llvm-project/lldb/include/lldb/Utility/VMRange.h
  stable/12/contrib/llvm-project/lldb/include/lldb/lldb-enumerations.h
  stable/12/contrib/llvm-project/lldb/include/lldb/lldb-forward.h
  stable/12/contrib/llvm-project/lldb/include/lldb/lldb-private-enumerations.h
  stable/12/contrib/llvm-project/lldb/include/lldb/lldb-private-interfaces.h
  stable/12/contrib/llvm-project/lldb/source/API/SBAddress.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBBreakpoint.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBBreakpointLocation.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBBreakpointName.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBBreakpointOptionCommon.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBCommandInterpreter.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBCommandReturnObject.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBCompileUnit.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBDebugger.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBDeclaration.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBEvent.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBFileSpec.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBFrame.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBHostOS.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBInstruction.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBInstructionList.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBLineEntry.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBModule.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBProcess.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBReproducer.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBReproducerPrivate.h
  stable/12/contrib/llvm-project/lldb/source/API/SBStream.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBStringList.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBSymbolContext.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBTarget.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBThread.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBThreadPlan.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBType.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBTypeCategory.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SBValue.cpp
  stable/12/contrib/llvm-project/lldb/source/API/SystemInitializerFull.cpp
  stable/12/contrib/llvm-project/lldb/source/API/Utils.h
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/Breakpoint.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointIDList.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointList.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointLocation.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointOptions.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolver.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverName.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/Watchpoint.cpp
  stable/12/contrib/llvm-project/lldb/source/Breakpoint/WatchpointOptions.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandCompletions.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectApropos.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectDisassemble.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectGUI.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectMemory.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectMultiword.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectProcess.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectRegister.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectThread.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectType.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectType.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectVersion.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.h
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
  stable/12/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.h
  stable/12/contrib/llvm-project/lldb/source/Commands/Options.td
  stable/12/contrib/llvm-project/lldb/source/Commands/OptionsBase.td
  stable/12/contrib/llvm-project/lldb/source/Core/Address.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/AddressRange.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/AddressResolverFileLine.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/AddressResolverName.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/Communication.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/Debugger.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/Disassembler.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/DumpDataExtractor.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/FileLineResolver.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/FileSpecList.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/FormatEntity.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/Highlighter.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/IOHandler.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/Mangled.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/Module.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ModuleList.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/PluginManager.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/SearchFilter.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/Section.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/SourceManager.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/StreamFile.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/Value.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ValueObject.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ValueObjectCast.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ValueObjectChild.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ValueObjectConstResult.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ValueObjectDynamicValue.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ValueObjectMemory.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ValueObjectRegister.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ValueObjectSyntheticFilter.cpp
  stable/12/contrib/llvm-project/lldb/source/Core/ValueObjectVariable.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/DataVisualization.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/FormatCache.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/FormatClasses.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/FormatManager.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/FormattersHelpers.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/LanguageCategory.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/TypeCategory.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/TypeCategoryMap.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/TypeFormat.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/ValueObjectPrinter.cpp
  stable/12/contrib/llvm-project/lldb/source/DataFormatters/VectorType.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/DWARFExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/DiagnosticManager.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/Expression.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/ExpressionVariable.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/FunctionCaller.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/IRExecutionUnit.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/IRInterpreter.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/IRMemoryMap.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/LLVMUserExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/Materializer.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/REPL.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/UserExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Expression/UtilityFunction.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/Editline.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/File.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/FileCache.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/FileSystem.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/Host.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/HostInfoBase.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/HostNativeThreadBase.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/MainLoop.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/NativeProcessProtocol.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/NativeRegisterContext.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/PseudoTerminal.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/Socket.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/SocketAddress.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/TCPSocket.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/Terminal.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/UDPSocket.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/common/XML.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/netbsd/Host.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/posix/HostInfoPosix.cpp
  stable/12/contrib/llvm-project/lldb/source/Host/posix/PipePosix.cpp
  stable/12/contrib/llvm-project/lldb/source/Initialization/SystemInitializerCommon.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/CommandAlias.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/CommandInterpreter.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/CommandObject.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/CommandObjectScript.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/CommandReturnObject.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionArgParser.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionGroupArchitecture.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionGroupFormat.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionGroupOutputFile.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPlatform.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionGroupUUID.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionGroupVariable.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValue.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueArch.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueBoolean.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueDictionary.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueEnumeration.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpec.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueLanguage.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueProperties.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueRegex.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/OptionValueUUID.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/Options.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/Property.cpp
  stable/12/contrib/llvm-project/lldb/source/Interpreter/ScriptInterpreter.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ModuleDependencyCollector.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSArray.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSError.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSException.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSString.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/MachException.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/AuxVector.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFTypeUnit.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
  stable/12/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
  stable/12/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/ArmUnwindInfo.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/Block.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/ClangASTContext.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/ClangASTImporter.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/ClangUtil.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/CompactUnwindInfo.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/CompileUnit.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/CompilerDecl.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/CompilerDeclContext.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/CompilerType.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/CxxModuleHandler.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/DWARFCallFrameInfo.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/DeclVendor.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/Declaration.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/FuncUnwinders.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/Function.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/LineEntry.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/LineTable.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFile.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFileMacOSX.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/ObjectFile.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/PostfixExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/Symbol.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/SymbolContext.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/SymbolFile.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/SymbolVendor.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/Symtab.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/Type.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/TypeMap.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/TypeSystem.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/UnwindPlan.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/UnwindTable.cpp
  stable/12/contrib/llvm-project/lldb/source/Symbol/Variable.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ABI.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ExecutionContext.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/Language.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/LanguageRuntime.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/Memory.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ModuleCache.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/Platform.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/Process.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/RegisterContext.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/RemoteAwarePlatform.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/SectionLoadList.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/StackFrame.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/StackFrameList.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/StackFrameRecognizer.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/StopInfo.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/Target.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/TargetList.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/Thread.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadList.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlan.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanBase.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanCallFunction.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanCallUserExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanPython.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanRunToAddress.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanShouldStopHere.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInRange.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInstruction.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOut.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverRange.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanStepRange.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanStepThrough.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanStepUntil.cpp
  stable/12/contrib/llvm-project/lldb/source/Target/ThreadPlanTracer.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/ArchSpec.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Args.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Baton.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Broadcaster.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/CompletionRequest.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/ConstString.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/DataBufferLLVM.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/DataEncoder.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/DataExtractor.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Environment.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/FileSpec.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/LLDBAssert.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Listener.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Log.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Logging.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/ProcessInfo.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/RegisterValue.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/RegularExpression.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Reproducer.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Scalar.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/SelectHelper.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Status.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/Stream.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/StreamString.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/StringExtractor.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/StringLexer.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/StringList.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/StructuredData.cpp
  stable/12/contrib/llvm-project/lldb/source/Utility/VMRange.cpp
  stable/12/contrib/llvm-project/lldb/tools/argdumper/argdumper.cpp
  stable/12/contrib/llvm-project/lldb/tools/compact-unwind/compact-unwind-dumper.c
  stable/12/contrib/llvm-project/lldb/tools/driver/Driver.cpp
  stable/12/contrib/llvm-project/lldb/tools/driver/Options.td
  stable/12/contrib/llvm-project/lldb/tools/driver/Platform.h
  stable/12/contrib/llvm-project/lldb/tools/lldb-instr/Instrument.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-server/LLDBServerUtilities.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-server/lldb-gdbserver.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-server/lldb-platform.cpp
  stable/12/contrib/llvm-project/lldb/tools/lldb-server/lldb-server.cpp
  stable/12/contrib/llvm-project/lldb/utils/TableGen/LLDBOptionDefEmitter.cpp
  stable/12/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGen.cpp
  stable/12/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenBackends.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Analysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/BitReader.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/BitWriter.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Comdat.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Core.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/DebugInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Disassembler.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Error.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/ErrorHandling.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/ExecutionEngine.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/IRReader.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Initialization.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/LinkTimeOptimizer.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Linker.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Object.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/OrcBindings.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Remarks.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Support.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Target.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/TargetMachine.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Transforms/Coroutines.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Transforms/IPO.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Transforms/InstCombine.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Transforms/Scalar.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Transforms/Utils.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Transforms/Vectorize.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/Types.h
  stable/12/contrib/llvm-project/llvm/include/llvm-c/lto.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/APFloat.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/APInt.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/Any.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/ArrayRef.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/BitVector.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/DenseMap.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/DenseMapInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/FoldingSet.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/Hashing.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/ImmutableSet.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/IntervalMap.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/Optional.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/PointerIntPair.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/PointerUnion.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/SCCIterator.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/STLExtras.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/SmallBitVector.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/SmallPtrSet.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/SmallSet.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/SmallVector.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/Statistic.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/StringExtras.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/StringMap.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/StringRef.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/StringSet.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/TinyPtrVector.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/Triple.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/Twine.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/iterator.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ADT/iterator_range.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/AliasAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/AliasSetTracker.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/AssumptionCache.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/CFG.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/CGSCCPassManager.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/CaptureTracking.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/DivergenceAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/GlobalsModRef.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/GuardUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/InstructionSimplify.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/IntervalPartition.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/LazyCallGraph.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/LazyValueInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/Loads.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAnalysisManager.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfoImpl.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/LoopPass.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryBuiltins.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSA.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSAUpdater.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/MustExecute.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/Passes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/PhiValues.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/PostDominators.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/PtrUseVisitor.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/RegionInfoImpl.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolution.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/TargetLibraryInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/TypeMetadataUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/Local.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/ValueTracking.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/VecFuncs.def
  stable/12/contrib/llvm-project/llvm/include/llvm/Analysis/VectorUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/COFF.h
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.def
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.h
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELF.h
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/AArch64.def
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MachO.h
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Magic.h
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Minidump.h
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MinidumpConstants.def
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Wasm.h
  stable/12/contrib/llvm-project/llvm/include/llvm/BinaryFormat/XCOFF.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeAnalyzer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeWriter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Bitcode/LLVMBitCodes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Bitstream/BitCodes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Bitstream/BitstreamReader.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/AccelTable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/AsmPrinter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/BasicTTIImpl.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/CallingConvLower.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/CommandFlags.inc
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/DFAPacketizer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/DIE.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/FastISel.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/FaultMaps.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/ISDOpcodes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveInterval.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervals.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/LivePhysRegs.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRegUnits.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveStacks.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveVariables.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/LowLevelType.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIParser.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRYamlMapping.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBasicBlock.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineDominators.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFrameInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFunction.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstr.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBundle.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineMemOperand.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineModuleInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOperand.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOutliner.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePipeliner.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePostDominators.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegionInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineScheduler.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/Math.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/ParallelCG.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/Passes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/PseudoSourceValue.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/Register.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterClassInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterPressure.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterScavenging.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAG.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGISel.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/SlotIndexes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/StackMaps.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/StackProtector.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TailDuplicator.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetCallingConv.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetFrameLowering.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetInstrInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLowering.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetPassConfig.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSchedule.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td
  stable/12/contrib/llvm-project/llvm/include/llvm/CodeGen/VirtRegMap.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DIContext.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileEntry.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FunctionInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineEntry.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Range.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/StringTable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/GenericError.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
  stable/12/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Demangle/Demangle.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Demangle/DemangleConfig.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Demangle/ItaniumDemangle.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangle.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Demangle/Utility.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITSymbol.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Core.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Argument.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Attributes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Attributes.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/AutoUpgrade.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/BasicBlock.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/CallSite.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/CallingConv.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Constant.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/ConstantRange.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Constants.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/DIBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/DataLayout.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoFlags.def
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoMetadata.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/DerivedTypes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/DiagnosticInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Dominators.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Function.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/GlobalAlias.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/GlobalIFunc.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/GlobalIndirectSymbol.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/GlobalObject.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/GlobalValue.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/GlobalVariable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IRBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IRPrintingPasses.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/InstVisitor.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/InstrTypes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Instruction.def
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Instruction.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Instructions.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicInst.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAArch64.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsARM.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsBPF.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsMips.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsNVVM.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsRISCV.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsX86.td
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/LLVMContext.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManager.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManagers.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/MDBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Metadata.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Module.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndex.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/NoFolder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Operator.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/PassManager.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/PassManagerInternal.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/PatternMatch.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/RemarkStreamer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/RuntimeLibcalls.def
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Type.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/User.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/Value.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/ValueHandle.h
  stable/12/contrib/llvm-project/llvm/include/llvm/IR/ValueMap.h
  stable/12/contrib/llvm-project/llvm/include/llvm/InitializePasses.h
  stable/12/contrib/llvm-project/llvm/include/llvm/LTO/Config.h
  stable/12/contrib/llvm-project/llvm/include/llvm/LTO/LTO.h
  stable/12/contrib/llvm-project/llvm/include/llvm/LTO/LTOBackend.h
  stable/12/contrib/llvm-project/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
  stable/12/contrib/llvm-project/llvm/include/llvm/LinkAllPasses.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCAsmBackend.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoELF.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoXCOFF.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCAsmMacro.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCAssembler.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCCodeEmitter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCContext.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCDirectives.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCDwarf.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCELFStreamer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCExpr.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCFixup.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCFixupKindInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCFragment.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCInst.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCInstPrinter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCInstrAnalysis.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCInstrDesc.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCMachObjectWriter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCObjectFileInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCObjectStreamer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCParser/AsmCond.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCRegisterInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCSection.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCSectionXCOFF.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCStreamer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCSubtargetInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCSymbol.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolWasm.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolXCOFF.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptions.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCWasmObjectWriter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/MCXCOFFStreamer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/StringTableBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MC/SubtargetFeature.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/Context.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RegisterFile.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ResourceManager.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RetireControlUnit.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/Instruction.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/SourceMgr.h
  stable/12/contrib/llvm-project/llvm/include/llvm/MCA/Stages/RetireStage.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/Archive.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/Binary.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/COFF.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/ELF.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/ELFObjectFile.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/ELFTypes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/MachO.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/MachOUniversal.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/Minidump.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/ObjectFile.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/StackMapParser.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/Wasm.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/WindowsResource.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Object/XCOFFObjectFile.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ObjectYAML/DWARFYAML.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ELFYAML.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MachOYAML.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MinidumpYAML.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ObjectYAML/WasmYAML.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ObjectYAML/YAML.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Pass.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Passes/PassBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProf.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfData.inc
  stable/12/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfReader.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProf.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfReader.h
  stable/12/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfWriter.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/Remark.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkFormat.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkParser.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkSerializer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkStringTable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.def
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/AMDGPUMetadata.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/ARMTargetParser.def
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/AlignOf.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Allocator.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamArray.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamReader.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamRef.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/CRC.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/CodeGen.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/CommandLine.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Compiler.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/CrashRecoveryContext.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/DataExtractor.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Endian.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Error.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/FileCheck.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/FileOutputBuffer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/FileSystem.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/FileUtilities.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Format.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/FormatVariadic.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTree.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTreeConstruction.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/GlobPattern.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Host.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/InitLLVM.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/JSON.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/KnownBits.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/LineIterator.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/LockFileManager.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/LowLevelTypeImpl.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/MachineValueType.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/ManagedStatic.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/MathExtras.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Memory.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Mutex.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/OnDiskHashTable.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Parallel.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Path.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Process.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/RWMutex.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Regex.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Registry.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/SHA1.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Signals.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/SourceMgr.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/SpecialCaseList.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/SwapByteOrder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/TargetOpcodes.def
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/TargetRegistry.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Threading.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/TimeProfiler.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Timer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/TrailingObjects.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/UnicodeCharRanges.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/VersionTuple.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/VirtualFileSystem.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/Win64EH.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/X86TargetParser.def
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/YAMLTraits.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/circular_raw_ostream.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/raw_ostream.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Support/type_traits.h
  stable/12/contrib/llvm-project/llvm/include/llvm/TableGen/Error.h
  stable/12/contrib/llvm-project/llvm/include/llvm/TableGen/Record.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/GenericOpcodes.td
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Target.td
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/Target.td
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/TargetCallingConv.td
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/TargetItinerary.td
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/TargetLoweringObjectFile.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/TargetMachine.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/TargetOptions.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/TargetSchedule.td
  stable/12/contrib/llvm-project/llvm/include/llvm/Target/TargetSelectionDAG.td
  stable/12/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Architecture.h
  stable/12/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/ArchitectureSet.h
  stable/12/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/InterfaceFile.h
  stable/12/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Symbol.h
  stable/12/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/TextAPIReader.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Coroutines.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/Attributor.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/FunctionImport.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Float2Int.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVN.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LICM.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Reassociate.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/SCCP.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/GuardUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Local.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/LoopUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SizeOpts.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ValueMapper.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
  stable/12/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecordProducer.h
  stable/12/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecords.h
  stable/12/contrib/llvm-project/llvm/include/llvm/XRay/FileHeaderReader.h
  stable/12/contrib/llvm-project/llvm/include/llvm/module.modulemap
  stable/12/contrib/llvm-project/llvm/lib/Analysis/AliasAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/AliasSetTracker.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/Analysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/AssumptionCache.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/BasicAliasAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/BlockFrequencyInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/BranchProbabilityInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/CFG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/CFGPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/CallGraph.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/CallPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/CaptureTracking.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/ConstantFolding.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/CostModel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/Delinearization.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/DemandedBits.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/DependenceAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/DivergenceAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/DomPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/DomTreeUpdater.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/DominanceFrontier.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/GlobalsModRef.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/GuardUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/IVDescriptors.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/IVUsers.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/InlineCost.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/InstCount.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/InstructionSimplify.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/IntervalPartition.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LazyCallGraph.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LazyValueInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/Lint.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/Loads.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LoopAccessAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LoopAnalysisManager.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LoopInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LoopPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/MemDepPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/MemDerefPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/MemoryBuiltins.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/MemoryLocation.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/MemorySSA.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/MemorySSAUpdater.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/MustExecute.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/OrderedInstructions.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/PhiValues.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/PostDominators.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/ProfileSummaryInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/RegionInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/RegionPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolution.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/ScopedNoAliasAA.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/StackSafetyAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/TargetLibraryInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/TargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/TypeMetadataUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/ValueTracking.cpp
  stable/12/contrib/llvm-project/llvm/lib/Analysis/VectorUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/AsmParser/LLLexer.cpp
  stable/12/contrib/llvm-project/llvm/lib/AsmParser/LLParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/AsmParser/LLParser.h
  stable/12/contrib/llvm-project/llvm/lib/AsmParser/LLToken.h
  stable/12/contrib/llvm-project/llvm/lib/AsmParser/Parser.cpp
  stable/12/contrib/llvm-project/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
  stable/12/contrib/llvm-project/llvm/lib/BinaryFormat/Dwarf.cpp
  stable/12/contrib/llvm-project/llvm/lib/BinaryFormat/Magic.cpp
  stable/12/contrib/llvm-project/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
  stable/12/contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
  stable/12/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Bitstream/Reader/BitstreamReader.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/Analysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/AtomicExpandPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/BranchFolding.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/BranchFolding.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/BranchRelaxation.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/BreakFalseDeps.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/CFIInstrInserter.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/CalcSpillWeights.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/CallingConvLower.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/CodeGen.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/CodeGenPrepare.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/DFAPacketizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/DetectDeadLanes.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/DwarfEHPrepare.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/EarlyIfConversion.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/EdgeBundles.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ExecutionDomainFix.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ExpandMemCmp.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ExpandReductions.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/FEntryInserter.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/FaultMaps.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/FinalizeISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/FuncletLayout.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GCMetadata.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GCRootLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Utils.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/GlobalMerge.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/HardwareLoops.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/IfConversion.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ImplicitNullChecks.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/IndirectBrExpandPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/InlineSpiller.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/InterleavedAccessPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/IntrinsicLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LLVMTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LexicalScopes.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugVariables.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveInterval.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveIntervals.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LivePhysRegs.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeCalc.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeEdit.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeShrink.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveRegMatrix.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveRegUnits.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveStacks.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LiveVariables.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LowLevelType.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/LowerEmuTLS.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MILexer.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MILexer.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MIParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MIRPrintingPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineBasicBlock.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineBlockPlacement.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineCSE.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineCombiner.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineCopyPropagation.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineDominators.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineFrameInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineFunction.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineFunctionPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineInstr.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineInstrBundle.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineLICM.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineModuleInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineOperand.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineOutliner.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachinePipeliner.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachinePostDominators.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineRegionInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineSSAUpdater.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineScheduler.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineSink.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineTraceMetrics.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MachineVerifier.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/MacroFusion.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/OptimizePHIs.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/PHIElimination.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ParallelCG.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/PatchableFunction.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/PeepholeOptimizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/PostRASchedulerList.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/PrologEpilogInserter.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/PseudoSourceValue.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegAllocBase.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegAllocFast.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegAllocGreedy.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegAllocPBQP.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegisterClassInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegisterCoalescer.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegisterPressure.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RegisterScavenging.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SafeStack.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ShrinkWrap.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SjLjEHPrepare.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SlotIndexes.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SpillPlacement.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SplitKit.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SplitKit.h
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/StackColoring.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/StackMaps.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/StackProtector.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/StackSlotColoring.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SwiftErrorValueTracking.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/SwitchLoweringUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TailDuplication.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TailDuplicator.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TargetInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TargetLoweringBase.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TargetOptionsImpl.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TargetPassConfig.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TargetRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TargetSchedule.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/UnreachableBlockElim.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/ValueTypes.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/VirtRegMap.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/WasmEHPrepare.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/WinEHPrepare.cpp
  stable/12/contrib/llvm-project/llvm/lib/CodeGen/XRayInstrumentation.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAddressRange.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FunctionInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/InlineInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Range.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/GenericError.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/Hash.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
  stable/12/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
  stable/12/contrib/llvm-project/llvm/lib/Demangle/ItaniumDemangle.cpp
  stable/12/contrib/llvm-project/llvm/lib/Demangle/MicrosoftDemangle.cpp
  stable/12/contrib/llvm-project/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/BasicGOTAndStubsBuilder.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/EHFrameSupportImpl.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLink.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkGeneric.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkGeneric.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_x86_64.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/CompileUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Core.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Layer.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ObjectLinkingLayer.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
  stable/12/contrib/llvm-project/llvm/lib/ExecutionEngine/TargetSelect.cpp
  stable/12/contrib/llvm-project/llvm/lib/FuzzMutate/FuzzerCLI.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/AsmWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/AttributeImpl.h
  stable/12/contrib/llvm-project/llvm/lib/IR/Attributes.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/AutoUpgrade.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/BasicBlock.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/ConstantFold.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/ConstantRange.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Constants.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/ConstantsContext.h
  stable/12/contrib/llvm-project/llvm/lib/IR/Core.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/DIBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/DataLayout.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/DebugInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/DebugInfoMetadata.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/DiagnosticInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Dominators.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Function.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Globals.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/IRBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/IRPrintingPasses.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/InlineAsm.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Instruction.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Instructions.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/IntrinsicInst.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/LLVMContext.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/LLVMContextImpl.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/LLVMContextImpl.h
  stable/12/contrib/llvm-project/llvm/lib/IR/LegacyPassManager.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/MDBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Metadata.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Module.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/ModuleSummaryIndex.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Pass.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/RemarkStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/SafepointIRVerifier.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Type.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/TypeFinder.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/User.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Value.cpp
  stable/12/contrib/llvm-project/llvm/lib/IR/Verifier.cpp
  stable/12/contrib/llvm-project/llvm/lib/LTO/Caching.cpp
  stable/12/contrib/llvm-project/llvm/lib/LTO/LTO.cpp
  stable/12/contrib/llvm-project/llvm/lib/LTO/LTOBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/LTO/LTOCodeGenerator.cpp
  stable/12/contrib/llvm-project/llvm/lib/LTO/LTOModule.cpp
  stable/12/contrib/llvm-project/llvm/lib/LTO/SummaryBasedOptimizations.cpp
  stable/12/contrib/llvm-project/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
  stable/12/contrib/llvm-project/llvm/lib/Linker/IRMover.cpp
  stable/12/contrib/llvm-project/llvm/lib/Linker/LinkModules.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/ELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCAsmBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCAsmInfoELF.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCAsmInfoXCOFF.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCAsmMacro.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCAsmStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCAssembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCContext.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCDisassembler/Disassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCDwarf.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCELFStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCExpr.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCFragment.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCInstrAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCMachOStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCObjectFileInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCObjectStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCParser/AsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCParser/COFFAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCParser/WasmAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCSection.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCSectionXCOFF.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCSubtargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCSymbolELF.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCTargetOptions.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCValue.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCWasmStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCWinCOFFStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MCXCOFFStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/MachObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/StringTableBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/WasmObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/WinCOFFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/MC/XCOFFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/Context.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/LSUnit.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/RegisterFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/RetireControlUnit.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/Scheduler.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/InstrBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/Instruction.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/Stages/DispatchStage.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/Stages/EntryStage.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/Stages/ExecuteStage.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/Stages/InstructionTables.cpp
  stable/12/contrib/llvm-project/llvm/lib/MCA/Stages/RetireStage.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/Archive.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/ArchiveWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/Binary.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/COFFObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/Decompressor.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/ELF.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/ELFObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/MachOObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/MachOUniversal.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/Minidump.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/ModuleSymbolTable.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/Object.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/ObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/RelocationResolver.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/SymbolicFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/WasmObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/WindowsResource.cpp
  stable/12/contrib/llvm-project/llvm/lib/Object/XCOFFObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/DWARFEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/ELFYAML.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/MachOYAML.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpYAML.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/WasmYAML.cpp
  stable/12/contrib/llvm-project/llvm/lib/ObjectYAML/YAML.cpp
  stable/12/contrib/llvm-project/llvm/lib/Option/ArgList.cpp
  stable/12/contrib/llvm-project/llvm/lib/Passes/PassBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/Passes/PassRegistry.def
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/GCOV.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/InstrProf.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/InstrProfReader.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/InstrProfWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/SampleProf.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/SampleProfReader.cpp
  stable/12/contrib/llvm-project/llvm/lib/ProfileData/SampleProfWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Remarks/RemarkFormat.cpp
  stable/12/contrib/llvm-project/llvm/lib/Remarks/RemarkParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Remarks/RemarkStringTable.cpp
  stable/12/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkParser.h
  stable/12/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkSerializer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/AArch64TargetParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/AMDGPUMetadata.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/APFloat.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/APInt.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/ARMAttributeParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/ARMTargetParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/BinaryStreamReader.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/CRC.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/CachePruning.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/CodeGenCoverage.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/CommandLine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/CrashRecoveryContext.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/DataExtractor.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Error.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/ErrorHandling.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/FileCheck.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/FileOutputBuffer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/FileUtilities.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/GlobPattern.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Host.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/InitLLVM.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/JSON.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/KnownBits.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/LockFileManager.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/ManagedStatic.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/MemoryBuffer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Parallel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Path.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/PrettyStackTrace.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Process.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/RWMutex.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/RandomNumberGenerator.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Regex.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/SHA1.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Signals.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Signposts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/SpecialCaseList.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Statistic.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/StringExtras.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/StringRef.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/TargetParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Threading.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/TimeProfiler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Timer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Triple.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Unix/Memory.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Unix/Path.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Unix/Process.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Unix/Program.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Unix/Signals.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Unix/Threading.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Unix/Unix.h
  stable/12/contrib/llvm-project/llvm/lib/Support/VirtualFileSystem.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/DynamicLibrary.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/Host.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/Memory.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/Path.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/Process.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/Program.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/Signals.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/ThreadLocal.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/Threading.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/Windows/explicit_symbols.inc
  stable/12/contrib/llvm-project/llvm/lib/Support/YAMLParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/YAMLTraits.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/Z3Solver.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/raw_ostream.cpp
  stable/12/contrib/llvm-project/llvm/lib/Support/regcomp.c
  stable/12/contrib/llvm-project/llvm/lib/TableGen/Error.cpp
  stable/12/contrib/llvm-project/llvm/lib/TableGen/Main.cpp
  stable/12/contrib/llvm-project/llvm/lib/TableGen/Record.cpp
  stable/12/contrib/llvm-project/llvm/lib/TableGen/SetTheory.cpp
  stable/12/contrib/llvm-project/llvm/lib/TableGen/TGLexer.cpp
  stable/12/contrib/llvm-project/llvm/lib/TableGen/TGLexer.h
  stable/12/contrib/llvm-project/llvm/lib/TableGen/TGParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/TableGen/TGParser.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FastISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SIMDInstrOpt.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Subtarget.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SystemOperands.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/SVEInstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPU.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPU.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/BUFInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/CaymanInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/DSInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/FLATInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNNSAReassign.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegPressure.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/MIMGInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600FrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600InstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600Instructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIDefines.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIPreAllocateWWMRegs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIProgramInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SMInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/SOPInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUPALMetadata.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP1Instructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP2Instructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP3Instructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOPCInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOPInstructions.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCBranchFinalize.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCOptAddrMode.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/ARCTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/A15SDOptimizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARM.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARM.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMBasicBlockInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMFastISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMHazardRecognizer.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrMVE.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrNEON.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrThumb.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrThumb2.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrVFP.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMMCInstLower.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMParallelDSP.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMPredicates.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMScheduleA9.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMScheduleM4.td
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetMachine.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/MLxExpansionPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1InstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2InstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AVRTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPF.h
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFAbstractMemberAccess.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFCORE.h
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFMIChecking.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFMIPeephole.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFMISimplifyPatchable.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFSubtarget.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BPFTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BTF.h
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BTFDebug.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/BTFDebug.h
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/BitTracker.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonDepOperands.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPatterns.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPseudo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSubtarget.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVExtract.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFCopy.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFGraph.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFLiveness.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFRegisters.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFRegisters.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430FrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430InstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430Subtarget.h
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Mips.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Mips64InstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallingConv.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsCondMov.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsFastISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrFPU.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsLegalizerInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsMCInstLower.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsMCInstLower.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBanks.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsScheduleGeneric.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsScheduleP5600.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsSubtarget.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsSubtarget.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/MipsTargetStreamer.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/ManagedStringPool.h
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTX.h
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/NVVMReflect.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/P9InstrResources.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCBranchCoalescing.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFastISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrHTM.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrVSX.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCV.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCV.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallingConv.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSubtarget.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSubtarget.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetMachine.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/LeonPasses.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstr64Bit.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZ.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZCallingConv.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZCallingConv.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrFP.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrVector.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZOperands.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZOperators.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZPatterns.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZPostRewrite.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZProcessors.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZSchedule.td
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTDC.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/TargetLoweringObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/TargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/TargetMachineC.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssembly.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrBulkMemory.td
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86Operand.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86AsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86AsmPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86CallLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86CallLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86CallingConv.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86CmovConversion.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86CondBrFolding.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86DomainReassignment.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86EvexToVex.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ExpandPseudo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86FastISel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86FixupBWInsts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86FixupLEAs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86FixupSetCC.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86FloatingPoint.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ISelLowering.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86IndirectBranchTracking.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InsertPrefetch.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrAVX512.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrArithmetic.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrBuilder.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrCMovSetCC.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrCompiler.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrControl.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrExtension.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFMA.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFPStack.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFoldTables.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFoldTables.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFormats.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrMMX.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrMPX.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrSSE.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrSystem.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrTSX.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstrXOP.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86InstructionSelector.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86IntrinsicsInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86LegalizerInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86LegalizerInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86MCInstLower.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86MacroFusion.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86PadShortFunction.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86PfmCounters.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterBankInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86RetpolineThunks.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86SchedBroadwell.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86SchedHaswell.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86SchedPredicates.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSandyBridge.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSkylakeClient.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSkylakeServer.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86Schedule.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleAtom.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleBdVer2.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleBtVer2.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleSLM.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver1.td
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86Subtarget.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86Subtarget.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86TargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86TargetMachine.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86TargetObjectFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86TargetObjectFile.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86TargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86VZeroUpper.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/X86/X86WinEHState.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.h
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreISelLowering.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreInstrInfo.h
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
  stable/12/contrib/llvm-project/llvm/lib/TextAPI/MachO/Architecture.cpp
  stable/12/contrib/llvm-project/llvm/lib/TextAPI/MachO/InterfaceFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/TextAPI/MachO/Symbol.cpp
  stable/12/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStub.cpp
  stable/12/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStubCommon.cpp
  stable/12/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStubCommon.h
  stable/12/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
  stable/12/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroElide.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroInstr.h
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroInternal.h
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Coroutines/Coroutines.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/Attributor.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/BlockExtractor.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/ConstantMerge.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/FunctionImport.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalDCE.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalOpt.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalSplit.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/IPO.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/InlineSimple.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/Inliner.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/Internalize.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/LoopExtractor.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/MergeFunctions.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/PartialInlining.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/PruneEH.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/SCCP.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/SampleProfile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/StripSymbols.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAtomicRMW.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/CFGMST.h
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrOrderFile.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PoisonChecking.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/PtrState.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/ADCE.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/BDCE.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/ConstantProp.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/DCE.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/DivRemPairs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/Float2Int.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVN.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVNHoist.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVNSink.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/GuardWidening.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/InstSimplifyPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/JumpThreading.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LICM.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopFuse.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopPredication.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopRotation.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopSink.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerWidenableCondition.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/MergeICmps.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/NewGVN.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/Reassociate.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/SCCP.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/SROA.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/Scalar.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/Scalarizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/Sink.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/CloneFunction.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/CloneModule.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeExtractor.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/Evaluator.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/FlattenCFG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/GuardUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/InlineFunction.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/InstructionNamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LCSSA.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/Local.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopSimplify.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnroll.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopVersioning.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LowerInvoke.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/LowerSwitch.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/Mem2Reg.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/MetaRenamer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/ModuleUtils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/PredicateInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/SizeOpts.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/Utils.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/VNCoercion.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlan.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlan.h
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanValue.h
  stable/12/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
  stable/12/contrib/llvm-project/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
  stable/12/contrib/llvm-project/llvm/lib/XRay/FDRRecordProducer.cpp
  stable/12/contrib/llvm-project/llvm/lib/XRay/FileHeaderReader.cpp
  stable/12/contrib/llvm-project/llvm/lib/XRay/InstrumentationMap.cpp
  stable/12/contrib/llvm-project/llvm/lib/XRay/Profile.cpp
  stable/12/contrib/llvm-project/llvm/lib/XRay/RecordInitializer.cpp
  stable/12/contrib/llvm-project/llvm/lib/XRay/Trace.cpp
  stable/12/contrib/llvm-project/llvm/tools/bugpoint/BugDriver.h
  stable/12/contrib/llvm-project/llvm/tools/bugpoint/CrashDebugger.cpp
  stable/12/contrib/llvm-project/llvm/tools/bugpoint/ExtractFunction.cpp
  stable/12/contrib/llvm-project/llvm/tools/bugpoint/OptimizerDriver.cpp
  stable/12/contrib/llvm-project/llvm/tools/bugpoint/ToolRunner.cpp
  stable/12/contrib/llvm-project/llvm/tools/bugpoint/bugpoint.cpp
  stable/12/contrib/llvm-project/llvm/tools/llc/llc.cpp
  stable/12/contrib/llvm-project/llvm/tools/lli/RemoteJITUtils.h
  stable/12/contrib/llvm-project/llvm/tools/lli/lli.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-ar/llvm-ar.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-as/llvm-as.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-cov/CodeCoverage.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-cov/CoverageExporterJson.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-cov/SourceCoverageView.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-cov/TestingSupport.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-cxxmap/llvm-cxxmap.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-diff/DifferenceEngine.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-dis/llvm-dis.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-dwarfdump/Statistics.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-extract/llvm-extract.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-link/llvm-link.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-lto/llvm-lto.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-lto2/llvm-lto2.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-mc/llvm-mc.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegion.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/DispatchStatistics.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/ResourcePressureView.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/SchedulerStatistics.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/SummaryView.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-mca/llvm-mca.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-modextract/llvm-modextract.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-nm/llvm-nm.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Object.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Reader.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Writer.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/ObjcopyOpts.td
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/StripOpts.td
  stable/12/contrib/llvm-project/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objdump/COFFDump.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objdump/ELFDump.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objdump/MachODump.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-profdata/llvm-profdata.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/COFFDumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/ELFDumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/MachODumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/WasmDumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/Win64EHDumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/XCOFFDumper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.h
  stable/12/contrib/llvm-project/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-stress/llvm-stress.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-xray/func-id-helper.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-xray/xray-account.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-xray/xray-converter.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-xray/xray-extract.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-xray/xray-fdr-dump.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph-diff.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph.cpp
  stable/12/contrib/llvm-project/llvm/tools/llvm-xray/xray-stacks.cpp
  stable/12/contrib/llvm-project/llvm/tools/opt/NewPMDriver.cpp
  stable/12/contrib/llvm-project/llvm/tools/opt/PassPrinters.cpp
  stable/12/contrib/llvm-project/llvm/tools/opt/PassPrinters.h
  stable/12/contrib/llvm-project/llvm/tools/opt/opt.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/AsmMatcherEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/AsmWriterEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/AsmWriterInst.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CallingConvEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeEmitterGen.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenMapTable.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenSchedule.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/DAGISelEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcher.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherGen.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/DisassemblerEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/GlobalISelEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/InstrDocsEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/InstrInfoEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/IntrinsicEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/OptParserEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/RegisterInfoEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/SearchableTableEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/SequenceToOffsetTable.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/SubtargetEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/TableGen.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/TableGenBackends.h
  stable/12/contrib/llvm-project/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/X86DisassemblerTables.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/X86FoldTablesEmitter.cpp
  stable/12/contrib/llvm-project/llvm/utils/TableGen/X86RecognizableInstr.cpp
  stable/12/contrib/llvm-project/openmp/CREDITS.txt
  stable/12/contrib/llvm-project/openmp/runtime/src/extractExternal.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/i18n/en_US.txt
  stable/12/contrib/llvm-project/openmp/runtime/src/include/omp_lib.f.var
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_affinity.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_affinity.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_alloc.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_atomic.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_barrier.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_csupport.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_dispatch.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_dispatch_hier.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_ftn_entry.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_ftn_os.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_global.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_gsupport.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_itt.inl
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_lock.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_lock.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_os.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_platform.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_runtime.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_settings.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_stats.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_str.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_stub.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_taskdeps.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_tasking.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_wait_release.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_getpid.h
  stable/12/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_malloc.h
  stable/12/contrib/llvm-project/openmp/runtime/src/ompt-event-specific.h
  stable/12/contrib/llvm-project/openmp/runtime/src/ompt-general.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/ompt-internal.h
  stable/12/contrib/llvm-project/openmp/runtime/src/ompt-specific.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/ompt-specific.h
  stable/12/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify.h
  stable/12/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_config.h
  stable/12/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/legacy/ittnotify.h
  stable/12/contrib/llvm-project/openmp/runtime/src/z_Linux_asm.S
  stable/12/contrib/llvm-project/openmp/runtime/src/z_Linux_util.cpp
  stable/12/contrib/llvm-project/openmp/runtime/src/z_Windows_NT_util.cpp
  stable/12/etc/mtree/BSD.debug.dist
  stable/12/etc/mtree/BSD.usr.dist
  stable/12/lib/clang/freebsd_cc_version.h
  stable/12/lib/clang/headers/Makefile
  stable/12/lib/clang/include/VCSVersion.inc
  stable/12/lib/clang/include/clang/Basic/Version.inc
  stable/12/lib/clang/include/clang/Config/config.h
  stable/12/lib/clang/include/lld/Common/Version.inc
  stable/12/lib/clang/include/lldb/Host/Config.h
  stable/12/lib/clang/include/llvm/Config/config.h
  stable/12/lib/clang/include/llvm/Config/llvm-config.h
  stable/12/lib/clang/include/llvm/Support/VCSRevision.h
  stable/12/lib/clang/libclang/Makefile
  stable/12/lib/clang/liblldb/Makefile
  stable/12/lib/clang/libllvm/Makefile
  stable/12/lib/clang/libllvmminimal/Makefile
  stable/12/lib/clang/llvm.build.mk
  stable/12/lib/libc++/Makefile
  stable/12/lib/libclang_rt/Makefile.inc
  stable/12/lib/libclang_rt/asan-preinit/Makefile
  stable/12/lib/libclang_rt/asan/Makefile
  stable/12/lib/libclang_rt/asan_cxx/Makefile
  stable/12/lib/libclang_rt/asan_dynamic/Makefile
  stable/12/lib/libclang_rt/cfi/Makefile
  stable/12/lib/libclang_rt/cfi_diag/Makefile
  stable/12/lib/libclang_rt/dd/Makefile
  stable/12/lib/libclang_rt/fuzzer/Makefile
  stable/12/lib/libclang_rt/fuzzer_no_main/Makefile
  stable/12/lib/libclang_rt/include/Makefile
  stable/12/lib/libclang_rt/msan/Makefile
  stable/12/lib/libclang_rt/msan_cxx/Makefile
  stable/12/lib/libclang_rt/profile/Makefile
  stable/12/lib/libclang_rt/safestack/Makefile
  stable/12/lib/libclang_rt/stats/Makefile
  stable/12/lib/libclang_rt/stats_client/Makefile
  stable/12/lib/libclang_rt/tsan/Makefile
  stable/12/lib/libclang_rt/tsan_cxx/Makefile
  stable/12/lib/libclang_rt/ubsan_minimal/Makefile
  stable/12/lib/libclang_rt/ubsan_standalone/Makefile
  stable/12/lib/libclang_rt/ubsan_standalone_cxx/Makefile
  stable/12/lib/libclang_rt/xray-basic/Makefile
  stable/12/lib/libclang_rt/xray-fdr/Makefile
  stable/12/lib/libclang_rt/xray-profiling/Makefile
  stable/12/lib/libclang_rt/xray/Makefile
  stable/12/lib/libcompiler_rt/Makefile.inc
  stable/12/lib/libomp/Makefile
  stable/12/share/mk/bsd.linker.mk
  stable/12/sys/sys/param.h
  stable/12/tools/build/mk/OptionalObsoleteFiles.inc
  stable/12/usr.bin/clang/clang-tblgen/Makefile
  stable/12/usr.bin/clang/lld/Makefile
  stable/12/usr.bin/clang/lldb-tblgen/Makefile
  stable/12/usr.bin/clang/lldb/Makefile
  stable/12/usr.bin/clang/llvm-objcopy/Makefile
  stable/12/usr.bin/clang/llvm-pdbutil/Makefile
  stable/12/usr.bin/clang/llvm-tblgen/Makefile
  stable/12/usr.bin/clang/opt/Makefile
Directory Properties:
  stable/12/   (props changed)
  stable/12/contrib/llvm-project/clang/   (props changed)
  stable/12/contrib/llvm-project/compiler-rt/   (props changed)
  stable/12/contrib/llvm-project/libcxx/   (props changed)
  stable/12/contrib/llvm-project/libunwind/   (props changed)
  stable/12/contrib/llvm-project/lld/   (props changed)
  stable/12/contrib/llvm-project/lldb/   (props changed)
  stable/12/contrib/llvm-project/llvm/   (props changed)
  stable/12/contrib/llvm-project/openmp/   (props changed)

Modified: stable/12/Makefile.inc1
==============================================================================
--- stable/12/Makefile.inc1	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/Makefile.inc1	Fri May  1 20:20:23 2020	(r360545)
@@ -902,7 +902,7 @@ _sanity_check: .PHONY .MAKE
 # tree changes, particularly with respect to removing source files and
 # replacing generated files.  Handle these cases here in an ad-hoc fashion.
 _cleanobj_fast_depend_hack: .PHONY
-# Syscall stubs rewritten in C and obsolete MD assembly implementations
+	@echo ">>> Deleting stale dependencies...";
 # Date      SVN Rev  Syscalls/Changes
 # 20170624  r320278  fstat fstatat fstatfs getdirentries getfsstat statfs
 # 20180404  r332048  sigreturn
@@ -971,6 +971,7 @@ _cleanobj_fast_depend_hack: .PHONY
 		echo "Removing stale wpa dependencies"; \
 		rm -f ${OBJTOP}/usr.sbin/wpa/*/.depend*; \
 	fi
+# Syscall stubs rewritten in C and obsolete MD assembly implementations
 # 20191112  r354634  removal of opensolaris_atomic.S
 .if ${MACHINE} != i386
 .for f in opensolaris_atomic
@@ -982,6 +983,16 @@ _cleanobj_fast_depend_hack: .PHONY
 	fi
 .endfor
 .endif
+# 20200310  r358851  rename of openmp's ittnotify_static.c to .cpp
+.for f in ittnotify_static
+	@if [ -e "${OBJTOP}/lib/libomp/.depend.${f}.pico" ] && \
+	    egrep -qw '${f}\.c' ${OBJTOP}/lib/libomp/.depend.${f}.pico; then \
+		echo "Removing stale dependencies for ${f}"; \
+		rm -f ${OBJTOP}/lib/libomp/.depend.${f}.* \
+		   ${OBJTOP}/obj-lib32/lib/libomp/.depend.${f}.* \
+		   ${LIBCOMPAT:D${LIBCOMPAT_OBJTOP}/lib/libomp/.depend.${f}.*}; \
+	fi
+.endfor
 
 _worldtmp: .PHONY
 	@echo

Modified: stable/12/ObsoleteFiles.inc
==============================================================================
--- stable/12/ObsoleteFiles.inc	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/ObsoleteFiles.inc	Fri May  1 20:20:23 2020	(r360545)
@@ -38,6 +38,243 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20200501: new clang import which bumps version from 9.0.1 to 10.0.0.
+OLD_FILES+=usr/lib/clang/9.0.1/include/cuda_wrappers/algorithm
+OLD_FILES+=usr/lib/clang/9.0.1/include/cuda_wrappers/complex
+OLD_FILES+=usr/lib/clang/9.0.1/include/cuda_wrappers/new
+OLD_DIRS+=usr/lib/clang/9.0.1/include/cuda_wrappers
+OLD_FILES+=usr/lib/clang/9.0.1/include/openmp_wrappers/__clang_openmp_math.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/openmp_wrappers/__clang_openmp_math_declares.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/openmp_wrappers/cmath
+OLD_FILES+=usr/lib/clang/9.0.1/include/openmp_wrappers/math.h
+OLD_DIRS+=usr/lib/clang/9.0.1/include/openmp_wrappers
+OLD_FILES+=usr/lib/clang/9.0.1/include/ppc_wrappers/emmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/ppc_wrappers/mm_malloc.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/ppc_wrappers/mmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/ppc_wrappers/xmmintrin.h
+OLD_DIRS+=usr/lib/clang/9.0.1/include/ppc_wrappers
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/allocator_interface.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/asan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/common_interface_defs.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/coverage_interface.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/dfsan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/hwasan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/linux_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/lsan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/msan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/netbsd_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/scudo_interface.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/tsan_interface.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/tsan_interface_atomic.h
+OLD_DIRS+=usr/lib/clang/9.0.1/include/sanitizer
+OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_builtin_vars.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_cmath.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_complex_builtins.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_device_functions.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_intrinsics.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_libdevice_declares.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_math_forward_declares.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_runtime_wrapper.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__stddef_max_align_t.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__wmmintrin_aes.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/__wmmintrin_pclmul.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/adxintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/altivec.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/ammintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/arm64intr.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/arm_acle.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/arm_fp16.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/arm_neon.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/armintr.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx2intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512bf16intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512bitalgintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512bwintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512cdintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512dqintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512erintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512fintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512ifmaintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512ifmavlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512pfintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vbmi2intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vbmiintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vbmivlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlbf16intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlbitalgintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlbwintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlcdintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vldqintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlvbmi2intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlvnniintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlvp2intersectintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vnniintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vp2intersectintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vpopcntdqintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vpopcntdqvlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/avxintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/bmi2intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/bmiintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/cetintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/cldemoteintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/clflushoptintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/clwbintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/clzerointrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/cpuid.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/emmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/enqcmdintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/f16cintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/fma4intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/fmaintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/fxsrintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/gfniintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/htmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/htmxlintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/ia32intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/immintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/invpcidintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/lwpintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/lzcntintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/mm3dnow.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/mm_malloc.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/mmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/module.modulemap
+OLD_FILES+=usr/lib/clang/9.0.1/include/movdirintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/msa.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/mwaitxintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/nmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/opencl-c-base.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/opencl-c.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/pconfigintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/pkuintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/pmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/popcntintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/prfchwintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/ptwriteintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/rdseedintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/rtmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/s390intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/sgxintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/shaintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/smmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/tbmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/tmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/vadefs.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/vaesintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/vecintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/vpclmulqdqintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/waitpkgintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/wbnoinvdintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/wmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/x86intrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/xmmintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/xopintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/xsavecintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/xsaveintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/xsaveoptintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/xsavesintrin.h
+OLD_FILES+=usr/lib/clang/9.0.1/include/xtestintrin.h
+OLD_DIRS+=usr/lib/clang/9.0.1/include
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-aarch64.so
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-arm.so
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-armhf.so
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-i386.so
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-x86_64.so
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.dd-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.dd-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.fuzzer-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.fuzzer-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.msan-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.msan-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.msan_cxx-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.msan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-powerpc.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-powerpc64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.safestack-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.safestack-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.tsan-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-basic-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-basic-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-basic-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-basic-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-fdr-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-fdr-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-fdr-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-fdr-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-profiling-aarch64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-profiling-arm.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-profiling-armhf.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-profiling-x86_64.a
+OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-x86_64.a
+OLD_DIRS+=usr/lib/clang/9.0.1/lib/freebsd
+OLD_DIRS+=usr/lib/clang/9.0.1/lib
+OLD_DIRS+=usr/lib/clang/9.0.1
+
 # 20200115: gcc libssp removed
 OLD_FILES+=usr/include/ssp/ssp.h
 OLD_FILES+=usr/include/ssp/stdio.h

Modified: stable/12/UPDATING
==============================================================================
--- stable/12/UPDATING	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/UPDATING	Fri May  1 20:20:23 2020	(r360545)
@@ -16,6 +16,12 @@ from older versions of FreeBSD, try WITHOUT_CLANG and 
 the tip of head, and then rebuild without this option. The bootstrap process
 from older version of current across the gcc/clang cutover is a bit fragile.
 
+20200501:
+	Clang, llvm, lld, lldb, compiler-rt, libc++, libunwind and openmp have
+	been upgraded to 10.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.
+
 20200430:
 	The root certificates of the Mozilla CA Certificate Store have been
 	imported into the base system and can be managed with the certctl(8)

Modified: stable/12/contrib/llvm-project/FREEBSD-Xlist
==============================================================================
--- stable/12/contrib/llvm-project/FREEBSD-Xlist	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/contrib/llvm-project/FREEBSD-Xlist	Fri May  1 20:20:23 2020	(r360545)
@@ -2,7 +2,9 @@
 .arcconfig
 .clang-format
 .clang-tidy
+.git-blame-ignore-revs
 .gitignore
+CONTRIBUTING.md
 README.md
 clang/.arcconfig
 clang/.clang-format
@@ -70,6 +72,7 @@ clang/lib/Tooling/DependencyScanning/CMakeLists.txt
 clang/lib/Tooling/Inclusions/CMakeLists.txt
 clang/lib/Tooling/Refactoring/CMakeLists.txt
 clang/lib/Tooling/Syntax/CMakeLists.txt
+clang/lib/Tooling/Transformer/CMakeLists.txt
 clang/runtime/
 clang/test/
 clang/tools/CMakeLists.txt
@@ -92,6 +95,7 @@ clang/tools/clang-format-vs/
 clang/tools/clang-fuzzer/
 clang/tools/clang-import-test/
 clang/tools/clang-offload-bundler/
+clang/tools/clang-offload-wrapper/
 clang/tools/clang-refactor/
 clang/tools/clang-rename/
 clang/tools/clang-scan-deps/
@@ -121,6 +125,7 @@ clang/utils/bash-autocomplete.sh
 clang/utils/builtin-defines.c
 clang/utils/check_cfc/
 clang/utils/clangdiag.py
+clang/utils/convert_arm_neon.py
 clang/utils/creduce-clang-crash.py
 clang/utils/find-unused-diagnostics.sh
 clang/utils/hmaptool/
@@ -159,9 +164,11 @@ compiler-rt/lib/fuzzer/scripts/
 compiler-rt/lib/fuzzer/standalone/
 compiler-rt/lib/fuzzer/tests/
 compiler-rt/lib/gwp_asan/CMakeLists.txt
+compiler-rt/lib/gwp_asan/scripts/
 compiler-rt/lib/gwp_asan/tests/
 compiler-rt/lib/hwasan/.clang-format
 compiler-rt/lib/hwasan/CMakeLists.txt
+compiler-rt/lib/hwasan/scripts/
 compiler-rt/lib/interception/.clang-format
 compiler-rt/lib/interception/CMakeLists.txt
 compiler-rt/lib/interception/tests/
@@ -180,6 +187,7 @@ compiler-rt/lib/sanitizer_common/scripts/
 compiler-rt/lib/sanitizer_common/tests/
 compiler-rt/lib/scudo/CMakeLists.txt
 compiler-rt/lib/scudo/standalone/CMakeLists.txt
+compiler-rt/lib/scudo/standalone/benchmarks/
 compiler-rt/lib/scudo/standalone/tests/
 compiler-rt/lib/stats/CMakeLists.txt
 compiler-rt/lib/tsan/.clang-format
@@ -196,10 +204,12 @@ compiler-rt/lib/ubsan_minimal/CMakeLists.txt
 compiler-rt/lib/xray/CMakeLists.txt
 compiler-rt/lib/xray/tests/
 compiler-rt/test/
+compiler-rt/tools/
 compiler-rt/unittests/
 compiler-rt/utils/
 compiler-rt/www/
 debuginfo-tests/
+libc/
 libclc/
 libcxx/.arcconfig
 libcxx/.clang-format
@@ -217,6 +227,7 @@ libcxx/include/CMakeLists.txt
 libcxx/include/__config_site.in
 libcxx/include/support/
 libcxx/lib/
+libcxx/src/CMakeLists.txt
 libcxx/src/support/solaris/
 libcxx/src/support/win32/
 libcxx/test/
@@ -230,9 +241,21 @@ libunwind/cmake/
 libunwind/docs/
 libunwind/src/CMakeLists.txt
 libunwind/test/
+lld/CMakeLists.txt
+lld/COFF/CMakeLists.txt
+lld/Common/CMakeLists.txt
+lld/ELF/CMakeLists.txt
 lld/MinGW/
 lld/cmake/
+lld/docs/CMakeLists.txt
+lld/lib/CMakeLists.txt
+lld/lib/Core/CMakeLists.txt
+lld/lib/Driver/CMakeLists.txt
+lld/lib/ReaderWriter/CMakeLists.txt
+lld/lib/ReaderWriter/MachO/CMakeLists.txt
+lld/lib/ReaderWriter/YAML/CMakeLists.txt
 lld/test/
+lld/tools/lld/CMakeLists.txt
 lld/unittests/
 lld/utils/
 lld/wasm/
@@ -241,7 +264,6 @@ lldb/.clang-format
 lldb/.gitignore
 lldb/CMakeLists.txt
 lldb/CODE_OWNERS.txt
-lldb/INSTALL.txt
 lldb/cmake/
 lldb/docs/.htaccess
 lldb/docs/CMakeLists.txt
@@ -259,14 +281,10 @@ lldb/docs/structured_data/
 lldb/docs/testsuite/
 lldb/docs/use/
 lldb/examples/
-lldb/include/lldb/Host/Config.h
 lldb/include/lldb/Host/android/
 lldb/include/lldb/Host/linux/
 lldb/include/lldb/Host/macosx/
 lldb/include/lldb/Host/windows/
-lldb/lit/
-lldb/lldb.xcodeproj/
-lldb/lldb.xcworkspace/
 lldb/packages/
 lldb/resources/
 lldb/scripts/
@@ -288,6 +306,7 @@ lldb/source/Plugins/ABI/CMakeLists.txt
 lldb/source/Plugins/ABI/MacOSX-arm/CMakeLists.txt
 lldb/source/Plugins/ABI/MacOSX-arm64/CMakeLists.txt
 lldb/source/Plugins/ABI/MacOSX-i386/CMakeLists.txt
+lldb/source/Plugins/ABI/SysV-arc/CMakeLists.txt
 lldb/source/Plugins/ABI/SysV-arm/CMakeLists.txt
 lldb/source/Plugins/ABI/SysV-arm64/CMakeLists.txt
 lldb/source/Plugins/ABI/SysV-hexagon/CMakeLists.txt
@@ -377,6 +396,7 @@ lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt
 lldb/source/Plugins/Process/mach-core/
 lldb/source/Plugins/Process/minidump/CMakeLists.txt
 lldb/source/Plugins/ScriptInterpreter/CMakeLists.txt
+lldb/source/Plugins/ScriptInterpreter/Lua/CMakeLists.txt
 lldb/source/Plugins/ScriptInterpreter/None/CMakeLists.txt
 lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt
 lldb/source/Plugins/StructuredData/CMakeLists.txt
@@ -405,11 +425,9 @@ lldb/tools/darwin-debug/
 lldb/tools/darwin-threads/
 lldb/tools/debugserver/
 lldb/tools/driver/CMakeLists.txt
-lldb/tools/driver/lldb-Info.plist
+lldb/tools/driver/lldb-Info.plist.in
 lldb/tools/intel-features/
 lldb/tools/lldb-instr/CMakeLists.txt
-lldb/tools/lldb-mi/CMakeLists.txt
-lldb/tools/lldb-mi/lldb-Info.plist
 lldb/tools/lldb-perf/
 lldb/tools/lldb-server/CMakeLists.txt
 lldb/tools/lldb-test/
@@ -417,14 +435,10 @@ lldb/tools/lldb-vscode/
 lldb/unittests/
 lldb/use_lldb_suite_root.py
 lldb/utils/TableGen/CMakeLists.txt
-lldb/utils/git-svn/
 lldb/utils/lit-cpuid/
 lldb/utils/lldb-dotest/
 lldb/utils/lui/
-lldb/utils/misc/
-lldb/utils/sync-source/
 lldb/utils/test/
-lldb/utils/vim-lldb/
 llgo/
 llvm/.arcconfig
 llvm/.clang-format
@@ -477,6 +491,8 @@ llvm/lib/CodeGen/MIRParser/LLVMBuild.txt
 llvm/lib/CodeGen/README.txt
 llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt
 llvm/lib/CodeGen/SelectionDAG/LLVMBuild.txt
+llvm/lib/DWARFLinker/CMakeLists.txt
+llvm/lib/DWARFLinker/LLVMBuild.txt
 llvm/lib/DebugInfo/CMakeLists.txt
 llvm/lib/DebugInfo/CodeView/CMakeLists.txt
 llvm/lib/DebugInfo/CodeView/LLVMBuild.txt
@@ -507,10 +523,16 @@ llvm/lib/ExecutionEngine/OProfileJIT/CMakeLists.txt
 llvm/lib/ExecutionEngine/OProfileJIT/LLVMBuild.txt
 llvm/lib/ExecutionEngine/Orc/CMakeLists.txt
 llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt
+llvm/lib/ExecutionEngine/OrcError/CMakeLists.txt
+llvm/lib/ExecutionEngine/OrcError/LLVMBuild.txt
 llvm/lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt
 llvm/lib/ExecutionEngine/PerfJITEvents/LLVMBuild.txt
 llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt
 llvm/lib/ExecutionEngine/RuntimeDyld/LLVMBuild.txt
+llvm/lib/Frontend/CMakeLists.txt
+llvm/lib/Frontend/LLVMBuild.txt
+llvm/lib/Frontend/OpenMP/CMakeLists.txt
+llvm/lib/Frontend/OpenMP/LLVMBuild.txt
 llvm/lib/FuzzMutate/CMakeLists.txt
 llvm/lib/FuzzMutate/LLVMBuild.txt
 llvm/lib/Fuzzer/
@@ -713,6 +735,14 @@ llvm/lib/Target/SystemZ/MCTargetDesc/CMakeLists.txt
 llvm/lib/Target/SystemZ/MCTargetDesc/LLVMBuild.txt
 llvm/lib/Target/SystemZ/TargetInfo/CMakeLists.txt
 llvm/lib/Target/SystemZ/TargetInfo/LLVMBuild.txt
+llvm/lib/Target/VE/CMakeLists.txt
+llvm/lib/Target/VE/InstPrinter/CMakeLists.txt
+llvm/lib/Target/VE/InstPrinter/LLVMBuild.txt
+llvm/lib/Target/VE/LLVMBuild.txt
+llvm/lib/Target/VE/MCTargetDesc/CMakeLists.txt
+llvm/lib/Target/VE/MCTargetDesc/LLVMBuild.txt
+llvm/lib/Target/VE/TargetInfo/CMakeLists.txt
+llvm/lib/Target/VE/TargetInfo/LLVMBuild.txt
 llvm/lib/Target/WebAssembly/AsmParser/CMakeLists.txt
 llvm/lib/Target/WebAssembly/AsmParser/LLVMBuild.txt
 llvm/lib/Target/WebAssembly/CMakeLists.txt
@@ -762,6 +792,8 @@ llvm/lib/ToolDrivers/llvm-lib/CMakeLists.txt
 llvm/lib/ToolDrivers/llvm-lib/LLVMBuild.txt
 llvm/lib/Transforms/AggressiveInstCombine/CMakeLists.txt
 llvm/lib/Transforms/AggressiveInstCombine/LLVMBuild.txt
+llvm/lib/Transforms/CFGuard/CMakeLists.txt
+llvm/lib/Transforms/CFGuard/LLVMBuild.txt
 llvm/lib/Transforms/CMakeLists.txt
 llvm/lib/Transforms/Coroutines/CMakeLists.txt
 llvm/lib/Transforms/Coroutines/LLVMBuild.txt
@@ -835,6 +867,7 @@ llvm/tools/llvm-exegesis/
 llvm/tools/llvm-extract/CMakeLists.txt
 llvm/tools/llvm-extract/LLVMBuild.txt
 llvm/tools/llvm-go/
+llvm/tools/llvm-ifs/
 llvm/tools/llvm-isel-fuzzer/
 llvm/tools/llvm-itanium-demangle-fuzzer/
 llvm/tools/llvm-jitlink/
@@ -871,6 +904,7 @@ llvm/tools/llvm-profdata/LLVMBuild.txt
 llvm/tools/llvm-rc/
 llvm/tools/llvm-readobj/CMakeLists.txt
 llvm/tools/llvm-readobj/LLVMBuild.txt
+llvm/tools/llvm-reduce/
 llvm/tools/llvm-rtdyld/CMakeLists.txt
 llvm/tools/llvm-rtdyld/LLVMBuild.txt
 llvm/tools/llvm-shlib/
@@ -894,6 +928,7 @@ llvm/tools/remarks-shlib/
 llvm/tools/sancov/
 llvm/tools/sanstats/
 llvm/tools/verify-uselistorder/
+llvm/tools/vfabi-demangle-fuzzer/
 llvm/tools/xcode-toolchain/
 llvm/tools/yaml2obj/
 llvm/unittests/
@@ -910,12 +945,14 @@ llvm/utils/Misc/
 llvm/utils/PerfectShuffle/
 llvm/utils/Reviewing/
 llvm/utils/TableGen/CMakeLists.txt
+llvm/utils/TableGen/GlobalISel/CMakeLists.txt
 llvm/utils/TableGen/LLVMBuild.txt
 llvm/utils/TableGen/tdtags
 llvm/utils/Target/
 llvm/utils/UpdateCMakeLists.pl
 llvm/utils/UpdateTestChecks/
 llvm/utils/abtest.py
+llvm/utils/add_argument_names.py
 llvm/utils/benchmark/
 llvm/utils/bisect
 llvm/utils/bisect-skip-count
@@ -953,6 +990,7 @@ llvm/utils/llvm-build/
 llvm/utils/llvm-compilers-check
 llvm/utils/llvm-gisel-cov.py
 llvm/utils/llvm-lit/
+llvm/utils/llvm-locstats/
 llvm/utils/llvm-native-gxx
 llvm/utils/llvm.grm
 llvm/utils/llvmdo
@@ -980,6 +1018,7 @@ llvm/utils/vim/
 llvm/utils/vscode/
 llvm/utils/wciia.py
 llvm/utils/yaml-bench/
+mlir/
 openmp/.arcconfig
 openmp/.gitignore
 openmp/CMakeLists.txt
@@ -994,6 +1033,7 @@ openmp/runtime/doc/
 openmp/runtime/src/CMakeLists.txt
 openmp/runtime/test/
 openmp/runtime/tools/
+openmp/tools/
 openmp/www/
 parallel-libs/
 polly/

Modified: stable/12/contrib/llvm-project/clang/include/clang-c/BuildSystem.h
==============================================================================
--- stable/12/contrib/llvm-project/clang/include/clang-c/BuildSystem.h	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/contrib/llvm-project/clang/include/clang-c/BuildSystem.h	Fri May  1 20:20:23 2020	(r360545)
@@ -14,13 +14,12 @@
 #ifndef LLVM_CLANG_C_BUILDSYSTEM_H
 #define LLVM_CLANG_C_BUILDSYSTEM_H
 
-#include "clang-c/Platform.h"
 #include "clang-c/CXErrorCode.h"
 #include "clang-c/CXString.h"
+#include "clang-c/ExternC.h"
+#include "clang-c/Platform.h"
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+LLVM_CLANG_C_EXTERN_C_BEGIN
 
 /**
  * \defgroup BUILD_SYSTEM Build system utilities
@@ -148,9 +147,7 @@ CINDEX_LINKAGE void clang_ModuleMapDescriptor_dispose(
  * @}
  */
 
-#ifdef __cplusplus
-}
-#endif
+LLVM_CLANG_C_EXTERN_C_END
 
 #endif /* CLANG_C_BUILD_SYSTEM_H */
 

Modified: stable/12/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h
==============================================================================
--- stable/12/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h	Fri May  1 20:20:23 2020	(r360545)
@@ -15,12 +15,11 @@
 #ifndef LLVM_CLANG_C_CXCOMPILATIONDATABASE_H
 #define LLVM_CLANG_C_CXCOMPILATIONDATABASE_H
 
-#include "clang-c/Platform.h"
 #include "clang-c/CXString.h"
+#include "clang-c/ExternC.h"
+#include "clang-c/Platform.h"
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+LLVM_CLANG_C_EXTERN_C_BEGIN
 
 /** \defgroup COMPILATIONDB CompilationDatabase functions
  * \ingroup CINDEX
@@ -169,8 +168,7 @@ clang_CompileCommand_getMappedSourceContent(CXCompileC
  * @}
  */
 
-#ifdef __cplusplus
-}
-#endif
+LLVM_CLANG_C_EXTERN_C_END
+
 #endif
 

Modified: stable/12/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h
==============================================================================
--- stable/12/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h	Fri May  1 20:20:23 2020	(r360545)
@@ -14,11 +14,10 @@
 #ifndef LLVM_CLANG_C_CXERRORCODE_H
 #define LLVM_CLANG_C_CXERRORCODE_H
 
+#include "clang-c/ExternC.h"
 #include "clang-c/Platform.h"
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+LLVM_CLANG_C_EXTERN_C_BEGIN
 
 /**
  * Error codes returned by libclang routines.
@@ -57,8 +56,7 @@ enum CXErrorCode {
   CXError_ASTReadError = 4
 };
 
-#ifdef __cplusplus
-}
-#endif
+LLVM_CLANG_C_EXTERN_C_END
+
 #endif
 

Modified: stable/12/contrib/llvm-project/clang/include/clang-c/CXString.h
==============================================================================
--- stable/12/contrib/llvm-project/clang/include/clang-c/CXString.h	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/contrib/llvm-project/clang/include/clang-c/CXString.h	Fri May  1 20:20:23 2020	(r360545)
@@ -14,11 +14,10 @@
 #ifndef LLVM_CLANG_C_CXSTRING_H
 #define LLVM_CLANG_C_CXSTRING_H
 
+#include "clang-c/ExternC.h"
 #include "clang-c/Platform.h"
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+LLVM_CLANG_C_EXTERN_C_BEGIN
 
 /**
  * \defgroup CINDEX_STRING String manipulation routines
@@ -64,8 +63,7 @@ CINDEX_LINKAGE void clang_disposeStringSet(CXStringSet
  * @}
  */
 
-#ifdef __cplusplus
-}
-#endif
+LLVM_CLANG_C_EXTERN_C_END
+
 #endif
 

Modified: stable/12/contrib/llvm-project/clang/include/clang-c/Documentation.h
==============================================================================
--- stable/12/contrib/llvm-project/clang/include/clang-c/Documentation.h	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/contrib/llvm-project/clang/include/clang-c/Documentation.h	Fri May  1 20:20:23 2020	(r360545)
@@ -15,11 +15,10 @@
 #ifndef LLVM_CLANG_C_DOCUMENTATION_H
 #define LLVM_CLANG_C_DOCUMENTATION_H
 
+#include "clang-c/ExternC.h"
 #include "clang-c/Index.h"
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+LLVM_CLANG_C_EXTERN_C_BEGIN
 
 /**
  * \defgroup CINDEX_COMMENT Comment introspection
@@ -182,7 +181,12 @@ enum CXCommentInlineCommandRenderKind {
    * Command argument should be rendered emphasized (typically italic
    * font).
    */
-  CXCommentInlineCommandRenderKind_Emphasized
+  CXCommentInlineCommandRenderKind_Emphasized,
+
+  /**
+   * Command argument should not be rendered (since it only defines an anchor).
+   */
+  CXCommentInlineCommandRenderKind_Anchor
 };
 
 /**
@@ -545,10 +549,7 @@ CINDEX_LINKAGE CXString clang_FullComment_getAsXML(CXC
  * @}
  */
 
-
-#ifdef __cplusplus
-}
-#endif
+LLVM_CLANG_C_EXTERN_C_END
 
 #endif /* CLANG_C_DOCUMENTATION_H */
 

Copied: stable/12/contrib/llvm-project/clang/include/clang-c/ExternC.h (from r358851, head/contrib/llvm-project/clang/include/clang-c/ExternC.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/12/contrib/llvm-project/clang/include/clang-c/ExternC.h	Fri May  1 20:20:23 2020	(r360545, copy of r358851, head/contrib/llvm-project/clang/include/clang-c/ExternC.h)
@@ -0,0 +1,39 @@
+/*===- clang-c/ExternC.h - Wrapper for 'extern "C"' ---------------*- C -*-===*\
+|*                                                                            *|
+|* Part of the LLVM Project, under the Apache License v2.0 with LLVM          *|
+|* Exceptions.                                                                *|
+|* See https://llvm.org/LICENSE.txt for license information.                  *|
+|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception                    *|
+|*                                                                            *|
+|*===----------------------------------------------------------------------===*|
+|*                                                                            *|
+|* This file defines an 'extern "C"' wrapper.                                 *|
+|*                                                                            *|
+\*===----------------------------------------------------------------------===*/
+
+#ifndef LLVM_CLANG_C_EXTERN_C_H
+#define LLVM_CLANG_C_EXTERN_C_H
+
+#ifdef __clang__
+#define LLVM_CLANG_C_STRICT_PROTOTYPES_BEGIN                                   \
+  _Pragma("clang diagnostic push")                                             \
+      _Pragma("clang diagnostic error \"-Wstrict-prototypes\"")
+#define LLVM_CLANG_C_STRICT_PROTOTYPES_END _Pragma("clang diagnostic pop")
+#else
+#define LLVM_CLANG_C_STRICT_PROTOTYPES_BEGIN
+#define LLVM_CLANG_C_STRICT_PROTOTYPES_END
+#endif
+
+#ifdef __cplusplus
+#define LLVM_CLANG_C_EXTERN_C_BEGIN                                            \
+  extern "C" {                                                                 \
+  LLVM_CLANG_C_STRICT_PROTOTYPES_BEGIN
+#define LLVM_CLANG_C_EXTERN_C_END                                              \
+  LLVM_CLANG_C_STRICT_PROTOTYPES_END                                           \
+  }
+#else
+#define LLVM_CLANG_C_EXTERN_C_BEGIN LLVM_CLANG_C_STRICT_PROTOTYPES_BEGIN
+#define LLVM_CLANG_C_EXTERN_C_END LLVM_CLANG_C_STRICT_PROTOTYPES_END
+#endif
+
+#endif

Copied: stable/12/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h (from r358851, head/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/12/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h	Fri May  1 20:20:23 2020	(r360545, copy of r358851, head/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h)
@@ -0,0 +1,32 @@
+/*===-- clang-c/FatalErrorHandler.h - Fatal Error Handling --------*- C -*-===*\
+|*                                                                            *|
+|* Part of the LLVM Project, under the Apache License v2.0 with LLVM          *|
+|* Exceptions.                                                                *|
+|* See https://llvm.org/LICENSE.txt for license information.                  *|
+|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception                    *|
+|*                                                                            *|
+\*===----------------------------------------------------------------------===*/
+
+#ifndef LLVM_CLANG_C_FATAL_ERROR_HANDLER_H
+#define LLVM_CLANG_C_FATAL_ERROR_HANDLER_H
+
+#include "clang-c/ExternC.h"
+
+LLVM_CLANG_C_EXTERN_C_BEGIN
+
+/**
+ * Installs error handler that prints error message to stderr and calls abort().
+ * Replaces currently installed error handler (if any).
+ */
+void clang_install_aborting_llvm_fatal_error_handler(void);
+
+/**
+ * Removes currently installed error handler (if any).
+ * If no error handler is intalled, the default strategy is to print error
+ * message to stderr and call exit(1).
+ */
+void clang_uninstall_llvm_fatal_error_handler(void);
+
+LLVM_CLANG_C_EXTERN_C_END
+
+#endif

Modified: stable/12/contrib/llvm-project/clang/include/clang-c/Index.h
==============================================================================
--- stable/12/contrib/llvm-project/clang/include/clang-c/Index.h	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/contrib/llvm-project/clang/include/clang-c/Index.h	Fri May  1 20:20:23 2020	(r360545)
@@ -18,10 +18,11 @@
 
 #include <time.h>
 
-#include "clang-c/Platform.h"
+#include "clang-c/BuildSystem.h"
 #include "clang-c/CXErrorCode.h"
 #include "clang-c/CXString.h"
-#include "clang-c/BuildSystem.h"
+#include "clang-c/ExternC.h"
+#include "clang-c/Platform.h"
 
 /**
  * The version constants for the libclang API.
@@ -51,9 +52,7 @@
     CINDEX_VERSION_MAJOR,                               \
     CINDEX_VERSION_MINOR)
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+LLVM_CLANG_C_EXTERN_C_BEGIN
 
 /** \defgroup CINDEX libclang: C Interface to Clang
  *
@@ -1356,7 +1355,12 @@ enum CXTranslationUnit_Flags {
    * the case where these warnings are not of interest, as for an IDE for
    * example, which typically shows only the diagnostics in the main file.
    */
-  CXTranslationUnit_IgnoreNonErrorsFromIncludedFiles = 0x4000
+  CXTranslationUnit_IgnoreNonErrorsFromIncludedFiles = 0x4000,
+
+  /**
+   * Tells the preprocessor not to skip excluded conditional blocks.
+   */
+  CXTranslationUnit_RetainExcludedConditionalBlocks = 0x8000
 };
 
 /**
@@ -2550,8 +2554,28 @@ enum CXCursorKind {
    */
   CXCursor_BuiltinBitCastExpr = 280,
 
-  CXCursor_LastStmt = CXCursor_BuiltinBitCastExpr,
+  /** OpenMP master taskloop directive.
+   */
+  CXCursor_OMPMasterTaskLoopDirective = 281,
 
+  /** OpenMP parallel master taskloop directive.
+   */
+  CXCursor_OMPParallelMasterTaskLoopDirective = 282,
+
+  /** OpenMP master taskloop simd directive.
+   */
+  CXCursor_OMPMasterTaskLoopSimdDirective      = 283,
+
+  /** OpenMP parallel master taskloop simd directive.
+   */
+  CXCursor_OMPParallelMasterTaskLoopSimdDirective      = 284,
+
+  /** OpenMP parallel master directive.
+   */
+  CXCursor_OMPParallelMasterDirective      = 285,
+
+  CXCursor_LastStmt = CXCursor_OMPParallelMasterDirective,
+
   /**
    * Cursor that represents the translation unit itself.
    *
@@ -6753,7 +6777,6 @@ CINDEX_LINKAGE unsigned clang_Type_visitFields(CXType 
  * @}
  */
 
-#ifdef __cplusplus
-}
-#endif
+LLVM_CLANG_C_EXTERN_C_END
+
 #endif

Modified: stable/12/contrib/llvm-project/clang/include/clang-c/Platform.h
==============================================================================
--- stable/12/contrib/llvm-project/clang/include/clang-c/Platform.h	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/contrib/llvm-project/clang/include/clang-c/Platform.h	Fri May  1 20:20:23 2020	(r360545)
@@ -14,10 +14,10 @@
 #ifndef LLVM_CLANG_C_PLATFORM_H
 #define LLVM_CLANG_C_PLATFORM_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+#include "clang-c/ExternC.h"
 
+LLVM_CLANG_C_EXTERN_C_BEGIN
+
 /* MSVC DLL import/export. */
 #ifdef _MSC_VER
   #ifdef _CINDEX_LIB_
@@ -39,7 +39,6 @@ extern "C" {
   #endif
 #endif
 
-#ifdef __cplusplus
-}
-#endif
+LLVM_CLANG_C_EXTERN_C_END
+
 #endif

Modified: stable/12/contrib/llvm-project/clang/include/clang/AST/APValue.h
==============================================================================
--- stable/12/contrib/llvm-project/clang/include/clang/AST/APValue.h	Fri May  1 19:07:26 2020	(r360544)
+++ stable/12/contrib/llvm-project/clang/include/clang/AST/APValue.h	Fri May  1 20:20:23 2020	(r360545)
@@ -53,6 +53,34 @@ class TypeInfoLValue { (public)
 
   void print(llvm::raw_ostream &Out, const PrintingPolicy &Policy) const;
 };
+
+/// Symbolic representation of a dynamic allocation.
+class DynamicAllocLValue {
+  unsigned Index;
+
+public:
+  DynamicAllocLValue() : Index(0) {}
+  explicit DynamicAllocLValue(unsigned Index) : Index(Index + 1) {}
+  unsigned getIndex() { return Index - 1; }
+
+  explicit operator bool() const { return Index != 0; }
+
+  void *getOpaqueValue() {
+    return reinterpret_cast<void *>(static_cast<uintptr_t>(Index)
+                                    << NumLowBitsAvailable);
+  }
+  static DynamicAllocLValue getFromOpaqueValue(void *Value) {
+    DynamicAllocLValue V;
+    V.Index = reinterpret_cast<uintptr_t>(Value) >> NumLowBitsAvailable;
+    return V;
+  }
+
+  static unsigned getMaxIndex() {
+    return (std::numeric_limits<unsigned>::max() >> NumLowBitsAvailable) - 1;
+  }
+
+  static constexpr int NumLowBitsAvailable = 3;
+};
 }
 
 namespace llvm {
@@ -67,6 +95,17 @@ template<> struct PointerLikeTypeTraits<clang::TypeInf
   // to include Type.h.
   static constexpr int NumLowBitsAvailable = 3;
 };
+
+template<> struct PointerLikeTypeTraits<clang::DynamicAllocLValue> {
+  static void *getAsVoidPointer(clang::DynamicAllocLValue V) {
+    return V.getOpaqueValue();
+  }
+  static clang::DynamicAllocLValue getFromVoidPointer(void *P) {
+    return clang::DynamicAllocLValue::getFromOpaqueValue(P);
+  }
+  static constexpr int NumLowBitsAvailable =
+      clang::DynamicAllocLValue::NumLowBitsAvailable;
+};
 }
 
 namespace clang {
@@ -97,13 +136,15 @@ class APValue { (public)
   };
 
   class LValueBase {
-    typedef llvm::PointerUnion<const ValueDecl *, const Expr *, TypeInfoLValue>
+    typedef llvm::PointerUnion<const ValueDecl *, const Expr *, TypeInfoLValue,
+                               DynamicAllocLValue>
         PtrTy;
 
   public:
     LValueBase() : Local{} {}
     LValueBase(const ValueDecl *P, unsigned I = 0, unsigned V = 0);
     LValueBase(const Expr *P, unsigned I = 0, unsigned V = 0);
+    static LValueBase getDynamicAlloc(DynamicAllocLValue LV, QualType Type);
     static LValueBase getTypeInfo(TypeInfoLValue LV, QualType TypeInfo);
 
     template <class T>
@@ -124,6 +165,7 @@ class APValue { (public)
     unsigned getCallIndex() const;
     unsigned getVersion() const;
     QualType getTypeInfoType() const;
+    QualType getDynamicAllocType() const;
 
     friend bool operator==(const LValueBase &LHS, const LValueBase &RHS);
     friend bool operator!=(const LValueBase &LHS, const LValueBase &RHS) {
@@ -140,6 +182,8 @@ class APValue { (public)
       LocalState Local;
       /// The type std::type_info, if this is a TypeInfoLValue.
       void *TypeInfoType;
+      /// The QualType, if this is a DynamicAllocLValue.

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



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