svn commit: r360822 - in releng/11.4: . contrib/llvm-project contrib/llvm-project/clang/include/clang contrib/llvm-project/clang/include/clang-c contrib/llvm-project/clang/include/clang/AST contrib...

Dimitry Andric dim at FreeBSD.org
Fri May 8 18:53:15 UTC 2020


Author: dim
Date: Fri May  8 18:53:06 2020
New Revision: 360822
URL: https://svnweb.freebsd.org/changeset/base/360822

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

Added:
  releng/11.4/contrib/llvm-project/clang/include/clang-c/ExternC.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang-c/ExternC.h
  releng/11.4/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/AbstractBasicReader.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/AbstractBasicReader.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/AbstractBasicWriter.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/AbstractBasicWriter.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/AbstractTypeReader.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/AbstractTypeReader.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/AbstractTypeWriter.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/AbstractTypeWriter.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/CXXRecordDeclDefinitionBits.def
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/CXXRecordDeclDefinitionBits.def
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ExprConcepts.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/ExprConcepts.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/OptionalDiagnostic.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/PropertiesBase.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/PropertiesBase.td
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/TypeProperties.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/TypeProperties.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Analysis/PathDiagnostic.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Analysis/PathDiagnostic.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/AArch64SVEACLETypes.def
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Basic/AArch64SVEACLETypes.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/ASTNode.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Basic/ASTNode.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/AttributeCommonInfo.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Basic/AttributeCommonInfo.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/BuiltinsBPF.def
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Basic/BuiltinsBPF.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/LangStandard.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Basic/LangStandard.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/LangStandards.def
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Basic/LangStandards.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/TypeNodes.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Basic/TypeNodes.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/arm_mve.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Basic/arm_mve.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/arm_mve_defs.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Basic/arm_mve_defs.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/OptionUtils.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Driver/OptionUtils.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Index/IndexingOptions.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Index/IndexingOptions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/PreprocessorExcludedConditionalDirectiveSkipMapping.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Lex/PreprocessorExcludedConditionalDirectiveSkipMapping.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/SemaConcept.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Sema/SemaConcept.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordReader.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordReader.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordWriter.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Serialization/ASTRecordWriter.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/ModuleFile.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Serialization/ModuleFile.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/TypeBitCodes.def
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Serialization/TypeBitCodes.def
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicCastInfo.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicCastInfo.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningFilesystem.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningFilesystem.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningService.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningService.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningTool.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningTool.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ModuleDepCollector.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Extract/SourceExtraction.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Extract/SourceExtraction.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Mutations.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Mutations.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
     - copied from r360784, stable/11/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
  releng/11.4/contrib/llvm-project/clang/lib/AST/ASTConcept.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/AST/ASTConcept.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ExprConcepts.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/AST/ExprConcepts.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/Interp/
     - copied from r360784, stable/11/contrib/llvm-project/clang/lib/AST/Interp/
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/PathDiagnostic.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Analysis/PathDiagnostic.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/LangStandards.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Basic/LangStandards.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Stack.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Basic/Stack.cpp
  releng/11.4/contrib/llvm-project/clang/lib/DirectoryWatcher/windows/
     - copied from r360784, stable/11/contrib/llvm-project/clang/lib/DirectoryWatcher/windows/
  releng/11.4/contrib/llvm-project/clang/lib/Driver/OptionUtils.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Driver/OptionUtils.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Driver/ToolChains/AIX.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Driver/ToolChains/Flang.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Driver/ToolChains/InterfaceStubs.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/arm_cmse.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Headers/arm_cmse.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/pmmintrin.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/pmmintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/smmintrin.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/smmintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/tmmintrin.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/tmmintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaConcept.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Sema/SemaConcept.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/ModuleFile.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Serialization/ModuleFile.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckPlacementNew.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckPlacementNew.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugIteratorModeling.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugIteratorModeling.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FuchsiaHandleChecker.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FuchsiaHandleChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InvalidatedIteratorChecker.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InvalidatedIteratorChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Iterator.h
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorModeling.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorModeling.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorRangeChecker.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorRangeChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MismatchedIteratorChecker.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MismatchedIteratorChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Yaml.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Yaml.h
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicType.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicType.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningFilesystem.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningFilesystem.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningService.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningService.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningTool.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningTool.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ModuleDepCollector.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/ExpandResponseFilesCompilationDatabase.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Tooling/ExpandResponseFilesCompilationDatabase.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Syntax/ComputeReplacements.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Tooling/Syntax/ComputeReplacements.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Syntax/Mutations.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Tooling/Syntax/Mutations.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Syntax/Synthesis.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/lib/Tooling/Syntax/Synthesis.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Transformer/
     - copied from r360784, stable/11/contrib/llvm-project/clang/lib/Tooling/Transformer/
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/utils/TableGen/ASTTableGen.h
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangASTPropertiesEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/utils/TableGen/ClangASTPropertiesEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangOpcodesEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/utils/TableGen/ClangOpcodesEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangTypeNodesEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/utils/TableGen/ClangTypeNodesEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/MveEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/clang/utils/TableGen/MveEmitter.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/include/fuzzer/
     - copied from r360784, stable/11/contrib/llvm-project/compiler-rt/include/fuzzer/
  releng/11.4/contrib/llvm-project/compiler-rt/include/profile/
     - copied from r360784, stable/11/contrib/llvm-project/compiler-rt/include/profile/
  releng/11.4/contrib/llvm-project/compiler-rt/include/sanitizer/ubsan_interface.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/include/sanitizer/ubsan_interface.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/fp_mode.c
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/fp_mode.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/arm/fp_mode.c
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/builtins/arm/fp_mode.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.c
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/builtins/fp_mode.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/i386/fp_mode.c
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/builtins/i386/fp_mode.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixtfti.c
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixtfti.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/gwp_asan/stack_trace_compressor.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_exceptions.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_exceptions.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_setjmp.S
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_setjmp.S
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_type_test.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_type_test.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/msan/msan.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_netbsd_compat.inc
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_netbsd_compat.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_glibc_version.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_glibc_version.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/stats/stats.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/stats/stats.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_libdispatch.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_libdispatch.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mach_vm.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mach_vm.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cpp
  releng/11.4/contrib/llvm-project/libcxx/include/execution
     - copied unchanged from r360784, stable/11/contrib/llvm-project/libcxx/include/execution
  releng/11.4/contrib/llvm-project/lld/Common/DWARF.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lld/Common/DWARF.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/ARMErrataFix.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lld/ELF/ARMErrataFix.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/ARMErrataFix.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lld/ELF/ARMErrataFix.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Common/DWARF.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lld/include/lld/Common/DWARF.h
  releng/11.4/contrib/llvm-project/lldb/bindings/
     - copied from r360784, stable/11/contrib/llvm-project/lldb/bindings/
  releng/11.4/contrib/llvm-project/lldb/docs/man/
     - copied from r360784, stable/11/contrib/llvm-project/lldb/docs/man/
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBFile.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/include/lldb/API/SBFile.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/IOHandlerCursesGUI.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/include/lldb/Core/IOHandlerCursesGUI.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/PropertiesBase.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/include/lldb/Core/PropertiesBase.td
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/LZMA.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/include/lldb/Host/LZMA.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionGroupPythonClassWithDict.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionGroupPythonClassWithDict.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/CallFrameInfo.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/include/lldb/Symbol/CallFrameInfo.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTMetadata.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTMetadata.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/GDBRemote.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/include/lldb/Utility/GDBRemote.h
  releng/11.4/contrib/llvm-project/lldb/source/API/SBFile.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/API/SBFile.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/CoreProperties.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Core/CoreProperties.td
  releng/11.4/contrib/llvm-project/lldb/source/Core/IOHandlerCursesGUI.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Core/IOHandlerCursesGUI.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/LZMA.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Host/common/LZMA.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/posix/FileSystemPosix.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Host/posix/FileSystemPosix.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/InterpreterProperties.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Interpreter/InterpreterProperties.td
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecList.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arc/
     - copied from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arc/
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/CppModuleConfiguration.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDBProperties.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDBProperties.td
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_i386.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextWindows_x86_64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
     - copied from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLogProperties.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLogProperties.td
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/ClangASTMetadata.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Symbol/ClangASTMetadata.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/MemoryRegionInfo.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Target/MemoryRegionInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/TargetProperties.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Target/TargetProperties.td
  releng/11.4/contrib/llvm-project/lldb/source/Utility/GDBRemote.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/source/Utility/GDBRemote.cpp
  releng/11.4/contrib/llvm-project/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
  releng/11.4/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.cpp
  releng/11.4/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/ExternC.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm-c/ExternC.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/DirectedGraph.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/ADT/DirectedGraph.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/EnumeratedArray.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/ADT/EnumeratedArray.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/FloatingPointMode.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/ADT/FloatingPointMode.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/DDG.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Analysis/DDG.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceGraphBuilder.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceGraphBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/LoopCacheAnalysis.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Analysis/LoopCacheAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/GISelKnownBits.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/GISelKnownBits.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRangeCalc.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRangeCalc.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRFormatter.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRFormatter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopUtils.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineSizeOpts.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineSizeOpts.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/ModuloSchedule.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/ModuloSchedule.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/NonRelocatableStringpool.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/CodeGen/NonRelocatableStringpool.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFLocationExpression.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFLocationExpression.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileWriter.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileWriter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymCreator.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymCreator.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymReader.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/GsymReader.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Header.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Header.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineTable.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineTable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LookupResult.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LookupResult.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_arm64.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_arm64.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/DebugUtils.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/DebugUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/SpeculateAnalyses.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Speculation.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Speculation.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Frontend/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Frontend/
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/ConstrainedOps.def
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/IR/ConstrainedOps.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/FPEnv.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/IR/FPEnv.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/FixedMetadataKinds.def
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/IR/FixedMetadataKinds.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCRegister.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/MC/MCRegister.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/CodeEmitter.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/MCA/CodeEmitter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/TapiFile.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Object/TapiFile.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/TapiUniversal.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Object/TapiUniversal.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ObjectYAML/yaml2obj.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/ObjectYAML/yaml2obj.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkContainer.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkContainer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkParser.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkParser.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkSerializer.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Remarks/BitstreamRemarkSerializer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkLinker.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkLinker.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/YAMLRemarkSerializer.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Remarks/YAMLRemarkSerializer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Alignment.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Support/Alignment.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Automaton.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Support/Automaton.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/FileCollector.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Support/FileCollector.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/TypeSize.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Support/TypeSize.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Windows/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Support/Windows/
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TableGen/Automaton.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/TableGen/Automaton.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Combine.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Combine.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Platform.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Platform.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Target.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Target.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/CFGuard.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/CFGuard.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/MergeFunctions.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/MergeFunctions.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/SanitizerCoverage.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/SanitizerCoverage.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerConstantIntrinsics.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerConstantIntrinsics.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerMatrixIntrinsics.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LowerMatrixIntrinsics.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeMoverUtils.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeMoverUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Debugify.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Debugify.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/InjectTLIMappings.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/InjectTLIMappings.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/MisExpect.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/MisExpect.h
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/DDG.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Analysis/DDG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/DependenceGraphBuilder.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Analysis/DependenceGraphBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LoopCacheAnalysis.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Analysis/LoopCacheAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/VFABIDemangling.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Analysis/VFABIDemangling.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/BinaryFormat/XCOFF.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/BinaryFormat/XCOFF.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/CFGuardLongjmp.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/CFGuardLongjmp.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/GISelKnownBits.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRNamerPass.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/MIRNamerPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/MIRVRegNamerUtils.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopUtils.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineSizeOpts.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/MachineSizeOpts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ModuloSchedule.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/ModuloSchedule.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/NonRelocatableStringpool.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/NonRelocatableStringpool.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TypePromotion.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/CodeGen/TypePromotion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DWARFLinker/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/lib/DWARFLinker/
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFLocationExpression.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFLocationExpression.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FileWriter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FileWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymReader.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/GsymReader.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Header.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Header.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LineTable.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LineTable.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LookupResult.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/LookupResult.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_arm64.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_arm64.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/DebugUtils.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/DebugUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/SpeculateAnalyses.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/SpeculateAnalyses.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Speculation.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Speculation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/OrcError/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/lib/ExecutionEngine/OrcError/
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFAArch64.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFAArch64.h
  releng/11.4/contrib/llvm-project/llvm/lib/Frontend/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/lib/Frontend/
  releng/11.4/contrib/llvm-project/llvm/lib/IR/FPEnv.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/IR/FPEnv.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/CodeEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/MCA/CodeEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/TapiFile.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Object/TapiFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/TapiUniversal.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Object/TapiUniversal.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/COFFEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ObjectYAML/COFFEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/ELFEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ObjectYAML/ELFEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/MachOEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ObjectYAML/MachOEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/WasmEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ObjectYAML/WasmEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/yaml2obj.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/ObjectYAML/yaml2obj.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkParser.h
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkSerializer.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Remarks/BitstreamRemarkSerializer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/RemarkLinker.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Remarks/RemarkLinker.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/RemarkSerializer.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Remarks/RemarkSerializer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/ABIBreak.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Support/ABIBreak.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/FileCheckImpl.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Support/FileCheckImpl.h
  releng/11.4/contrib/llvm-project/llvm/lib/Support/FileCollector.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Support/FileCollector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Combine.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Combine.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM5.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM5.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackOffset.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackOffset.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTaggingPreRA.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTaggingPreRA.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGlobalISelUtils.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MVEGatherScatterLowering.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/ARM/MVEGatherScatterLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MVETailPredication.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/ARM/MVETailPredication.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MVEVPTBlockPass.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/ARM/MVEVPTBlockPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsPfmCounters.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/Mips/MipsPfmCounters.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopInstrFormPrep.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopInstrFormPrep.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLowerMASSVEntries.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLowerMASSVEntries.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstructionSelector.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstructionSelector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVLegalizerInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBankInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBanks.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterBanks.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket32.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket32.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket64.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedRocket64.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedule.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSchedule.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleZ15.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleZ15.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/VE/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/VE/
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidTrailingCall.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidTrailingCall.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver2.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver2.td
  releng/11.4/contrib/llvm-project/llvm/lib/TextAPI/MachO/Platform.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/TextAPI/MachO/Platform.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/TextAPI/MachO/Target.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/CFGuard/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/CFGuard/
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfileCollector.h
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfilePlugins.inc
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ValueProfilePlugins.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerConstantIntrinsics.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerConstantIntrinsics.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerMatrixIntrinsics.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerMatrixIntrinsics.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeMoverUtils.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeMoverUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/Debugify.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Utils/Debugify.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/InjectTLIMappings.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Utils/InjectTLIMappings.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/MisExpect.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Utils/MisExpect.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanTransforms.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/CommonOpts.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/tools/llvm-objcopy/CommonOpts.td
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFConfig.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/InstallNameToolOpts.td
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/tools/llvm-objcopy/InstallNameToolOpts.td
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOLayoutBuilder.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/utils/TableGen/DFAEmitter.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/GICombinerEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/utils/TableGen/GICombinerEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
     - copied from r360784, stable/11/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.h
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/utils/TableGen/OptEmitter.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/OptRSTEmitter.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/llvm/utils/TableGen/OptRSTEmitter.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.cpp
     - copied unchanged from r360784, stable/11/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.cpp
  releng/11.4/lib/clang/include/llvm/Support/Extension.def
     - copied unchanged from r360784, stable/11/lib/clang/include/llvm/Support/Extension.def
  releng/11.4/usr.bin/clang/lldb/lldb.1
     - copied unchanged from r360784, stable/11/usr.bin/clang/lldb/lldb.1
Deleted:
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/TypeNodes.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/LangStandard.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/LangStandards.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Index/CodegenNameGenerator.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/Module.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RangeSelector.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/SourceCode.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Stencil.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/Transformer.h
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/LangStandards.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Index/CodegenNameGenerator.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/Module.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/RangeSelector.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/SourceCode.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/Stencil.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/Transformer.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_activation.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_debugging.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_fuchsia.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_globals.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_globals_win.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_memory_profile.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_new_delete.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_poisoning.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_posix.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_preinit.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_premap_shadow.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_report.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_rtems.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_rtl.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_shadow_setup.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_stats.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_win.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dll_thunk.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_win_weak_interception.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_custom.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/dfsan/dfsan_interceptors.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/utils/
  releng/11.4/contrib/llvm-project/compiler-rt/lib/interception/interception_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/interception/interception_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/interception/interception_type_test.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/interception/interception_win.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_allocator.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_interceptors.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_malloc_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_preinit.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_thread.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_allocator.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_chained_origin_depot.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_interceptors.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_new_delete.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_poisoning.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_report.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_thread.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfData.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingRuntime.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/safestack/safestack.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sancov_flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_file.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/crc32_hw.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuchsia.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/report.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/secondary.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_cpp.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/stats/stats.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/stats/stats_client.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_local.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mini_bench_shared.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/mop.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/start_many_threads.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/vts_many_threads_bench.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_interceptors.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/dd/dd_rtl.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/go/tsan_go.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_clock.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_external.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_fd.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_libdispatch.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_md5.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutex.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mutexset.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_preinit.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_report.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_stat.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_sync.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_monitor.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_signals_standalone.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_value.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_AArch64.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_arm.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_basic_logging.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_buffer_queue.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_fdr_logging.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_init.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_interface.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_log_interface.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_mips.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_mips64.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_powerpc64.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_profile_collector.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_profiling_flags.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_trampoline_powerpc64.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_utils.cc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/xray/xray_x86_64.cc
  releng/11.4/contrib/llvm-project/libcxx/src/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/COFF/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/Common/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/ELF/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/docs/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/lib/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/lib/Core/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/lib/Driver/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/YAML/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lld/tools/lld/CMakeLists.txt
  releng/11.4/contrib/llvm-project/lldb/docs/lldb.1
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/STLUtils.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLMap.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeSTLVector.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeValidator.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/VerifyDecl.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/CleanUp.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/FileCollector.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/JSON.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/StreamGDBRemote.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectBugreport.h
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/TypeValidator.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/posix/FileSystem.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/VerifyDecl.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/FileCollector.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/JSON.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/PPC64LE_ehframe_Registers.h
  releng/11.4/contrib/llvm-project/lldb/source/Utility/StreamGDBRemote.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgContext.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgSet.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValBase.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValConsume.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValFile.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListBase.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValListOfN.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValNumber.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValString.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdBase.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmd.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdBreak.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdData.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdEnviro.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdExec.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdFile.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdStack.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSupportList.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdSymbol.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTarget.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdThread.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdTrace.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCmdVar.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdCommands.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdData.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdFactory.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInterpreter.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdInvoker.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgr.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnBase.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnConfig.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLog.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnLogMediumFile.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIResultRecord.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValue.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueConst.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueList.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueResult.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnMIValueTuple.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnResources.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStderr.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdin.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnStreamStdout.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIDataTypes.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIDriver.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverBase.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMain.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIDriverMgr.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIExtensions.txt
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIReadMe.txt
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilDebug.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilFileStd.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonBase.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilString.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/MIUtilVariant.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/Platform.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-mi/module.modulemap
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/VariadicFunction.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCCodePadder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/JamCRC.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/MutexGuard.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Options.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/ScalableSize.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/UniqueLock.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeCalc.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOAtomGraphBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachOAtomGraphBuilder.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCCodePadder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/JamCRC.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Mutex.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Options.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Unix/Mutex.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Unix/RWMutex.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/Mutex.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/RWMutex.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/WindowsSupport.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZScheduleArch13.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
  releng/11.4/contrib/llvm-project/llvm/tools/opt/Debugify.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/opt/Debugify.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_taskq.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.c
Modified:
  releng/11.4/ObsoleteFiles.inc
  releng/11.4/UPDATING
  releng/11.4/contrib/llvm-project/FREEBSD-Xlist
  releng/11.4/contrib/llvm-project/clang/include/clang-c/BuildSystem.h
  releng/11.4/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h
  releng/11.4/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h
  releng/11.4/contrib/llvm-project/clang/include/clang-c/CXString.h
  releng/11.4/contrib/llvm-project/clang/include/clang-c/Documentation.h
  releng/11.4/contrib/llvm-project/clang/include/clang-c/Index.h
  releng/11.4/contrib/llvm-project/clang/include/clang-c/Platform.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/APValue.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTConsumer.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTContext.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTFwd.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTImporter.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTImporterSharedState.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTLambda.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTNodeTraverser.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTStructuralEquivalence.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTTypeTraits.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/Attr.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/CXXInheritance.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/CharUnits.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/Comment.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/CommentCommands.td
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/CommentLexer.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ComparisonCategories.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/Decl.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/DeclBase.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/DeclCXX.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/DeclObjC.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/DeclTemplate.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/DeclarationName.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/Expr.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ExprCXX.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ExprObjC.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ExternalASTMerger.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/ExternalASTSource.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/FormatString.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/GlobalDecl.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/JSONNodeDumper.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/Mangle.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/NSAPI.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/OpenMPClause.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/OperationKinds.def
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/PrettyPrinter.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/RawCommentList.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/RecursiveASTVisitor.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/Stmt.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/StmtDataCollectors.td
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/StmtOpenMP.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/StmtVisitor.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/TemplateBase.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/TemplateName.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/TextNodeDumper.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/Type.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/TypeLoc.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/TypeLocNodes.def
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/TypeVisitor.h
  releng/11.4/contrib/llvm-project/clang/include/clang/AST/UnresolvedSet.h
  releng/11.4/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchFinder.h
  releng/11.4/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchers.h
  releng/11.4/contrib/llvm-project/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
  releng/11.4/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/Parser.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Analysis/AnalysisDeclContext.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Analysis/CFG.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Analysis/CallGraph.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/AddressSpaces.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Attr.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/AttrDocs.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Builtins.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Builtins.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/BuiltinsAArch64.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/BuiltinsAMDGPU.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/BuiltinsARM.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/BuiltinsPPC.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/BuiltinsWebAssembly.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/BuiltinsX86.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/BuiltinsX86_64.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/CodeGenOptions.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/CodeGenOptions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/CommentNodes.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Cuda.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DebugInfoOptions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DeclNodes.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Diagnostic.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticASTKinds.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticCommentKinds.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticCommonKinds.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticDriverKinds.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticFrontendKinds.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticGroups.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticLexKinds.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticOptions.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticParseKinds.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSemaKinds.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/DiagnosticSerializationKinds.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Features.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/FileManager.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/IdentifierTable.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/LangOptions.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/LangOptions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Linkage.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/ObjCRuntime.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/OpenCLOptions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/OpenMPKinds.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/OpenMPKinds.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/OperatorKinds.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/PartialDiagnostic.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/SanitizerSpecialCaseList.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Sanitizers.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/SourceLocation.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/SourceManager.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Specifiers.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/Stack.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/StmtNodes.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/SyncScope.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/TargetBuiltins.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/TargetCXXABI.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/TargetInfo.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/TokenKinds.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/TokenKinds.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/X86Target.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/arm_fp16.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/arm_neon.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Basic/arm_neon_incl.td
  releng/11.4/contrib/llvm-project/clang/include/clang/CodeGen/CGFunctionInfo.h
  releng/11.4/contrib/llvm-project/clang/include/clang/CrossTU/CrossTranslationUnit.h
  releng/11.4/contrib/llvm-project/clang/include/clang/DirectoryWatcher/DirectoryWatcher.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/Action.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/CC1Options.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/CLCompatOptions.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/Distro.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/Driver.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/Job.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/Options.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/Options.td
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/Phases.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/SanitizerArgs.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/ToolChain.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/Types.def
  releng/11.4/contrib/llvm-project/clang/include/clang/Driver/Types.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Format/Format.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/ASTUnit.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/CompilerInstance.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/CompilerInvocation.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/FrontendActions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/FrontendOptions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/MultiplexConsumer.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/PrecompiledPreamble.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Frontend/Utils.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Index/IndexDataConsumer.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Index/IndexingAction.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/DependencyDirectivesSourceMinimizer.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/DirectoryLookup.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/HeaderMap.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/HeaderSearch.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/HeaderSearchOptions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/Lexer.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/MacroArgs.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/ModuleLoader.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/ModuleMap.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/PPCallbacks.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/Preprocessor.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Lex/PreprocessorOptions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Parse/Parser.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Parse/RAIIObjectsForParser.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Rewrite/Core/Rewriter.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/CodeCompleteConsumer.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/DeclSpec.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/ExternalSemaSource.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/MultiplexExternalSemaSource.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/ObjCMethodList.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/Overload.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/ParsedAttr.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/ParsedTemplate.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/Scope.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/ScopeInfo.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/Sema.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/SemaInternal.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/Template.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/TemplateDeduction.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Sema/TypoCorrection.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/ASTBitCodes.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/ASTReader.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/ASTWriter.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/ContinuousRangeMap.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Serialization/ModuleManager.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/Checker.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
  releng/11.4/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/ASTDiff.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/AllTUsExecution.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/ArgumentsAdjusters.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/CompilationDatabase.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/DependencyScanningWorker.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Execution.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/HeaderIncludes.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/IncludeStyle.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ASTSelection.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/StandaloneExecution.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Syntax/BuildTree.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Nodes.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Tokens.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Syntax/Tree.h
  releng/11.4/contrib/llvm-project/clang/include/clang/Tooling/Tooling.h
  releng/11.4/contrib/llvm-project/clang/include/clang/module.modulemap
  releng/11.4/contrib/llvm-project/clang/lib/ARCMigrate/ARCMT.cpp
  releng/11.4/contrib/llvm-project/clang/lib/ARCMigrate/FileRemapper.cpp
  releng/11.4/contrib/llvm-project/clang/lib/ARCMigrate/ObjCMT.cpp
  releng/11.4/contrib/llvm-project/clang/lib/ARCMigrate/PlistReporter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/APValue.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ASTContext.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ASTDiagnostic.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ASTImporter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ASTStructuralEquivalence.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ASTTypeTraits.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/CXXInheritance.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/Comment.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/CommentLexer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/CommentParser.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/CommentSema.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ComparisonCategories.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/Decl.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/DeclBase.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/DeclCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/DeclObjC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/DeclPrinter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/DeclTemplate.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/DeclarationName.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/Expr.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ExprCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ExprClassification.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ExprConstant.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ExternalASTMerger.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ExternalASTSource.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/FormatString.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/FormatStringParsing.h
  releng/11.4/contrib/llvm-project/clang/lib/AST/InheritViz.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ItaniumCXXABI.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ItaniumMangle.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/JSONNodeDumper.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/Mangle.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/MicrosoftCXXABI.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/MicrosoftMangle.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/NSAPI.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/NestedNameSpecifier.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/ODRHash.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/OpenMPClause.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/PrintfFormatString.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/QualTypeNames.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/RawCommentList.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/RecordLayoutBuilder.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/Stmt.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/StmtOpenMP.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/StmtPrinter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/StmtProfile.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/TemplateBase.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/TextNodeDumper.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/Type.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/TypeLoc.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/TypePrinter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/VTTBuilder.cpp
  releng/11.4/contrib/llvm-project/clang/lib/AST/VTableBuilder.cpp
  releng/11.4/contrib/llvm-project/clang/lib/ASTMatchers/ASTMatchFinder.cpp
  releng/11.4/contrib/llvm-project/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
  releng/11.4/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Marshallers.h
  releng/11.4/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Parser.cpp
  releng/11.4/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/Registry.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/AnalysisDeclContext.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/BodyFarm.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/CFG.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/CallGraph.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/CloneDetection.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/CocoaConventions.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/Consumed.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/ProgramPoint.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/ReachableCode.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/RetainSummaryManager.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/ThreadSafety.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/ThreadSafetyCommon.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Analysis/plugins/SampleAnalyzer/MainCallChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Attributes.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Builtins.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Cuda.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Diagnostic.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/FileManager.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/IdentifierTable.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Module.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/OpenMPKinds.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/SanitizerBlacklist.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/SanitizerSpecialCaseList.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/SourceManager.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/TargetInfo.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/AArch64.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/AArch64.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/AMDGPU.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/ARM.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/ARM.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/BPF.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/BPF.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/Hexagon.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/Mips.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/NVPTX.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/OSTargets.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/OSTargets.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/PPC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/PPC.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/RISCV.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/SPIR.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/Sparc.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/SystemZ.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/TCE.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/X86.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Targets/X86.h
  releng/11.4/contrib/llvm-project/clang/lib/Basic/TokenKinds.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/Version.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Basic/XRayLists.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/BackendUtil.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGAtomic.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGBlocks.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGBuilder.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGBuiltin.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGCUDANV.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGCXXABI.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGCXXABI.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGCall.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGCall.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGClass.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGCleanup.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGDebugInfo.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGDebugInfo.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGDecl.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGDeclCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGException.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGExpr.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGExprAgg.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGExprCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGExprComplex.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGExprConstant.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGExprScalar.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGLoopInfo.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGLoopInfo.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGNonTrivialStruct.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGObjC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGObjCGNU.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGObjCMac.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGObjCRuntime.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGOpenCLRuntime.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntime.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntime.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGStmt.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGStmtOpenMP.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGVTables.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CGValue.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CodeGenAction.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CodeGenFunction.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CodeGenModule.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CodeGenPGO.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CodeGenPGO.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CodeGenTBAA.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CodeGenTypes.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/ConstantEmitter.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/ConstantInitBuilder.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/CoverageMappingGen.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/EHScopeStack.h
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/ItaniumCXXABI.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/ModuleBuilder.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/SanitizerMetadata.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CodeGen/TargetInfo.cpp
  releng/11.4/contrib/llvm-project/clang/lib/CrossTU/CrossTranslationUnit.cpp
  releng/11.4/contrib/llvm-project/clang/lib/DirectoryWatcher/default/DirectoryWatcher-not-implemented.cpp
  releng/11.4/contrib/llvm-project/clang/lib/DirectoryWatcher/linux/DirectoryWatcher-linux.cpp
  releng/11.4/contrib/llvm-project/clang/lib/DirectoryWatcher/mac/DirectoryWatcher-mac.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/Action.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/Compilation.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/Distro.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/Driver.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/DriverOptions.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/Job.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/Phases.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/SanitizerArgs.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChain.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/AMDGPU.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/AMDGPU.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/AVR.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Ananas.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/ARM.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/Mips.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/PPC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/RISCV.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/SystemZ.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/X86.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/BareMetal.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Clang.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/CloudABI.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/CommonArgs.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/CommonArgs.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/CrossWindows.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Cuda.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Cuda.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Darwin.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/DragonFly.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Fuchsia.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Fuchsia.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Gnu.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/HIP.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/HIP.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Hexagon.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Hurd.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Linux.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/MSP430.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/MSVC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/MSVC.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/MinGW.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/MinGW.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Minix.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Myriad.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/NaCl.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/NetBSD.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/OpenBSD.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/OpenBSD.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/PPCLinux.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/PS4CPU.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/PS4CPU.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/RISCVToolchain.h
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/Solaris.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/WebAssembly.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/ToolChains/XCore.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/Types.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Driver/XRayArgs.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Format/BreakableToken.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Format/BreakableToken.h
  releng/11.4/contrib/llvm-project/clang/lib/Format/ContinuationIndenter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Format/Encoding.h
  releng/11.4/contrib/llvm-project/clang/lib/Format/Format.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Format/FormatToken.h
  releng/11.4/contrib/llvm-project/clang/lib/Format/FormatTokenLexer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Format/FormatTokenLexer.h
  releng/11.4/contrib/llvm-project/clang/lib/Format/NamespaceEndCommentsFixer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Format/TokenAnnotator.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Format/TokenAnnotator.h
  releng/11.4/contrib/llvm-project/clang/lib/Format/UnwrappedLineFormatter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Format/UnwrappedLineParser.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Format/UnwrappedLineParser.h
  releng/11.4/contrib/llvm-project/clang/lib/Format/WhitespaceManager.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/ASTConsumers.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/ASTUnit.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/ChainedIncludesSource.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/CompilerInstance.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/CompilerInvocation.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/DependencyFile.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/DependencyGraph.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/FrontendAction.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/FrontendActions.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/FrontendOptions.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/HeaderIncludeGen.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/InitHeaderSearch.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/InitPreprocessor.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/InterfaceStubFunctionsConsumer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/ModuleDependencyCollector.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/MultiplexConsumer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/PrecompiledPreamble.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/PrintPreprocessedOutput.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/Rewrite/FrontendActions.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/TextDiagnostic.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Headers/__clang_cuda_intrinsics.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/altivec.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/arm_acle.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/avx512bwintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/avx512fintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/avx512vlbwintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/avx512vlintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/avxintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/bmiintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/cpuid.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/emmintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/ia32intrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/immintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/intrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/mwaitxintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/opencl-c-base.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/pmmintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/emmintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/mm_malloc.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/mmintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/xmmintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Headers/xmmintrin.h
  releng/11.4/contrib/llvm-project/clang/lib/Index/CommentToXML.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Index/IndexDecl.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Index/IndexSymbol.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Index/IndexingAction.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Index/IndexingContext.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Index/USRGeneration.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/HeaderMap.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/HeaderSearch.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/Lexer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/LiteralSupport.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/MacroArgs.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/ModuleMap.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/PPDirectives.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/PPLexerChange.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/PPMacroExpansion.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/Pragma.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/Preprocessor.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/TokenLexer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Lex/UnicodeCharSets.h
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseAST.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseCXXInlineMethods.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseDecl.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseDeclCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseExpr.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseExprCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseInit.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseObjc.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseOpenMP.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParsePragma.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseStmt.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseStmtAsm.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseTemplate.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/ParseTentative.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Parse/Parser.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Rewrite/Rewriter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/AnalysisBasedWarnings.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/DeclSpec.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/JumpDiagnostics.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/MultiplexExternalSemaSource.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/OpenCLBuiltins.td
  releng/11.4/contrib/llvm-project/clang/lib/Sema/ParsedAttr.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/Sema.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaAccess.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaAttr.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaCUDA.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaCXXScopeSpec.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaCast.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaChecking.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaCodeComplete.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaCoroutine.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaDecl.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaDeclAttr.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaDeclCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaDeclObjC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaExceptionSpec.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaExpr.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaExprCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaExprMember.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaExprObjC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaInit.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaLambda.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaLookup.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaObjCProperty.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaOpenMP.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaOverload.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaPseudoObject.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaStmt.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaStmtAsm.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaStmtAttr.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaTemplate.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaTemplateDeduction.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiate.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaTemplateVariadic.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/SemaType.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/TreeTransform.h
  releng/11.4/contrib/llvm-project/clang/lib/Sema/TypeLocBuilder.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Sema/TypeLocBuilder.h
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/ASTCommon.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/ASTReader.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/ASTReaderDecl.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/ASTReaderStmt.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/ASTWriter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/ASTWriterDecl.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/ASTWriterStmt.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/GlobalModuleIndex.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/ModuleManager.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Serialization/PCHContainerOperations.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CastValueChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MIGChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.h
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Taint.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/Taint.h
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Checker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Environment.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/Store.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/WorkList.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
  releng/11.4/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/AllTUsExecution.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/ArgumentsAdjusters.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/CommonOptionsParser.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/CompilationDatabase.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Core/Replacement.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/GuessTargetAndModeCompilationDatabase.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Inclusions/IncludeStyle.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/JSONCompilationDatabase.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/ASTSelectionRequirements.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/RefactoringActions.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/RenamingAction.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Refactoring/Rename/USRFindingAction.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/RefactoringCallbacks.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/StandaloneExecution.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Syntax/BuildTree.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Syntax/Nodes.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Syntax/Tokens.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Syntax/Tree.cpp
  releng/11.4/contrib/llvm-project/clang/lib/Tooling/Tooling.cpp
  releng/11.4/contrib/llvm-project/clang/tools/clang-format/ClangFormat.cpp
  releng/11.4/contrib/llvm-project/clang/tools/driver/cc1_main.cpp
  releng/11.4/contrib/llvm-project/clang/tools/driver/cc1as_main.cpp
  releng/11.4/contrib/llvm-project/clang/tools/driver/driver.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangASTNodesEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangAttrEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangOpenCLBuiltinEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangOptionDocEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/ClangSACheckersEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/NeonEmitter.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/TableGen.cpp
  releng/11.4/contrib/llvm-project/clang/utils/TableGen/TableGenBackends.h
  releng/11.4/contrib/llvm-project/compiler-rt/include/sanitizer/asan_interface.h
  releng/11.4/contrib/llvm-project/compiler-rt/include/sanitizer/dfsan_interface.h
  releng/11.4/contrib/llvm-project/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
  releng/11.4/contrib/llvm-project/compiler-rt/include/sanitizer/tsan_interface_atomic.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_allocator.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_descriptions.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_errors.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_fake_stack.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_flags.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_interceptors_memintrinsics.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_interface.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_interface_internal.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_internal.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_scariness_score.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_stack.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_suppressions.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/asan/asan_thread.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/adddf3.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/addsf3.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/addtf3.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/atomic.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/clear_cache.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/divtf3.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/emutls.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/extenddftf2.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/extendsftf2.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/fixunsxfdi.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/fixunsxfsi.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/fixxfdi.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/fp_add_impl.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/fp_lib.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/fp_trunc_impl.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/ppc/fixunstfti.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/subdf3.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/subsf3.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/subtf3.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/builtins/udivmoddi4.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/crt/crtbegin.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerDefs.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtFunctions.def
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeak.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerExtraCounters.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerFlags.def
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIO.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIO.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerInternal.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerMerge.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerOptions.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerTracePC.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtil.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilDarwin.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilFuchsia.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilLinux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilPosix.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/definitions.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/guarded_pool_allocator.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/guarded_pool_allocator.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace_linux_libc.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/backtrace_sanitizer_common.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/options.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/gwp_asan/options.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_allocator.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_allocator.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_flags.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_interceptors.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_interface_internal.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_linux.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_new_delete.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_report.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/hwasan/hwasan_tag_mismatch_aarch64.S
  releng/11.4/contrib/llvm-project/compiler-rt/lib/interception/interception.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/lsan/lsan_common.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/msan/msan_blacklist.txt
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfiling.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfiling.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingBuffer.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingFile.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingInternal.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingMerge.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingMergeFile.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingPort.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingUtil.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingValue.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingWriter.c
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_asm.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_getauxval.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_malloc_mac.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_vector.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
  releng/11.4/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/scudo_allocator_secondary.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/scudo_errors.cpp
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/allocator_config.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/atomic_helpers.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/bytemap.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/checksum.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/chunk.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/combined.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/common.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/flags_parser.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/internal_defs.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/linux.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/list.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/local_cache.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/mutex.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/platform.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/primary32.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/primary64.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/quarantine.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/release.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/secondary.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/size_class_map.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/stats.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/string_utils.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd_exclusive.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/tsd_shared.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/vector.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c.inc
  releng/11.4/contrib/llvm-project/compiler-rt/lib/scudo/standalone/wrappers_c_checks.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_dispatch_defs.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_interface_java.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_mman.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/tsan/rtl/tsan_rtl.h
  releng/11.4/contrib/llvm-project/compiler-rt/lib/ubsan/ubsan_checks.inc
  releng/11.4/contrib/llvm-project/libcxx/CREDITS.TXT
  releng/11.4/contrib/llvm-project/libcxx/include/__bit_reference
  releng/11.4/contrib/llvm-project/libcxx/include/__config
  releng/11.4/contrib/llvm-project/libcxx/include/__debug
  releng/11.4/contrib/llvm-project/libcxx/include/__functional_03
  releng/11.4/contrib/llvm-project/libcxx/include/__functional_base
  releng/11.4/contrib/llvm-project/libcxx/include/__hash_table
  releng/11.4/contrib/llvm-project/libcxx/include/__libcpp_version
  releng/11.4/contrib/llvm-project/libcxx/include/__mutex_base
  releng/11.4/contrib/llvm-project/libcxx/include/__split_buffer
  releng/11.4/contrib/llvm-project/libcxx/include/__string
  releng/11.4/contrib/llvm-project/libcxx/include/__threading_support
  releng/11.4/contrib/llvm-project/libcxx/include/__tree
  releng/11.4/contrib/llvm-project/libcxx/include/__tuple
  releng/11.4/contrib/llvm-project/libcxx/include/algorithm
  releng/11.4/contrib/llvm-project/libcxx/include/atomic
  releng/11.4/contrib/llvm-project/libcxx/include/bit
  releng/11.4/contrib/llvm-project/libcxx/include/chrono
  releng/11.4/contrib/llvm-project/libcxx/include/codecvt
  releng/11.4/contrib/llvm-project/libcxx/include/cstdlib
  releng/11.4/contrib/llvm-project/libcxx/include/ctime
  releng/11.4/contrib/llvm-project/libcxx/include/deque
  releng/11.4/contrib/llvm-project/libcxx/include/exception
  releng/11.4/contrib/llvm-project/libcxx/include/experimental/coroutine
  releng/11.4/contrib/llvm-project/libcxx/include/experimental/functional
  releng/11.4/contrib/llvm-project/libcxx/include/experimental/iterator
  releng/11.4/contrib/llvm-project/libcxx/include/experimental/propagate_const
  releng/11.4/contrib/llvm-project/libcxx/include/experimental/type_traits
  releng/11.4/contrib/llvm-project/libcxx/include/ext/hash_map
  releng/11.4/contrib/llvm-project/libcxx/include/ext/hash_set
  releng/11.4/contrib/llvm-project/libcxx/include/filesystem
  releng/11.4/contrib/llvm-project/libcxx/include/forward_list
  releng/11.4/contrib/llvm-project/libcxx/include/fstream
  releng/11.4/contrib/llvm-project/libcxx/include/functional
  releng/11.4/contrib/llvm-project/libcxx/include/future
  releng/11.4/contrib/llvm-project/libcxx/include/ios
  releng/11.4/contrib/llvm-project/libcxx/include/istream
  releng/11.4/contrib/llvm-project/libcxx/include/iterator
  releng/11.4/contrib/llvm-project/libcxx/include/list
  releng/11.4/contrib/llvm-project/libcxx/include/map
  releng/11.4/contrib/llvm-project/libcxx/include/math.h
  releng/11.4/contrib/llvm-project/libcxx/include/memory
  releng/11.4/contrib/llvm-project/libcxx/include/module.modulemap
  releng/11.4/contrib/llvm-project/libcxx/include/mutex
  releng/11.4/contrib/llvm-project/libcxx/include/new
  releng/11.4/contrib/llvm-project/libcxx/include/numeric
  releng/11.4/contrib/llvm-project/libcxx/include/ostream
  releng/11.4/contrib/llvm-project/libcxx/include/queue
  releng/11.4/contrib/llvm-project/libcxx/include/random
  releng/11.4/contrib/llvm-project/libcxx/include/regex
  releng/11.4/contrib/llvm-project/libcxx/include/set
  releng/11.4/contrib/llvm-project/libcxx/include/span
  releng/11.4/contrib/llvm-project/libcxx/include/stdexcept
  releng/11.4/contrib/llvm-project/libcxx/include/string
  releng/11.4/contrib/llvm-project/libcxx/include/string_view
  releng/11.4/contrib/llvm-project/libcxx/include/system_error
  releng/11.4/contrib/llvm-project/libcxx/include/thread
  releng/11.4/contrib/llvm-project/libcxx/include/tuple
  releng/11.4/contrib/llvm-project/libcxx/include/type_traits
  releng/11.4/contrib/llvm-project/libcxx/include/typeinfo
  releng/11.4/contrib/llvm-project/libcxx/include/utility
  releng/11.4/contrib/llvm-project/libcxx/include/vector
  releng/11.4/contrib/llvm-project/libcxx/include/version
  releng/11.4/contrib/llvm-project/libcxx/src/algorithm.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/chrono.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/condition_variable.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/debug.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/experimental/memory_resource.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/filesystem/directory_iterator.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/filesystem/int128_builtins.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/filesystem/operations.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/iostream.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/locale.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/memory.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/mutex.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/mutex_destructor.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/regex.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/shared_mutex.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/thread.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/utility.cpp
  releng/11.4/contrib/llvm-project/libcxx/src/valarray.cpp
  releng/11.4/contrib/llvm-project/libunwind/include/__libunwind_config.h
  releng/11.4/contrib/llvm-project/libunwind/include/libunwind.h
  releng/11.4/contrib/llvm-project/libunwind/src/AddressSpace.hpp
  releng/11.4/contrib/llvm-project/libunwind/src/DwarfInstructions.hpp
  releng/11.4/contrib/llvm-project/libunwind/src/RWMutex.hpp
  releng/11.4/contrib/llvm-project/libunwind/src/Registers.hpp
  releng/11.4/contrib/llvm-project/libunwind/src/Unwind-EHABI.cpp
  releng/11.4/contrib/llvm-project/libunwind/src/UnwindCursor.hpp
  releng/11.4/contrib/llvm-project/libunwind/src/UnwindLevel1-gcc-ext.c
  releng/11.4/contrib/llvm-project/libunwind/src/UnwindRegistersRestore.S
  releng/11.4/contrib/llvm-project/libunwind/src/UnwindRegistersSave.S
  releng/11.4/contrib/llvm-project/libunwind/src/libunwind.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/Chunks.h
  releng/11.4/contrib/llvm-project/lld/COFF/Config.h
  releng/11.4/contrib/llvm-project/lld/COFF/DLL.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/DebugTypes.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/Driver.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/Driver.h
  releng/11.4/contrib/llvm-project/lld/COFF/DriverUtils.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/ICF.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/InputFiles.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/InputFiles.h
  releng/11.4/contrib/llvm-project/lld/COFF/LTO.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/MapFile.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/MinGW.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/MinGW.h
  releng/11.4/contrib/llvm-project/lld/COFF/Options.td
  releng/11.4/contrib/llvm-project/lld/COFF/PDB.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/PDB.h
  releng/11.4/contrib/llvm-project/lld/COFF/SymbolTable.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/SymbolTable.h
  releng/11.4/contrib/llvm-project/lld/COFF/Symbols.cpp
  releng/11.4/contrib/llvm-project/lld/COFF/Symbols.h
  releng/11.4/contrib/llvm-project/lld/COFF/Writer.cpp
  releng/11.4/contrib/llvm-project/lld/Common/ErrorHandler.cpp
  releng/11.4/contrib/llvm-project/lld/Common/Filesystem.cpp
  releng/11.4/contrib/llvm-project/lld/Common/Strings.cpp
  releng/11.4/contrib/llvm-project/lld/Common/TargetOptionsCommandFlags.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/AArch64ErrataFix.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/AArch64.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/AMDGPU.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/ARM.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/AVR.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/Hexagon.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/MSP430.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/Mips.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/MipsArchTree.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/PPC.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/PPC64.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/RISCV.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/SPARCV9.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/X86.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Arch/X86_64.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/CallGraphSort.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Config.h
  releng/11.4/contrib/llvm-project/lld/ELF/DWARF.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/DWARF.h
  releng/11.4/contrib/llvm-project/lld/ELF/Driver.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/DriverUtils.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/EhFrame.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/ICF.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/InputFiles.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/InputFiles.h
  releng/11.4/contrib/llvm-project/lld/ELF/InputSection.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/InputSection.h
  releng/11.4/contrib/llvm-project/lld/ELF/LTO.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/LinkerScript.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/LinkerScript.h
  releng/11.4/contrib/llvm-project/lld/ELF/MapFile.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/MarkLive.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Options.td
  releng/11.4/contrib/llvm-project/lld/ELF/OutputSections.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/OutputSections.h
  releng/11.4/contrib/llvm-project/lld/ELF/Relocations.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Relocations.h
  releng/11.4/contrib/llvm-project/lld/ELF/ScriptLexer.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/ScriptParser.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/SymbolTable.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/SymbolTable.h
  releng/11.4/contrib/llvm-project/lld/ELF/Symbols.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Symbols.h
  releng/11.4/contrib/llvm-project/lld/ELF/SyntheticSections.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/SyntheticSections.h
  releng/11.4/contrib/llvm-project/lld/ELF/Target.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Target.h
  releng/11.4/contrib/llvm-project/lld/ELF/Thunks.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Thunks.h
  releng/11.4/contrib/llvm-project/lld/ELF/Writer.cpp
  releng/11.4/contrib/llvm-project/lld/ELF/Writer.h
  releng/11.4/contrib/llvm-project/lld/docs/Driver.rst
  releng/11.4/contrib/llvm-project/lld/docs/NewLLD.rst
  releng/11.4/contrib/llvm-project/lld/docs/ReleaseNotes.rst
  releng/11.4/contrib/llvm-project/lld/docs/WebAssembly.rst
  releng/11.4/contrib/llvm-project/lld/docs/conf.py
  releng/11.4/contrib/llvm-project/lld/docs/index.rst
  releng/11.4/contrib/llvm-project/lld/docs/ld.lld.1
  releng/11.4/contrib/llvm-project/lld/docs/windows_support.rst
  releng/11.4/contrib/llvm-project/lld/include/lld/Common/Driver.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Common/ErrorHandler.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Common/LLVM.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Common/Strings.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Common/TargetOptionsCommandFlags.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Core/Atom.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Core/Error.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Core/File.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Core/Instrumentation.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Core/Reference.h
  releng/11.4/contrib/llvm-project/lld/include/lld/Core/UndefinedAtom.h
  releng/11.4/contrib/llvm-project/lld/include/lld/ReaderWriter/MachOLinkingContext.h
  releng/11.4/contrib/llvm-project/lld/lib/Core/Resolver.cpp
  releng/11.4/contrib/llvm-project/lld/lib/Core/SymbolTable.cpp
  releng/11.4/contrib/llvm-project/lld/lib/Driver/DarwinLdDriver.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/FileArchive.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/DebugInfo.h
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/File.h
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/GOTPass.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ShimPass.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/MachO/TLVPass.cpp
  releng/11.4/contrib/llvm-project/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
  releng/11.4/contrib/llvm-project/lld/tools/lld/lld.cpp
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/LLDB.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBBreakpoint.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointLocation.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBBreakpointName.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBCommandReturnObject.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBDebugger.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBDefines.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBError.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBInstruction.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBInstructionList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBProcess.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBReproducer.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBStream.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBStructuredData.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBThread.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBThreadPlan.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/API/SBValue.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/Breakpoint.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointID.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocation.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointOptions.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolver.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/BreakpointSite.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/Watchpoint.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Breakpoint/WatchpointOptions.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/Address.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/AddressRange.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverFileLine.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/AddressResolverName.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/ClangForward.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/Debugger.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/Disassembler.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/FileLineResolver.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/FileSpecList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/FormatEntity.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/Highlighter.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/IOHandler.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/LoadedModuleInfoList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/Mangled.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/Module.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/ModuleChild.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/ModuleList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/ModuleSpec.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/PluginManager.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/SearchFilter.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/Section.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/SourceManager.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/StreamFile.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/StructuredDataImpl.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/ThreadSafeDenseMap.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/Value.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/ValueObject.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Core/dwarf.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/DataVisualization.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatCache.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatClasses.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormatManager.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/FormattersContainer.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/LanguageCategory.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/StringPrinter.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategory.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/DWARFExpression.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/DiagnosticManager.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/Expression.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionParser.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionSourceCode.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/ExpressionVariable.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/FunctionCaller.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/IRExecutionUnit.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/LLVMUserExpression.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/Materializer.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/REPL.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/UserExpression.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Expression/UtilityFunction.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/Editline.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/File.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/FileCache.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/FileSystem.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/HostInfoBase.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/HostProcess.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/PseudoTerminal.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/Socket.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/SocketAddress.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/Terminal.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/XML.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Host/common/NativeProcessProtocol.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandAlias.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandCompletions.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandInterpreter.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObject.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/CommandReturnObject.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValue.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueArch.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueBoolean.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueProperties.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueRegex.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/OptionValueUUID.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/Options.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/Property.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Interpreter/ScriptInterpreter.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/Block.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTContext.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/ClangASTImporter.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/ClangUtil.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/CompileUnit.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDecl.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerDeclContext.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/CompilerType.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/DebugMacros.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/DeclVendor.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/Declaration.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/FuncUnwinders.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/Function.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/LineEntry.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/LineTable.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/ObjectFile.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/PostfixExpression.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/Symbol.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolContext.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolFile.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/SymbolVendor.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/Symtab.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/Type.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/TypeList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/TypeSystem.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindPlan.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/UnwindTable.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/Variable.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Symbol/VariableList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/ABI.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/DynamicLoader.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/Language.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/MemoryRegionInfo.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/Platform.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/Process.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/Queue.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/RemoteAwarePlatform.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/StackFrame.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/StopInfo.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/Target.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/TargetList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/Thread.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanPython.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepOut.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/ThreadPlanStepRange.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Target/Unwind.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/AnsiTerminal.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/ArchSpec.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Args.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Baton.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Broadcaster.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/CompletionRequest.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Connection.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/ConstString.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/DataEncoder.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/DataExtractor.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/FileSpec.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Flags.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/IOObject.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Log.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Logging.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Predicate.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/ProcessInfo.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/RangeMap.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/RegularExpression.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Reproducer.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/ReproducerInstrumentation.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Scalar.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Status.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/Stream.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractor.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/StringLexer.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/StringList.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/StructuredData.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/UUID.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/Utility/VMRange.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/lldb-enumerations.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/lldb-forward.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/lldb-private-enumerations.h
  releng/11.4/contrib/llvm-project/lldb/include/lldb/lldb-private-interfaces.h
  releng/11.4/contrib/llvm-project/lldb/source/API/SBAddress.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBBreakpoint.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBBreakpointLocation.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBBreakpointName.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBBreakpointOptionCommon.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBCommandInterpreter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBCommandReturnObject.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBCompileUnit.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBDebugger.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBDeclaration.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBEvent.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBFileSpec.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBFrame.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBHostOS.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBInstruction.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBInstructionList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBLineEntry.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBModule.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBProcess.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBReproducer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBReproducerPrivate.h
  releng/11.4/contrib/llvm-project/lldb/source/API/SBStream.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBStringList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBSymbolContext.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBTarget.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBThread.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBThreadPlan.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBType.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBTypeCategory.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SBValue.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/SystemInitializerFull.cpp
  releng/11.4/contrib/llvm-project/lldb/source/API/Utils.h
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/Breakpoint.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointIDList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointLocation.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointOptions.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolver.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverName.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/Watchpoint.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Breakpoint/WatchpointOptions.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandCompletions.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectApropos.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpoint.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectDisassemble.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectExpression.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectFrame.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectGUI.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectHelp.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectLanguage.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectLog.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectMemory.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectMultiword.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectProcess.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectRegister.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectReproducer.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectSettings.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectSource.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectStats.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectTarget.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectThread.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectType.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectType.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectVersion.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpoint.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Commands/CommandObjectWatchpointCommand.h
  releng/11.4/contrib/llvm-project/lldb/source/Commands/Options.td
  releng/11.4/contrib/llvm-project/lldb/source/Commands/OptionsBase.td
  releng/11.4/contrib/llvm-project/lldb/source/Core/Address.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/AddressRange.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/AddressResolverFileLine.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/AddressResolverName.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/Communication.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/Debugger.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/Disassembler.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/DumpDataExtractor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/FileLineResolver.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/FileSpecList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/FormatEntity.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/Highlighter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/IOHandler.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/Mangled.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/Module.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ModuleList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/PluginManager.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/SearchFilter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/Section.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/SourceManager.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/StreamFile.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/Value.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ValueObject.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ValueObjectCast.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ValueObjectChild.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ValueObjectConstResult.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ValueObjectDynamicValue.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ValueObjectMemory.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ValueObjectRegister.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ValueObjectSyntheticFilter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Core/ValueObjectVariable.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/DataVisualization.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/FormatCache.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/FormatClasses.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/FormatManager.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/FormattersHelpers.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/LanguageCategory.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/TypeCategory.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/TypeCategoryMap.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/TypeFormat.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/ValueObjectPrinter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/DataFormatters/VectorType.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/DWARFExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/DiagnosticManager.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/Expression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/ExpressionVariable.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/FunctionCaller.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/IRExecutionUnit.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/IRInterpreter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/IRMemoryMap.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/LLVMUserExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/Materializer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/REPL.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/UserExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Expression/UtilityFunction.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/Editline.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/File.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/FileCache.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/FileSystem.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/Host.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/HostInfoBase.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/HostNativeThreadBase.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/MainLoop.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/NativeProcessProtocol.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/NativeRegisterContext.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/PseudoTerminal.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/Socket.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/SocketAddress.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/TCPSocket.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/Terminal.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/UDPSocket.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/common/XML.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/netbsd/Host.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/posix/HostInfoPosix.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Host/posix/PipePosix.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Initialization/SystemInitializerCommon.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/CommandAlias.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/CommandInterpreter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/CommandObject.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/CommandObjectScript.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/CommandReturnObject.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionArgParser.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionGroupArchitecture.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionGroupFormat.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionGroupOutputFile.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionGroupPlatform.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionGroupUUID.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionGroupVariable.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValue.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueArch.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueBoolean.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueDictionary.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueEnumeration.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueFileSpec.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueLanguage.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueProperties.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueRegex.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/OptionValueUUID.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/Options.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/Property.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Interpreter/ScriptInterpreter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ModuleDependencyCollector.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSArray.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSDictionary.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSError.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSException.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSString.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/MachException.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/NativeProcessELF.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/AuxVector.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpParser.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/PythonReadline.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFTypeUnit.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/ArmUnwindInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/Block.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/ClangASTContext.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/ClangASTImporter.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/ClangUtil.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/CompactUnwindInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/CompileUnit.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/CompilerDecl.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/CompilerDeclContext.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/CompilerType.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/CxxModuleHandler.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/DWARFCallFrameInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/DeclVendor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/Declaration.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/FuncUnwinders.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/Function.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/LineEntry.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/LineTable.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFile.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/LocateSymbolFileMacOSX.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/ObjectFile.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/PostfixExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/Symbol.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/SymbolContext.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/SymbolFile.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/SymbolVendor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/Symtab.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/Type.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/TypeMap.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/TypeSystem.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/UnwindPlan.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/UnwindTable.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Symbol/Variable.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ABI.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ExecutionContext.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/Language.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/LanguageRuntime.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/Memory.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ModuleCache.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/Platform.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/Process.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/RegisterContext.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/RemoteAwarePlatform.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/SectionLoadList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/StackFrame.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/StackFrameList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/StackFrameRecognizer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/StopInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/Target.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/TargetList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/Thread.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlan.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanBase.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanCallFunction.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanCallUserExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanPython.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanRunToAddress.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanShouldStopHere.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInRange.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanStepInstruction.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOut.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanStepOverRange.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanStepRange.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanStepThrough.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanStepUntil.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Target/ThreadPlanTracer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/ArchSpec.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Args.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Baton.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Broadcaster.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/CompletionRequest.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/ConstString.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/DataBufferLLVM.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/DataEncoder.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/DataExtractor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Environment.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/FileSpec.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/LLDBAssert.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Listener.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Log.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Logging.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/ProcessInfo.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/RegisterValue.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/RegularExpression.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Reproducer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Scalar.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/SelectHelper.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Status.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/Stream.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/StreamString.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/StringExtractor.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/StringLexer.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/StringList.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/StructuredData.cpp
  releng/11.4/contrib/llvm-project/lldb/source/Utility/VMRange.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/argdumper/argdumper.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/compact-unwind/compact-unwind-dumper.c
  releng/11.4/contrib/llvm-project/lldb/tools/driver/Driver.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/driver/Options.td
  releng/11.4/contrib/llvm-project/lldb/tools/driver/Platform.h
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-instr/Instrument.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-server/LLDBServerUtilities.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-server/lldb-gdbserver.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-server/lldb-platform.cpp
  releng/11.4/contrib/llvm-project/lldb/tools/lldb-server/lldb-server.cpp
  releng/11.4/contrib/llvm-project/lldb/utils/TableGen/LLDBOptionDefEmitter.cpp
  releng/11.4/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGen.cpp
  releng/11.4/contrib/llvm-project/lldb/utils/TableGen/LLDBTableGenBackends.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Analysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/BitReader.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/BitWriter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Comdat.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Core.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/DebugInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Disassembler.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Error.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/ErrorHandling.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/ExecutionEngine.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/IRReader.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Initialization.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/LinkTimeOptimizer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Linker.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Object.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/OrcBindings.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Remarks.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Support.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Target.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/TargetMachine.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Transforms/Coroutines.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Transforms/IPO.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Transforms/InstCombine.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Transforms/Scalar.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Transforms/Utils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Transforms/Vectorize.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/Types.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm-c/lto.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/APFloat.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/APInt.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/Any.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/ArrayRef.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/BitVector.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/DenseMap.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/DenseMapInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/FoldingSet.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/Hashing.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/ImmutableSet.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/IntervalMap.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/Optional.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/PointerIntPair.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/PointerUnion.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/SCCIterator.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/STLExtras.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/SmallBitVector.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/SmallPtrSet.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/SmallSet.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/SmallVector.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/Statistic.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/StringExtras.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/StringMap.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/StringRef.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/StringSet.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/TinyPtrVector.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/Triple.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/Twine.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/iterator.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ADT/iterator_range.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/AliasAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/AliasSetTracker.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/AssumptionCache.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/CFG.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/CGSCCPassManager.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/CaptureTracking.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/DependenceAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/DivergenceAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/GlobalsModRef.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/GuardUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/InstructionSimplify.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/IntervalPartition.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/LazyCallGraph.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/LazyValueInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/Loads.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/LoopAnalysisManager.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/LoopInfoImpl.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/LoopPass.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryBuiltins.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSA.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/MemorySSAUpdater.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/MustExecute.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/Passes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/PhiValues.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/PostDominators.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/PtrUseVisitor.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/RegionInfoImpl.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolution.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/TargetLibraryInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/TypeMetadataUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/Local.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/ValueTracking.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/VecFuncs.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Analysis/VectorUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/COFF.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Dwarf.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELF.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/AArch64.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MachO.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Magic.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Minidump.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/MinidumpConstants.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/Wasm.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/BinaryFormat/XCOFF.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeAnalyzer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Bitcode/BitcodeWriter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Bitcode/LLVMBitCodes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Bitstream/BitCodes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Bitstream/BitstreamReader.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/AccelTable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/AsmPrinter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/BasicTTIImpl.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/CallingConvLower.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/CommandFlags.inc
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/DFAPacketizer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/DIE.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/FastISel.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/FaultMaps.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/ISDOpcodes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveInterval.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveIntervals.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/LivePhysRegs.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveRegUnits.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveStacks.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/LiveVariables.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/LowLevelType.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIParser.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRYamlMapping.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBasicBlock.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineDominators.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFrameInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineFunction.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstr.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineInstrBundle.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineLoopInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineMemOperand.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineModuleInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOperand.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineOutliner.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePipeliner.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachinePostDominators.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegionInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/MachineScheduler.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/Math.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/ParallelCG.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/Passes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/PseudoSourceValue.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/Register.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterClassInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterPressure.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterScavenging.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAG.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGISel.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/SlotIndexes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/StackMaps.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/StackProtector.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TailDuplicator.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetCallingConv.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLowering.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetPassConfig.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSchedule.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/ValueTypes.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/CodeGen/VirtRegMap.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DIContext.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FileEntry.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/FunctionInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/LineEntry.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/Range.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/StringTable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/GenericError.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Demangle/Demangle.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Demangle/DemangleConfig.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Demangle/ItaniumDemangle.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangle.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Demangle/Utility.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITSymbol.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Core.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Argument.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Attributes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Attributes.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/AutoUpgrade.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/BasicBlock.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/CallSite.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/CallingConv.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Constant.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/ConstantRange.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Constants.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/DIBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/DataLayout.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoFlags.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/DebugInfoMetadata.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/DerivedTypes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/DiagnosticInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Dominators.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Function.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/GlobalAlias.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/GlobalIFunc.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/GlobalIndirectSymbol.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/GlobalObject.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/GlobalValue.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/GlobalVariable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IRBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IRPrintingPasses.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/InstVisitor.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/InstrTypes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Instruction.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Instruction.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Instructions.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicInst.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Intrinsics.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAArch64.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsARM.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsBPF.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsMips.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsNVVM.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsRISCV.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/IntrinsicsX86.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/LLVMContext.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManager.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/LegacyPassManagers.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/MDBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Metadata.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Module.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndex.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/NoFolder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Operator.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/PassManager.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/PassManagerInternal.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/PatternMatch.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/RemarkStreamer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/RuntimeLibcalls.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Type.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/User.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/Value.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/ValueHandle.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/IR/ValueMap.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/InitializePasses.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/LTO/Config.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/LTO/LTO.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/LTO/LTOBackend.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/LinkAllPasses.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCAsmBackend.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoELF.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCAsmInfoXCOFF.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCAsmMacro.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCAssembler.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCCodeEmitter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCContext.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCDirectives.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCDwarf.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCELFStreamer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCExpr.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCFixup.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCFixupKindInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCFragment.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCInst.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCInstrAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCInstrDesc.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCMachObjectWriter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCObjectFileInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCObjectStreamer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCParser/AsmCond.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCRegisterInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCSection.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCSectionXCOFF.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCStreamer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCSubtargetInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCSymbol.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolWasm.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCSymbolXCOFF.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptions.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCWasmObjectWriter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/MCXCOFFStreamer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/StringTableBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MC/SubtargetFeature.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/Context.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RegisterFile.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ResourceManager.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/RetireControlUnit.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/Instruction.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/SourceMgr.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/MCA/Stages/RetireStage.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/Archive.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/Binary.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/COFF.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/ELF.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/ELFObjectFile.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/ELFTypes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/MachO.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/MachOUniversal.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/Minidump.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/ObjectFile.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/StackMapParser.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/Wasm.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/WindowsResource.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Object/XCOFFObjectFile.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ObjectYAML/DWARFYAML.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ELFYAML.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MachOYAML.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ObjectYAML/MinidumpYAML.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ObjectYAML/WasmYAML.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ObjectYAML/YAML.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Pass.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Passes/PassBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProf.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfData.inc
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ProfileData/InstrProfReader.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProf.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfReader.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/ProfileData/SampleProfWriter.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/Remark.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkFormat.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkParser.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkSerializer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Remarks/RemarkStringTable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/AArch64TargetParser.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/AMDGPUMetadata.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/ARMTargetParser.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/AlignOf.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Allocator.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamArray.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamReader.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/BinaryStreamRef.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/CRC.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/CodeGen.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/CommandLine.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Compiler.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/CrashRecoveryContext.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/DataExtractor.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Endian.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Error.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/FileCheck.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/FileOutputBuffer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/FileSystem.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/FileUtilities.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Format.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/FormatVariadic.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTree.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/GenericDomTreeConstruction.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/GlobPattern.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Host.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/InitLLVM.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/JSON.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/KnownBits.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/LineIterator.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/LockFileManager.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/LowLevelTypeImpl.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/MachineValueType.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/ManagedStatic.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/MathExtras.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Memory.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Mutex.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/OnDiskHashTable.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Parallel.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Path.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Process.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/RWMutex.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Regex.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Registry.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/SHA1.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Signals.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/SourceMgr.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/SpecialCaseList.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/SwapByteOrder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/TargetOpcodes.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/TargetRegistry.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Threading.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/TimeProfiler.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Timer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/TrailingObjects.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/UnicodeCharRanges.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/VersionTuple.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/VirtualFileSystem.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/Win64EH.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/X86TargetParser.def
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/YAMLTraits.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/circular_raw_ostream.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/raw_ostream.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Support/type_traits.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TableGen/Error.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TableGen/Record.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/GenericOpcodes.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/Target.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/Target.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/TargetCallingConv.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/TargetItinerary.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/TargetLoweringObjectFile.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/TargetMachine.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/TargetOptions.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/TargetSchedule.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Target/TargetSelectionDAG.td
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Architecture.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/ArchitectureSet.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/InterfaceFile.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/Symbol.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/TextAPIReader.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Coroutines.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/Attributor.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/FunctionImport.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Float2Int.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVN.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LICM.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/Reassociate.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/SCCP.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/GuardUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/Local.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/LoopUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/SizeOpts.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ValueMapper.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecordProducer.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/XRay/FDRRecords.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/XRay/FileHeaderReader.h
  releng/11.4/contrib/llvm-project/llvm/include/llvm/module.modulemap
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/AliasAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/AliasSetTracker.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/Analysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/AssumptionCache.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/BasicAliasAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/BlockFrequencyInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/BranchProbabilityInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/CFG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/CFGPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/CallGraph.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/CallPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/CaptureTracking.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/ConstantFolding.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/CostModel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/Delinearization.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/DemandedBits.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/DependenceAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/DivergenceAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/DomPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/DomTreeUpdater.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/DominanceFrontier.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/GlobalsModRef.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/GuardUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/IVDescriptors.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/IVUsers.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/InlineCost.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/InstCount.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/InstructionSimplify.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/IntervalPartition.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LazyCallGraph.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LazyValueInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/Lint.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/Loads.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LoopAccessAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LoopAnalysisManager.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LoopInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LoopPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/MemDepPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/MemDerefPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/MemoryBuiltins.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/MemoryLocation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/MemorySSA.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/MemorySSAUpdater.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/MustExecute.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/OrderedInstructions.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/PhiValues.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/PostDominators.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/ProfileSummaryInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/RegionInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/RegionPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolution.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/ScopedNoAliasAA.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/StackSafetyAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/TargetLibraryInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/TargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/TypeMetadataUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/ValueTracking.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Analysis/VectorUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/AsmParser/LLLexer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/AsmParser/LLParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/AsmParser/LLParser.h
  releng/11.4/contrib/llvm-project/llvm/lib/AsmParser/LLToken.h
  releng/11.4/contrib/llvm-project/llvm/lib/AsmParser/Parser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/BinaryFormat/Dwarf.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/BinaryFormat/Magic.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Bitstream/Reader/BitstreamReader.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/Analysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/AtomicExpandPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/BranchFolding.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/BranchFolding.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/BranchRelaxation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/BreakFalseDeps.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/CFIInstrInserter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/CalcSpillWeights.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/CallingConvLower.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/CodeGen.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/CodeGenPrepare.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/DFAPacketizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/DetectDeadLanes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/DwarfEHPrepare.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/EarlyIfConversion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/EdgeBundles.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ExecutionDomainFix.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ExpandMemCmp.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ExpandReductions.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/FEntryInserter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/FaultMaps.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/FinalizeISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/FuncletLayout.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GCMetadata.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GCRootLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/Utils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/GlobalMerge.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/HardwareLoops.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/IfConversion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ImplicitNullChecks.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/IndirectBrExpandPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/InlineSpiller.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/InterleavedAccessPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/IntrinsicLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LLVMTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LexicalScopes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugVariables.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveInterval.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveIntervals.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LivePhysRegs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeCalc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeEdit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveRangeShrink.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveRegMatrix.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveRegUnits.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveStacks.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LiveVariables.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LowLevelType.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/LowerEmuTLS.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MILexer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MILexer.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MIParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MIRPrintingPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineBasicBlock.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineBlockPlacement.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineCSE.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineCombiner.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineCopyPropagation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineDominators.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineFrameInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineFunction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineFunctionPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineInstr.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineInstrBundle.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineLICM.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineLoopInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineModuleInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineOperand.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineOutliner.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachinePipeliner.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachinePostDominators.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineRegionInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineSSAUpdater.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineScheduler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineSink.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineTraceMetrics.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MachineVerifier.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/MacroFusion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/OptimizePHIs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/PHIElimination.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ParallelCG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/PatchableFunction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/PeepholeOptimizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/PostRASchedulerList.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/PrologEpilogInserter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/PseudoSourceValue.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegAllocBase.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegAllocFast.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegAllocGreedy.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegAllocPBQP.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegisterClassInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegisterCoalescer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegisterPressure.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RegisterScavenging.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SafeStack.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ShrinkWrap.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SjLjEHPrepare.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SlotIndexes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SpillPlacement.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SplitKit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SplitKit.h
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/StackColoring.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/StackMaps.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/StackProtector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/StackSlotColoring.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SwiftErrorValueTracking.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/SwitchLoweringUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TailDuplication.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TailDuplicator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TargetInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TargetLoweringBase.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TargetOptionsImpl.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TargetPassConfig.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TargetRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TargetSchedule.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/UnreachableBlockElim.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/ValueTypes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/VirtRegMap.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/WasmEHPrepare.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/WinEHPrepare.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/CodeGen/XRayInstrumentation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFAddressRange.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/FunctionInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/InlineInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/Range.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/GenericError.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/Hash.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
  releng/11.4/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Demangle/ItaniumDemangle.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Demangle/MicrosoftDemangle.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/BasicGOTAndStubsBuilder.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/EHFrameSupport.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/EHFrameSupportImpl.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLink.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkGeneric.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkGeneric.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/JITLinkMemoryManager.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/MachO_x86_64.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/CompileUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Core.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Layer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ObjectLinkingLayer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
  releng/11.4/contrib/llvm-project/llvm/lib/ExecutionEngine/TargetSelect.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/FuzzMutate/FuzzerCLI.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/AsmWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/AttributeImpl.h
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Attributes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/AutoUpgrade.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/BasicBlock.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/ConstantFold.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/ConstantRange.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Constants.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/ConstantsContext.h
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Core.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/DIBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/DataLayout.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/DebugInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/DebugInfoMetadata.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/DiagnosticInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Dominators.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Function.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Globals.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/IRBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/IRPrintingPasses.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/InlineAsm.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Instruction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Instructions.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/IntrinsicInst.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/LLVMContext.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/LLVMContextImpl.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/LLVMContextImpl.h
  releng/11.4/contrib/llvm-project/llvm/lib/IR/LegacyPassManager.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/MDBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Metadata.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Module.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/ModuleSummaryIndex.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Pass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/RemarkStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/SafepointIRVerifier.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Type.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/TypeFinder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/User.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Value.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/IR/Verifier.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/LTO/Caching.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/LTO/LTO.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/LTO/LTOBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/LTO/LTOCodeGenerator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/LTO/LTOModule.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/LTO/SummaryBasedOptimizations.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Linker/IRMover.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Linker/LinkModules.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/ELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCAsmBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCAsmInfoELF.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCAsmInfoXCOFF.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCAsmMacro.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCAsmStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCAssembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCContext.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCDisassembler/Disassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCDwarf.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCELFStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCExpr.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCFragment.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCInstrAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCMachOStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCObjectFileInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCObjectStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCParser/AsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCParser/COFFAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCParser/WasmAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCSection.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCSectionXCOFF.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCSubtargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCSymbolELF.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCTargetOptions.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCValue.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCWasmStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCWinCOFFStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MCXCOFFStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/MachObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/StringTableBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/WasmObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/WinCOFFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MC/XCOFFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/Context.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/LSUnit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/RegisterFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/RetireControlUnit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/Scheduler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/InstrBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/Instruction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/Stages/DispatchStage.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/Stages/EntryStage.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/Stages/ExecuteStage.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/Stages/InstructionTables.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/MCA/Stages/RetireStage.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/Archive.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/ArchiveWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/Binary.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/COFFObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/Decompressor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/ELF.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/ELFObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/MachOObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/MachOUniversal.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/Minidump.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/ModuleSymbolTable.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/Object.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/ObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/RelocationResolver.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/SymbolicFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/WasmObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/WindowsResource.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Object/XCOFFObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/DWARFEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/ELFYAML.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/MachOYAML.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/MinidumpYAML.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/WasmYAML.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ObjectYAML/YAML.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Option/ArgList.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Passes/PassBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Passes/PassRegistry.def
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/GCOV.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/InstrProf.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/InstrProfReader.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/InstrProfWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/SampleProf.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/SampleProfReader.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ProfileData/SampleProfWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/RemarkFormat.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/RemarkParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/RemarkStringTable.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkParser.h
  releng/11.4/contrib/llvm-project/llvm/lib/Remarks/YAMLRemarkSerializer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/AArch64TargetParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/AMDGPUMetadata.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/APFloat.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/APInt.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/ARMAttributeParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/ARMTargetParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/BinaryStreamReader.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/CRC.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/CachePruning.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/CodeGenCoverage.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/CommandLine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/CrashRecoveryContext.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/DataExtractor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Error.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/ErrorHandling.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/FileCheck.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/FileOutputBuffer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/FileUtilities.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/GlobPattern.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Host.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/InitLLVM.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/JSON.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/KnownBits.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/LockFileManager.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/ManagedStatic.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/MemoryBuffer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Parallel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Path.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/PrettyStackTrace.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Process.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/RWMutex.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/RandomNumberGenerator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Regex.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/SHA1.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Signals.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Signposts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/SpecialCaseList.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Statistic.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/StringExtras.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/StringRef.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/TargetParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Threading.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/TimeProfiler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Timer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Triple.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Unix/Memory.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Unix/Path.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Unix/Process.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Unix/Program.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Unix/Signals.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Unix/Threading.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Unix/Unix.h
  releng/11.4/contrib/llvm-project/llvm/lib/Support/VirtualFileSystem.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/DynamicLibrary.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/Host.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/Memory.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/Path.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/Process.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/Program.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/Signals.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/ThreadLocal.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/Threading.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Windows/explicit_symbols.inc
  releng/11.4/contrib/llvm-project/llvm/lib/Support/YAMLParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/YAMLTraits.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/Z3Solver.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/raw_ostream.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Support/regcomp.c
  releng/11.4/contrib/llvm-project/llvm/lib/TableGen/Error.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TableGen/Main.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TableGen/Record.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TableGen/SetTheory.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TableGen/TGLexer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TableGen/TGLexer.h
  releng/11.4/contrib/llvm-project/llvm/lib/TableGen/TGParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TableGen/TGParser.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CallingConvention.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FastISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64FrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64ISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SIMDInstrOpt.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64Subtarget.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SystemOperands.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/SVEInstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPU.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPU.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/BUFInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/CaymanInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/DSInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/FLATInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNNSAReassign.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNRegPressure.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/MIMGInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600FrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600InstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600Instructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIDefines.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIPreAllocateWWMRegs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIProgramInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SMInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/SOPInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/AMDGPUPALMetadata.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP1Instructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP2Instructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP3Instructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOPCInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AMDGPU/VOPInstructions.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCBranchFinalize.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCOptAddrMode.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/ARCTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/A15SDOptimizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARM.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARM.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMBasicBlockInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMCallingConv.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMFastISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMHazardRecognizer.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrMVE.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrNEON.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrThumb.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrThumb2.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstrVFP.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMMCInstLower.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMParallelDSP.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMPredicates.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMRegisterInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMScheduleA9.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMScheduleM4.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMSubtarget.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetMachine.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/MLxExpansionPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/Thumb1InstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2InstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AVRTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPF.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFAbstractMemberAccess.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFCORE.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFMIChecking.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFMIPeephole.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFMISimplifyPatchable.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFSubtarget.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BPFTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BTF.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BTFDebug.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/BTFDebug.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/BitTracker.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonDepOperands.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPatterns.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonPseudo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonSubtarget.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVExtract.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFCopy.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFGraph.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFLiveness.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFRegisters.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/RDFRegisters.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430FrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430ISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430InstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430Subtarget.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Mips.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Mips16InstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Mips64InstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsCallingConv.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsCondMov.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsFastISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrFPU.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsLegalizerInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsMCInstLower.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsMCInstLower.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsRegisterBanks.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsSEInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsScheduleGeneric.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsScheduleP5600.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsSubtarget.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsSubtarget.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/MipsTargetStreamer.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/ManagedStringPool.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTX.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/NVVMReflect.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/P9InstrResources.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPC.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCBranchCoalescing.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFastISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrHTM.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCInstrVSX.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCSubtarget.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCV.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCV.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVCallingConv.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSubtarget.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVSubtarget.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetMachine.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/LeonPasses.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstr64Bit.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZ.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZCallingConv.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZCallingConv.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrFP.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZInstrVector.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZOperands.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZOperators.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZPatterns.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZPostRewrite.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZProcessors.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZSchedule.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTDC.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/TargetLoweringObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/TargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/TargetMachineC.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssembly.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrBulkMemory.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/X86Operand.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86AsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86AsmPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86CallLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86CallLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86CallingConv.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86CmovConversion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86CondBrFolding.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86DomainReassignment.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86EvexToVex.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ExpandPseudo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86FastISel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86FixupBWInsts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86FixupLEAs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86FixupSetCC.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86FloatingPoint.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86FrameLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ISelLowering.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86IndirectBranchTracking.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InsertPrefetch.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrAVX512.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrArithmetic.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrBuilder.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrCMovSetCC.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrCompiler.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrControl.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrExtension.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFMA.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFPStack.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFoldTables.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFoldTables.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFormats.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrMMX.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrMPX.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrSSE.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrSystem.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrTSX.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstrXOP.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86InstructionSelector.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86IntrinsicsInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86LegalizerInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86LegalizerInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86MCInstLower.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86MacroFusion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86PadShortFunction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86PfmCounters.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterBankInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86RegisterInfo.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86RetpolineThunks.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86SchedBroadwell.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86SchedHaswell.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86SchedPredicates.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSandyBridge.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSkylakeClient.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86SchedSkylakeServer.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86Schedule.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleAtom.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleBdVer2.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleBtVer2.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleSLM.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86ScheduleZnver1.td
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86Subtarget.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86Subtarget.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86TargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86TargetMachine.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86TargetObjectFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86TargetObjectFile.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86TargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86VZeroUpper.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/X86/X86WinEHState.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreISelLowering.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreInstrInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
  releng/11.4/contrib/llvm-project/llvm/lib/TextAPI/MachO/Architecture.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TextAPI/MachO/InterfaceFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TextAPI/MachO/Symbol.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStub.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStubCommon.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/TextAPI/MachO/TextStubCommon.h
  releng/11.4/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroElide.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroInstr.h
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroInternal.h
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Coroutines/Coroutines.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/Attributor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/BlockExtractor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/ConstantMerge.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/FunctionImport.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalDCE.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalOpt.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/GlobalSplit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/IPO.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/InlineSimple.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/Inliner.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/Internalize.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/LoopExtractor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/MergeFunctions.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/PartialInlining.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/PruneEH.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/SCCP.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/SampleProfile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/StripSymbols.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineAtomicRMW.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/CFGMST.h
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrOrderFile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/PoisonChecking.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/PtrState.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/ADCE.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/BDCE.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/ConstantProp.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/DCE.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/DivRemPairs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/Float2Int.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVN.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVNHoist.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/GVNSink.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/GuardWidening.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/InstSimplifyPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/JumpThreading.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LICM.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopFuse.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopPredication.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopRotation.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopSink.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/LowerWidenableCondition.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/MergeICmps.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/NewGVN.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/Reassociate.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/SCCP.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/SROA.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/Scalar.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/Scalarizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/Sink.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/CloneFunction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/CloneModule.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/CodeExtractor.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/Evaluator.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/FlattenCFG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/GuardUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/InlineFunction.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/InstructionNamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LCSSA.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/Local.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopSimplify.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnroll.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LoopVersioning.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LowerInvoke.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/LowerSwitch.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/Mem2Reg.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/MetaRenamer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/ModuleUtils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/PredicateInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/SizeOpts.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/Utils.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/VNCoercion.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Utils/ValueMapper.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlan.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlan.h
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanValue.h
  releng/11.4/contrib/llvm-project/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/XRay/FDRRecordProducer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/XRay/FileHeaderReader.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/XRay/InstrumentationMap.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/XRay/Profile.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/XRay/RecordInitializer.cpp
  releng/11.4/contrib/llvm-project/llvm/lib/XRay/Trace.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/bugpoint/BugDriver.h
  releng/11.4/contrib/llvm-project/llvm/tools/bugpoint/CrashDebugger.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/bugpoint/ExtractFunction.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/bugpoint/OptimizerDriver.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/bugpoint/ToolRunner.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/bugpoint/bugpoint.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llc/llc.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/lli/RemoteJITUtils.h
  releng/11.4/contrib/llvm-project/llvm/tools/lli/lli.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-ar/llvm-ar.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-as/llvm-as.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-cov/CodeCoverage.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-cov/CoverageExporterJson.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-cov/SourceCoverageView.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-cov/TestingSupport.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-cxxmap/llvm-cxxmap.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-diff/DifferenceEngine.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-dis/llvm-dis.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-dwarfdump/Statistics.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-extract/llvm-extract.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-link/llvm-link.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-lto/llvm-lto.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-lto2/llvm-lto2.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mc/Disassembler.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mc/llvm-mc.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegion.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/BottleneckAnalysis.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/DispatchStatistics.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/InstructionInfoView.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/ResourcePressureView.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/SchedulerStatistics.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/SummaryView.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/Views/TimelineView.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-mca/llvm-mca.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-modextract/llvm-modextract.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-nm/llvm-nm.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Object.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Reader.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/Writer.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/CopyConfig.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/Object.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOReader.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/MachOWriter.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/Object.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/ObjcopyOpts.td
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/StripOpts.td
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objdump/COFFDump.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objdump/ELFDump.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objdump/MachODump.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-objdump/llvm-objdump.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-pdbutil/InputFile.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-profdata/llvm-profdata.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/COFFDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/ELFDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/MachODumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/ObjDumper.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/WasmDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/Win64EHDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/XCOFFDumper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-readobj/llvm-readobj.h
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-stress/llvm-stress.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-xray/func-id-helper.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-xray/xray-account.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-xray/xray-converter.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-xray/xray-extract.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-xray/xray-fdr-dump.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph-diff.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-xray/xray-graph.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/llvm-xray/xray-stacks.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/opt/NewPMDriver.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/opt/PassPrinters.cpp
  releng/11.4/contrib/llvm-project/llvm/tools/opt/PassPrinters.h
  releng/11.4/contrib/llvm-project/llvm/tools/opt/opt.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/AsmMatcherEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/AsmWriterEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/AsmWriterInst.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CallingConvEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeEmitterGen.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenDAGPatterns.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenInstruction.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenMapTable.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenRegisters.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenSchedule.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/CodeGenTarget.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/DAGISelEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcher.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherGen.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/DisassemblerEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/GlobalISelEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/InfoByHwMode.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/InstrDocsEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/InstrInfoEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/IntrinsicEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/OptParserEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/RegisterInfoEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/SearchableTableEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/SequenceToOffsetTable.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/SubtargetEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/TableGen.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/TableGenBackends.h
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/X86DisassemblerTables.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/X86FoldTablesEmitter.cpp
  releng/11.4/contrib/llvm-project/llvm/utils/TableGen/X86RecognizableInstr.cpp
  releng/11.4/contrib/llvm-project/openmp/CREDITS.txt
  releng/11.4/contrib/llvm-project/openmp/runtime/src/extractExternal.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/i18n/en_US.txt
  releng/11.4/contrib/llvm-project/openmp/runtime/src/include/omp_lib.f.var
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_affinity.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_affinity.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_alloc.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_atomic.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_barrier.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_csupport.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_dispatch.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_dispatch_hier.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_ftn_entry.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_ftn_os.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_global.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_gsupport.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_itt.inl
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_lock.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_lock.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_os.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_platform.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_runtime.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_settings.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_stats.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_str.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_stub.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_taskdeps.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_tasking.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_wait_release.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_getpid.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/kmp_wrapper_malloc.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/ompt-event-specific.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/ompt-general.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/ompt-internal.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/ompt-specific.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/ompt-specific.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/ittnotify_config.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/legacy/ittnotify.h
  releng/11.4/contrib/llvm-project/openmp/runtime/src/z_Linux_asm.S
  releng/11.4/contrib/llvm-project/openmp/runtime/src/z_Linux_util.cpp
  releng/11.4/contrib/llvm-project/openmp/runtime/src/z_Windows_NT_util.cpp
  releng/11.4/etc/mtree/BSD.debug.dist
  releng/11.4/etc/mtree/BSD.usr.dist
  releng/11.4/lib/clang/freebsd_cc_version.h
  releng/11.4/lib/clang/headers/Makefile
  releng/11.4/lib/clang/include/VCSVersion.inc
  releng/11.4/lib/clang/include/clang/Basic/Version.inc
  releng/11.4/lib/clang/include/clang/Config/config.h
  releng/11.4/lib/clang/include/lld/Common/Version.inc
  releng/11.4/lib/clang/include/lldb/Host/Config.h
  releng/11.4/lib/clang/include/llvm/Config/config.h
  releng/11.4/lib/clang/include/llvm/Config/llvm-config.h
  releng/11.4/lib/clang/include/llvm/Support/VCSRevision.h
  releng/11.4/lib/clang/libclang/Makefile
  releng/11.4/lib/clang/liblldb/Makefile
  releng/11.4/lib/clang/libllvm/Makefile
  releng/11.4/lib/clang/libllvmminimal/Makefile
  releng/11.4/lib/clang/llvm.build.mk
  releng/11.4/lib/libc++/Makefile
  releng/11.4/lib/libclang_rt/Makefile.inc
  releng/11.4/lib/libclang_rt/asan-preinit/Makefile
  releng/11.4/lib/libclang_rt/asan/Makefile
  releng/11.4/lib/libclang_rt/asan_cxx/Makefile
  releng/11.4/lib/libclang_rt/asan_dynamic/Makefile
  releng/11.4/lib/libclang_rt/cfi/Makefile
  releng/11.4/lib/libclang_rt/cfi_diag/Makefile
  releng/11.4/lib/libclang_rt/dd/Makefile
  releng/11.4/lib/libclang_rt/fuzzer/Makefile
  releng/11.4/lib/libclang_rt/fuzzer_no_main/Makefile
  releng/11.4/lib/libclang_rt/include/Makefile
  releng/11.4/lib/libclang_rt/msan/Makefile
  releng/11.4/lib/libclang_rt/msan_cxx/Makefile
  releng/11.4/lib/libclang_rt/profile/Makefile
  releng/11.4/lib/libclang_rt/safestack/Makefile
  releng/11.4/lib/libclang_rt/stats/Makefile
  releng/11.4/lib/libclang_rt/stats_client/Makefile
  releng/11.4/lib/libclang_rt/tsan/Makefile
  releng/11.4/lib/libclang_rt/tsan_cxx/Makefile
  releng/11.4/lib/libclang_rt/ubsan_minimal/Makefile
  releng/11.4/lib/libclang_rt/ubsan_standalone/Makefile
  releng/11.4/lib/libclang_rt/ubsan_standalone_cxx/Makefile
  releng/11.4/lib/libclang_rt/xray-basic/Makefile
  releng/11.4/lib/libclang_rt/xray-fdr/Makefile
  releng/11.4/lib/libclang_rt/xray-profiling/Makefile
  releng/11.4/lib/libclang_rt/xray/Makefile
  releng/11.4/lib/libcompiler_rt/Makefile.inc
  releng/11.4/lib/libomp/Makefile
  releng/11.4/sys/sys/param.h
  releng/11.4/tools/build/mk/OptionalObsoleteFiles.inc
  releng/11.4/usr.bin/clang/clang-tblgen/Makefile
  releng/11.4/usr.bin/clang/lld/Makefile
  releng/11.4/usr.bin/clang/lldb-tblgen/Makefile
  releng/11.4/usr.bin/clang/lldb/Makefile
  releng/11.4/usr.bin/clang/llvm-objcopy/Makefile
  releng/11.4/usr.bin/clang/llvm-pdbutil/Makefile
  releng/11.4/usr.bin/clang/llvm-tblgen/Makefile
  releng/11.4/usr.bin/clang/opt/Makefile
Directory Properties:
  releng/11.4/   (props changed)
  releng/11.4/contrib/llvm-project/clang/   (props changed)
  releng/11.4/contrib/llvm-project/compiler-rt/   (props changed)
  releng/11.4/contrib/llvm-project/libcxx/   (props changed)
  releng/11.4/contrib/llvm-project/libunwind/   (props changed)
  releng/11.4/contrib/llvm-project/lld/   (props changed)
  releng/11.4/contrib/llvm-project/lldb/   (props changed)
  releng/11.4/contrib/llvm-project/llvm/   (props changed)
  releng/11.4/contrib/llvm-project/openmp/   (props changed)

Modified: releng/11.4/ObsoleteFiles.inc
==============================================================================
--- releng/11.4/ObsoleteFiles.inc	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/ObsoleteFiles.inc	Fri May  8 18:53:06 2020	(r360822)
@@ -38,6 +38,243 @@
 #   xargs -n1 | sort | uniq -d;
 # done
 
+# 20200507: 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
+
 # 20200505: new clang import which bumps version from 9.0.0 to 9.0.1.
 OLD_FILES+=usr/lib/clang/9.0.0/include/cuda_wrappers/algorithm
 OLD_FILES+=usr/lib/clang/9.0.0/include/cuda_wrappers/complex

Modified: releng/11.4/UPDATING
==============================================================================
--- releng/11.4/UPDATING	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/UPDATING	Fri May  8 18:53:06 2020	(r360822)
@@ -16,9 +16,9 @@ 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.
 
-20200505:
+20200507:
 	Clang, llvm, lld, lldb, compiler-rt, libc++, libunwind and openmp have
-	been upgraded to 9.0.1.  Please see the 20141231 entry below for
+	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.
 

Modified: releng/11.4/contrib/llvm-project/FREEBSD-Xlist
==============================================================================
--- releng/11.4/contrib/llvm-project/FREEBSD-Xlist	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/contrib/llvm-project/FREEBSD-Xlist	Fri May  8 18:53:06 2020	(r360822)
@@ -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: releng/11.4/contrib/llvm-project/clang/include/clang-c/BuildSystem.h
==============================================================================
--- releng/11.4/contrib/llvm-project/clang/include/clang-c/BuildSystem.h	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/contrib/llvm-project/clang/include/clang-c/BuildSystem.h	Fri May  8 18:53:06 2020	(r360822)
@@ -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: releng/11.4/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h
==============================================================================
--- releng/11.4/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/contrib/llvm-project/clang/include/clang-c/CXCompilationDatabase.h	Fri May  8 18:53:06 2020	(r360822)
@@ -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: releng/11.4/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h
==============================================================================
--- releng/11.4/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/contrib/llvm-project/clang/include/clang-c/CXErrorCode.h	Fri May  8 18:53:06 2020	(r360822)
@@ -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: releng/11.4/contrib/llvm-project/clang/include/clang-c/CXString.h
==============================================================================
--- releng/11.4/contrib/llvm-project/clang/include/clang-c/CXString.h	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/contrib/llvm-project/clang/include/clang-c/CXString.h	Fri May  8 18:53:06 2020	(r360822)
@@ -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: releng/11.4/contrib/llvm-project/clang/include/clang-c/Documentation.h
==============================================================================
--- releng/11.4/contrib/llvm-project/clang/include/clang-c/Documentation.h	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/contrib/llvm-project/clang/include/clang-c/Documentation.h	Fri May  8 18:53:06 2020	(r360822)
@@ -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: releng/11.4/contrib/llvm-project/clang/include/clang-c/ExternC.h (from r360784, stable/11/contrib/llvm-project/clang/include/clang-c/ExternC.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ releng/11.4/contrib/llvm-project/clang/include/clang-c/ExternC.h	Fri May  8 18:53:06 2020	(r360822, copy of r360784, stable/11/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: releng/11.4/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h (from r360784, stable/11/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ releng/11.4/contrib/llvm-project/clang/include/clang-c/FatalErrorHandler.h	Fri May  8 18:53:06 2020	(r360822, copy of r360784, stable/11/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: releng/11.4/contrib/llvm-project/clang/include/clang-c/Index.h
==============================================================================
--- releng/11.4/contrib/llvm-project/clang/include/clang-c/Index.h	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/contrib/llvm-project/clang/include/clang-c/Index.h	Fri May  8 18:53:06 2020	(r360822)
@@ -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: releng/11.4/contrib/llvm-project/clang/include/clang-c/Platform.h
==============================================================================
--- releng/11.4/contrib/llvm-project/clang/include/clang-c/Platform.h	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/contrib/llvm-project/clang/include/clang-c/Platform.h	Fri May  8 18:53:06 2020	(r360822)
@@ -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: releng/11.4/contrib/llvm-project/clang/include/clang/AST/APValue.h
==============================================================================
--- releng/11.4/contrib/llvm-project/clang/include/clang/AST/APValue.h	Fri May  8 18:16:53 2020	(r360821)
+++ releng/11.4/contrib/llvm-project/clang/include/clang/AST/APValue.h	Fri May  8 18:53:06 2020	(r360822)
@@ -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.
+      void *DynamicAllocType;
     };
   };
 

Copied: releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h (from r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ releng/11.4/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h	Fri May  8 18:53:06 2020	(r360822, copy of r360784, stable/11/contrib/llvm-project/clang/include/clang/AST/ASTConcept.h)
@@ -0,0 +1,196 @@
+//===--- ASTConcept.h - Concepts Related AST Data Structures ----*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// \brief This file provides AST data structures related to concepts.
+///
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_CLANG_AST_ASTCONCEPT_H
+#define LLVM_CLANG_AST_ASTCONCEPT_H
+#include "clang/AST/Expr.h"
+#include "clang/Basic/SourceLocation.h"
+#include "llvm/ADT/PointerUnion.h"
+#include "llvm/ADT/SmallVector.h"
+#include <string>
+#include <utility>
+namespace clang {
+class ConceptDecl;
+class ConceptSpecializationExpr;
+
+/// The result of a constraint satisfaction check, containing the necessary
+/// information to diagnose an unsatisfied constraint.
+class ConstraintSatisfaction : public llvm::FoldingSetNode {
+  // The template-like entity that 'owns' the constraint checked here (can be a

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


More information about the svn-src-all mailing list