svn commit: r346168 - in stable/12: . contrib/compiler-rt contrib/compiler-rt/include/sanitizer contrib/compiler-rt/include/xray contrib/compiler-rt/lib/asan contrib/compiler-rt/lib/builtins contri...
Dimitry Andric
dim at FreeBSD.org
Fri Apr 12 20:03:40 UTC 2019
Author: dim
Date: Fri Apr 12 20:03:27 2019
New Revision: 346168
URL: https://svnweb.freebsd.org/changeset/base/346168
Log:
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
8.0.0 final release r356365.
MFC r340287 (by emaste):
Consolidate gcov entries in OptionalObsoleteFiles
Sponsored by: The FreeBSD Foundation
MFC r340289 (by emaste):
llvm-cov: also install as gcov (if GNU gcov is disabled)
llvm-cov provides a gcov-compatible interface when invoked as gcov.
Reviewed by: dim, markj
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D17923
MFC r340296 (by emaste):
Move llvm-profdata build into MK_LLVM_COV block
llvm-profdata is used with llvm-cov for code coverage (although llvm-cov
can also operate independently in a gcov-compatible mode).
Although llvm-profdata can be used independently of llvm-cov it makes
sense to group these under one option.
Also handle these in OptionalObsoleteFiles.inc while here.
Sponsored by: The FreeBSD Foundation
MFC r340300 (by emaste):
libllvm: Move SampleProfWriter to SRCS_MIN
It is required by llvm-profdata, now built by default under the
LLVM_COV knob. The additional complexity that would come from avoiding
building it if CLANG_EXTRAS and LLVM_COV are both disabled is not worth
the small savings in build time.
Sponsored by: The FreeBSD Foundation
MFC r340972 (by emaste):
llvm-objdump: initial man page
Based on llvm-objdump's online documentation and usage information.
This serves as a starting point; additional detail and cleanup still
required.
Also being submitted upstream in LLVM review D54864. I expect to use
this bespoke copy while we have LLVM 6.0 or 7.0 in FreeBSD; when we
update to LLVM 8.0 it should be upstream and we will switch to it.
PR: 233437
Reviewed by: bcr (man formatting)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D18309
MFC r340973 (by emaste):
llvm-objdump.1: remove invalid options
Some options appear in llvm-objdump's usage information as a side effect
of its option parsing implementation and are not actually llvm-objdump
options. Reported in LLVM review https://reviews.llvm.org/D54864.
Reported by: Fangrui Song
Sponsored by: The FreeBSD Foundation
MFC r340975 (by emaste):
llvm-objdump.1: fix igor / mandoc -Tlint warnings
Accidentally omitted from r340972.
MFC r341055 (by emaste):
llvm-objdump.1: remove more unintentional options
Some options come from static constructors in LLVM libraries and are
automatically added to llvm's usage output. They're not really supposed
to be llvm-objdump options.
Reported by: Fangrui Song in LLVM review D54864
Sponsored by: The FreeBSD Foundation
MFC r344779:
Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
the upstream release_80 branch r355313 (effectively, 8.0.0 rc3). The
release will follow very soon, but no more functional changes are
expected.
Release notes for llvm, clang and lld 8.0.0 will soon be available here:
<https://releases.llvm.org/8.0.0/docs/ReleaseNotes.html>
<https://releases.llvm.org/8.0.0/tools/clang/docs/ReleaseNotes.html>
<https://releases.llvm.org/8.0.0/tools/lld/docs/ReleaseNotes.html>
PR: 236062
Relnotes: yes
MFC r344798 (by emaste):
libllvm: promote WithColor and xxhash to SRCS_MIN
The armv6 build failed in CI due to missing symbols (from these two
source files) in the bootstrap Clang.
This affected only armv6 because other Clang-using archs are using LLD
as the bootstrap linker, and thus include SRCS_MIW via LLD_BOOTSTRAP.
Reported by: CI, via lwhsu
Sponsored by: The FreeBSD Foundation
MFC r344825:
Add a few missed files to the MK_LLVM_TARGET_BPF=yes case, otherwise
clang and various other executables will fail to link with undefined
symbols.
Reported by: O. Hartmann <ohartmann at walstatt.org>
MFC r344852:
Put in a temporary workaround for what is likely a gcc 6 bug (it does
not occur with gcc 7 or later). This should prevent the following error
from breaking the head-amd64-gcc CI builds:
In file included from /workspace/src/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp:14:0:
/workspace/src/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h:128:54: error: 'template<class _InputIterator> lldb_private::MemoryRegionInfos::MemoryRegionInfos(_InputIterator, _InputIterator, const allocator_type&)' inherited from 'std::__1::vector<lldb_private::MemoryRegionInfo>'
using std::vector<lldb_private::MemoryRegionInfo>::vector;
^~~~~~
/workspace/src/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h:128:54: error: conflicts with version inherited from 'std::__1::vector<lldb_private::MemoryRegionInfo>'
Reported by: CI
MFC r344896:
Pull in r354937 from upstream clang trunk (by Jörg Sonnenberger):
Fix inline assembler constraint validation
The current constraint logic is both too lax and too strict. It fails
for input outside the [INT_MIN..INT_MAX] range, but it also
implicitly accepts 0 as value when it should not. Adjust logic to
handle both correctly.
Differential Revision: https://reviews.llvm.org/D58649
Pull in r355491 from upstream clang trunk (by Hans Wennborg):
Inline asm constraints: allow ICE-like pointers for the "n"
constraint (PR40890)
Apparently GCC allows this, and there's code relying on it (see bug).
The idea is to allow expression that would have been allowed if they
were cast to int. So I based the code on how such a cast would be
done (the CK_PointerToIntegral case in
IntExprEvaluator::VisitCastExpr()).
Differential Revision: https://reviews.llvm.org/D58821
These should fix assertions and errors when using the inline assembly
"n" constraint in certain ways.
In case of devel/valgrind, a pointer was used as the input for the
constraint, which lead to "Assertion failed: (isInt() && "Invalid
accessor"), function getInt".
In case of math/secp256k1, a very large integer value was used as input
for the constraint, which lead to "error: value '4624529908474429119'
out of range for constraint 'n'".
PR: 236216, 236194
MFC r344951:
Merge llvm, clang, compiler-rt, libc++, lld, and lldb release_80 branch
r355677 (effectively, 8.0.0 rc4), resolve conflicts, and bump version
numbers.
PR: 236062
MFC r345018:
Merge LLVM libunwind trunk r351319, from just before upstream's
release_80 branch point. Afterwards, we will merge the rest of the
changes in the actual release_80 branch.
PR: 236062
MFC r345019:
Merge LLVM libunwind release_80 branch r355677 (effectively, 8.0.0 rc4).
PR: 236062
MFC r345021:
Pull in r355854 from upstream llvm trunk (by Jonas Paulsson):
[RegAlloc] Avoid compile time regression with multiple copy hints.
As a fix for https://bugs.llvm.org/show_bug.cgi?id=40986 ("excessive
compile time building opencollada"), this patch makes sure that no
phys reg is hinted more than once from getRegAllocationHints().
This handles the case were many virtual registers are assigned to the
same physreg. The previous compile time fix (r343686) in
weightCalcHelper() only made sure that physical/virtual registers are
passed no more than once to addRegAllocationHint().
Review: Dimitry Andric, Quentin Colombet
https://reviews.llvm.org/D59201
This should fix a hang when compiling certain generated .cpp files in
the graphics/opencollada port.
PR: 236313
MFC r345068 (by jhb):
Move libunwind out of contrib/llvm/projects.
Move LLVM's libunwind to its own contrib/ directory similar to other
runtime libraries like libc++ and libcxxrt.
Reviewed by: dim, emaste
Differential Revision: https://reviews.freebsd.org/D19534
MFC r345073:
Revert r308867 (which was originally committed in the clang390-import
project branch):
Work around LLVM PR30879, which is about a bad interaction between
X86 Call Frame Optimization on i386 and libunwind, by disallowing the
optimization for i386-freebsd12.
This should fix some instances of broken exception handling when
frame pointers are omitted, in particular some unittests run during
the build of editors/libreoffice.
This hack will be removed as soon as upstream has implemented a more
permanent fix for this problem.
And indeed, after r345018 and r345019, which updated LLVM libunwind to
the most recent version, the above workaround is no longer needed. The
upstream commit which fixed this is:
https://llvm.org/viewvc/llvm-project?view=revision&revision=292723
Specifically, 32 bit (i386-freebsd) executables optimized with omitted
frame pointers and Call Frame Optimization should now behave correctly
when a C++ exception is thrown, and the stack is unwound.
Upstream PR: https://llvm.org/bugs/show_bug.cgi?id=30879
PR: 236062
MFC r345152:
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, and lldb
release_80 branch r356034 (effectively, 8.0.0 rc5), resolve conflicts,
and bump version numbers.
PR: 236062
MFC r345231:
Add LLVM openmp trunk r351319 (just before the release_80 branch point)
to contrib/llvm. This is not yet connected to the build, the glue for
that will come in a follow-up commit.
PR: 236062
MFC r345232:
Bootstrap svn:mergeinfo on contrib/openmp.
PR: 236062
MFC r345233:
Merge openmp release_80 branch r356034 (effectively, 8.0.0 rc5).
PR: 236062
MFC r345234:
Add openmp __kmp_gettid() wrapper, using pthread_getthreadid_np(3).
This has also been submitted upstream.
PR: 236062
MFC r345283:
Enable building libomp.so for 32-bit x86. This is done by selectively
enabling the functions that save and restore MXCSR, since access to this
register requires SSE support.
Note that you may run into other issues with OpenMP on i386, since this
*not* yet supported upstream, and certainly not extensively tested.
PR: 236062, 236582
MFC r345345:
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
8.0.0 final release r356365. There were no functional changes since the
most recent merge, of 8.0.0 rc5.
Release notes for llvm, clang, lld and libc++ 8.0.0 are now available:
https://llvm.org/releases/8.0.0/docs/ReleaseNotes.html
https://llvm.org/releases/8.0.0/tools/clang/docs/ReleaseNotes.html
https://llvm.org/releases/8.0.0/tools/lld/docs/ReleaseNotes.html
https://llvm.org/releases/8.0.0/projects/libcxx/docs/ReleaseNotes.html
PR: 236062
MFC r345349:
Pull in r352826 from upstream lld trunk (by Fangrui Song):
[ELF] Support --{,no-}allow-shlib-undefined
Summary:
In ld.bfd/gold, --no-allow-shlib-undefined is the default when
linking an executable. This patch implements a check to error on
undefined symbols in a shared object, if all of its DT_NEEDED entries
are seen.
Our approach resembles the one used in gold, achieves a good balance
to be useful but not too smart (ld.bfd traces all DSOs and emulates
the behavior of a dynamic linker to catch more cases).
The error is issued based on the symbol table, different from
undefined reference errors issued for relocations. It is most
effective when there are DSOs that were not linked with -z defs (e.g.
when static sanitizers runtime is used).
gold has a comment that some system libraries on GNU/Linux may have
spurious undefined references and thus system libraries should be
excluded (https://sourceware.org/bugzilla/show_bug.cgi?id=6811). The
story may have changed now but we make --allow-shlib-undefined the
default for now. Its interaction with -shared can be discussed in the
future.
Reviewers: ruiu, grimar, pcc, espindola
Reviewed By: ruiu
Subscribers: joerg, emaste, arichardson, llvm-commits
Differential Revision: https://reviews.llvm.org/D57385
Pull in r352943 from upstream lld trunk (by Fangrui Song):
[ELF] Default to --no-allow-shlib-undefined for executables
Summary:
This follows the ld.bfd/gold behavior.
The error check is useful as it captures a common type of ld.so
undefined symbol errors as link-time errors:
// a.cc => a.so (not linked with -z defs)
void f(); // f is undefined
void g() { f(); }
// b.cc => executable with a DT_NEEDED entry on a.so
void g();
int main() { g(); }
// ld.so errors when g() is executed (lazy binding) or when the program is started (-z now)
// symbol lookup error: ... undefined symbol: f
Reviewers: ruiu, grimar, pcc, espindola
Reviewed By: ruiu
Subscribers: llvm-commits, emaste, arichardson
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D57569
Together, these add support for --no-allow-shlib-undefined, and make it
the default for executables, so they will fail to link if any symbols
from needed shared libraries are undefined.
Reported by: jbeich
PR: 236062, 236141
MFC r345449:
Pull in r356809 from upstream llvm trunk (by Eli Friedman):
[ARM] Don't form "ands" when it isn't scheduled correctly.
In r322972/r323136, the iteration here was changed to catch cases at
the beginning of a basic block... but we accidentally deleted an
important safety check. Restore that check to the way it was.
Fixes https://bugs.llvm.org/show_bug.cgi?id=41116
Differential Revision: https://reviews.llvm.org/D59680
This should fix "Assertion failed: (LiveCPSR && "CPSR liveness tracking
is wrong!"), function UpdateCPSRUse" errors when building the devel/xwpe
port for armv7.
PR: 236062, 236568
Added:
stable/12/contrib/compiler-rt/lib/builtins/ppc/fixunstfti.c
- copied unchanged from r344779, head/contrib/compiler-rt/lib/builtins/ppc/fixunstfti.c
stable/12/contrib/compiler-rt/lib/builtins/ppc/floattitf.c
- copied unchanged from r344779, head/contrib/compiler-rt/lib/builtins/ppc/floattitf.c
stable/12/contrib/compiler-rt/lib/esan/esan_sideline_bsd.cpp
- copied unchanged from r344779, head/contrib/compiler-rt/lib/esan/esan_sideline_bsd.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltins.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltins.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWindows.cpp
- copied unchanged from r344779, head/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWindows.cpp
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_checks.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/hwasan/hwasan_checks.h
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_memintrinsics.cc
- copied unchanged from r344779, head/contrib/compiler-rt/lib/hwasan/hwasan_memintrinsics.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.cc
- copied unchanged from r344779, head/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_local_address_space_view.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_local_address_space_view.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
- copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
- copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_ring_buffer.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_ring_buffer.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
- copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.h
stable/12/contrib/compiler-rt/lib/xray/xray_fdr_controller.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/xray/xray_fdr_controller.h
stable/12/contrib/compiler-rt/lib/xray/xray_fdr_log_writer.h
- copied unchanged from r344779, head/contrib/compiler-rt/lib/xray/xray_fdr_log_writer.h
stable/12/contrib/libc++/include/bit
- copied unchanged from r344779, head/contrib/libc++/include/bit
- copied from r345068, head/contrib/libunwind/
stable/12/contrib/llvm/include/llvm-c/Error.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm-c/Error.h
stable/12/contrib/llvm/include/llvm-c/OptRemarks.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm-c/OptRemarks.h
stable/12/contrib/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
stable/12/contrib/llvm/include/llvm-c/Transforms/Coroutines.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm-c/Transforms/Coroutines.h
stable/12/contrib/llvm/include/llvm/ADT/bit.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/ADT/bit.h
stable/12/contrib/llvm/include/llvm/Analysis/GuardUtils.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/GuardUtils.h
stable/12/contrib/llvm/include/llvm/Analysis/IVDescriptors.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/IVDescriptors.h
stable/12/contrib/llvm/include/llvm/Analysis/IndirectCallVisitor.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/IndirectCallVisitor.h
stable/12/contrib/llvm/include/llvm/Analysis/InstructionPrecedenceTracking.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/InstructionPrecedenceTracking.h
stable/12/contrib/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/OrderedInstructions.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/OrderedInstructions.h
stable/12/contrib/llvm/include/llvm/Analysis/StackSafetyAnalysis.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/StackSafetyAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/AMDGPUMetadataVerifier.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/AMDGPUMetadataVerifier.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/MSP430.def
- copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/MSP430.def
stable/12/contrib/llvm/include/llvm/BinaryFormat/MsgPack.def
- copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPack.def
stable/12/contrib/llvm/include/llvm/BinaryFormat/MsgPack.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPack.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/MsgPackReader.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPackReader.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/MsgPackTypes.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPackTypes.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/MsgPackWriter.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/BinaryFormat/MsgPackWriter.h
stable/12/contrib/llvm/include/llvm/CodeGen/AsmPrinterHandler.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/AsmPrinterHandler.h
stable/12/contrib/llvm/include/llvm/CodeGen/BuiltinGCs.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/BuiltinGCs.h
stable/12/contrib/llvm/include/llvm/CodeGen/DbgEntityHistoryCalculator.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/DbgEntityHistoryCalculator.h
stable/12/contrib/llvm/include/llvm/CodeGen/DebugHandlerBase.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/DebugHandlerBase.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachinePipeliner.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/CodeGen/MachinePipeliner.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBFrameData.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBFrameData.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
stable/12/contrib/llvm/include/llvm/Demangle/Compiler.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/Compiler.h
stable/12/contrib/llvm/include/llvm/Demangle/ItaniumDemangle.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/ItaniumDemangle.h
stable/12/contrib/llvm/include/llvm/Demangle/MicrosoftDemangle.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/MicrosoftDemangle.h
stable/12/contrib/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
stable/12/contrib/llvm/include/llvm/Demangle/StringView.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/StringView.h
stable/12/contrib/llvm/include/llvm/Demangle/Utility.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Demangle/Utility.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
stable/12/contrib/llvm/include/llvm/IR/CFGDiff.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/IR/CFGDiff.h
stable/12/contrib/llvm/include/llvm/IR/IntrinsicsRISCV.td
- copied unchanged from r344779, head/contrib/llvm/include/llvm/IR/IntrinsicsRISCV.td
stable/12/contrib/llvm/include/llvm/IR/PassInstrumentation.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/IR/PassInstrumentation.h
stable/12/contrib/llvm/include/llvm/IR/PassTimingInfo.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/IR/PassTimingInfo.h
stable/12/contrib/llvm/include/llvm/LTO/SummaryBasedOptimizations.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/LTO/SummaryBasedOptimizations.h
stable/12/contrib/llvm/include/llvm/MCA/
- copied from r344779, head/contrib/llvm/include/llvm/MCA/
stable/12/contrib/llvm/include/llvm/Passes/StandardInstrumentations.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Passes/StandardInstrumentations.h
stable/12/contrib/llvm/include/llvm/Support/AArch64TargetParser.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/AArch64TargetParser.h
stable/12/contrib/llvm/include/llvm/Support/ARMTargetParser.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/ARMTargetParser.h
stable/12/contrib/llvm/include/llvm/Support/BuryPointer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/BuryPointer.h
stable/12/contrib/llvm/include/llvm/Support/CFGUpdate.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/CFGUpdate.h
stable/12/contrib/llvm/include/llvm/Support/FileCheck.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/FileCheck.h
stable/12/contrib/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
stable/12/contrib/llvm/include/llvm/Support/MSVCErrorWorkarounds.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/MSVCErrorWorkarounds.h
stable/12/contrib/llvm/include/llvm/Support/SymbolRemappingReader.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/SymbolRemappingReader.h
stable/12/contrib/llvm/include/llvm/Support/VirtualFileSystem.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Support/VirtualFileSystem.h
stable/12/contrib/llvm/include/llvm/Target/TargetPfmCounters.td
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Target/TargetPfmCounters.td
stable/12/contrib/llvm/include/llvm/TextAPI/
- copied from r344779, head/contrib/llvm/include/llvm/TextAPI/
stable/12/contrib/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar/Scalarizer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Scalar/Scalarizer.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar/WarnMissedTransforms.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Scalar/WarnMissedTransforms.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/CanonicalizeAliases.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Utils/CanonicalizeAliases.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/GuardUtils.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Utils/GuardUtils.h
stable/12/contrib/llvm/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
stable/12/contrib/llvm/include/llvm/XRay/BlockIndexer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/BlockIndexer.h
stable/12/contrib/llvm/include/llvm/XRay/BlockPrinter.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/BlockPrinter.h
stable/12/contrib/llvm/include/llvm/XRay/BlockVerifier.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/BlockVerifier.h
stable/12/contrib/llvm/include/llvm/XRay/FDRLogBuilder.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRLogBuilder.h
stable/12/contrib/llvm/include/llvm/XRay/FDRRecordConsumer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRRecordConsumer.h
stable/12/contrib/llvm/include/llvm/XRay/FDRRecordProducer.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRRecordProducer.h
stable/12/contrib/llvm/include/llvm/XRay/FDRRecords.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRRecords.h
stable/12/contrib/llvm/include/llvm/XRay/FDRTraceExpander.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRTraceExpander.h
stable/12/contrib/llvm/include/llvm/XRay/FDRTraceWriter.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FDRTraceWriter.h
stable/12/contrib/llvm/include/llvm/XRay/FileHeaderReader.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/FileHeaderReader.h
stable/12/contrib/llvm/include/llvm/XRay/Profile.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/Profile.h
stable/12/contrib/llvm/include/llvm/XRay/RecordPrinter.h
- copied unchanged from r344779, head/contrib/llvm/include/llvm/XRay/RecordPrinter.h
stable/12/contrib/llvm/include/llvm/module.extern.modulemap
- copied unchanged from r344779, head/contrib/llvm/include/llvm/module.extern.modulemap
stable/12/contrib/llvm/include/llvm/module.install.modulemap
- copied unchanged from r344779, head/contrib/llvm/include/llvm/module.install.modulemap
stable/12/contrib/llvm/lib/Analysis/GuardUtils.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Analysis/GuardUtils.cpp
stable/12/contrib/llvm/lib/Analysis/IVDescriptors.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Analysis/IVDescriptors.cpp
stable/12/contrib/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
stable/12/contrib/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/OrderedInstructions.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Analysis/OrderedInstructions.cpp
stable/12/contrib/llvm/lib/Analysis/StackSafetyAnalysis.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Analysis/StackSafetyAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
stable/12/contrib/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
stable/12/contrib/llvm/lib/BinaryFormat/MsgPackReader.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/BinaryFormat/MsgPackReader.cpp
stable/12/contrib/llvm/lib/BinaryFormat/MsgPackTypes.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/BinaryFormat/MsgPackTypes.cpp
stable/12/contrib/llvm/lib/BinaryFormat/MsgPackWriter.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/BinaryFormat/MsgPackWriter.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.h
- copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.h
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/GISelChangeObserver.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/GlobalISel/GISelChangeObserver.cpp
stable/12/contrib/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordHelpers.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordHelpers.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAFrameData.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAFrameData.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypePointer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypePointer.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeTypedef.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeTypedef.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeVTShape.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeVTShape.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolCache.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolCache.cpp
stable/12/contrib/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
stable/12/contrib/llvm/lib/IR/PassInstrumentation.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/IR/PassInstrumentation.cpp
stable/12/contrib/llvm/lib/IR/PassTimingInfo.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/IR/PassTimingInfo.cpp
stable/12/contrib/llvm/lib/LTO/SummaryBasedOptimizations.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/LTO/SummaryBasedOptimizations.cpp
stable/12/contrib/llvm/lib/MC/MCParser/WasmAsmParser.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/MC/MCParser/WasmAsmParser.cpp
stable/12/contrib/llvm/lib/MCA/
- copied from r344779, head/contrib/llvm/lib/MCA/
stable/12/contrib/llvm/lib/OptRemarks/
- copied from r344779, head/contrib/llvm/lib/OptRemarks/
stable/12/contrib/llvm/lib/Passes/StandardInstrumentations.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Passes/StandardInstrumentations.cpp
stable/12/contrib/llvm/lib/Support/AArch64TargetParser.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Support/AArch64TargetParser.cpp
stable/12/contrib/llvm/lib/Support/ARMTargetParser.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Support/ARMTargetParser.cpp
stable/12/contrib/llvm/lib/Support/BuryPointer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Support/BuryPointer.cpp
stable/12/contrib/llvm/lib/Support/FileCheck.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Support/FileCheck.cpp
stable/12/contrib/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
stable/12/contrib/llvm/lib/Support/SymbolRemappingReader.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Support/SymbolRemappingReader.cpp
stable/12/contrib/llvm/lib/Support/VirtualFileSystem.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Support/VirtualFileSystem.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64BranchTargets.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64BranchTargets.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64PfmCounters.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64PfmCounters.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUFixFunctionBitcasts.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/AMDGPUFixFunctionBitcasts.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
stable/12/contrib/llvm/lib/Target/BPF/BPFMIChecking.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BPFMIChecking.cpp
stable/12/contrib/llvm/lib/Target/BPF/BTF.def
- copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BTF.def
stable/12/contrib/llvm/lib/Target/BPF/BTF.h
- copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BTF.h
stable/12/contrib/llvm/lib/Target/BPF/BTFDebug.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BTFDebug.cpp
stable/12/contrib/llvm/lib/Target/BPF/BTFDebug.h
- copied unchanged from r344779, head/contrib/llvm/lib/Target/BPF/BTFDebug.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
- copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV5.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV5.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV5.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV5.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV66.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV66.td
stable/12/contrib/llvm/lib/Target/MSP430/AsmParser/
- copied from r344779, head/contrib/llvm/lib/Target/MSP430/AsmParser/
stable/12/contrib/llvm/lib/Target/MSP430/Disassembler/
- copied from r344779, head/contrib/llvm/lib/Target/MSP430/Disassembler/
stable/12/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h
- copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h
stable/12/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.h
- copied unchanged from r344779, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.h
stable/12/contrib/llvm/lib/Target/PowerPC/PPCPfmCounters.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/PowerPC/PPCPfmCounters.td
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
- copied unchanged from r344779, head/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
stable/12/contrib/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
stable/12/contrib/llvm/lib/Target/RISCV/RISCVSystemOperands.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/RISCV/RISCVSystemOperands.td
stable/12/contrib/llvm/lib/Target/RISCV/Utils/
- copied from r344779, head/contrib/llvm/lib/Target/RISCV/Utils/
stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.h
- copied unchanged from r344779, head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
- copied unchanged from r344779, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyEHRestoreStackPointer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyEHRestoreStackPointer.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
stable/12/contrib/llvm/lib/Target/X86/X86CondBrFolding.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/X86/X86CondBrFolding.cpp
stable/12/contrib/llvm/lib/Target/X86/X86DiscriminateMemOps.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/X86/X86DiscriminateMemOps.cpp
stable/12/contrib/llvm/lib/Target/X86/X86InsertPrefetch.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Target/X86/X86InsertPrefetch.cpp
stable/12/contrib/llvm/lib/Target/X86/X86ScheduleBdVer2.td
- copied unchanged from r344779, head/contrib/llvm/lib/Target/X86/X86ScheduleBdVer2.td
stable/12/contrib/llvm/lib/Testing/Support/SupportHelpers.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Testing/Support/SupportHelpers.cpp
stable/12/contrib/llvm/lib/TextAPI/
- copied from r344779, head/contrib/llvm/lib/TextAPI/
stable/12/contrib/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/GuardUtils.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Utils/GuardUtils.cpp
stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
stable/12/contrib/llvm/lib/XRay/BlockIndexer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/BlockIndexer.cpp
stable/12/contrib/llvm/lib/XRay/BlockPrinter.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/BlockPrinter.cpp
stable/12/contrib/llvm/lib/XRay/BlockVerifier.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/BlockVerifier.cpp
stable/12/contrib/llvm/lib/XRay/FDRRecordProducer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/FDRRecordProducer.cpp
stable/12/contrib/llvm/lib/XRay/FDRRecords.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/FDRRecords.cpp
stable/12/contrib/llvm/lib/XRay/FDRTraceExpander.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/FDRTraceExpander.cpp
stable/12/contrib/llvm/lib/XRay/FDRTraceWriter.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/FDRTraceWriter.cpp
stable/12/contrib/llvm/lib/XRay/FileHeaderReader.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/FileHeaderReader.cpp
stable/12/contrib/llvm/lib/XRay/LogBuilderConsumer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/LogBuilderConsumer.cpp
stable/12/contrib/llvm/lib/XRay/Profile.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/Profile.cpp
stable/12/contrib/llvm/lib/XRay/RecordInitializer.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/RecordInitializer.cpp
stable/12/contrib/llvm/lib/XRay/RecordPrinter.cpp
- copied unchanged from r344779, head/contrib/llvm/lib/XRay/RecordPrinter.cpp
stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTContextAllocate.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/ASTContextAllocate.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTDumperUtils.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/ASTDumperUtils.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTImporterLookupTable.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/ASTImporterLookupTable.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/AttrVisitor.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/AttrVisitor.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/FormatString.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/FormatString.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/OSLog.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/OSLog.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/TemplateArgumentVisitor.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/TemplateArgumentVisitor.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/TextNodeDumper.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/AST/TextNodeDumper.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/SelectorExtras.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Analysis/SelectorExtras.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.def
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAST.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAST.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysis.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysis.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticComment.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticComment.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTU.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTU.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriver.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriver.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontend.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontend.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLex.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLex.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParse.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParse.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoring.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoring.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSema.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSema.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerialization.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerialization.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/FixedPoint.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/FixedPoint.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/MSP430Target.def
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/MSP430Target.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensionTypes.def
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensionTypes.def
stable/12/contrib/llvm/tools/clang/include/clang/Driver/DarwinSDKInfo.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Driver/DarwinSDKInfo.h
stable/12/contrib/llvm/tools/clang/include/clang/Parse/LoopHint.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Parse/LoopHint.h
stable/12/contrib/llvm/tools/clang/include/clang/Serialization/PCHContainerOperations.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/Serialization/PCHContainerOperations.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
stable/12/contrib/llvm/tools/clang/lib/AST/ASTImporterLookupTable.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/ASTImporterLookupTable.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/FormatString.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/FormatString.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/FormatStringParsing.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/FormatStringParsing.h
stable/12/contrib/llvm/tools/clang/lib/AST/OSLog.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/OSLog.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/PrintfFormatString.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/PrintfFormatString.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ScanfFormatString.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/ScanfFormatString.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/TextNodeDumper.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/AST/TextNodeDumper.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/CodeGenOptions.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Basic/CodeGenOptions.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/FixedPoint.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Basic/FixedPoint.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.h
stable/12/contrib/llvm/tools/clang/lib/Driver/DarwinSDKInfo.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/DarwinSDKInfo.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.h
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.h
stable/12/contrib/llvm/tools/clang/lib/Serialization/PCHContainerOperations.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/Serialization/PCHContainerOperations.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
- copied from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
- copied from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RetainSummaryManager.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RetainSummaryManager.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TaintManager.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TaintManager.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/MSP430.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lld/ELF/Arch/MSP430.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/RISCV.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lld/ELF/Arch/RISCV.cpp
stable/12/contrib/llvm/tools/lld/ELF/DWARF.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lld/ELF/DWARF.cpp
stable/12/contrib/llvm/tools/lld/ELF/DWARF.h
- copied unchanged from r344779, head/contrib/llvm/tools/lld/ELF/DWARF.h
stable/12/contrib/llvm/tools/lld/docs/missingkeyfunction.rst
- copied unchanged from r344779, head/contrib/llvm/tools/lld/docs/missingkeyfunction.rst
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBInitializerOptions.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/API/SBInitializerOptions.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Highlighter.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Core/Highlighter.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/RichManglingContext.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Core/RichManglingContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/SafeMachO.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Host/SafeMachO.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameRecognizer.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameRecognizer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Broadcaster.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Broadcaster.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Event.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Event.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Listener.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Listener.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Predicate.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Predicate.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterValue.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterValue.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Reproducer.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Reproducer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Scalar.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/Scalar.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/State.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/include/lldb/Utility/State.h
stable/12/contrib/llvm/tools/lldb/source/API/SBInitializerOptions.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/API/SBInitializerOptions.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.h
stable/12/contrib/llvm/tools/lldb/source/Core/Highlighter.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Core/Highlighter.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/RichManglingContext.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Core/RichManglingContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/
- copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ClangCommon/
- copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Language/ClangCommon/
stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/
- copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/
- copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
- copied from r344779, head/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
stable/12/contrib/llvm/tools/lldb/source/Target/StackFrameRecognizer.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Target/StackFrameRecognizer.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Broadcaster.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Broadcaster.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Event.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Event.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Listener.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Listener.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/RegisterValue.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/RegisterValue.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Reproducer.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Reproducer.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Scalar.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/Scalar.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/State.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/source/Utility/State.cpp
stable/12/contrib/llvm/tools/lldb/tools/driver/Options.td
- copied unchanged from r344779, head/contrib/llvm/tools/lldb/tools/driver/Options.td
stable/12/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.cpp
stable/12/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.h
- copied unchanged from r344779, head/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.h
stable/12/contrib/llvm/tools/llvm-cxxmap/
- copied from r344779, head/contrib/llvm/tools/llvm-cxxmap/
stable/12/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
stable/12/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.h
- copied unchanged from r344779, head/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.h
stable/12/contrib/llvm/tools/llvm-mca/Views/
- copied from r344779, head/contrib/llvm/tools/llvm-mca/Views/
stable/12/contrib/llvm/tools/llvm-mca/include/
- copied from r344779, head/contrib/llvm/tools/llvm-mca/include/
stable/12/contrib/llvm/tools/llvm-mca/lib/
- copied from r344779, head/contrib/llvm/tools/llvm-mca/lib/
stable/12/contrib/llvm/tools/llvm-objcopy/Buffer.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/llvm-objcopy/Buffer.cpp
stable/12/contrib/llvm/tools/llvm-objcopy/Buffer.h
- copied unchanged from r344779, head/contrib/llvm/tools/llvm-objcopy/Buffer.h
stable/12/contrib/llvm/tools/llvm-objcopy/COFF/
- copied from r344779, head/contrib/llvm/tools/llvm-objcopy/COFF/
stable/12/contrib/llvm/tools/llvm-objcopy/CopyConfig.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/llvm-objcopy/CopyConfig.cpp
stable/12/contrib/llvm/tools/llvm-objcopy/CopyConfig.h
- copied unchanged from r344779, head/contrib/llvm/tools/llvm-objcopy/CopyConfig.h
stable/12/contrib/llvm/tools/llvm-objcopy/ELF/
- copied from r344779, head/contrib/llvm/tools/llvm-objcopy/ELF/
stable/12/contrib/llvm/tools/llvm-xray/xray-fdr-dump.cpp
- copied unchanged from r344779, head/contrib/llvm/tools/llvm-xray/xray-fdr-dump.cpp
stable/12/contrib/llvm/utils/TableGen/ExegesisEmitter.cpp
- copied unchanged from r344779, head/contrib/llvm/utils/TableGen/ExegesisEmitter.cpp
stable/12/contrib/openmp/
- copied from r345231, head/contrib/openmp/
stable/12/usr.bin/clang/llvm-objdump/llvm-objdump.1
- copied, changed from r340972, head/usr.bin/clang/llvm-objdump/llvm-objdump.1
Directory Properties:
stable/12/contrib/libunwind/ (props changed)
Deleted:
stable/12/contrib/compiler-rt/lib/builtins/arm64/
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsDlsymWin.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeakAlias.cpp
stable/12/contrib/libc++/include/experimental/dynarray
stable/12/contrib/libc++/src/experimental/filesystem/
stable/12/contrib/llvm/include/llvm/Analysis/IndirectCallSiteVisitor.h
stable/12/contrib/llvm/include/llvm/CodeGen/GCs.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeBuiltinSymbol.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumSymbol.h
stable/12/contrib/llvm/include/llvm/IR/TypeBuilder.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/OrderedInstructions.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterHandler.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DbgValueHistoryCalculator.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.h
stable/12/contrib/llvm/lib/CodeGen/MachinePassRegistry.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeBuiltinSymbol.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumSymbol.cpp
stable/12/contrib/llvm/lib/Demangle/Compiler.h
stable/12/contrib/llvm/lib/Demangle/StringView.h
stable/12/contrib/llvm/lib/Demangle/Utility.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td
stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPULaneDominator.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonGatherPacketize.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV3.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV4.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td
stable/12/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.cpp
stable/12/contrib/llvm/lib/Target/Nios2/InstPrinter/Nios2InstPrinter.h
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.cpp
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2AsmBackend.h
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2BaseInfo.h
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2ELFObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2FixupKinds.h
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCAsmInfo.cpp
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCAsmInfo.h
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCExpr.cpp
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCExpr.h
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCTargetDesc.cpp
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2MCTargetDesc.h
stable/12/contrib/llvm/lib/Target/Nios2/MCTargetDesc/Nios2TargetStreamer.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2.h
stable/12/contrib/llvm/lib/Target/Nios2/Nios2.td
stable/12/contrib/llvm/lib/Target/Nios2/Nios2AsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2CallingConv.td
stable/12/contrib/llvm/lib/Target/Nios2/Nios2FrameLowering.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2FrameLowering.h
stable/12/contrib/llvm/lib/Target/Nios2/Nios2ISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2ISelLowering.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2ISelLowering.h
stable/12/contrib/llvm/lib/Target/Nios2/Nios2InstrFormats.td
stable/12/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.h
stable/12/contrib/llvm/lib/Target/Nios2/Nios2InstrInfo.td
stable/12/contrib/llvm/lib/Target/Nios2/Nios2MCInstLower.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2MachineFunction.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2MachineFunction.h
stable/12/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.h
stable/12/contrib/llvm/lib/Target/Nios2/Nios2RegisterInfo.td
stable/12/contrib/llvm/lib/Target/Nios2/Nios2Schedule.td
stable/12/contrib/llvm/lib/Target/Nios2/Nios2Subtarget.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2Subtarget.h
stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetMachine.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetMachine.h
stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetObjectFile.cpp
stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetObjectFile.h
stable/12/contrib/llvm/lib/Target/Nios2/Nios2TargetStreamer.h
stable/12/contrib/llvm/lib/Target/Nios2/TargetInfo/Nios2TargetInfo.cpp
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
stable/12/contrib/llvm/lib/Target/Sparc/SparcTargetStreamer.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyStoreResults.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/OrderedInstructions.cpp
stable/12/contrib/llvm/projects/
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/OSLog.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PseudoConstantAnalysis.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNios2.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/VirtualFileSystem.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/LoopHint.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTContext.h
stable/12/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
stable/12/contrib/llvm/tools/clang/lib/Analysis/OSLog.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Nios2.h
stable/12/contrib/llvm/tools/clang/lib/Basic/VirtualFileSystem.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/Arch/
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCV.h
stable/12/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/CodeGenOptions.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/PCHContainerOperations.cpp
stable/12/contrib/llvm/tools/clang/lib/Headers/cuda/
stable/12/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MisusedMovedObjectChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObjectChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Inclusions/CMakeLists.txt
stable/12/contrib/llvm/tools/lld/ELF/GdbIndex.cpp
stable/12/contrib/llvm/tools/lld/ELF/GdbIndex.h
stable/12/contrib/llvm/tools/lld/include/lld/Core/TODO.txt
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Broadcaster.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Event.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Listener.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/RegisterValue.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Scalar.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/State.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Predicate.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpoint.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/SoftwareBreakpoint.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/GoASTContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/JavaASTContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/OCamlASTContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Either.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/FastDemangle.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Range.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/SafeMachO.h
stable/12/contrib/llvm/tools/lldb/source/Core/Broadcaster.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Event.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Listener.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/RegisterValue.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Scalar.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/State.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpoint.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeBreakpointList.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/SoftwareBreakpoint.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/CMakeLists.txt
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoAST.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoLexer.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoParser.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/GoUserExpression.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go/gen_go_ast.py
stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/CMakeLists.txt
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoLanguage.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaFormatterFunctions.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/Java/JavaLanguage.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml/OCamlLanguage.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/GoLanguageRuntime.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java/JavaLanguageRuntime.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go/OperatingSystemGo.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserGo.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserJava.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h
stable/12/contrib/llvm/tools/lldb/source/Symbol/GoASTContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/JavaASTContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/OCamlASTContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/FastDemangle.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Range.cpp
stable/12/contrib/llvm/tools/llvm-mca/Context.cpp
stable/12/contrib/llvm/tools/llvm-mca/Context.h
stable/12/contrib/llvm/tools/llvm-mca/DispatchStage.cpp
stable/12/contrib/llvm/tools/llvm-mca/DispatchStage.h
stable/12/contrib/llvm/tools/llvm-mca/DispatchStatistics.cpp
stable/12/contrib/llvm/tools/llvm-mca/DispatchStatistics.h
stable/12/contrib/llvm/tools/llvm-mca/ExecuteStage.cpp
stable/12/contrib/llvm/tools/llvm-mca/ExecuteStage.h
stable/12/contrib/llvm/tools/llvm-mca/FetchStage.cpp
stable/12/contrib/llvm/tools/llvm-mca/FetchStage.h
stable/12/contrib/llvm/tools/llvm-mca/HWEventListener.cpp
stable/12/contrib/llvm/tools/llvm-mca/HWEventListener.h
stable/12/contrib/llvm/tools/llvm-mca/HardwareUnit.cpp
stable/12/contrib/llvm/tools/llvm-mca/HardwareUnit.h
stable/12/contrib/llvm/tools/llvm-mca/InstrBuilder.cpp
stable/12/contrib/llvm/tools/llvm-mca/InstrBuilder.h
stable/12/contrib/llvm/tools/llvm-mca/Instruction.cpp
stable/12/contrib/llvm/tools/llvm-mca/Instruction.h
stable/12/contrib/llvm/tools/llvm-mca/InstructionInfoView.cpp
stable/12/contrib/llvm/tools/llvm-mca/InstructionInfoView.h
stable/12/contrib/llvm/tools/llvm-mca/InstructionTables.cpp
stable/12/contrib/llvm/tools/llvm-mca/InstructionTables.h
stable/12/contrib/llvm/tools/llvm-mca/LSUnit.cpp
stable/12/contrib/llvm/tools/llvm-mca/LSUnit.h
stable/12/contrib/llvm/tools/llvm-mca/Pipeline.cpp
stable/12/contrib/llvm/tools/llvm-mca/Pipeline.h
stable/12/contrib/llvm/tools/llvm-mca/RegisterFile.cpp
stable/12/contrib/llvm/tools/llvm-mca/RegisterFile.h
stable/12/contrib/llvm/tools/llvm-mca/RegisterFileStatistics.cpp
stable/12/contrib/llvm/tools/llvm-mca/RegisterFileStatistics.h
stable/12/contrib/llvm/tools/llvm-mca/ResourcePressureView.cpp
stable/12/contrib/llvm/tools/llvm-mca/ResourcePressureView.h
stable/12/contrib/llvm/tools/llvm-mca/RetireControlUnit.cpp
stable/12/contrib/llvm/tools/llvm-mca/RetireControlUnit.h
stable/12/contrib/llvm/tools/llvm-mca/RetireControlUnitStatistics.cpp
stable/12/contrib/llvm/tools/llvm-mca/RetireControlUnitStatistics.h
stable/12/contrib/llvm/tools/llvm-mca/RetireStage.cpp
stable/12/contrib/llvm/tools/llvm-mca/RetireStage.h
stable/12/contrib/llvm/tools/llvm-mca/Scheduler.cpp
stable/12/contrib/llvm/tools/llvm-mca/Scheduler.h
stable/12/contrib/llvm/tools/llvm-mca/SchedulerStatistics.cpp
stable/12/contrib/llvm/tools/llvm-mca/SchedulerStatistics.h
stable/12/contrib/llvm/tools/llvm-mca/SourceMgr.h
stable/12/contrib/llvm/tools/llvm-mca/Stage.cpp
stable/12/contrib/llvm/tools/llvm-mca/Stage.h
stable/12/contrib/llvm/tools/llvm-mca/SummaryView.cpp
stable/12/contrib/llvm/tools/llvm-mca/SummaryView.h
stable/12/contrib/llvm/tools/llvm-mca/Support.cpp
stable/12/contrib/llvm/tools/llvm-mca/Support.h
stable/12/contrib/llvm/tools/llvm-mca/TimelineView.cpp
stable/12/contrib/llvm/tools/llvm-mca/TimelineView.h
stable/12/contrib/llvm/tools/llvm-mca/View.cpp
stable/12/contrib/llvm/tools/llvm-mca/View.h
stable/12/contrib/llvm/tools/llvm-objcopy/Object.cpp
stable/12/contrib/llvm/tools/llvm-objcopy/Object.h
stable/12/contrib/llvm/tools/llvm-pdbutil/Analyze.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/Analyze.h
Modified:
stable/12/ObsoleteFiles.inc
stable/12/UPDATING
stable/12/contrib/compiler-rt/LICENSE.TXT
stable/12/contrib/compiler-rt/include/sanitizer/allocator_interface.h
stable/12/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
stable/12/contrib/compiler-rt/include/sanitizer/hwasan_interface.h
stable/12/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
stable/12/contrib/compiler-rt/include/xray/xray_log_interface.h
stable/12/contrib/compiler-rt/lib/asan/asan_allocator.h
stable/12/contrib/compiler-rt/lib/asan/asan_errors.cc
stable/12/contrib/compiler-rt/lib/asan/asan_errors.h
stable/12/contrib/compiler-rt/lib/asan/asan_flags.inc
stable/12/contrib/compiler-rt/lib/asan/asan_fuchsia.cc
stable/12/contrib/compiler-rt/lib/asan/asan_globals.cc
stable/12/contrib/compiler-rt/lib/asan/asan_globals_win.cc
stable/12/contrib/compiler-rt/lib/asan/asan_internal.h
stable/12/contrib/compiler-rt/lib/asan/asan_linux.cc
stable/12/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
stable/12/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc
stable/12/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
stable/12/contrib/compiler-rt/lib/asan/asan_new_delete.cc
stable/12/contrib/compiler-rt/lib/asan/asan_posix.cc
stable/12/contrib/compiler-rt/lib/asan/asan_report.h
stable/12/contrib/compiler-rt/lib/asan/asan_rtems.cc
stable/12/contrib/compiler-rt/lib/asan/asan_rtl.cc
stable/12/contrib/compiler-rt/lib/asan/asan_thread.cc
stable/12/contrib/compiler-rt/lib/asan/asan_win.cc
stable/12/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
stable/12/contrib/compiler-rt/lib/builtins/arm/addsf3.S
stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S
stable/12/contrib/compiler-rt/lib/builtins/clzdi2.c
stable/12/contrib/compiler-rt/lib/builtins/cpu_model.c
stable/12/contrib/compiler-rt/lib/builtins/ctzdi2.c
stable/12/contrib/compiler-rt/lib/builtins/divdc3.c
stable/12/contrib/compiler-rt/lib/builtins/divdf3.c
stable/12/contrib/compiler-rt/lib/builtins/divsc3.c
stable/12/contrib/compiler-rt/lib/builtins/divsf3.c
stable/12/contrib/compiler-rt/lib/builtins/divtc3.c
stable/12/contrib/compiler-rt/lib/builtins/emutls.c
stable/12/contrib/compiler-rt/lib/builtins/fp_lib.h
stable/12/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c
stable/12/contrib/compiler-rt/lib/builtins/int_lib.h
stable/12/contrib/compiler-rt/lib/builtins/int_math.h
stable/12/contrib/compiler-rt/lib/builtins/int_types.h
stable/12/contrib/compiler-rt/lib/builtins/int_util.c
stable/12/contrib/compiler-rt/lib/builtins/int_util.h
stable/12/contrib/compiler-rt/lib/builtins/os_version_check.c
stable/12/contrib/compiler-rt/lib/builtins/ppc/divtc3.c
stable/12/contrib/compiler-rt/lib/cfi/cfi.cc
stable/12/contrib/compiler-rt/lib/cfi/cfi_blacklist.txt
stable/12/contrib/compiler-rt/lib/dfsan/dfsan.cc
stable/12/contrib/compiler-rt/lib/esan/esan_interceptors.cpp
stable/12/contrib/compiler-rt/lib/esan/esan_shadow.h
stable/12/contrib/compiler-rt/lib/esan/esan_sideline.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerCommand.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerCorpus.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerDefs.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerDriver.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeak.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerFlags.def
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerIO.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerIO.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerInternal.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerOptions.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerUtil.h
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerUtilFuchsia.cpp
stable/12/contrib/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp
stable/12/contrib/compiler-rt/lib/hwasan/hwasan.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan.h
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_allocator.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_allocator.h
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_flags.h
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_flags.inc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_interceptors.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_interface_internal.h
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_linux.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_mapping.h
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_new_delete.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.h
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_report.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_report.h
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_thread.cc
stable/12/contrib/compiler-rt/lib/hwasan/hwasan_thread.h
stable/12/contrib/compiler-rt/lib/interception/interception.h
stable/12/contrib/compiler-rt/lib/interception/interception_linux.h
stable/12/contrib/compiler-rt/lib/interception/interception_win.cc
stable/12/contrib/compiler-rt/lib/lsan/lsan_allocator.cc
stable/12/contrib/compiler-rt/lib/lsan/lsan_allocator.h
stable/12/contrib/compiler-rt/lib/lsan/lsan_common_mac.cc
stable/12/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
stable/12/contrib/compiler-rt/lib/msan/msan.cc
stable/12/contrib/compiler-rt/lib/msan/msan_allocator.cc
stable/12/contrib/compiler-rt/lib/msan/msan_interceptors.cc
stable/12/contrib/compiler-rt/lib/msan/msan_linux.cc
stable/12/contrib/compiler-rt/lib/profile/GCDAProfiling.c
stable/12/contrib/compiler-rt/lib/profile/InstrProfData.inc
stable/12/contrib/compiler-rt/lib/profile/InstrProfilingPlatformLinux.c
stable/12/contrib/compiler-rt/lib/profile/InstrProfilingPlatformOther.c
stable/12/contrib/compiler-rt/lib/profile/InstrProfilingValue.c
stable/12/contrib/compiler-rt/lib/profile/WindowsMMap.c
stable/12/contrib/compiler-rt/lib/profile/WindowsMMap.h
stable/12/contrib/compiler-rt/lib/safestack/safestack.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_bytemap.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary32.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_x86.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_file.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_malloc_mac.inc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_fuchsia.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_generic.inc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_aarch64.inc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_arm.inc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_x86_64.inc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
stable/12/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
stable/12/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
stable/12/contrib/compiler-rt/lib/scudo/scudo_allocator.cpp
stable/12/contrib/compiler-rt/lib/scudo/scudo_allocator.h
stable/12/contrib/compiler-rt/lib/scudo/scudo_malloc.cpp
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_platform.h
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.h
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_aarch64.S
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_amd64.S
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
stable/12/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
stable/12/contrib/compiler-rt/lib/ubsan/ubsan_checks.inc
stable/12/contrib/compiler-rt/lib/ubsan/ubsan_flags.inc
stable/12/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc
stable/12/contrib/compiler-rt/lib/ubsan/ubsan_handlers.h
stable/12/contrib/compiler-rt/lib/ubsan/ubsan_interface.inc
stable/12/contrib/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc
stable/12/contrib/compiler-rt/lib/xray/xray_allocator.h
stable/12/contrib/compiler-rt/lib/xray/xray_basic_logging.cc
stable/12/contrib/compiler-rt/lib/xray/xray_buffer_queue.cc
stable/12/contrib/compiler-rt/lib/xray/xray_buffer_queue.h
stable/12/contrib/compiler-rt/lib/xray/xray_defs.h
stable/12/contrib/compiler-rt/lib/xray/xray_fdr_log_records.h
stable/12/contrib/compiler-rt/lib/xray/xray_fdr_logging.cc
stable/12/contrib/compiler-rt/lib/xray/xray_function_call_trie.h
stable/12/contrib/compiler-rt/lib/xray/xray_init.cc
stable/12/contrib/compiler-rt/lib/xray/xray_interface.cc
stable/12/contrib/compiler-rt/lib/xray/xray_profile_collector.cc
stable/12/contrib/compiler-rt/lib/xray/xray_profile_collector.h
stable/12/contrib/compiler-rt/lib/xray/xray_profiling.cc
stable/12/contrib/compiler-rt/lib/xray/xray_profiling_flags.inc
stable/12/contrib/compiler-rt/lib/xray/xray_segmented_array.h
stable/12/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S
stable/12/contrib/compiler-rt/lib/xray/xray_tsc.h
stable/12/contrib/compiler-rt/lib/xray/xray_utils.cc
stable/12/contrib/compiler-rt/lib/xray/xray_utils.h
stable/12/contrib/compiler-rt/lib/xray/xray_x86_64.cc
stable/12/contrib/libc++/LICENSE.TXT
stable/12/contrib/libc++/include/__bit_reference
stable/12/contrib/libc++/include/__config
stable/12/contrib/libc++/include/__debug
stable/12/contrib/libc++/include/__functional_base
stable/12/contrib/libc++/include/__hash_table
stable/12/contrib/libc++/include/__libcpp_version
stable/12/contrib/libc++/include/__locale
stable/12/contrib/libc++/include/__mutex_base
stable/12/contrib/libc++/include/__node_handle
stable/12/contrib/libc++/include/__sso_allocator
stable/12/contrib/libc++/include/__string
stable/12/contrib/libc++/include/__threading_support
stable/12/contrib/libc++/include/__tree
stable/12/contrib/libc++/include/__tuple
stable/12/contrib/libc++/include/algorithm
stable/12/contrib/libc++/include/any
stable/12/contrib/libc++/include/array
stable/12/contrib/libc++/include/atomic
stable/12/contrib/libc++/include/bitset
stable/12/contrib/libc++/include/charconv
stable/12/contrib/libc++/include/chrono
stable/12/contrib/libc++/include/cmath
stable/12/contrib/libc++/include/complex
stable/12/contrib/libc++/include/cstddef
stable/12/contrib/libc++/include/deque
stable/12/contrib/libc++/include/exception
stable/12/contrib/libc++/include/experimental/any
stable/12/contrib/libc++/include/experimental/chrono
stable/12/contrib/libc++/include/experimental/coroutine
stable/12/contrib/libc++/include/experimental/memory_resource
stable/12/contrib/libc++/include/experimental/numeric
stable/12/contrib/libc++/include/experimental/optional
stable/12/contrib/libc++/include/experimental/ratio
stable/12/contrib/libc++/include/experimental/string_view
stable/12/contrib/libc++/include/experimental/system_error
stable/12/contrib/libc++/include/experimental/tuple
stable/12/contrib/libc++/include/filesystem
stable/12/contrib/libc++/include/forward_list
stable/12/contrib/libc++/include/fstream
stable/12/contrib/libc++/include/functional
stable/12/contrib/libc++/include/future
stable/12/contrib/libc++/include/iomanip
stable/12/contrib/libc++/include/iosfwd
stable/12/contrib/libc++/include/istream
stable/12/contrib/libc++/include/iterator
stable/12/contrib/libc++/include/limits
stable/12/contrib/libc++/include/list
stable/12/contrib/libc++/include/locale
stable/12/contrib/libc++/include/map
stable/12/contrib/libc++/include/memory
stable/12/contrib/libc++/include/module.modulemap
stable/12/contrib/libc++/include/mutex
stable/12/contrib/libc++/include/new
stable/12/contrib/libc++/include/numeric
stable/12/contrib/libc++/include/optional
stable/12/contrib/libc++/include/ostream
stable/12/contrib/libc++/include/random
stable/12/contrib/libc++/include/regex
stable/12/contrib/libc++/include/scoped_allocator
stable/12/contrib/libc++/include/set
stable/12/contrib/libc++/include/shared_mutex
stable/12/contrib/libc++/include/span
stable/12/contrib/libc++/include/sstream
stable/12/contrib/libc++/include/stddef.h
stable/12/contrib/libc++/include/stdexcept
stable/12/contrib/libc++/include/streambuf
stable/12/contrib/libc++/include/string
stable/12/contrib/libc++/include/string_view
stable/12/contrib/libc++/include/thread
stable/12/contrib/libc++/include/tuple
stable/12/contrib/libc++/include/type_traits
stable/12/contrib/libc++/include/typeinfo
stable/12/contrib/libc++/include/unordered_map
stable/12/contrib/libc++/include/unordered_set
stable/12/contrib/libc++/include/utility
stable/12/contrib/libc++/include/valarray
stable/12/contrib/libc++/include/variant
stable/12/contrib/libc++/include/vector
stable/12/contrib/libc++/include/version
stable/12/contrib/libc++/src/experimental/memory_resource.cpp
stable/12/contrib/libc++/src/filesystem/filesystem_common.h
stable/12/contrib/libc++/src/filesystem/operations.cpp
stable/12/contrib/libc++/src/future.cpp
stable/12/contrib/libc++/src/iostream.cpp
stable/12/contrib/libc++/src/new.cpp
stable/12/contrib/libc++/src/support/runtime/exception_fallback.ipp
stable/12/contrib/libc++/src/support/runtime/exception_glibcxx.ipp
stable/12/contrib/libc++/src/support/runtime/exception_libcxxrt.ipp
stable/12/contrib/libc++/src/support/runtime/exception_msvc.ipp
stable/12/contrib/libc++/src/thread.cpp
stable/12/contrib/llvm/FREEBSD-Xlist
stable/12/contrib/llvm/LICENSE.TXT
stable/12/contrib/llvm/include/llvm-c/Core.h
stable/12/contrib/llvm/include/llvm-c/DebugInfo.h
stable/12/contrib/llvm/include/llvm-c/ExecutionEngine.h
stable/12/contrib/llvm/include/llvm-c/OrcBindings.h
stable/12/contrib/llvm/include/llvm-c/TargetMachine.h
stable/12/contrib/llvm/include/llvm-c/Transforms/Scalar.h
stable/12/contrib/llvm/include/llvm-c/Types.h
stable/12/contrib/llvm/include/llvm-c/lto.h
stable/12/contrib/llvm/include/llvm/ADT/APFloat.h
stable/12/contrib/llvm/include/llvm/ADT/APInt.h
stable/12/contrib/llvm/include/llvm/ADT/Any.h
stable/12/contrib/llvm/include/llvm/ADT/BitVector.h
stable/12/contrib/llvm/include/llvm/ADT/DenseMap.h
stable/12/contrib/llvm/include/llvm/ADT/DenseSet.h
stable/12/contrib/llvm/include/llvm/ADT/GraphTraits.h
stable/12/contrib/llvm/include/llvm/ADT/Hashing.h
stable/12/contrib/llvm/include/llvm/ADT/ImmutableList.h
stable/12/contrib/llvm/include/llvm/ADT/IntervalMap.h
stable/12/contrib/llvm/include/llvm/ADT/Optional.h
stable/12/contrib/llvm/include/llvm/ADT/PointerIntPair.h
stable/12/contrib/llvm/include/llvm/ADT/PointerSumType.h
stable/12/contrib/llvm/include/llvm/ADT/PostOrderIterator.h
stable/12/contrib/llvm/include/llvm/ADT/STLExtras.h
stable/12/contrib/llvm/include/llvm/ADT/SmallBitVector.h
stable/12/contrib/llvm/include/llvm/ADT/SmallVector.h
stable/12/contrib/llvm/include/llvm/ADT/SparseBitVector.h
stable/12/contrib/llvm/include/llvm/ADT/StringExtras.h
stable/12/contrib/llvm/include/llvm/ADT/Triple.h
stable/12/contrib/llvm/include/llvm/ADT/iterator.h
stable/12/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h
stable/12/contrib/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
stable/12/contrib/llvm/include/llvm/Analysis/CFG.h
stable/12/contrib/llvm/include/llvm/Analysis/CFGPrinter.h
stable/12/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h
stable/12/contrib/llvm/include/llvm/Analysis/CaptureTracking.h
stable/12/contrib/llvm/include/llvm/Analysis/CmpInstAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/DemandedBits.h
stable/12/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/DivergenceAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/GlobalsModRef.h
stable/12/contrib/llvm/include/llvm/Analysis/InlineCost.h
stable/12/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h
stable/12/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
stable/12/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/LoopInfo.h
stable/12/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h
stable/12/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/MemoryLocation.h
stable/12/contrib/llvm/include/llvm/Analysis/MemorySSA.h
stable/12/contrib/llvm/include/llvm/Analysis/MemorySSAUpdater.h
stable/12/contrib/llvm/include/llvm/Analysis/MustExecute.h
stable/12/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
stable/12/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
stable/12/contrib/llvm/include/llvm/Analysis/Passes.h
stable/12/contrib/llvm/include/llvm/Analysis/PhiValues.h
stable/12/contrib/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
stable/12/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
stable/12/contrib/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
stable/12/contrib/llvm/include/llvm/Analysis/SparsePropagation.h
stable/12/contrib/llvm/include/llvm/Analysis/SyntheticCountsUtils.h
stable/12/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def
stable/12/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h
stable/12/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
stable/12/contrib/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
stable/12/contrib/llvm/include/llvm/Analysis/TypeMetadataUtils.h
stable/12/contrib/llvm/include/llvm/Analysis/ValueTracking.h
stable/12/contrib/llvm/include/llvm/Analysis/VectorUtils.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/Dwarf.def
stable/12/contrib/llvm/include/llvm/BinaryFormat/Dwarf.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/ELF.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/MachO.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/Wasm.h
stable/12/contrib/llvm/include/llvm/BinaryFormat/WasmRelocs.def
stable/12/contrib/llvm/include/llvm/Bitcode/BitcodeReader.h
stable/12/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
stable/12/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
stable/12/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h
stable/12/contrib/llvm/include/llvm/CodeGen/CommandFlags.inc
stable/12/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
stable/12/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/GCMetadata.h
stable/12/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
stable/12/contrib/llvm/include/llvm/CodeGen/GCStrategy.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
stable/12/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
stable/12/contrib/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
stable/12/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
stable/12/contrib/llvm/include/llvm/CodeGen/LiveIntervals.h
stable/12/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h
stable/12/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.h
stable/12/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineFunction.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineInstr.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineOutliner.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
stable/12/contrib/llvm/include/llvm/CodeGen/Passes.h
stable/12/contrib/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
stable/12/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
stable/12/contrib/llvm/include/llvm/CodeGen/RegAllocRegistry.h
stable/12/contrib/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h
stable/12/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
stable/12/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h
stable/12/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
stable/12/contrib/llvm/include/llvm/CodeGen/SelectionDAGAddressAnalysis.h
stable/12/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h
stable/12/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
stable/12/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h
stable/12/contrib/llvm/include/llvm/CodeGen/StackMaps.h
stable/12/contrib/llvm/include/llvm/CodeGen/TargetFrameLowering.h
stable/12/contrib/llvm/include/llvm/CodeGen/TargetInstrInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/TargetLowering.h
stable/12/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
stable/12/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h
stable/12/contrib/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
stable/12/contrib/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
stable/12/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DIContext.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
stable/12/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
stable/12/contrib/llvm/include/llvm/DebugInfo/MSF/MSFError.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStream.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSession.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawError.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawTypes.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiHashing.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStream.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
stable/12/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
stable/12/contrib/llvm/include/llvm/Demangle/Demangle.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/Core.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
stable/12/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
stable/12/contrib/llvm/include/llvm/IR/Attributes.h
stable/12/contrib/llvm/include/llvm/IR/Attributes.td
stable/12/contrib/llvm/include/llvm/IR/BasicBlock.h
stable/12/contrib/llvm/include/llvm/IR/CFG.h
stable/12/contrib/llvm/include/llvm/IR/CallSite.h
stable/12/contrib/llvm/include/llvm/IR/CallingConv.h
stable/12/contrib/llvm/include/llvm/IR/Constant.h
stable/12/contrib/llvm/include/llvm/IR/Constants.h
stable/12/contrib/llvm/include/llvm/IR/DIBuilder.h
stable/12/contrib/llvm/include/llvm/IR/DataLayout.h
stable/12/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
stable/12/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
stable/12/contrib/llvm/include/llvm/IR/DebugLoc.h
stable/12/contrib/llvm/include/llvm/IR/DiagnosticInfo.h
stable/12/contrib/llvm/include/llvm/IR/DomTreeUpdater.h
stable/12/contrib/llvm/include/llvm/IR/Dominators.h
stable/12/contrib/llvm/include/llvm/IR/Function.h
stable/12/contrib/llvm/include/llvm/IR/GlobalValue.h
stable/12/contrib/llvm/include/llvm/IR/IRBuilder.h
stable/12/contrib/llvm/include/llvm/IR/IRPrintingPasses.h
stable/12/contrib/llvm/include/llvm/IR/InstVisitor.h
stable/12/contrib/llvm/include/llvm/IR/InstrTypes.h
stable/12/contrib/llvm/include/llvm/IR/Instruction.def
stable/12/contrib/llvm/include/llvm/IR/Instruction.h
stable/12/contrib/llvm/include/llvm/IR/Instructions.h
stable/12/contrib/llvm/include/llvm/IR/IntrinsicInst.h
stable/12/contrib/llvm/include/llvm/IR/Intrinsics.td
stable/12/contrib/llvm/include/llvm/IR/IntrinsicsAArch64.td
stable/12/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
stable/12/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td
stable/12/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
stable/12/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
stable/12/contrib/llvm/include/llvm/IR/IntrinsicsX86.td
stable/12/contrib/llvm/include/llvm/IR/LLVMContext.h
stable/12/contrib/llvm/include/llvm/IR/LegacyPassManager.h
stable/12/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
stable/12/contrib/llvm/include/llvm/IR/Metadata.h
stable/12/contrib/llvm/include/llvm/IR/Module.h
stable/12/contrib/llvm/include/llvm/IR/ModuleSummaryIndex.h
stable/12/contrib/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
stable/12/contrib/llvm/include/llvm/IR/Operator.h
stable/12/contrib/llvm/include/llvm/IR/PassManager.h
stable/12/contrib/llvm/include/llvm/IR/PassManagerInternal.h
stable/12/contrib/llvm/include/llvm/IR/PatternMatch.h
stable/12/contrib/llvm/include/llvm/IR/RuntimeLibcalls.def
stable/12/contrib/llvm/include/llvm/IR/Value.h
stable/12/contrib/llvm/include/llvm/InitializePasses.h
stable/12/contrib/llvm/include/llvm/LTO/Config.h
stable/12/contrib/llvm/include/llvm/LTO/LTO.h
stable/12/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
stable/12/contrib/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
stable/12/contrib/llvm/include/llvm/LinkAllPasses.h
stable/12/contrib/llvm/include/llvm/MC/MCAsmInfoWasm.h
stable/12/contrib/llvm/include/llvm/MC/MCAsmMacro.h
stable/12/contrib/llvm/include/llvm/MC/MCAssembler.h
stable/12/contrib/llvm/include/llvm/MC/MCCodeView.h
stable/12/contrib/llvm/include/llvm/MC/MCContext.h
stable/12/contrib/llvm/include/llvm/MC/MCDwarf.h
stable/12/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h
stable/12/contrib/llvm/include/llvm/MC/MCExpr.h
stable/12/contrib/llvm/include/llvm/MC/MCInst.h
stable/12/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h
stable/12/contrib/llvm/include/llvm/MC/MCInstrDesc.h
stable/12/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h
stable/12/contrib/llvm/include/llvm/MC/MCObjectStreamer.h
stable/12/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
stable/12/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
stable/12/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
stable/12/contrib/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
stable/12/contrib/llvm/include/llvm/MC/MCRegisterInfo.h
stable/12/contrib/llvm/include/llvm/MC/MCSchedule.h
stable/12/contrib/llvm/include/llvm/MC/MCSection.h
stable/12/contrib/llvm/include/llvm/MC/MCStreamer.h
stable/12/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
stable/12/contrib/llvm/include/llvm/MC/MCWasmObjectWriter.h
stable/12/contrib/llvm/include/llvm/MC/MCWin64EH.h
stable/12/contrib/llvm/include/llvm/MC/MCWinEH.h
stable/12/contrib/llvm/include/llvm/Object/COFF.h
stable/12/contrib/llvm/include/llvm/Object/ELF.h
stable/12/contrib/llvm/include/llvm/Object/ELFObjectFile.h
stable/12/contrib/llvm/include/llvm/Object/ELFTypes.h
stable/12/contrib/llvm/include/llvm/Object/Error.h
stable/12/contrib/llvm/include/llvm/Object/MachO.h
stable/12/contrib/llvm/include/llvm/Object/ObjectFile.h
stable/12/contrib/llvm/include/llvm/Object/RelocVisitor.h
stable/12/contrib/llvm/include/llvm/Object/Wasm.h
stable/12/contrib/llvm/include/llvm/Object/WasmTraits.h
stable/12/contrib/llvm/include/llvm/ObjectYAML/COFFYAML.h
stable/12/contrib/llvm/include/llvm/ObjectYAML/ELFYAML.h
stable/12/contrib/llvm/include/llvm/ObjectYAML/WasmYAML.h
stable/12/contrib/llvm/include/llvm/Option/OptTable.h
stable/12/contrib/llvm/include/llvm/Pass.h
stable/12/contrib/llvm/include/llvm/Passes/PassBuilder.h
stable/12/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
stable/12/contrib/llvm/include/llvm/ProfileData/GCOV.h
stable/12/contrib/llvm/include/llvm/ProfileData/InstrProf.h
stable/12/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h
stable/12/contrib/llvm/include/llvm/ProfileData/SampleProf.h
stable/12/contrib/llvm/include/llvm/ProfileData/SampleProfReader.h
stable/12/contrib/llvm/include/llvm/ProfileData/SampleProfWriter.h
stable/12/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
stable/12/contrib/llvm/include/llvm/Support/AMDGPUMetadata.h
stable/12/contrib/llvm/include/llvm/Support/ARMTargetParser.def
stable/12/contrib/llvm/include/llvm/Support/ARMWinEH.h
stable/12/contrib/llvm/include/llvm/Support/Allocator.h
stable/12/contrib/llvm/include/llvm/Support/BinaryStreamArray.h
stable/12/contrib/llvm/include/llvm/Support/BinaryStreamReader.h
stable/12/contrib/llvm/include/llvm/Support/Chrono.h
stable/12/contrib/llvm/include/llvm/Support/CodeGen.h
stable/12/contrib/llvm/include/llvm/Support/CommandLine.h
stable/12/contrib/llvm/include/llvm/Support/Compiler.h
stable/12/contrib/llvm/include/llvm/Support/Compression.h
stable/12/contrib/llvm/include/llvm/Support/Debug.h
stable/12/contrib/llvm/include/llvm/Support/DebugCounter.h
stable/12/contrib/llvm/include/llvm/Support/Error.h
stable/12/contrib/llvm/include/llvm/Support/ErrorHandling.h
stable/12/contrib/llvm/include/llvm/Support/FileOutputBuffer.h
stable/12/contrib/llvm/include/llvm/Support/FileSystem.h
stable/12/contrib/llvm/include/llvm/Support/FormatVariadicDetails.h
stable/12/contrib/llvm/include/llvm/Support/GenericDomTree.h
stable/12/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h
stable/12/contrib/llvm/include/llvm/Support/GraphWriter.h
stable/12/contrib/llvm/include/llvm/Support/JSON.h
stable/12/contrib/llvm/include/llvm/Support/LowLevelTypeImpl.h
stable/12/contrib/llvm/include/llvm/Support/Path.h
stable/12/contrib/llvm/include/llvm/Support/ScopedPrinter.h
stable/12/contrib/llvm/include/llvm/Support/TargetOpcodes.def
stable/12/contrib/llvm/include/llvm/Support/TargetParser.h
stable/12/contrib/llvm/include/llvm/Support/Threading.h
stable/12/contrib/llvm/include/llvm/Support/Timer.h
stable/12/contrib/llvm/include/llvm/Support/Win64EH.h
stable/12/contrib/llvm/include/llvm/Support/WithColor.h
stable/12/contrib/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.h
stable/12/contrib/llvm/include/llvm/Support/X86TargetParser.def
stable/12/contrib/llvm/include/llvm/Support/YAMLTraits.h
stable/12/contrib/llvm/include/llvm/Support/raw_ostream.h
stable/12/contrib/llvm/include/llvm/Support/type_traits.h
stable/12/contrib/llvm/include/llvm/TableGen/StringMatcher.h
stable/12/contrib/llvm/include/llvm/Target/CodeGenCWrappers.h
stable/12/contrib/llvm/include/llvm/Target/GenericOpcodes.td
stable/12/contrib/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
stable/12/contrib/llvm/include/llvm/Target/Target.td
stable/12/contrib/llvm/include/llvm/Target/TargetInstrPredicate.td
stable/12/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
stable/12/contrib/llvm/include/llvm/Target/TargetMachine.h
stable/12/contrib/llvm/include/llvm/Target/TargetOptions.h
stable/12/contrib/llvm/include/llvm/Target/TargetSchedule.td
stable/12/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
stable/12/contrib/llvm/include/llvm/Testing/Support/SupportHelpers.h
stable/12/contrib/llvm/include/llvm/Transforms/IPO.h
stable/12/contrib/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
stable/12/contrib/llvm/include/llvm/Transforms/IPO/FunctionImport.h
stable/12/contrib/llvm/include/llvm/Transforms/IPO/SampleProfile.h
stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation.h
stable/12/contrib/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
stable/12/contrib/llvm/include/llvm/Transforms/Scalar/SCCP.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/Local.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
stable/12/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
stable/12/contrib/llvm/include/llvm/Transforms/Vectorize.h
stable/12/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
stable/12/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
stable/12/contrib/llvm/include/llvm/XRay/Trace.h
stable/12/contrib/llvm/include/llvm/XRay/XRayRecord.h
stable/12/contrib/llvm/include/llvm/XRay/YAMLXRayRecord.h
stable/12/contrib/llvm/include/llvm/module.modulemap
stable/12/contrib/llvm/lib/Analysis/AliasAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
stable/12/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
stable/12/contrib/llvm/lib/Analysis/Analysis.cpp
stable/12/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp
stable/12/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
stable/12/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp
stable/12/contrib/llvm/lib/Analysis/CFG.cpp
stable/12/contrib/llvm/lib/Analysis/CFGPrinter.cpp
stable/12/contrib/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/CFLGraph.h
stable/12/contrib/llvm/lib/Analysis/CGSCCPassManager.cpp
stable/12/contrib/llvm/lib/Analysis/CallGraph.cpp
stable/12/contrib/llvm/lib/Analysis/CallGraphSCCPass.cpp
stable/12/contrib/llvm/lib/Analysis/CaptureTracking.cpp
stable/12/contrib/llvm/lib/Analysis/CmpInstAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/ConstantFolding.cpp
stable/12/contrib/llvm/lib/Analysis/DemandedBits.cpp
stable/12/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/EHPersonalities.cpp
stable/12/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
stable/12/contrib/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/InlineCost.cpp
stable/12/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
stable/12/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
stable/12/contrib/llvm/lib/Analysis/LazyCallGraph.cpp
stable/12/contrib/llvm/lib/Analysis/LazyValueInfo.cpp
stable/12/contrib/llvm/lib/Analysis/Lint.cpp
stable/12/contrib/llvm/lib/Analysis/Loads.cpp
stable/12/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/LoopAnalysisManager.cpp
stable/12/contrib/llvm/lib/Analysis/LoopInfo.cpp
stable/12/contrib/llvm/lib/Analysis/LoopPass.cpp
stable/12/contrib/llvm/lib/Analysis/MemDepPrinter.cpp
stable/12/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/MemoryLocation.cpp
stable/12/contrib/llvm/lib/Analysis/MemorySSA.cpp
stable/12/contrib/llvm/lib/Analysis/MemorySSAUpdater.cpp
stable/12/contrib/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/MustExecute.cpp
stable/12/contrib/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/ObjCARCInstKind.cpp
stable/12/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp
stable/12/contrib/llvm/lib/Analysis/PhiValues.cpp
stable/12/contrib/llvm/lib/Analysis/ProfileSummaryInfo.cpp
stable/12/contrib/llvm/lib/Analysis/RegionPass.cpp
stable/12/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
stable/12/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
stable/12/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp
stable/12/contrib/llvm/lib/Analysis/SyntheticCountsUtils.cpp
stable/12/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp
stable/12/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp
stable/12/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
stable/12/contrib/llvm/lib/Analysis/TypeMetadataUtils.cpp
stable/12/contrib/llvm/lib/Analysis/ValueTracking.cpp
stable/12/contrib/llvm/lib/Analysis/VectorUtils.cpp
stable/12/contrib/llvm/lib/AsmParser/LLLexer.cpp
stable/12/contrib/llvm/lib/AsmParser/LLParser.cpp
stable/12/contrib/llvm/lib/AsmParser/LLParser.h
stable/12/contrib/llvm/lib/AsmParser/LLToken.h
stable/12/contrib/llvm/lib/BinaryFormat/Dwarf.cpp
stable/12/contrib/llvm/lib/BinaryFormat/Magic.cpp
stable/12/contrib/llvm/lib/BinaryFormat/Wasm.cpp
stable/12/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
stable/12/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
stable/12/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.h
stable/12/contrib/llvm/lib/Bitcode/Reader/ValueList.cpp
stable/12/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
stable/12/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
stable/12/contrib/llvm/lib/CodeGen/Analysis.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AccelTable.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
stable/12/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h
stable/12/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp
stable/12/contrib/llvm/lib/CodeGen/BranchFolding.cpp
stable/12/contrib/llvm/lib/CodeGen/BreakFalseDeps.cpp
stable/12/contrib/llvm/lib/CodeGen/BuiltinGCs.cpp
stable/12/contrib/llvm/lib/CodeGen/CFIInstrInserter.cpp
stable/12/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp
stable/12/contrib/llvm/lib/CodeGen/CodeGen.cpp
stable/12/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp
stable/12/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
stable/12/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp
stable/12/contrib/llvm/lib/CodeGen/ExpandMemCmp.cpp
stable/12/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
stable/12/contrib/llvm/lib/CodeGen/GCMetadata.cpp
stable/12/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/LegalityPredicates.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalISel/Utils.cpp
stable/12/contrib/llvm/lib/CodeGen/GlobalMerge.cpp
stable/12/contrib/llvm/lib/CodeGen/IfConversion.cpp
stable/12/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp
stable/12/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp
stable/12/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
stable/12/contrib/llvm/lib/CodeGen/LiveDebugValues.cpp
stable/12/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp
stable/12/contrib/llvm/lib/CodeGen/LiveDebugVariables.h
stable/12/contrib/llvm/lib/CodeGen/LiveInterval.cpp
stable/12/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp
stable/12/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
stable/12/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
stable/12/contrib/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
stable/12/contrib/llvm/lib/CodeGen/MIRParser/MILexer.cpp
stable/12/contrib/llvm/lib/CodeGen/MIRParser/MILexer.h
stable/12/contrib/llvm/lib/CodeGen/MIRParser/MIParser.cpp
stable/12/contrib/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
stable/12/contrib/llvm/lib/CodeGen/MIRPrinter.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineCSE.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineCombiner.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineFunction.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineInstr.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineLICM.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineOperand.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineOutliner.cpp
stable/12/contrib/llvm/lib/CodeGen/MachinePipeliner.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineScheduler.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineSink.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp
stable/12/contrib/llvm/lib/CodeGen/MachineVerifier.cpp
stable/12/contrib/llvm/lib/CodeGen/MacroFusion.cpp
stable/12/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp
stable/12/contrib/llvm/lib/CodeGen/PHIElimination.cpp
stable/12/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
stable/12/contrib/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
stable/12/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
stable/12/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp
stable/12/contrib/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
stable/12/contrib/llvm/lib/CodeGen/RegAllocFast.cpp
stable/12/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
stable/12/contrib/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
stable/12/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
stable/12/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
stable/12/contrib/llvm/lib/CodeGen/RegisterUsageInfo.cpp
stable/12/contrib/llvm/lib/CodeGen/SafeStack.cpp
stable/12/contrib/llvm/lib/CodeGen/SafeStackColoring.cpp
stable/12/contrib/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
stable/12/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp
stable/12/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
stable/12/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
stable/12/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
stable/12/contrib/llvm/lib/CodeGen/SlotIndexes.cpp
stable/12/contrib/llvm/lib/CodeGen/SplitKit.h
stable/12/contrib/llvm/lib/CodeGen/StackColoring.cpp
stable/12/contrib/llvm/lib/CodeGen/StackMaps.cpp
stable/12/contrib/llvm/lib/CodeGen/StackProtector.cpp
stable/12/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp
stable/12/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
stable/12/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp
stable/12/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp
stable/12/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
stable/12/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp
stable/12/contrib/llvm/lib/CodeGen/TargetPassConfig.cpp
stable/12/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp
stable/12/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
stable/12/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
stable/12/contrib/llvm/lib/CodeGen/WasmEHPrepare.cpp
stable/12/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeIndex.cpp
stable/12/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
stable/12/contrib/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
stable/12/contrib/llvm/lib/DebugInfo/MSF/MSFError.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStream.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/GlobalsStream.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumModules.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/RawError.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
stable/12/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
stable/12/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
stable/12/contrib/llvm/lib/Demangle/ItaniumDemangle.cpp
stable/12/contrib/llvm/lib/Demangle/MicrosoftDemangle.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
stable/12/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/Core.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/Layer.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcABISupport.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
stable/12/contrib/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
stable/12/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
stable/12/contrib/llvm/lib/FuzzMutate/IRMutator.cpp
stable/12/contrib/llvm/lib/FuzzMutate/RandomIRBuilder.cpp
stable/12/contrib/llvm/lib/IR/AsmWriter.cpp
stable/12/contrib/llvm/lib/IR/Attributes.cpp
stable/12/contrib/llvm/lib/IR/AutoUpgrade.cpp
stable/12/contrib/llvm/lib/IR/BasicBlock.cpp
stable/12/contrib/llvm/lib/IR/ConstantFold.cpp
stable/12/contrib/llvm/lib/IR/Constants.cpp
stable/12/contrib/llvm/lib/IR/ConstantsContext.h
stable/12/contrib/llvm/lib/IR/Core.cpp
stable/12/contrib/llvm/lib/IR/DIBuilder.cpp
stable/12/contrib/llvm/lib/IR/DataLayout.cpp
stable/12/contrib/llvm/lib/IR/DebugInfo.cpp
stable/12/contrib/llvm/lib/IR/DebugInfoMetadata.cpp
stable/12/contrib/llvm/lib/IR/DebugLoc.cpp
stable/12/contrib/llvm/lib/IR/DiagnosticInfo.cpp
stable/12/contrib/llvm/lib/IR/DomTreeUpdater.cpp
stable/12/contrib/llvm/lib/IR/Dominators.cpp
stable/12/contrib/llvm/lib/IR/Function.cpp
stable/12/contrib/llvm/lib/IR/Globals.cpp
stable/12/contrib/llvm/lib/IR/IRBuilder.cpp
stable/12/contrib/llvm/lib/IR/IRPrintingPasses.cpp
stable/12/contrib/llvm/lib/IR/Instruction.cpp
stable/12/contrib/llvm/lib/IR/Instructions.cpp
stable/12/contrib/llvm/lib/IR/IntrinsicInst.cpp
stable/12/contrib/llvm/lib/IR/LLVMContext.cpp
stable/12/contrib/llvm/lib/IR/LLVMContextImpl.h
stable/12/contrib/llvm/lib/IR/LegacyPassManager.cpp
stable/12/contrib/llvm/lib/IR/MDBuilder.cpp
stable/12/contrib/llvm/lib/IR/Metadata.cpp
stable/12/contrib/llvm/lib/IR/Module.cpp
stable/12/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
stable/12/contrib/llvm/lib/IR/SafepointIRVerifier.cpp
stable/12/contrib/llvm/lib/IR/Type.cpp
stable/12/contrib/llvm/lib/IR/Value.cpp
stable/12/contrib/llvm/lib/IR/Verifier.cpp
stable/12/contrib/llvm/lib/LTO/LTO.cpp
stable/12/contrib/llvm/lib/LTO/LTOBackend.cpp
stable/12/contrib/llvm/lib/LTO/LTOCodeGenerator.cpp
stable/12/contrib/llvm/lib/LTO/LTOModule.cpp
stable/12/contrib/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
stable/12/contrib/llvm/lib/LTO/UpdateCompilerUsed.cpp
stable/12/contrib/llvm/lib/Linker/IRMover.cpp
stable/12/contrib/llvm/lib/MC/ConstantPools.cpp
stable/12/contrib/llvm/lib/MC/ELFObjectWriter.cpp
stable/12/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
stable/12/contrib/llvm/lib/MC/MCAsmInfoWasm.cpp
stable/12/contrib/llvm/lib/MC/MCAsmStreamer.cpp
stable/12/contrib/llvm/lib/MC/MCAssembler.cpp
stable/12/contrib/llvm/lib/MC/MCCodeView.cpp
stable/12/contrib/llvm/lib/MC/MCContext.cpp
stable/12/contrib/llvm/lib/MC/MCDwarf.cpp
stable/12/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp
stable/12/contrib/llvm/lib/MC/MCExpr.cpp
stable/12/contrib/llvm/lib/MC/MCFragment.cpp
stable/12/contrib/llvm/lib/MC/MCInst.cpp
stable/12/contrib/llvm/lib/MC/MCInstrAnalysis.cpp
stable/12/contrib/llvm/lib/MC/MCInstrDesc.cpp
stable/12/contrib/llvm/lib/MC/MCMachOStreamer.cpp
stable/12/contrib/llvm/lib/MC/MCNullStreamer.cpp
stable/12/contrib/llvm/lib/MC/MCObjectFileInfo.cpp
stable/12/contrib/llvm/lib/MC/MCObjectStreamer.cpp
stable/12/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp
stable/12/contrib/llvm/lib/MC/MCParser/AsmParser.cpp
stable/12/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
stable/12/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
stable/12/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp
stable/12/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
stable/12/contrib/llvm/lib/MC/MCRegisterInfo.cpp
stable/12/contrib/llvm/lib/MC/MCSection.cpp
stable/12/contrib/llvm/lib/MC/MCSectionELF.cpp
stable/12/contrib/llvm/lib/MC/MCStreamer.cpp
stable/12/contrib/llvm/lib/MC/MCWasmStreamer.cpp
stable/12/contrib/llvm/lib/MC/MCWin64EH.cpp
stable/12/contrib/llvm/lib/MC/MachObjectWriter.cpp
stable/12/contrib/llvm/lib/MC/WasmObjectWriter.cpp
stable/12/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
stable/12/contrib/llvm/lib/Object/ArchiveWriter.cpp
stable/12/contrib/llvm/lib/Object/Binary.cpp
stable/12/contrib/llvm/lib/Object/COFFObjectFile.cpp
stable/12/contrib/llvm/lib/Object/ELF.cpp
stable/12/contrib/llvm/lib/Object/ELFObjectFile.cpp
stable/12/contrib/llvm/lib/Object/Error.cpp
stable/12/contrib/llvm/lib/Object/MachOObjectFile.cpp
stable/12/contrib/llvm/lib/Object/ModuleSymbolTable.cpp
stable/12/contrib/llvm/lib/Object/Object.cpp
stable/12/contrib/llvm/lib/Object/ObjectFile.cpp
stable/12/contrib/llvm/lib/Object/WasmObjectFile.cpp
stable/12/contrib/llvm/lib/Object/WindowsResource.cpp
stable/12/contrib/llvm/lib/ObjectYAML/COFFYAML.cpp
stable/12/contrib/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
stable/12/contrib/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
stable/12/contrib/llvm/lib/ObjectYAML/ELFYAML.cpp
stable/12/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp
stable/12/contrib/llvm/lib/Option/OptTable.cpp
stable/12/contrib/llvm/lib/Passes/PassBuilder.cpp
stable/12/contrib/llvm/lib/Passes/PassRegistry.def
stable/12/contrib/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
stable/12/contrib/llvm/lib/ProfileData/GCOV.cpp
stable/12/contrib/llvm/lib/ProfileData/InstrProf.cpp
stable/12/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
stable/12/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
stable/12/contrib/llvm/lib/ProfileData/SampleProf.cpp
stable/12/contrib/llvm/lib/ProfileData/SampleProfReader.cpp
stable/12/contrib/llvm/lib/ProfileData/SampleProfWriter.cpp
stable/12/contrib/llvm/lib/Support/APInt.cpp
stable/12/contrib/llvm/lib/Support/BinaryStreamError.cpp
stable/12/contrib/llvm/lib/Support/COM.cpp
stable/12/contrib/llvm/lib/Support/CachePruning.cpp
stable/12/contrib/llvm/lib/Support/CodeGenCoverage.cpp
stable/12/contrib/llvm/lib/Support/CommandLine.cpp
stable/12/contrib/llvm/lib/Support/Compression.cpp
stable/12/contrib/llvm/lib/Support/DebugCounter.cpp
stable/12/contrib/llvm/lib/Support/Error.cpp
stable/12/contrib/llvm/lib/Support/FileOutputBuffer.cpp
stable/12/contrib/llvm/lib/Support/FoldingSet.cpp
stable/12/contrib/llvm/lib/Support/FormatVariadic.cpp
stable/12/contrib/llvm/lib/Support/Hashing.cpp
stable/12/contrib/llvm/lib/Support/Host.cpp
stable/12/contrib/llvm/lib/Support/JSON.cpp
stable/12/contrib/llvm/lib/Support/Locale.cpp
stable/12/contrib/llvm/lib/Support/LockFileManager.cpp
stable/12/contrib/llvm/lib/Support/Path.cpp
stable/12/contrib/llvm/lib/Support/Process.cpp
stable/12/contrib/llvm/lib/Support/RandomNumberGenerator.cpp
stable/12/contrib/llvm/lib/Support/Signals.cpp
stable/12/contrib/llvm/lib/Support/SourceMgr.cpp
stable/12/contrib/llvm/lib/Support/StringSaver.cpp
stable/12/contrib/llvm/lib/Support/TargetParser.cpp
stable/12/contrib/llvm/lib/Support/TargetRegistry.cpp
stable/12/contrib/llvm/lib/Support/Timer.cpp
stable/12/contrib/llvm/lib/Support/Triple.cpp
stable/12/contrib/llvm/lib/Support/Unix/Path.inc
stable/12/contrib/llvm/lib/Support/Unix/Signals.inc
stable/12/contrib/llvm/lib/Support/Unix/Threading.inc
stable/12/contrib/llvm/lib/Support/Windows/Path.inc
stable/12/contrib/llvm/lib/Support/Windows/Process.inc
stable/12/contrib/llvm/lib/Support/Windows/Program.inc
stable/12/contrib/llvm/lib/Support/Windows/Threading.inc
stable/12/contrib/llvm/lib/Support/Windows/WindowsSupport.h
stable/12/contrib/llvm/lib/Support/WithColor.cpp
stable/12/contrib/llvm/lib/Support/YAMLTraits.cpp
stable/12/contrib/llvm/lib/Support/raw_ostream.cpp
stable/12/contrib/llvm/lib/TableGen/Main.cpp
stable/12/contrib/llvm/lib/TableGen/Record.cpp
stable/12/contrib/llvm/lib/TableGen/TGLexer.cpp
stable/12/contrib/llvm/lib/TableGen/TGLexer.h
stable/12/contrib/llvm/lib/TableGen/TGParser.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64Schedule.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h
stable/12/contrib/llvm/lib/Target/AArch64/AArch64SystemOperands.td
stable/12/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
stable/12/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
stable/12/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
stable/12/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
stable/12/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
stable/12/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
stable/12/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
stable/12/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h
stable/12/contrib/llvm/lib/Target/AArch64/SVEInstrFormats.td
stable/12/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
stable/12/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPU.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPU.td
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/BUFInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/DSInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/FLATInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/GCNMinRegStrategy.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/GCNProcessors.td
stable/12/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
stable/12/contrib/llvm/lib/Target/AMDGPU/MIMGInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/R600Instructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
stable/12/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIFixWWMLiveness.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.h
stable/12/contrib/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstrFormats.td
stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.td
stable/12/contrib/llvm/lib/Target/AMDGPU/SIInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/SIIntrinsics.td
stable/12/contrib/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
stable/12/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/SMInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/SOPInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
stable/12/contrib/llvm/lib/Target/AMDGPU/VOP1Instructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/VOP2Instructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/VOP3Instructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/VOPCInstructions.td
stable/12/contrib/llvm/lib/Target/AMDGPU/VOPInstructions.td
stable/12/contrib/llvm/lib/Target/ARC/ARCTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARM.td
stable/12/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
stable/12/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
stable/12/contrib/llvm/lib/Target/ARM/ARMCallLowering.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMCallLowering.h
stable/12/contrib/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h
stable/12/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMISelLowering.h
stable/12/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td
stable/12/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h
stable/12/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
stable/12/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td
stable/12/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td
stable/12/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td
stable/12/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td
stable/12/contrib/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.h
stable/12/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMMacroFusion.h
stable/12/contrib/llvm/lib/Target/ARM/ARMParallelDSP.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMSubtarget.h
stable/12/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
stable/12/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
stable/12/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
stable/12/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
stable/12/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
stable/12/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
stable/12/contrib/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
stable/12/contrib/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/AVR/AVRISelLowering.cpp
stable/12/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
stable/12/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.td
stable/12/contrib/llvm/lib/Target/AVR/AVRTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
stable/12/contrib/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
stable/12/contrib/llvm/lib/Target/BPF/BPF.h
stable/12/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.h
stable/12/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
stable/12/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
stable/12/contrib/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/Hexagon.h
stable/12/contrib/llvm/lib/Target/Hexagon/Hexagon.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepIICHVX.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepIICScalar.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrFormats.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrInfo.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepMappings.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepOperands.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonDepTimingClasses.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonPseudo.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV65.td
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
stable/12/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/RDFGraph.cpp
stable/12/contrib/llvm/lib/Target/Hexagon/RDFLiveness.cpp
stable/12/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
stable/12/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.h
stable/12/contrib/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
stable/12/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
stable/12/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h
stable/12/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
stable/12/contrib/llvm/lib/Target/MSP430/MSP430.h
stable/12/contrib/llvm/lib/Target/MSP430/MSP430.td
stable/12/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h
stable/12/contrib/llvm/lib/Target/MSP430/MSP430InstrFormats.td
stable/12/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h
stable/12/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td
stable/12/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
stable/12/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td
stable/12/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
stable/12/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
stable/12/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
stable/12/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
stable/12/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
stable/12/contrib/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
stable/12/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
stable/12/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
stable/12/contrib/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
stable/12/contrib/llvm/lib/Target/Mips/Mips.h
stable/12/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
stable/12/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
stable/12/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
stable/12/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h
stable/12/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
stable/12/contrib/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
stable/12/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td
stable/12/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
stable/12/contrib/llvm/lib/Target/Mips/MipsBranchExpansion.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsCCState.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsCallLowering.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsCallLowering.h
stable/12/contrib/llvm/lib/Target/Mips/MipsCondMov.td
stable/12/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsISelLowering.h
stable/12/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td
stable/12/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
stable/12/contrib/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.h
stable/12/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
stable/12/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h
stable/12/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td
stable/12/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h
stable/12/contrib/llvm/lib/Target/Mips/MipsSchedule.td
stable/12/contrib/llvm/lib/Target/Mips/MipsScheduleGeneric.td
stable/12/contrib/llvm/lib/Target/Mips/MipsSubtarget.h
stable/12/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
stable/12/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
stable/12/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
stable/12/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.h
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTX.h
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTX.td
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
stable/12/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
stable/12/contrib/llvm/lib/Target/PowerPC/P9InstrResources.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPC.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCExpandISEL.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h
stable/12/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrHTM.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrQPX.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrSPE.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
stable/12/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
stable/12/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
stable/12/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
stable/12/contrib/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
stable/12/contrib/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
stable/12/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.h
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
stable/12/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.h
stable/12/contrib/llvm/lib/Target/RISCV/RISCV.h
stable/12/contrib/llvm/lib/Target/RISCV/RISCV.td
stable/12/contrib/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
stable/12/contrib/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
stable/12/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.h
stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrFormats.td
stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrFormatsC.td
stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.td
stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
stable/12/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
stable/12/contrib/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
stable/12/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
stable/12/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
stable/12/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h
stable/12/contrib/llvm/lib/Target/Sparc/LeonFeatures.td
stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
stable/12/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
stable/12/contrib/llvm/lib/Target/Sparc/Sparc.td
stable/12/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
stable/12/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
stable/12/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td
stable/12/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td
stable/12/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
stable/12/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h
stable/12/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp
stable/12/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
stable/12/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h
stable/12/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZInstrVector.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZSchedule.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
stable/12/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
stable/12/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp
stable/12/contrib/llvm/lib/Target/TargetMachine.cpp
stable/12/contrib/llvm/lib/Target/TargetMachineC.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h
stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
stable/12/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/README.txt
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssembly.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssembly.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAddMissingPrototypes.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrExceptRef.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
stable/12/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
stable/12/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
stable/12/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
stable/12/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86TargetStreamer.h
stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
stable/12/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
stable/12/contrib/llvm/lib/Target/X86/ShadowCallStack.cpp
stable/12/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
stable/12/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
stable/12/contrib/llvm/lib/Target/X86/X86.h
stable/12/contrib/llvm/lib/Target/X86/X86.td
stable/12/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
stable/12/contrib/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
stable/12/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
stable/12/contrib/llvm/lib/Target/X86/X86CallLowering.cpp
stable/12/contrib/llvm/lib/Target/X86/X86CallLowering.h
stable/12/contrib/llvm/lib/Target/X86/X86CallingConv.td
stable/12/contrib/llvm/lib/Target/X86/X86CmovConversion.cpp
stable/12/contrib/llvm/lib/Target/X86/X86DomainReassignment.cpp
stable/12/contrib/llvm/lib/Target/X86/X86FastISel.cpp
stable/12/contrib/llvm/lib/Target/X86/X86FixupBWInsts.cpp
stable/12/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp
stable/12/contrib/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
stable/12/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
stable/12/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
stable/12/contrib/llvm/lib/Target/X86/X86ISelLowering.h
stable/12/contrib/llvm/lib/Target/X86/X86Instr3DNow.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrAVX512.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrCMovSetCC.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrCompiler.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrControl.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrExtension.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrFMA.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp
stable/12/contrib/llvm/lib/Target/X86/X86InstrInfo.h
stable/12/contrib/llvm/lib/Target/X86/X86InstrInfo.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrMMX.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrSSE.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrVecCompiler.td
stable/12/contrib/llvm/lib/Target/X86/X86InstrXOP.td
stable/12/contrib/llvm/lib/Target/X86/X86InstructionSelector.cpp
stable/12/contrib/llvm/lib/Target/X86/X86InterleavedAccess.cpp
stable/12/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h
stable/12/contrib/llvm/lib/Target/X86/X86LegalizerInfo.cpp
stable/12/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
stable/12/contrib/llvm/lib/Target/X86/X86MacroFusion.cpp
stable/12/contrib/llvm/lib/Target/X86/X86MacroFusion.h
stable/12/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
stable/12/contrib/llvm/lib/Target/X86/X86PfmCounters.td
stable/12/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
stable/12/contrib/llvm/lib/Target/X86/X86RegisterInfo.td
stable/12/contrib/llvm/lib/Target/X86/X86RetpolineThunks.cpp
stable/12/contrib/llvm/lib/Target/X86/X86SchedBroadwell.td
stable/12/contrib/llvm/lib/Target/X86/X86SchedHaswell.td
stable/12/contrib/llvm/lib/Target/X86/X86SchedPredicates.td
stable/12/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td
stable/12/contrib/llvm/lib/Target/X86/X86SchedSkylakeClient.td
stable/12/contrib/llvm/lib/Target/X86/X86SchedSkylakeServer.td
stable/12/contrib/llvm/lib/Target/X86/X86Schedule.td
stable/12/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td
stable/12/contrib/llvm/lib/Target/X86/X86ScheduleBtVer2.td
stable/12/contrib/llvm/lib/Target/X86/X86ScheduleSLM.td
stable/12/contrib/llvm/lib/Target/X86/X86ScheduleZnver1.td
stable/12/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
stable/12/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
stable/12/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
stable/12/contrib/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
stable/12/contrib/llvm/lib/Target/X86/X86Subtarget.cpp
stable/12/contrib/llvm/lib/Target/X86/X86Subtarget.h
stable/12/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp
stable/12/contrib/llvm/lib/Target/X86/X86TargetMachine.h
stable/12/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
stable/12/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h
stable/12/contrib/llvm/lib/Target/X86/X86WinEHState.cpp
stable/12/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
stable/12/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
stable/12/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp
stable/12/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
stable/12/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h
stable/12/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
stable/12/contrib/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
stable/12/contrib/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
stable/12/contrib/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
stable/12/contrib/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h
stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroElide.cpp
stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
stable/12/contrib/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
stable/12/contrib/llvm/lib/Transforms/Coroutines/Coroutines.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/FunctionImport.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/IPO.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/Inliner.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/SCCP.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
stable/12/contrib/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
stable/12/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/CFGMST.h
stable/12/contrib/llvm/lib/Transforms/Instrumentation/CGProfile.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
stable/12/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
stable/12/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
stable/12/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp
stable/12/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
stable/12/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
stable/12/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/DCE.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/DivRemPairs.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/GVN.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/GVNHoist.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/GVNSink.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/GuardWidening.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LICM.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopPassManager.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopPredication.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopSink.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/MergeICmps.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/NewGVN.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/SROA.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/Scalarizer.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
stable/12/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/CallPromotionUtils.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/Evaluator.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/FlattenCFG.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/FunctionComparator.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/Local.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/PredicateInfo.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/SplitModule.cpp
stable/12/contrib/llvm/lib/Transforms/Utils/Utils.cpp
stable/12/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
stable/12/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
stable/12/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
stable/12/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
stable/12/contrib/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlan.cpp
stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlan.h
stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
stable/12/contrib/llvm/lib/Transforms/Vectorize/VPlanValue.h
stable/12/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp
stable/12/contrib/llvm/lib/XRay/InstrumentationMap.cpp
stable/12/contrib/llvm/lib/XRay/Trace.cpp
stable/12/contrib/llvm/tools/bugpoint/CrashDebugger.cpp
stable/12/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp
stable/12/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp
stable/12/contrib/llvm/tools/bugpoint/ToolRunner.cpp
stable/12/contrib/llvm/tools/bugpoint/ToolRunner.h
stable/12/contrib/llvm/tools/clang/FREEBSD-Xlist
stable/12/contrib/llvm/tools/clang/LICENSE.TXT
stable/12/contrib/llvm/tools/clang/include/clang-c/Index.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/APValue.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/Attr.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/Comment.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/Decl.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/Expr.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ExprOpenMP.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/LexicallyOrderedRecursiveASTVisitor.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/Mangle.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/ODRHash.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.def
stable/12/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtDataCollectors.td
stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/TemplateName.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/Type.h
stable/12/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h
stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
stable/12/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDeclContext.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/CloneDetection.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/ConstructionContext.h
stable/12/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/AlignedAllocation.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/Attr.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/AttrDocs.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTUKinds.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/Features.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/X86Target.def
stable/12/contrib/llvm/tools/clang/include/clang/Basic/XRayInstr.h
stable/12/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
stable/12/contrib/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
stable/12/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
stable/12/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
stable/12/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTUDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTranslationUnit.h
stable/12/contrib/llvm/tools/clang/include/clang/Driver/Action.h
stable/12/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
stable/12/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
stable/12/contrib/llvm/tools/clang/include/clang/Driver/Distro.h
stable/12/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
stable/12/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/Driver/Job.h
stable/12/contrib/llvm/tools/clang/include/clang/Driver/Options.td
stable/12/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
stable/12/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
stable/12/contrib/llvm/tools/clang/include/clang/Driver/Types.def
stable/12/contrib/llvm/tools/clang/include/clang/Format/Format.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
stable/12/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
stable/12/contrib/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
stable/12/contrib/llvm/tools/clang/include/clang/Index/IndexSymbol.h
stable/12/contrib/llvm/tools/clang/include/clang/Index/IndexingAction.h
stable/12/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
stable/12/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h
stable/12/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/ParsedAttr.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/Scope.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/Sema.h
stable/12/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h
stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
stable/12/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
stable/12/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
stable/12/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Regions.def
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
stable/12/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Execution.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringDiagnostic.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/StandaloneExecution.h
stable/12/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h
stable/12/contrib/llvm/tools/clang/include/clang/module.modulemap
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
stable/12/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/APValue.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/Decl.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/Expr.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ExternalASTMerger.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/Linkage.h
stable/12/contrib/llvm/tools/clang/lib/AST/Mangle.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ODRHash.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/OpenMPClause.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/StmtCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/StmtObjC.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/Type.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp
stable/12/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp
stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
stable/12/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/CloneDetection.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
stable/12/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Attributes.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Cuda.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Module.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.h
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.h
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.h
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.h
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.h
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.h
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.h
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.h
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/X86.cpp
stable/12/contrib/llvm/tools/clang/lib/Basic/Targets/X86.h
stable/12/contrib/llvm/tools/clang/lib/Basic/Version.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/ConstantEmitter.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
stable/12/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp
stable/12/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
stable/12/contrib/llvm/tools/clang/lib/CrossTU/CrossTranslationUnit.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/Action.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/Distro.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/Driver.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/Job.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Minix.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.h
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.h
stable/12/contrib/llvm/tools/clang/lib/Driver/Types.cpp
stable/12/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp
stable/12/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
stable/12/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp
stable/12/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
stable/12/contrib/llvm/tools/clang/lib/Format/Format.cpp
stable/12/contrib/llvm/tools/clang/lib/Format/FormatToken.h
stable/12/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp
stable/12/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.h
stable/12/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp
stable/12/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
stable/12/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h
stable/12/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
stable/12/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
stable/12/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
stable/12/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/PrecompiledPreamble.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
stable/12/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
stable/12/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
stable/12/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
stable/12/contrib/llvm/tools/clang/lib/Headers/adxintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/altivec.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512pfintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/avx512vlvbmi2intrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/cuda_wrappers/new
stable/12/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/float.h
stable/12/contrib/llvm/tools/clang/lib/Headers/immintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/intrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h
stable/12/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
stable/12/contrib/llvm/tools/clang/lib/Headers/vecintrin.h
stable/12/contrib/llvm/tools/clang/lib/Index/CommentToXML.cpp
stable/12/contrib/llvm/tools/clang/lib/Index/IndexBody.cpp
stable/12/contrib/llvm/tools/clang/lib/Index/IndexDecl.cpp
stable/12/contrib/llvm/tools/clang/lib/Index/IndexSymbol.cpp
stable/12/contrib/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp
stable/12/contrib/llvm/tools/clang/lib/Index/IndexingAction.cpp
stable/12/contrib/llvm/tools/clang/lib/Index/IndexingContext.cpp
stable/12/contrib/llvm/tools/clang/lib/Index/SimpleFormatContext.h
stable/12/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
stable/12/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp
stable/12/contrib/llvm/tools/clang/lib/Parse/Parser.cpp
stable/12/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
stable/12/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/ParsedAttr.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp
stable/12/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h
stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp
stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
stable/12/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
stable/12/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
stable/12/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/WorkList.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
stable/12/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Execution.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFinder.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRLocFinder.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/StandaloneExecution.cpp
stable/12/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp
stable/12/contrib/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
stable/12/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp
stable/12/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
stable/12/contrib/llvm/tools/clang/tools/driver/cc1gen_reproducer_main.cpp
stable/12/contrib/llvm/tools/clang/tools/driver/driver.cpp
stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
stable/12/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
stable/12/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
stable/12/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp
stable/12/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h
stable/12/contrib/llvm/tools/lld/COFF/Chunks.cpp
stable/12/contrib/llvm/tools/lld/COFF/Chunks.h
stable/12/contrib/llvm/tools/lld/COFF/Config.h
stable/12/contrib/llvm/tools/lld/COFF/DLL.cpp
stable/12/contrib/llvm/tools/lld/COFF/DLL.h
stable/12/contrib/llvm/tools/lld/COFF/Driver.cpp
stable/12/contrib/llvm/tools/lld/COFF/Driver.h
stable/12/contrib/llvm/tools/lld/COFF/DriverUtils.cpp
stable/12/contrib/llvm/tools/lld/COFF/ICF.cpp
stable/12/contrib/llvm/tools/lld/COFF/InputFiles.cpp
stable/12/contrib/llvm/tools/lld/COFF/InputFiles.h
stable/12/contrib/llvm/tools/lld/COFF/LTO.cpp
stable/12/contrib/llvm/tools/lld/COFF/MapFile.cpp
stable/12/contrib/llvm/tools/lld/COFF/MarkLive.cpp
stable/12/contrib/llvm/tools/lld/COFF/MinGW.cpp
stable/12/contrib/llvm/tools/lld/COFF/MinGW.h
stable/12/contrib/llvm/tools/lld/COFF/Options.td
stable/12/contrib/llvm/tools/lld/COFF/PDB.cpp
stable/12/contrib/llvm/tools/lld/COFF/PDB.h
stable/12/contrib/llvm/tools/lld/COFF/SymbolTable.cpp
stable/12/contrib/llvm/tools/lld/COFF/SymbolTable.h
stable/12/contrib/llvm/tools/lld/COFF/Symbols.cpp
stable/12/contrib/llvm/tools/lld/COFF/Symbols.h
stable/12/contrib/llvm/tools/lld/COFF/Writer.cpp
stable/12/contrib/llvm/tools/lld/COFF/Writer.h
stable/12/contrib/llvm/tools/lld/Common/Args.cpp
stable/12/contrib/llvm/tools/lld/Common/ErrorHandler.cpp
stable/12/contrib/llvm/tools/lld/Common/Strings.cpp
stable/12/contrib/llvm/tools/lld/Common/TargetOptionsCommandFlags.cpp
stable/12/contrib/llvm/tools/lld/ELF/AArch64ErrataFix.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/AArch64.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/AMDGPU.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/ARM.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/AVR.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/Hexagon.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/Mips.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/PPC.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/PPC64.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/SPARCV9.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/X86.cpp
stable/12/contrib/llvm/tools/lld/ELF/Arch/X86_64.cpp
stable/12/contrib/llvm/tools/lld/ELF/CMakeLists.txt
stable/12/contrib/llvm/tools/lld/ELF/CallGraphSort.cpp
stable/12/contrib/llvm/tools/lld/ELF/Config.h
stable/12/contrib/llvm/tools/lld/ELF/Driver.cpp
stable/12/contrib/llvm/tools/lld/ELF/Driver.h
stable/12/contrib/llvm/tools/lld/ELF/DriverUtils.cpp
stable/12/contrib/llvm/tools/lld/ELF/EhFrame.cpp
stable/12/contrib/llvm/tools/lld/ELF/ICF.cpp
stable/12/contrib/llvm/tools/lld/ELF/InputFiles.cpp
stable/12/contrib/llvm/tools/lld/ELF/InputFiles.h
stable/12/contrib/llvm/tools/lld/ELF/InputSection.cpp
stable/12/contrib/llvm/tools/lld/ELF/InputSection.h
stable/12/contrib/llvm/tools/lld/ELF/LTO.cpp
stable/12/contrib/llvm/tools/lld/ELF/LTO.h
stable/12/contrib/llvm/tools/lld/ELF/LinkerScript.cpp
stable/12/contrib/llvm/tools/lld/ELF/LinkerScript.h
stable/12/contrib/llvm/tools/lld/ELF/MapFile.cpp
stable/12/contrib/llvm/tools/lld/ELF/MarkLive.cpp
stable/12/contrib/llvm/tools/lld/ELF/Options.td
stable/12/contrib/llvm/tools/lld/ELF/OutputSections.cpp
stable/12/contrib/llvm/tools/lld/ELF/OutputSections.h
stable/12/contrib/llvm/tools/lld/ELF/Relocations.cpp
stable/12/contrib/llvm/tools/lld/ELF/Relocations.h
stable/12/contrib/llvm/tools/lld/ELF/ScriptLexer.cpp
stable/12/contrib/llvm/tools/lld/ELF/ScriptLexer.h
stable/12/contrib/llvm/tools/lld/ELF/ScriptParser.cpp
stable/12/contrib/llvm/tools/lld/ELF/SymbolTable.cpp
stable/12/contrib/llvm/tools/lld/ELF/SymbolTable.h
stable/12/contrib/llvm/tools/lld/ELF/Symbols.cpp
stable/12/contrib/llvm/tools/lld/ELF/Symbols.h
stable/12/contrib/llvm/tools/lld/ELF/SyntheticSections.cpp
stable/12/contrib/llvm/tools/lld/ELF/SyntheticSections.h
stable/12/contrib/llvm/tools/lld/ELF/Target.cpp
stable/12/contrib/llvm/tools/lld/ELF/Target.h
stable/12/contrib/llvm/tools/lld/ELF/Thunks.cpp
stable/12/contrib/llvm/tools/lld/ELF/Writer.cpp
stable/12/contrib/llvm/tools/lld/FREEBSD-Xlist
stable/12/contrib/llvm/tools/lld/LICENSE.TXT
stable/12/contrib/llvm/tools/lld/docs/NewLLD.rst
stable/12/contrib/llvm/tools/lld/docs/README.txt
stable/12/contrib/llvm/tools/lld/docs/Readers.rst
stable/12/contrib/llvm/tools/lld/docs/ReleaseNotes.rst
stable/12/contrib/llvm/tools/lld/docs/WebAssembly.rst
stable/12/contrib/llvm/tools/lld/docs/conf.py
stable/12/contrib/llvm/tools/lld/docs/index.rst
stable/12/contrib/llvm/tools/lld/docs/ld.lld.1
stable/12/contrib/llvm/tools/lld/docs/open_projects.rst
stable/12/contrib/llvm/tools/lld/docs/windows_support.rst
stable/12/contrib/llvm/tools/lld/include/lld/Common/Args.h
stable/12/contrib/llvm/tools/lld/include/lld/Common/ErrorHandler.h
stable/12/contrib/llvm/tools/lld/include/lld/Common/LLVM.h
stable/12/contrib/llvm/tools/lld/include/lld/Common/Strings.h
stable/12/contrib/llvm/tools/lld/include/lld/Common/TargetOptionsCommandFlags.h
stable/12/contrib/llvm/tools/lld/include/lld/Common/Threads.h
stable/12/contrib/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
stable/12/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
stable/12/contrib/llvm/tools/lld/tools/lld/lld.cpp
stable/12/contrib/llvm/tools/lldb/FREEBSD-Xlist
stable/12/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBModule.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h
stable/12/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointIDList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointName.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Stoppoint.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Architecture.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ClangForward.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/MappedHash.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Module.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Opcode.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/PluginInterface.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/PluginManager.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/STLUtils.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectCast.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectMemory.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectRegister.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectVariable.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h
stable/12/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/Materializer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Debug.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/File.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/Symbols.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/TaskPool.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/XML.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/openbsd/HostInfoOpenBSD.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionArgParser.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArgs.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/Property.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/LineTable.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Process.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ProcessStructReader.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/StackID.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanBase.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanRunToAddress.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInRange.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOut.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverRange.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepThrough.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepUntil.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanTracer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Log.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Status.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Stream.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h
stable/12/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.h
stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-defines.h
stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-enumerations.h
stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-forward.h
stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
stable/12/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
stable/12/contrib/llvm/tools/lldb/include/lldb/module.modulemap
stable/12/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBBreakpoint.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBBreakpointName.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBBroadcaster.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBCompileUnit.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBData.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBDeclaration.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBError.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBEvent.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBFileSpecList.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBLineEntry.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBListener.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBModule.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBModuleSpec.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBPlatform.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBProcess.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBProcessInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBQueue.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBSection.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBStream.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBSymbolContext.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBSymbolContextList.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBThread.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBType.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBTypeFilter.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBTypeFormat.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBTypeSummary.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBValue.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBValueList.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
stable/12/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.h
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointID.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointIDList.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointList.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointName.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointOptions.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/Stoppoint.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/StoppointCallbackContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
stable/12/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.h
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
stable/12/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h
stable/12/contrib/llvm/tools/lldb/source/Core/Address.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/AddressRange.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Communication.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/DumpRegisterValue.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/FileLineResolver.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/FileSpecList.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Mangled.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Module.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Opcode.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Section.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/Value.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
stable/12/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/FormatClasses.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
stable/12/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/IRInterpreter.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
stable/12/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/File.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/Host.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/HostNativeThreadBase.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/ProcessRunLock.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/TaskPool.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/common/XML.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/freebsd/Host.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/netbsd/Host.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/openbsd/Host.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/openbsd/HostInfoOpenBSD.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
stable/12/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
stable/12/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
stable/12/contrib/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
stable/12/contrib/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionArgParser.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp
stable/12/contrib/llvm/tools/lldb/source/Interpreter/Property.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionHelper.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIX.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMUtils.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_x86.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64le.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.h
stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
stable/12/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h
stable/12/contrib/llvm/tools/lldb/source/Symbol/ArmUnwindInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/Block.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/CompilerType.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/Symtab.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/Type.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/TypeList.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/TypeMap.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
stable/12/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ABI.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/Language.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/Memory.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ModuleCache.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/OperatingSystem.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/PathMappingList.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/Platform.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/Process.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ProcessInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/Queue.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/QueueItem.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/RegisterNumber.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/StackID.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/Target.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/Thread.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/ThreadSpec.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
stable/12/contrib/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/ArchSpec.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/DataBufferLLVM.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/DataEncoder.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/DataExtractor.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/FileSpec.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Log.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Logging.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Status.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Stream.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/StreamString.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/StringList.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/Timer.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/UUID.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp
stable/12/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp
stable/12/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
stable/12/contrib/llvm/tools/lldb/tools/driver/Driver.h
stable/12/contrib/llvm/tools/lldb/tools/driver/Platform.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.h
stable/12/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
stable/12/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
stable/12/contrib/llvm/tools/lli/lli.cpp
stable/12/contrib/llvm/tools/llvm-ar/llvm-ar.cpp
stable/12/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
stable/12/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp
stable/12/contrib/llvm/tools/llvm-cov/CoverageExporter.h
stable/12/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp
stable/12/contrib/llvm/tools/llvm-cov/CoverageExporterJson.h
stable/12/contrib/llvm/tools/llvm-cov/CoverageViewOptions.h
stable/12/contrib/llvm/tools/llvm-cov/SourceCoverageView.cpp
stable/12/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
stable/12/contrib/llvm/tools/llvm-cov/TestingSupport.cpp
stable/12/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
stable/12/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
stable/12/contrib/llvm/tools/llvm-dwarfdump/Statistics.cpp
stable/12/contrib/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
stable/12/contrib/llvm/tools/llvm-lto/llvm-lto.cpp
stable/12/contrib/llvm/tools/llvm-lto2/llvm-lto2.cpp
stable/12/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
stable/12/contrib/llvm/tools/llvm-mca/CodeRegion.cpp
stable/12/contrib/llvm/tools/llvm-mca/CodeRegion.h
stable/12/contrib/llvm/tools/llvm-mca/PipelinePrinter.cpp
stable/12/contrib/llvm/tools/llvm-mca/PipelinePrinter.h
stable/12/contrib/llvm/tools/llvm-mca/llvm-mca.cpp
stable/12/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
stable/12/contrib/llvm/tools/llvm-objcopy/ObjcopyOpts.td
stable/12/contrib/llvm/tools/llvm-objcopy/StripOpts.td
stable/12/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
stable/12/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.h
stable/12/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
stable/12/contrib/llvm/tools/llvm-objdump/ELFDump.cpp
stable/12/contrib/llvm/tools/llvm-objdump/MachODump.cpp
stable/12/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
stable/12/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
stable/12/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.h
stable/12/contrib/llvm/tools/llvm-pdbutil/InputFile.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/InputFile.h
stable/12/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.h
stable/12/contrib/llvm/tools/llvm-pdbutil/MinimalTypeDumper.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/MinimalTypeDumper.h
stable/12/contrib/llvm/tools/llvm-pdbutil/PdbYaml.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/PdbYaml.h
stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.h
stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.h
stable/12/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.h
stable/12/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
stable/12/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.h
stable/12/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp
stable/12/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
stable/12/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
stable/12/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
stable/12/contrib/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
stable/12/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp
stable/12/contrib/llvm/tools/llvm-readobj/MachODumper.cpp
stable/12/contrib/llvm/tools/llvm-readobj/ObjDumper.h
stable/12/contrib/llvm/tools/llvm-readobj/WasmDumper.cpp
stable/12/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
stable/12/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
stable/12/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
stable/12/contrib/llvm/tools/llvm-stress/llvm-stress.cpp
stable/12/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
stable/12/contrib/llvm/tools/llvm-xray/xray-account.cpp
stable/12/contrib/llvm/tools/llvm-xray/xray-converter.cpp
stable/12/contrib/llvm/tools/llvm-xray/xray-graph.cpp
stable/12/contrib/llvm/tools/llvm-xray/xray-stacks.cpp
stable/12/contrib/llvm/tools/opt/Debugify.cpp
stable/12/contrib/llvm/tools/opt/NewPMDriver.cpp
stable/12/contrib/llvm/tools/opt/opt.cpp
stable/12/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/CTagsEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
stable/12/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h
stable/12/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp
stable/12/contrib/llvm/utils/TableGen/CodeGenInstruction.h
stable/12/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h
stable/12/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp
stable/12/contrib/llvm/utils/TableGen/CodeGenRegisters.h
stable/12/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
stable/12/contrib/llvm/utils/TableGen/CodeGenSchedule.h
stable/12/contrib/llvm/utils/TableGen/CodeGenTarget.cpp
stable/12/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp
stable/12/contrib/llvm/utils/TableGen/DAGISelMatcher.h
stable/12/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
stable/12/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/GlobalISelEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/InfoByHwMode.cpp
stable/12/contrib/llvm/utils/TableGen/InfoByHwMode.h
stable/12/contrib/llvm/utils/TableGen/InstrDocsEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/PredicateExpander.cpp
stable/12/contrib/llvm/utils/TableGen/PredicateExpander.h
stable/12/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/SearchableTableEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/TableGen.cpp
stable/12/contrib/llvm/utils/TableGen/TableGenBackends.h
stable/12/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
stable/12/contrib/llvm/utils/TableGen/X86ModRMFilters.h
stable/12/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
stable/12/contrib/openmp/runtime/src/kmp.h
stable/12/contrib/openmp/runtime/src/kmp_runtime.cpp
stable/12/contrib/openmp/runtime/src/kmp_wrapper_getpid.h
stable/12/contrib/openmp/runtime/src/ompt-general.cpp
stable/12/etc/mtree/BSD.debug.dist
stable/12/etc/mtree/BSD.usr.dist
stable/12/lib/Makefile
stable/12/lib/clang/freebsd_cc_version.h
stable/12/lib/clang/headers/Makefile
stable/12/lib/clang/include/clang/Basic/Version.inc
stable/12/lib/clang/include/clang/Config/config.h
stable/12/lib/clang/include/lld/Common/Version.inc
stable/12/lib/clang/include/llvm/Config/config.h
stable/12/lib/clang/include/llvm/Config/llvm-config.h
stable/12/lib/clang/include/llvm/Support/VCSRevision.h
stable/12/lib/clang/libclang/Makefile
stable/12/lib/clang/liblldb/Makefile
stable/12/lib/clang/libllvm/Makefile
stable/12/lib/clang/libllvmminimal/Makefile
stable/12/lib/libc++/Makefile
stable/12/lib/libclang_rt/Makefile.inc
stable/12/lib/libclang_rt/asan/Makefile
stable/12/lib/libclang_rt/asan_dynamic/Makefile
stable/12/lib/libclang_rt/msan/Makefile
stable/12/lib/libclang_rt/safestack/Makefile
stable/12/lib/libclang_rt/stats/Makefile
stable/12/lib/libclang_rt/tsan/Makefile
stable/12/lib/libclang_rt/ubsan_standalone/Makefile
stable/12/lib/libgcc_eh/Makefile.inc
stable/12/sys/sys/param.h
stable/12/tools/build/mk/OptionalObsoleteFiles.inc
stable/12/usr.bin/clang/Makefile
stable/12/usr.bin/clang/lld/Makefile
stable/12/usr.bin/clang/lldb/Makefile
stable/12/usr.bin/clang/llvm-cov/Makefile
stable/12/usr.bin/clang/llvm-mca/Makefile
stable/12/usr.bin/clang/llvm-objcopy/Makefile
stable/12/usr.bin/clang/llvm-objdump/Makefile
stable/12/usr.bin/clang/llvm-pdbutil/Makefile
stable/12/usr.bin/clang/llvm-tblgen/Makefile
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/ObsoleteFiles.inc
==============================================================================
--- stable/12/ObsoleteFiles.inc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/ObsoleteFiles.inc Fri Apr 12 20:03:27 2019 (r346168)
@@ -38,6 +38,158 @@
# xargs -n1 | sort | uniq -d;
# done
+# 2019mmdd: new libc++ import which bumps version from 7.0.1 to 8.0.0.
+OLD_FILES+=usr/include/c++/v1/experimental/dynarray
+# 2019mmdd: new clang import which bumps version from 7.0.1 to 8.0.0.
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/allocator_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/asan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/common_interface_defs.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/coverage_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/dfsan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/esan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/hwasan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/linux_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/lsan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/msan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/netbsd_syscall_hooks.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/scudo_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/tsan_interface.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/tsan_interface_atomic.h
+OLD_DIRS+=usr/lib/clang/7.0.1/include/sanitizer
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_builtin_vars.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_cmath.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_complex_builtins.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_device_functions.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_intrinsics.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_libdevice_declares.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_math_forward_declares.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_runtime_wrapper.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__stddef_max_align_t.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__wmmintrin_aes.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/__wmmintrin_pclmul.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/adxintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/altivec.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/ammintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/arm64intr.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/arm_acle.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/arm_fp16.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/arm_neon.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/armintr.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx2intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512bitalgintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512bwintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512cdintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512dqintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512erintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512fintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512ifmaintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512ifmavlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512pfintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vbmi2intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vbmiintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vbmivlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlbitalgintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlbwintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlcdintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vldqintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlvbmi2intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlvnniintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vnniintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vpopcntdqintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vpopcntdqvlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/avxintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/bmi2intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/bmiintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/cetintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/cldemoteintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/clflushoptintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/clwbintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/clzerointrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/cpuid.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/emmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/f16cintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/fma4intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/fmaintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/fxsrintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/gfniintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/htmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/htmxlintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/ia32intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/immintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/invpcidintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/lwpintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/lzcntintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/mm3dnow.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/mm_malloc.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/mmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/module.modulemap
+OLD_FILES+=usr/lib/clang/7.0.1/include/movdirintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/msa.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/mwaitxintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/nmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/opencl-c.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/pconfigintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/pkuintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/pmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/popcntintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/prfchwintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/ptwriteintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/rdseedintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/rtmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/s390intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/sgxintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/shaintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/smmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/tbmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/tmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/vadefs.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/vaesintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/vecintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/vpclmulqdqintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/waitpkgintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/wbnoinvdintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/wmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/x86intrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xmmintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xopintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xsavecintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xsaveintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xsaveoptintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xsavesintrin.h
+OLD_FILES+=usr/lib/clang/7.0.1/include/xtestintrin.h
+OLD_DIRS+=usr/lib/clang/7.0.1/include
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-i386.so
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-x86_64.so
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.msan-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.msan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-arm.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-armhf.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.safestack-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats_client-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a
+OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a
+OLD_DIRS+=usr/lib/clang/7.0.1/lib/freebsd
+OLD_DIRS+=usr/lib/clang/7.0.1/lib
+OLD_DIRS+=usr/lib/clang/7.0.1
# 20190216: new clang import which bumps version from 6.0.1 to 7.0.1.
OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/allocator_interface.h
OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/asan_interface.h
Modified: stable/12/UPDATING
==============================================================================
--- stable/12/UPDATING Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/UPDATING Fri Apr 12 20:03:27 2019 (r346168)
@@ -16,6 +16,12 @@ from older versions of FreeBSD, try WITHOUT_CLANG and
the tip of head, and then rebuild without this option. The bootstrap process
from older version of current across the gcc/clang cutover is a bit fragile.
+2019mmdd:
+ Clang, llvm, lld, lldb, compiler-rt and libc++ have been upgraded to
+ 8.0.0. Please see the 20141231 entry below for information about
+ prerequisites and upgrading, if you are not already using clang 3.5.0
+ or higher.
+
20190307:
The RETPOLINE option produces non-functional ifunc-using binaries
with Clang 7.0.1, and has been forced off (via BROKEN_OPTIONS).
Modified: stable/12/contrib/compiler-rt/LICENSE.TXT
==============================================================================
--- stable/12/contrib/compiler-rt/LICENSE.TXT Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/LICENSE.TXT Fri Apr 12 20:03:27 2019 (r346168)
@@ -14,7 +14,7 @@ Full text of the relevant licenses is included below.
University of Illinois/NCSA
Open Source License
-Copyright (c) 2009-2018 by the contributors listed in CREDITS.TXT
+Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT
All rights reserved.
Modified: stable/12/contrib/compiler-rt/include/sanitizer/allocator_interface.h
==============================================================================
--- stable/12/contrib/compiler-rt/include/sanitizer/allocator_interface.h Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/include/sanitizer/allocator_interface.h Fri Apr 12 20:03:27 2019 (r346168)
@@ -82,7 +82,6 @@ extern "C" {
Currently available with ASan only.
*/
void __sanitizer_purge_allocator(void);
-
#ifdef __cplusplus
} // extern "C"
#endif
Modified: stable/12/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
==============================================================================
--- stable/12/contrib/compiler-rt/include/sanitizer/common_interface_defs.h Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/include/sanitizer/common_interface_defs.h Fri Apr 12 20:03:27 2019 (r346168)
@@ -124,6 +124,12 @@ extern "C" {
// Symbolizes the supplied 'pc' using the format string 'fmt'.
// Outputs at most 'out_buf_size' bytes into 'out_buf'.
+ // If 'out_buf' is not empty then output is zero or more non empty C strings
+ // followed by single empty C string. Multiple strings can be returned if PC
+ // corresponds to inlined function. Inlined frames are printed in the order
+ // from "most-inlined" to the "least-inlined", so the last frame should be the
+ // not inlined function.
+ // Inlined frames can be removed with 'symbolize_inline_frames=0'.
// The format syntax is described in
// lib/sanitizer_common/sanitizer_stacktrace_printer.h.
void __sanitizer_symbolize_pc(void *pc, const char *fmt, char *out_buf,
Modified: stable/12/contrib/compiler-rt/include/sanitizer/hwasan_interface.h
==============================================================================
--- stable/12/contrib/compiler-rt/include/sanitizer/hwasan_interface.h Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/include/sanitizer/hwasan_interface.h Fri Apr 12 20:03:27 2019 (r346168)
@@ -19,6 +19,12 @@
#ifdef __cplusplus
extern "C" {
#endif
+ // Initialize shadow but not the rest of the runtime.
+ // Does not call libc unless there is an error.
+ // Can be called multiple times, or not at all (in which case shadow will
+ // be initialized in compiler-inserted __hwasan_init() call).
+ void __hwasan_shadow_init(void);
+
// This function may be optionally provided by user and should return
// a string containing HWASan runtime options. See asan_flags.h for details.
const char* __hwasan_default_options(void);
@@ -26,6 +32,51 @@ extern "C" {
void __hwasan_enable_allocator_tagging(void);
void __hwasan_disable_allocator_tagging(void);
+ // Mark region of memory with the given tag. Both address and size need to be
+ // 16-byte aligned.
+ void __hwasan_tag_memory(const volatile void *p, unsigned char tag,
+ size_t size);
+
+ /// Set pointer tag. Previous tag is lost.
+ void *__hwasan_tag_pointer(const volatile void *p, unsigned char tag);
+
+ // Set memory tag from the current SP address to the given address to zero.
+ // This is meant to annotate longjmp and other non-local jumps.
+ // This function needs to know the (almost) exact destination frame address;
+ // clearing shadow for the entire thread stack like __asan_handle_no_return
+ // does would cause false reports.
+ void __hwasan_handle_longjmp(const void *sp_dst);
+
+ // Libc hook for thread creation. Should be called in the child thread before
+ // any instrumented code.
+ void __hwasan_thread_enter();
+
+ // Libc hook for thread destruction. No instrumented code should run after
+ // this call.
+ void __hwasan_thread_exit();
+
+ // Print shadow and origin for the memory range to stderr in a human-readable
+ // format.
+ void __hwasan_print_shadow(const volatile void *x, size_t size);
+
+ // Print one-line report about the memory usage of the current process.
+ void __hwasan_print_memory_usage();
+
+ int __sanitizer_posix_memalign(void **memptr, size_t alignment, size_t size);
+ void * __sanitizer_memalign(size_t alignment, size_t size);
+ void * __sanitizer_aligned_alloc(size_t alignment, size_t size);
+ void * __sanitizer___libc_memalign(size_t alignment, size_t size);
+ void * __sanitizer_valloc(size_t size);
+ void * __sanitizer_pvalloc(size_t size);
+ void __sanitizer_free(void *ptr);
+ void __sanitizer_cfree(void *ptr);
+ size_t __sanitizer_malloc_usable_size(const void *ptr);
+ struct mallinfo __sanitizer_mallinfo();
+ int __sanitizer_mallopt(int cmd, int value);
+ void __sanitizer_malloc_stats(void);
+ void * __sanitizer_calloc(size_t nmemb, size_t size);
+ void * __sanitizer_realloc(void *ptr, size_t size);
+ void * __sanitizer_malloc(size_t size);
#ifdef __cplusplus
} // extern "C"
#endif
Modified: stable/12/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
==============================================================================
--- stable/12/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h Fri Apr 12 20:03:27 2019 (r346168)
@@ -21,8 +21,8 @@
// DO NOT EDIT! THIS FILE HAS BEEN GENERATED!
//
// Generated with: generate_netbsd_syscalls.awk
-// Generated date: 2018-03-03
-// Generated from: syscalls.master,v 1.291 2018/01/06 16:41:23 kamil Exp
+// Generated date: 2018-10-30
+// Generated from: syscalls.master,v 1.293 2018/07/31 13:00:13 rjs Exp
//
//===----------------------------------------------------------------------===//
#ifndef SANITIZER_NETBSD_SYSCALL_HOOKS_H
@@ -986,7 +986,15 @@
#define __sanitizer_syscall_post_fpathconf(res, fd, name) \
__sanitizer_syscall_post_impl_fpathconf(res, (long long)(fd), \
(long long)(name))
-/* syscall 193 has been skipped */
+#define __sanitizer_syscall_pre_getsockopt2(s, level, name, val, avalsize) \
+ __sanitizer_syscall_pre_impl_getsockopt2( \
+ (long long)(s), (long long)(level), (long long)(name), (long long)(val), \
+ (long long)(avalsize))
+#define __sanitizer_syscall_post_getsockopt2(res, s, level, name, val, \
+ avalsize) \
+ __sanitizer_syscall_post_impl_getsockopt2( \
+ res, (long long)(s), (long long)(level), (long long)(name), \
+ (long long)(val), (long long)(avalsize))
#define __sanitizer_syscall_pre_getrlimit(which, rlp) \
__sanitizer_syscall_pre_impl_getrlimit((long long)(which), (long long)(rlp))
#define __sanitizer_syscall_post_getrlimit(res, which, rlp) \
@@ -1752,18 +1760,8 @@
__sanitizer_syscall_post_impl___sigaction_sigtramp( \
res, (long long)(signum), (long long)(nsa), (long long)(osa), \
(long long)(tramp), (long long)(vers))
-#define __sanitizer_syscall_pre_pmc_get_info(ctr, op, args) \
- __sanitizer_syscall_pre_impl_pmc_get_info((long long)(ctr), (long long)(op), \
- (long long)(args))
-#define __sanitizer_syscall_post_pmc_get_info(res, ctr, op, args) \
- __sanitizer_syscall_post_impl_pmc_get_info( \
- res, (long long)(ctr), (long long)(op), (long long)(args))
-#define __sanitizer_syscall_pre_pmc_control(ctr, op, args) \
- __sanitizer_syscall_pre_impl_pmc_control((long long)(ctr), (long long)(op), \
- (long long)(args))
-#define __sanitizer_syscall_post_pmc_control(res, ctr, op, args) \
- __sanitizer_syscall_post_impl_pmc_control( \
- res, (long long)(ctr), (long long)(op), (long long)(args))
+/* syscall 341 has been skipped */
+/* syscall 342 has been skipped */
#define __sanitizer_syscall_pre_rasctl(addr, len, op) \
__sanitizer_syscall_pre_impl_rasctl((long long)(addr), (long long)(len), \
(long long)(op))
@@ -3444,7 +3442,13 @@ void __sanitizer_syscall_post_impl_pathconf(long long
void __sanitizer_syscall_pre_impl_fpathconf(long long fd, long long name);
void __sanitizer_syscall_post_impl_fpathconf(long long res, long long fd,
long long name);
-/* syscall 193 has been skipped */
+void __sanitizer_syscall_pre_impl_getsockopt2(long long s, long long level,
+ long long name, long long val,
+ long long avalsize);
+void __sanitizer_syscall_post_impl_getsockopt2(long long res, long long s,
+ long long level, long long name,
+ long long val,
+ long long avalsize);
void __sanitizer_syscall_pre_impl_getrlimit(long long which, long long rlp);
void __sanitizer_syscall_post_impl_getrlimit(long long res, long long which,
long long rlp);
@@ -4001,14 +4005,8 @@ void __sanitizer_syscall_pre_impl___sigaction_sigtramp
void __sanitizer_syscall_post_impl___sigaction_sigtramp(
long long res, long long signum, long long nsa, long long osa,
long long tramp, long long vers);
-void __sanitizer_syscall_pre_impl_pmc_get_info(long long ctr, long long op,
- long long args);
-void __sanitizer_syscall_post_impl_pmc_get_info(long long res, long long ctr,
- long long op, long long args);
-void __sanitizer_syscall_pre_impl_pmc_control(long long ctr, long long op,
- long long args);
-void __sanitizer_syscall_post_impl_pmc_control(long long res, long long ctr,
- long long op, long long args);
+/* syscall 341 has been skipped */
+/* syscall 342 has been skipped */
void __sanitizer_syscall_pre_impl_rasctl(long long addr, long long len,
long long op);
void __sanitizer_syscall_post_impl_rasctl(long long res, long long addr,
Modified: stable/12/contrib/compiler-rt/include/xray/xray_log_interface.h
==============================================================================
--- stable/12/contrib/compiler-rt/include/xray/xray_log_interface.h Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/include/xray/xray_log_interface.h Fri Apr 12 20:03:27 2019 (r346168)
@@ -158,8 +158,8 @@ struct XRayLogImpl {
/// The log initialization routine provided by the implementation, always
/// provided with the following parameters:
///
- /// - buffer size
- /// - maximum number of buffers
+ /// - buffer size (unused)
+ /// - maximum number of buffers (unused)
/// - a pointer to an argument struct that the implementation MUST handle
/// - the size of the argument struct
///
@@ -354,26 +354,5 @@ XRayLogFlushStatus __xray_log_process_buffers(void (*P
XRayBuffer));
} // extern "C"
-
-namespace __xray {
-
-/// DEPRECATED: Use __xray_log_init_mode(...) instead, and provide flag
-/// configuration strings to set the options instead.
-/// Options used by the LLVM XRay FDR logging implementation.
-struct FDRLoggingOptions {
- bool ReportErrors = false;
- int Fd = -1;
-};
-
-/// DEPRECATED: Use __xray_log_init_mode(...) instead, and provide flag
-/// configuration strings to set the options instead.
-/// Options used by the LLVM XRay Basic (Naive) logging implementation.
-struct BasicLoggingOptions {
- int DurationFilterMicros = 0;
- size_t MaxStackDepth = 0;
- size_t ThreadBufferSize = 0;
-};
-
-} // namespace __xray
#endif // XRAY_XRAY_LOG_INTERFACE_H
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_allocator.h
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_allocator.h Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_allocator.h Fri Apr 12 20:03:27 2019 (r346168)
@@ -148,6 +148,7 @@ const uptr kAllocatorSpace = 0x600000000000ULL;
const uptr kAllocatorSize = 0x40000000000ULL; // 4T.
typedef DefaultSizeClassMap SizeClassMap;
# endif
+template <typename AddressSpaceViewTy>
struct AP64 { // Allocator64 parameters. Deliberately using a short name.
static const uptr kSpaceBeg = kAllocatorSpace;
static const uptr kSpaceSize = kAllocatorSize;
@@ -155,37 +156,57 @@ struct AP64 { // Allocator64 parameters. Deliberately
typedef __asan::SizeClassMap SizeClassMap;
typedef AsanMapUnmapCallback MapUnmapCallback;
static const uptr kFlags = 0;
+ using AddressSpaceView = AddressSpaceViewTy;
};
-typedef SizeClassAllocator64<AP64> PrimaryAllocator;
+template <typename AddressSpaceView>
+using PrimaryAllocatorASVT = SizeClassAllocator64<AP64<AddressSpaceView>>;
+using PrimaryAllocator = PrimaryAllocatorASVT<LocalAddressSpaceView>;
#else // Fallback to SizeClassAllocator32.
static const uptr kRegionSizeLog = 20;
static const uptr kNumRegions = SANITIZER_MMAP_RANGE_SIZE >> kRegionSizeLog;
# if SANITIZER_WORDSIZE == 32
-typedef FlatByteMap<kNumRegions> ByteMap;
+template <typename AddressSpaceView>
+using ByteMapASVT = FlatByteMap<kNumRegions, AddressSpaceView>;
# elif SANITIZER_WORDSIZE == 64
-typedef TwoLevelByteMap<(kNumRegions >> 12), 1 << 12> ByteMap;
+template <typename AddressSpaceView>
+using ByteMapASVT =
+ TwoLevelByteMap<(kNumRegions >> 12), 1 << 12, AddressSpaceView>;
# endif
typedef CompactSizeClassMap SizeClassMap;
+template <typename AddressSpaceViewTy>
struct AP32 {
static const uptr kSpaceBeg = 0;
static const u64 kSpaceSize = SANITIZER_MMAP_RANGE_SIZE;
static const uptr kMetadataSize = 16;
typedef __asan::SizeClassMap SizeClassMap;
static const uptr kRegionSizeLog = __asan::kRegionSizeLog;
- typedef __asan::ByteMap ByteMap;
+ using AddressSpaceView = AddressSpaceViewTy;
+ using ByteMap = __asan::ByteMapASVT<AddressSpaceView>;
typedef AsanMapUnmapCallback MapUnmapCallback;
static const uptr kFlags = 0;
};
-typedef SizeClassAllocator32<AP32> PrimaryAllocator;
+template <typename AddressSpaceView>
+using PrimaryAllocatorASVT = SizeClassAllocator32<AP32<AddressSpaceView> >;
+using PrimaryAllocator = PrimaryAllocatorASVT<LocalAddressSpaceView>;
#endif // SANITIZER_CAN_USE_ALLOCATOR64
static const uptr kNumberOfSizeClasses = SizeClassMap::kNumClasses;
-typedef SizeClassAllocatorLocalCache<PrimaryAllocator> AllocatorCache;
-typedef LargeMmapAllocator<AsanMapUnmapCallback> SecondaryAllocator;
-typedef CombinedAllocator<PrimaryAllocator, AllocatorCache,
- SecondaryAllocator> AsanAllocator;
+template <typename AddressSpaceView>
+using AllocatorCacheASVT =
+ SizeClassAllocatorLocalCache<PrimaryAllocatorASVT<AddressSpaceView>>;
+using AllocatorCache = AllocatorCacheASVT<LocalAddressSpaceView>;
+template <typename AddressSpaceView>
+using SecondaryAllocatorASVT =
+ LargeMmapAllocator<AsanMapUnmapCallback, DefaultLargeMmapAllocatorPtrArray,
+ AddressSpaceView>;
+template <typename AddressSpaceView>
+using AsanAllocatorASVT =
+ CombinedAllocator<PrimaryAllocatorASVT<AddressSpaceView>,
+ AllocatorCacheASVT<AddressSpaceView>,
+ SecondaryAllocatorASVT<AddressSpaceView>>;
+using AsanAllocator = AsanAllocatorASVT<LocalAddressSpaceView>;
struct AsanThreadLocalMallocStorage {
uptr quarantine_cache[16];
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_errors.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_errors.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_errors.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -125,9 +125,8 @@ void ErrorAllocTypeMismatch::Print() {
Decorator d;
Printf("%s", d.Error());
Report("ERROR: AddressSanitizer: %s (%s vs %s) on %p\n",
- scariness.GetDescription(),
- alloc_names[alloc_type], dealloc_names[dealloc_type],
- addr_description.addr);
+ scariness.GetDescription(), alloc_names[alloc_type],
+ dealloc_names[dealloc_type], addr_description.Address());
Printf("%s", d.Default());
CHECK_GT(dealloc_stack->size, 0);
scariness.Print();
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_errors.h
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_errors.h Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_errors.h Fri Apr 12 20:03:27 2019 (r346168)
@@ -110,8 +110,8 @@ struct ErrorFreeNotMalloced : ErrorBase {
struct ErrorAllocTypeMismatch : ErrorBase {
const BufferedStackTrace *dealloc_stack;
- HeapAddressDescription addr_description;
AllocType alloc_type, dealloc_type;
+ AddressDescription addr_description;
ErrorAllocTypeMismatch() = default; // (*)
ErrorAllocTypeMismatch(u32 tid, BufferedStackTrace *stack, uptr addr,
@@ -119,9 +119,8 @@ struct ErrorAllocTypeMismatch : ErrorBase {
: ErrorBase(tid, 10, "alloc-dealloc-mismatch"),
dealloc_stack(stack),
alloc_type(alloc_type_),
- dealloc_type(dealloc_type_) {
- GetHeapAddressInformation(addr, 1, &addr_description);
- };
+ dealloc_type(dealloc_type_),
+ addr_description(addr, 1, false) {}
void Print();
};
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_flags.inc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_flags.inc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_flags.inc Fri Apr 12 20:03:27 2019 (r346168)
@@ -152,8 +152,6 @@ ASAN_FLAG(const char *, suppressions, "", "Suppression
ASAN_FLAG(bool, halt_on_error, true,
"Crash the program after printing the first error report "
"(WARNING: USE AT YOUR OWN RISK!)")
-ASAN_FLAG(bool, use_odr_indicator, false,
- "Use special ODR indicator symbol for ODR violation detection")
ASAN_FLAG(bool, allocator_frees_and_returns_null_on_realloc_zero, true,
"realloc(p, 0) is equivalent to free(p) by default (Same as the "
"POSIX standard). If set to false, realloc(p, 0) will return a "
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_fuchsia.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_fuchsia.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_fuchsia.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -190,6 +190,13 @@ static void ThreadExitHook(void *hook, uptr os_id) {
AsanThread::TSDDtor(per_thread);
}
+bool HandleDlopenInit() {
+ // Not supported on this platform.
+ static_assert(!SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+ "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be false");
+ return false;
+}
+
} // namespace __asan
// These are declared (in extern "C") by <zircon/sanitizer.h>.
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_globals.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_globals.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_globals.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -83,9 +83,11 @@ static bool IsAddressNearGlobal(uptr addr, const __asa
}
static void ReportGlobal(const Global &g, const char *prefix) {
- Report("%s Global[%p]: beg=%p size=%zu/%zu name=%s module=%s dyn_init=%zu\n",
- prefix, &g, (void *)g.beg, g.size, g.size_with_redzone, g.name,
- g.module_name, g.has_dynamic_init);
+ Report(
+ "%s Global[%p]: beg=%p size=%zu/%zu name=%s module=%s dyn_init=%zu "
+ "odr_indicator=%p\n",
+ prefix, &g, (void *)g.beg, g.size, g.size_with_redzone, g.name,
+ g.module_name, g.has_dynamic_init, (void *)g.odr_indicator);
if (g.location) {
Report(" location (%p): name=%s[%p], %d %d\n", g.location,
g.location->filename, g.location->filename, g.location->line_no,
@@ -133,6 +135,9 @@ enum GlobalSymbolState {
// this method in case compiler instruments global variables through their
// local aliases.
static void CheckODRViolationViaIndicator(const Global *g) {
+ // Instrumentation requests to skip ODR check.
+ if (g->odr_indicator == UINTPTR_MAX)
+ return;
u8 *odr_indicator = reinterpret_cast<u8 *>(g->odr_indicator);
if (*odr_indicator == UNREGISTERED) {
*odr_indicator = REGISTERED;
@@ -183,9 +188,7 @@ static void CheckODRViolationViaPoisoning(const Global
// This routine chooses between two different methods of ODR violation
// detection.
static inline bool UseODRIndicator(const Global *g) {
- // Use ODR indicator method iff use_odr_indicator flag is set and
- // indicator symbol address is not 0.
- return flags()->use_odr_indicator && g->odr_indicator > 0;
+ return g->odr_indicator > 0;
}
// Register a global variable.
@@ -248,7 +251,7 @@ static void UnregisterGlobal(const Global *g) {
// implementation. It might not be worth doing anyway.
// Release ODR indicator.
- if (UseODRIndicator(g)) {
+ if (UseODRIndicator(g) && g->odr_indicator != UINTPTR_MAX) {
u8 *odr_indicator = reinterpret_cast<u8 *>(g->odr_indicator);
*odr_indicator = UNREGISTERED;
}
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_globals_win.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_globals_win.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_globals_win.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -29,7 +29,7 @@ static void call_on_globals(void (*hook)(__asan_global
__asan_global *end = &__asan_globals_end;
uptr bytediff = (uptr)end - (uptr)start;
if (bytediff % sizeof(__asan_global) != 0) {
-#ifdef SANITIZER_DLL_THUNK
+#if defined(SANITIZER_DLL_THUNK) || defined(SANITIZER_DYNAMIC_RUNTIME_THUNK)
__debugbreak();
#else
CHECK("corrupt asan global array");
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_internal.h
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_internal.h Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_internal.h Fri Apr 12 20:03:27 2019 (r346168)
@@ -111,6 +111,11 @@ void *AsanDlSymNext(const char *sym);
void ReserveShadowMemoryRange(uptr beg, uptr end, const char *name);
+// Returns `true` iff most of ASan init process should be skipped due to the
+// ASan library being loaded via `dlopen()`. Platforms may perform any
+// `dlopen()` specific initialization inside this function.
+bool HandleDlopenInit();
+
// Add convenient macro for interface functions that may be represented as
// weak hooks.
#define ASAN_MALLOC_HOOK(ptr, size) \
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_linux.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_linux.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_linux.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -248,6 +248,13 @@ void *AsanDlSymNext(const char *sym) {
return dlsym(RTLD_NEXT, sym);
}
+bool HandleDlopenInit() {
+ // Not supported on this platform.
+ static_assert(!SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+ "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be false");
+ return false;
+}
+
} // namespace __asan
#endif // SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_NETBSD ||
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -209,7 +209,7 @@ INTERCEPTOR(struct fake_mallinfo, mallinfo, void) {
}
INTERCEPTOR(int, mallopt, int cmd, int value) {
- return -1;
+ return 0;
}
#endif // SANITIZER_INTERCEPT_MALLOPT_AND_MALLINFO
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -61,4 +61,25 @@ using namespace __asan;
#include "sanitizer_common/sanitizer_malloc_mac.inc"
+namespace COMMON_MALLOC_NAMESPACE {
+bool HandleDlopenInit() {
+ static_assert(SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+ "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be true");
+ // We have no reliable way of knowing how we are being loaded
+ // so make it a requirement on Apple platforms to set this environment
+ // variable to indicate that we want to perform initialization via
+ // dlopen().
+ auto init_str = GetEnv("APPLE_ASAN_INIT_FOR_DLOPEN");
+ if (!init_str)
+ return false;
+ if (internal_strncmp(init_str, "1", 1) != 0)
+ return false;
+ // When we are loaded via `dlopen()` path we still initialize the malloc zone
+ // so Symbolication clients (e.g. `leaks`) that load the ASan allocator can
+ // find an initialized malloc zone.
+ InitMallocZoneFields();
+ return true;
+}
+} // namespace COMMON_MALLOC_NAMESPACE
+
#endif
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_malloc_win.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_malloc_win.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -14,9 +14,18 @@
#include "sanitizer_common/sanitizer_platform.h"
#if SANITIZER_WINDOWS
-#define WIN32_LEAN_AND_MEAN
-#include <windows.h>
+// Intentionally not including windows.h here, to avoid the risk of
+// pulling in conflicting declarations of these functions. (With mingw-w64,
+// there's a risk of windows.h pulling in stdint.h.)
+typedef int BOOL;
+typedef void *HANDLE;
+typedef const void *LPCVOID;
+typedef void *LPVOID;
+#define HEAP_ZERO_MEMORY 0x00000008
+#define HEAP_REALLOC_IN_PLACE_ONLY 0x00000010
+
+
#include "asan_allocator.h"
#include "asan_interceptors.h"
#include "asan_internal.h"
@@ -125,13 +134,18 @@ void *_recalloc_base(void *p, size_t n, size_t elem_si
}
ALLOCATION_FUNCTION_ATTRIBUTE
-size_t _msize(const void *ptr) {
+size_t _msize(void *ptr) {
GET_CURRENT_PC_BP_SP;
(void)sp;
return asan_malloc_usable_size(ptr, pc, bp);
}
ALLOCATION_FUNCTION_ATTRIBUTE
+size_t _msize_base(void *ptr) {
+ return _msize(ptr);
+}
+
+ALLOCATION_FUNCTION_ATTRIBUTE
void *_expand(void *memblock, size_t size) {
// _expand is used in realloc-like functions to resize the buffer if possible.
// We don't want memory to stand still while resizing buffers, so return 0.
@@ -226,6 +240,7 @@ void ReplaceSystemMalloc() {
TryToOverrideFunction("_recalloc_base", (uptr)_recalloc);
TryToOverrideFunction("_recalloc_crt", (uptr)_recalloc);
TryToOverrideFunction("_msize", (uptr)_msize);
+ TryToOverrideFunction("_msize_base", (uptr)_msize);
TryToOverrideFunction("_expand", (uptr)_expand);
TryToOverrideFunction("_expand_base", (uptr)_expand);
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_new_delete.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_new_delete.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_new_delete.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -26,7 +26,7 @@
// anyway by passing extra -export flags to the linker, which is exactly that
// dllexport would normally do. We need to export them in order to make the
// VS2015 dynamic CRT (MD) work.
-#if SANITIZER_WINDOWS
+#if SANITIZER_WINDOWS && defined(_MSC_VER)
#define CXX_OPERATOR_ATTRIBUTE
#define COMMENT_EXPORT(sym) __pragma(comment(linker, "/export:" sym))
#ifdef _WIN64
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_posix.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_posix.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_posix.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -40,6 +40,51 @@ void AsanOnDeadlySignal(int signo, void *siginfo, void
// ---------------------- TSD ---------------- {{{1
+#if SANITIZER_NETBSD || SANITIZER_FREEBSD
+// Thread Static Data cannot be used in early init on NetBSD and FreeBSD.
+// Reuse the Asan TSD API for compatibility with existing code
+// with an alternative implementation.
+
+static void (*tsd_destructor)(void *tsd) = nullptr;
+
+struct tsd_key {
+ tsd_key() : key(nullptr) {}
+ ~tsd_key() {
+ CHECK(tsd_destructor);
+ if (key)
+ (*tsd_destructor)(key);
+ }
+ void *key;
+};
+
+static thread_local struct tsd_key key;
+
+void AsanTSDInit(void (*destructor)(void *tsd)) {
+ CHECK(!tsd_destructor);
+ tsd_destructor = destructor;
+}
+
+void *AsanTSDGet() {
+ CHECK(tsd_destructor);
+ return key.key;
+}
+
+void AsanTSDSet(void *tsd) {
+ CHECK(tsd_destructor);
+ CHECK(tsd);
+ CHECK(!key.key);
+ key.key = tsd;
+}
+
+void PlatformTSDDtor(void *tsd) {
+ CHECK(tsd_destructor);
+ CHECK_EQ(key.key, tsd);
+ key.key = nullptr;
+ // Make sure that signal handler can not see a stale current thread pointer.
+ atomic_signal_fence(memory_order_seq_cst);
+ AsanThread::TSDDtor(tsd);
+}
+#else
static pthread_key_t tsd_key;
static bool tsd_key_inited = false;
void AsanTSDInit(void (*destructor)(void *tsd)) {
@@ -67,6 +112,7 @@ void PlatformTSDDtor(void *tsd) {
}
AsanThread::TSDDtor(tsd);
}
+#endif
} // namespace __asan
#endif // SANITIZER_POSIX
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_report.h
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_report.h Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_report.h Fri Apr 12 20:03:27 2019 (r346168)
@@ -12,6 +12,9 @@
// ASan-private header for error reporting functions.
//===----------------------------------------------------------------------===//
+#ifndef ASAN_REPORT_H
+#define ASAN_REPORT_H
+
#include "asan_allocator.h"
#include "asan_internal.h"
#include "asan_thread.h"
@@ -92,3 +95,4 @@ void ReportMacCfReallocUnknown(uptr addr, uptr zone_pt
BufferedStackTrace *stack);
} // namespace __asan
+#endif // ASAN_REPORT_H
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_rtems.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_rtems.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_rtems.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -213,6 +213,12 @@ static void HandleExit() {
}
}
+bool HandleDlopenInit() {
+ // Not supported on this platform.
+ static_assert(!SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+ "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be false");
+ return false;
+}
} // namespace __asan
// These are declared (in extern "C") by <some_path/sanitizer.h>.
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_rtl.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_rtl.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_rtl.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -383,6 +383,19 @@ void PrintAddressSpaceLayout() {
kHighShadowBeg > kMidMemEnd);
}
+#if defined(__thumb__) && defined(__linux__)
+#define START_BACKGROUND_THREAD_IN_ASAN_INTERNAL
+#endif
+
+#ifndef START_BACKGROUND_THREAD_IN_ASAN_INTERNAL
+static bool UNUSED __local_asan_dyninit = [] {
+ MaybeStartBackgroudThread();
+ SetSoftRssLimitExceededCallback(AsanSoftRssLimitExceededCallback);
+
+ return false;
+}();
+#endif
+
static void AsanInitInternal() {
if (LIKELY(asan_inited)) return;
SanitizerToolName = "AddressSanitizer";
@@ -396,6 +409,14 @@ static void AsanInitInternal() {
// initialization steps look at flags().
InitializeFlags();
+ // Stop performing init at this point if we are being loaded via
+ // dlopen() and the platform supports it.
+ if (SANITIZER_SUPPORTS_INIT_FOR_DLOPEN && UNLIKELY(HandleDlopenInit())) {
+ asan_init_is_running = false;
+ VReport(1, "AddressSanitizer init is being performed for dlopen().\n");
+ return;
+ }
+
AsanCheckIncompatibleRT();
AsanCheckDynamicRTPrereqs();
AvoidCVE_2016_2143();
@@ -420,6 +441,8 @@ static void AsanInitInternal() {
__asan_option_detect_stack_use_after_return =
flags()->detect_stack_use_after_return;
+ __sanitizer::InitializePlatformEarly();
+
// Re-exec ourselves if we need to set additional env or command line args.
MaybeReexec();
@@ -447,8 +470,10 @@ static void AsanInitInternal() {
allocator_options.SetFrom(flags(), common_flags());
InitializeAllocator(allocator_options);
+#ifdef START_BACKGROUND_THREAD_IN_ASAN_INTERNAL
MaybeStartBackgroudThread();
SetSoftRssLimitExceededCallback(AsanSoftRssLimitExceededCallback);
+#endif
// On Linux AsanThread::ThreadStart() calls malloc() that's why asan_inited
// should be set to 1 prior to initializing the threads.
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_thread.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_thread.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_thread.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -223,9 +223,11 @@ void AsanThread::Init(const InitOptions *options) {
atomic_store(&stack_switching_, false, memory_order_release);
CHECK_EQ(this->stack_size(), 0U);
SetThreadStackAndTls(options);
- CHECK_GT(this->stack_size(), 0U);
- CHECK(AddrIsInMem(stack_bottom_));
- CHECK(AddrIsInMem(stack_top_ - 1));
+ if (stack_top_ != stack_bottom_) {
+ CHECK_GT(this->stack_size(), 0U);
+ CHECK(AddrIsInMem(stack_bottom_));
+ CHECK(AddrIsInMem(stack_top_ - 1));
+ }
ClearShadowForThreadStackAndTLS();
fake_stack_ = nullptr;
if (__asan_option_detect_stack_use_after_return)
@@ -289,20 +291,23 @@ void AsanThread::SetThreadStackAndTls(const InitOption
DCHECK_EQ(options, nullptr);
uptr tls_size = 0;
uptr stack_size = 0;
- GetThreadStackAndTls(tid() == 0, const_cast<uptr *>(&stack_bottom_),
- const_cast<uptr *>(&stack_size), &tls_begin_, &tls_size);
+ GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size, &tls_begin_,
+ &tls_size);
stack_top_ = stack_bottom_ + stack_size;
tls_end_ = tls_begin_ + tls_size;
dtls_ = DTLS_Get();
- int local;
- CHECK(AddrIsInStack((uptr)&local));
+ if (stack_top_ != stack_bottom_) {
+ int local;
+ CHECK(AddrIsInStack((uptr)&local));
+ }
}
#endif // !SANITIZER_FUCHSIA && !SANITIZER_RTEMS
void AsanThread::ClearShadowForThreadStackAndTLS() {
- PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
+ if (stack_top_ != stack_bottom_)
+ PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
if (tls_begin_ != tls_end_) {
uptr tls_begin_aligned = RoundDownTo(tls_begin_, SHADOW_GRANULARITY);
uptr tls_end_aligned = RoundUpTo(tls_end_, SHADOW_GRANULARITY);
@@ -314,6 +319,9 @@ void AsanThread::ClearShadowForThreadStackAndTLS() {
bool AsanThread::GetStackFrameAccessByAddr(uptr addr,
StackFrameAccess *access) {
+ if (stack_top_ == stack_bottom_)
+ return false;
+
uptr bottom = 0;
if (AddrIsInStack(addr)) {
bottom = stack_bottom();
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_win.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_win.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_win.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -159,6 +159,14 @@ INTERCEPTOR_WINAPI(DWORD, CreateThread,
namespace __asan {
void InitializePlatformInterceptors() {
+ // The interceptors were not designed to be removable, so we have to keep this
+ // module alive for the life of the process.
+ HMODULE pinned;
+ CHECK(GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS |
+ GET_MODULE_HANDLE_EX_FLAG_PIN,
+ (LPCWSTR)&InitializePlatformInterceptors,
+ &pinned));
+
ASAN_INTERCEPT_FUNC(CreateThread);
ASAN_INTERCEPT_FUNC(SetUnhandledExceptionFilter);
@@ -312,6 +320,13 @@ int __asan_set_seh_filter() {
if (prev_seh_handler != &SEHHandler)
default_seh_handler = prev_seh_handler;
return 0;
+}
+
+bool HandleDlopenInit() {
+ // Not supported on this platform.
+ static_assert(!SANITIZER_SUPPORTS_INIT_FOR_DLOPEN,
+ "Expected SANITIZER_SUPPORTS_INIT_FOR_DLOPEN to be false");
+ return false;
}
#if !ASAN_DYNAMIC
Modified: stable/12/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
==============================================================================
--- stable/12/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc Fri Apr 12 20:03:27 2019 (r346168)
@@ -48,6 +48,7 @@ INTERCEPT_WRAP_W_WWW(_recalloc)
INTERCEPT_WRAP_W_WWW(_recalloc_base)
INTERCEPT_WRAP_W_W(_msize)
+INTERCEPT_WRAP_W_W(_msize_base)
INTERCEPT_WRAP_W_W(_expand)
INTERCEPT_WRAP_W_W(_expand_dbg)
Modified: stable/12/contrib/compiler-rt/lib/builtins/arm/addsf3.S
==============================================================================
--- stable/12/contrib/compiler-rt/lib/builtins/arm/addsf3.S Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/builtins/arm/addsf3.S Fri Apr 12 20:03:27 2019 (r346168)
@@ -178,7 +178,7 @@ LOCAL_LABEL(do_substraction):
push {r0, r1, r2, r3}
movs r0, r4
- bl __clzsi2
+ bl SYMBOL_NAME(__clzsi2)
movs r5, r0
pop {r0, r1, r2, r3}
// shift = rep_clz(aSignificand) - rep_clz(implicitBit << 3);
Modified: stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
==============================================================================
--- stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S Fri Apr 12 19:05:47 2019 (r346167)
+++ stable/12/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S Fri Apr 12 20:03:27 2019 (r346168)
@@ -55,7 +55,7 @@ DEFINE_COMPILERRT_FUNCTION(__aeabi_cdcmpeq)
mov ip, #APSR_C
msr APSR_nzcvq, ip
#else
- msr CPSR_f, #APSR_C
+ msr APSR_nzcvq, #APSR_C
*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
More information about the svn-src-stable-12
mailing list