Commit
3d210ed3d1880c615776b07d1916edb400c245a6
by akhuangRevert "Allow system header to provide their own implementation of some builtin" This reverts commit 921f871ac438175ca8fcfcafdfcfac4d7ddf3905 because it causes libc++ code to trigger __warn_memset_zero_len. See https://reviews.llvm.org/D71082.
|
 | clang/include/clang/AST/Decl.h |
 | clang/lib/AST/Decl.cpp |
 | clang/test/CodeGen/memcpy-nobuiltin.c |
 | clang/lib/CodeGen/CodeGenModule.cpp |
 | clang/lib/CodeGen/CGExpr.cpp |
 | clang/test/CodeGen/memcpy-nobuiltin.inc |
Commit
8045a8a7f184b682bfb4e729a986a3c2bd3a5b4e
by rnk[COFF] Warn that LLD does not support /PDBSTRIPPED: Doesn't really fix PR44491, but it avoids treating it as an input.
|
 | lld/COFF/Driver.cpp |
 | lld/test/COFF/pdbstripped.test |
 | lld/COFF/Options.td |
Commit
3481e5d7ed08d068a4e3427cb1afcd8bf2acafdc
by phosek[libcxx] Use mtx_plain | mtx_recursive following C11 API The C11 API specifies that to initialize a recursive mutex, mtx_plain | mtx_recursive should be used with mtx_init. Differential Revision: https://reviews.llvm.org/D72809
|
 | libcxx/include/__threading_support |
Commit
81fc1be601e7a8b73b675d318af9b1ba046fb5f5
by Jonas Devlieghere[lldb/Utils] Patch all variables used by lldb-dotest Instead of passing all the arguments for dotest.py as a single CMake variable, lldb-dotest now uses separate variables for the different test binaries. Before this change they'd all get patched as part of the LLDB_DOTEST_ARGS. We need to patch the new variables as well.
|
 | lldb/utils/lldb-dotest/CMakeLists.txt |
Commit
daab9227ff013db431e4ab6045bdbba55b3dd4f3
by modocache[IR] Module's NamedMD table needn't be 'void *' Summary: In July 21 2010 `llvm::NamedMDNode` was refactored such that it would no longer subclass `llvm::Value`: https://github.com/llvm/llvm-project/commit/2637cc1a38d7336ea30caf As part of this change, a map type from metadata names to their named metadata, `llvm::MDSymbolTable`, was deleted. In its place, the type of member `llvm::Module::NamedMDSymTab` was changed, from `llvm::MDSymbolTable` to `void *`. The underlying memory allocations for this pointer were changed to `new StringMap<NamedMDNode *>()`. However, as far as I can tell, there's no need for obscuring the underlying type being pointed to by the `void *`, and no need for static casts from `void *` to `StringMap`. In fact, I don't think there's a need for explicit calls to `new` and `delete` at all. This commit changes `NamedMDSymTab` from a pointer to a reference, which automatically couples its lifetime with the lifetime of its owning `llvm::Module` instance, thus removing the explicit calls to `new` and `delete` in the `llvm::Module` constructor and destructor. It also changes the type from `void *` to a newly defined `NamedMDSymTabType`, and removes the static casts. Test Plan: An ASAN-enabled build and run of `check-all` succeeds with this change (aside from some tests that always fail for me in ASAN for some reason, such as `check-clang` `SemaTemplate/stack-exhaustion.cpp`). Reviewers: aprantl, dblaikie, chandlerc, pcc, echristo Reviewed By: dblaikie Subscribers: hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D72812
|
 | llvm/include/llvm/IR/Module.h |
 | llvm/lib/IR/Module.cpp |
Commit
25e9938a45e8dfde752a4e93c48ff0184d4784d9
by arsenm2GlobalISel: Handle more cases of G_SEXT narrowing This now develops the same problem G_ZEXT/G_ANYEXT have where the requested type is assumed to be the source type. This will be fixed separately by creating intermediate merges.
|
 | llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-sext.mir |
 | llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp |
Commit
eef92f25ccf186935008c98f8147ad2ee178dcbb
by arsenm2AMDGPU: Remove custom node for exports I'm mildly worried about potentially reordering exp/exp_done with IntrWriteMem on the intrinsic. Requires hacking out the illegal type on SI, so manually select that case during lowering.
|
 | llvm/lib/Target/AMDGPU/SIISelLowering.cpp |
 | llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td |
 | llvm/include/llvm/IR/IntrinsicsAMDGPU.td |
 | llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h |
 | llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp |
 | llvm/lib/Target/AMDGPU/SIInstrInfo.td |
 | llvm/lib/Target/AMDGPU/SIInstructions.td |
Commit
711a17afaff276f816aca5dc4a68fae4e17a2c12
by arsenm2AMDGPU/GlobalISel: Select exp with patterns This does produce slightly different code. Now a unique IMPLICIT_DEF is emitted for each of the implicit_def operands, rather than reusing the same one.
|
 | llvm/test/CodeGen/AMDGPU/GlobalISel/inst-select-amdgcn.exp.mir |
 | llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp |
Commit
360abb7ee56f1524b6e2951a4fda36296d5b3582
by Vedant Kumar[CodeExtractor] Transfer debug info to extracted function After extracting, fix up debug info in both the old and new functions by 1) Pointing line locations and debug intrinsics to the new subprogram scope, and 2) Deleting intrinsics which point to values outside of the new function. Depends on https://reviews.llvm.org/D72795. Testing: check-llvm, check-clang, a build of LNT in the `-Os -g` config with "-mllvm -hot-cold-split=1" set, and end-to-end debugging of a toy program which undergoes splitting to verify that lldb can find variables, single step, etc. in extracted code. rdar://45507940 Differential Revision: https://reviews.llvm.org/D72801
|
 | llvm/test/Transforms/HotColdSplit/transfer-debug-info.ll |
 | llvm/test/Transforms/HotColdSplit/split-out-dbg-label.ll |
 | llvm/test/Transforms/HotColdSplit/update-split-loop-metadata.ll |
 | llvm/lib/Transforms/Utils/CodeExtractor.cpp |
Commit
b841b9e96e605bed5a1f9b846a07aae88c65ce02
by a.bataev[OPENMP]Use regular processing of vtable used when TU is a prefix. If current kind of the translation unit is TU_Prefix and it is not complete, cannot decide what to do with virtual members/table at that time, need to delay it to later stages.
|
 | clang/lib/Sema/SemaDeclCXX.cpp |
 | clang/test/OpenMP/declare_target_codegen.cpp |
Commit
44560762c62d72a103bdceff49ffa70451efd5f8
by akhuangRevert "Further implement CWG 2292" This reverts commit ee0f1f1edc3ec0d4e698d50cc3180217448802b7 because it causes an error on valid code. See https://reviews.llvm.org/rGee0f1f1edc3ec0d4e698d50cc3180217448802b7.
|
 | clang/test/SemaCXX/pseudo-destructor-name.cpp |
 | clang/lib/Sema/SemaExprCXX.cpp |
Commit
8b417dd3d6c6e4c83dee172e9b37cc2ba51c635a
by Stanislav.MekhanoshinProcess BUNDLE in tail duplication When tail duplication estimates a size of tail it uses instruction count. Account for a number of instrictions in a bundle too. Differential Revision: https://reviews.llvm.org/D72783
|
 | llvm/test/CodeGen/AMDGPU/tail-dup-bundle.mir |
 | llvm/lib/CodeGen/TailDuplicator.cpp |
Commit
cf958498c4b49447ab1ba6bb61a7d8816d306107
by Jonas Devlieghere[lldb/Utils] Patch all variables used by lldb-dotest (2/2) Instead of passing all the arguments for dotest.py as a single CMake variable, lldb-dotest now uses separate variables for the different test binaries. Before this change they'd all get patched as part of the LLDB_DOTEST_ARGS. We need to patch the new variables as well.
|
 | lldb/utils/lldb-dotest/CMakeLists.txt |
Commit
eac134ddf0344ff44bcd6a6285b6498e080cd1e3
by Jonas Devlieghere[lldb/Utils] Patch all variables used by lit (3/3) Instead of passing all the arguments for dotest.py as a single CMake variable, lit now uses separate variables for the different test binaries. Before this change they'd all get patched as part of the LLDB_DOTEST_ARGS. We need to patch the new variables as well.
|
 | lldb/test/API/CMakeLists.txt |
Commit
e8f198dd9e9dabed8d50276465906e7c8827cada
by richardFix pack deduction to only deduce the arity of packs that are actually expanded by the deduced pack. We recently started also deducing the arity of separately-expanded packs that are merely mentioned within the pack in question, which is incorrect.
|
 | clang/test/SemaTemplate/deduction.cpp |
 | clang/lib/Sema/SemaTemplateDeduction.cpp |
Commit
4bafceced6a7641be7b090229c6ccef22cf55bff
by dschuff[LLDB] Add ObjectFileWasm plugin for WebAssembly debugging Summary: This is the first in a series of patches to enable LLDB debugging of WebAssembly targets. Current versions of Clang emit (partial) DWARF debug information in WebAssembly modules and we can leverage this debug information to give LLDB the ability to do source-level debugging of Wasm code that runs in a WebAssembly engine. A way to do this could be to use the remote debugging functionalities provided by LLDB via the GDB-remote protocol. Remote debugging can indeed be useful not only to connect a debugger to a process running on a remote machine, but also to connect the debugger to a managed VM or script engine that runs locally, provided that the engine implements a GDB-remote stub that offers the ability to access the engine runtime internal state. To make this work, the GDB-remote protocol would need to be extended with a few Wasm-specific custom query commands, used to access aspects of the Wasm engine state (like the Wasm memory, Wasm local and global variables, and so on). Furthermore, the DWARF format would need to be enriched with a few Wasm-specific extensions, here detailed: https://yurydelendik.github.io/webassembly-dwarf. This CL introduce classes **ObjectFileWasm**, a file plugin to represent a Wasm module loaded in a debuggee process. It knows how to parse Wasm modules and store the Code section and the DWARF-specific sections. Reviewers: jasonmolenda, clayborg, labath Tags: #lldb Differential Revision: https://reviews.llvm.org/D71575
|
 | lldb/source/Utility/ArchSpec.cpp |
 | lldb/source/Plugins/ObjectFile/wasm/ObjectFileWasm.cpp |
 | lldb/include/lldb/Utility/ArchSpec.h |
 | lldb/source/Plugins/ObjectFile/wasm/CMakeLists.txt |
 | lldb/source/Plugins/ObjectFile/CMakeLists.txt |
 | lldb/tools/lldb-test/SystemInitializerTest.cpp |
 | lldb/source/API/SystemInitializerFull.cpp |
 | lldb/test/Shell/ObjectFile/wasm/basic.yaml |
 | lldb/source/Plugins/ObjectFile/wasm/ObjectFileWasm.h |
 | lldb/test/Shell/ObjectFile/wasm/embedded-debug-sections.yaml |
 | lldb/test/Shell/ObjectFile/wasm/stripped-debug-sections.yaml |
Commit
67ec8744d7e72b50a5db5038c9643584ce57cb0c
by arsenm2llc: Change behavior of -mattr with existing attribute Append this to the existing target-features attribute on the function. Some flags ignore existing attributes, and some overwrite them. Move towards consistently respecting existing attributes if present. Since target features act as a state machine on their own, append to the function attribute. The backend default added feature list, function attributes, and -mattr will all be appended together, and the later features can individually toggle the earlier settings.
|
 | llvm/test/CodeGen/WebAssembly/target-features.ll |
 | llvm/test/Other/opt-override-mcpu-mattr.ll |
 | llvm/include/llvm/CodeGen/CommandFlags.inc |
Commit
9efd57e3b7daa7ebd891084b8564440c5ef297ad
by Jonas Devlieghere[lldb/Tools] Remove lldb-mi.exports lldb-mi was removed from the repo a while ago.
|
 | lldb/tools/lldb-mi/lldb-mi.exports |
Commit
647c3f4e47de8a850ffcaa897db68702d8d2459a
by Yuanfang Chen[Support] make report_fatal_error `abort` instead of `exit` Summary: This patch could be treated as a rebase of D33960. It also fixes PR35547. A fix for `llvm/test/Other/close-stderr.ll` is proposed in D68164. Seems the consensus is that the test is passing by chance and I'm not sure how important it is for us. So it is removed like in D33960 for now. The rest of the test fixes are just adding `--crash` flag to `not` tool. ** The reason it fixes PR35547 is `exit` does cleanup including calling class destructor whereas `abort` does not do any cleanup. In multithreading environment such as ThinLTO or JIT, threads may share states which mostly are ManagedStatic<>. If faulting thread tearing down a class when another thread is using it, there are chances of memory corruption. This is bad 1. It will stop error reporting like pretty stack printer; 2. The memory corruption is distracting and nondeterministic in terms of error message, and corruption type (depending one the timing, it could be double free, heap free after use, etc.). Reviewers: rnk, chandlerc, zturner, sepavloff, MaskRay, espindola Reviewed By: rnk, MaskRay Subscribers: wuzish, jholewinski, qcolombet, dschuff, jyknight, emaste, sdardis, nemanjai, jvesely, nhaehnle, sbc100, arichardson, jgravelle-google, aheejin, kbarton, fedor.sergeev, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, PkmX, jocewei, jsji, lenary, s.egerton, pzheng, cfe-commits, MaskRay, filcab, davide, MatzeB, mehdi_amini, hiraditya, steven_wu, dexonsmith, rupprecht, seiya, llvm-commits Tags: #llvm, #clang Differential Revision: https://reviews.llvm.org/D67847
|
 | llvm/test/MC/PowerPC/pr24686.s |
 | llvm/test/MachineVerifier/test_g_intrinsic_w_side_effects.mir |
 | llvm/test/CodeGen/Hexagon/verify-liveness-at-def.mir |
 | llvm/test/MC/ELF/section-numeric-invalid-type.s |
 | llvm/test/Assembler/invalid-datalayout20.ll |
 | llvm/test/CodeGen/X86/codemodel.ll |
 | llvm/test/MachineVerifier/test_g_ptr_add.mir |
 | llvm/test/Assembler/invalid-datalayout8.ll |
 | llvm/test/CodeGen/NVPTX/fsin-no-fast-math.ll |
 | llvm/test/CodeGen/AMDGPU/call-to-kernel-undefined.ll |
 | llvm/test/CodeGen/Mips/mips32r6/compatibility.ll |
 | llvm/test/CodeGen/X86/AppendingLinkage.ll |
 | llvm/test/CodeGen/Hexagon/misaligned-const-load.ll |
 | llvm/test/MC/X86/AlignedBundling/bundle-subtarget-change-error.s |
 | llvm/test/CodeGen/AArch64/GlobalISel/no-neon-no-fp.ll |
 | llvm/test/CodeGen/ARM/ldc2l.ll |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-data.ll |
 | llvm/test/CodeGen/X86/clwb.ll |
 | llvm/test/MachineVerifier/test_g_fcmp.mir |
 | llvm/test/Assembler/invalid-datalayout22.ll |
 | llvm/test/CodeGen/AMDGPU/at-least-one-def-value-assert.mir |
 | llvm/test/CodeGen/RISCV/interrupt-attr-ret-error.ll |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-data-only-notoc.ll |
 | llvm/test/Assembler/invalid-datalayout13.ll |
 | llvm/test/CodeGen/AMDGPU/lds-zero-initializer.ll |
 | llvm/test/CodeGen/ARM/ssat-v4t.ll |
 | llvm/test/CodeGen/AMDGPU/flat-error-unsupported-gpu-hsa.ll |
 | llvm/test/CodeGen/Mips/instverify/dins-pos.mir |
 | llvm/test/Assembler/invalid-datalayout23.ll |
 | llvm/test/CodeGen/Mips/instverify/dext-size.mir |
 | llvm/test/CodeGen/Mips/instverify/dextu-pos-size.mir |
 | llvm/test/MachineVerifier/test_copy.mir |
 | llvm/test/CodeGen/SPARC/sret-secondary.ll |
 | llvm/test/CodeGen/SystemZ/codemodel.ll |
 | llvm/test/CodeGen/AArch64/arm64-tls-initial-exec.ll |
 | llvm/test/Object/wasm-invalid-file.yaml |
 | llvm/test/Other/close-stderr.ll |
 | llvm/test/CodeGen/SystemZ/vec-args-error-06.ll |
 | llvm/test/CodeGen/AMDGPU/div_i128.ll |
 | llvm/test/MachineVerifier/test_g_build_vector_trunc.mir |
 | llvm/test/CodeGen/Mips/instverify/ext-pos.mir |
 | llvm/test/CodeGen/X86/equiv_with_vardef.ll |
 | llvm/test/MachineVerifier/test_g_store.mir |
 | llvm/test/CodeGen/AArch64/arm64-tls-dynamics.ll |
 | llvm/test/CodeGen/Generic/llc-start-stop-instance-errors.ll |
 | llvm/test/Bitcode/invalid-functionptr-align.ll |
 | llvm/test/CodeGen/Mips/indirect-jump-hazard/guards-verify-tailcall.mir |
 | llvm/test/MachineVerifier/test_g_icmp.mir |
 | llvm/test/Transforms/BlockExtractor/invalid-line.ll |
 | llvm/test/CodeGen/X86/equiv_with_fndef.ll |
 | llvm/test/CodeGen/Mips/interrupt-attr-args-error.ll |
 | llvm/test/MC/ELF/ARM/bss-non-zero-value.s |
 | llvm/test/Assembler/invalid-datalayout16.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsu-pos-size.mir |
 | llvm/test/MachineVerifier/test_g_sextload.mir |
 | llvm/test/MachineVerifier/verify-regops.mir |
 | llvm/test/MachineVerifier/verify-selected.mir |
 | llvm/test/CodeGen/X86/cpus-no-x86_64.ll |
 | llvm/test/Assembler/datalayout-invalid-stack-natural-alignment.ll |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-illegal-copy.mir |
 | llvm/test/MachineVerifier/test_g_bitcast.mir |
 | llvm/test/Assembler/invalid-datalayout18.ll |
 | llvm/test/CodeGen/X86/coff-comdat2.ll |
 | llvm/test/CodeGen/XCore/section-name.ll |
 | llvm/test/CodeGen/X86/named-reg-alloc.ll |
 | llvm/test/MC/Disassembler/AMDGPU/si-support.txt |
 | llvm/test/MC/X86/encoder-fail.s |
 | llvm/test/Assembler/invalid-datalayout17.ll |
 | llvm/test/MachineVerifier/test_g_shuffle_vector.mir |
 | llvm/test/CodeGen/ARM/usat-upper.ll |
 | llvm/test/CodeGen/X86/cpus-amd-no-x86_64.ll |
 | llvm/test/MC/Mips/micromips64r6-unsupported.s |
 | llvm/test/CodeGen/SystemZ/ghc-cc-07.ll |
 | llvm/test/CodeGen/AArch64/GlobalISel/arm64-fallback.ll |
 | llvm/test/CodeGen/XCore/codemodel.ll |
 | llvm/test/CodeGen/AMDGPU/llvm.amdgcn.ds.gws.sema.release.all.ll |
 | llvm/test/Assembler/invalid-datalayout-alloca-addrspace.ll |
 | llvm/test/MachineVerifier/test_g_constant.mir |
 | llvm/test/MachineVerifier/test_g_sext_inreg.mir |
 | llvm/test/CodeGen/ARM/ssat-lower.ll |
 | llvm/test/CodeGen/NVPTX/global-dtor.ll |
 | llvm/test/CodeGen/WebAssembly/offset-atomics.ll |
 | llvm/test/CodeGen/Mips/fpxx.ll |
 | llvm/test/CodeGen/SPARC/codemodel.ll |
 | llvm/test/Assembler/invalid-datalayout3.ll |
 | llvm/test/CodeGen/AMDGPU/read-register-invalid-type-i32.ll |
 | llvm/test/CodeGen/MIR/X86/tied-physical-regs-match.mir |
 | llvm/test/CodeGen/Mips/instverify/dins-size.mir |
 | llvm/test/CodeGen/PowerPC/aix-user-defined-memcpy.ll |
 | llvm/test/MachineVerifier/test_g_extract.mir |
 | llvm/test/Assembler/invalid-datalayout24.ll |
 | llvm/test/MC/Mips/nooddspreg-cmdarg.s |
 | llvm/test/MachineVerifier/verifier-pseudo-terminators.mir |
 | llvm/test/MachineVerifier/live-ins-02.mir |
 | llvm/test/CodeGen/WebAssembly/exception.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsm-pos.mir |
 | llvm/test/CodeGen/ARM/special-reg-v8m-main.ll |
 | llvm/test/CodeGen/ARM/special-reg-acore.ll |
 | llvm/test/MachineVerifier/test_g_dyn_stackalloc.mir |
 | llvm/test/MachineVerifier/test_g_insert.mir |
 | llvm/test/CodeGen/X86/llc-print-machineinstrs.mir |
 | llvm/include/llvm/Support/ErrorHandling.h |
 | llvm/test/CodeGen/PowerPC/named-reg-alloc-r2.ll |
 | llvm/test/CodeGen/X86/fast-isel-args-fail2.ll |
 | llvm/test/Assembler/invalid-datalayout12.ll |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-rodata.ll |
 | llvm/test/MachineVerifier/test_phis_precede_nonphis.mir |
 | llvm/test/MachineVerifier/test_g_concat_vectors.mir |
 | llvm/test/CodeGen/RISCV/interrupt-attr-args-error.ll |
 | llvm/test/CodeGen/PowerPC/aix-trampoline.ll |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-atomicrmw-xchg-flat.mir |
 | llvm/test/MachineVerifier/verify-regbankselected.mir |
 | llvm/test/Assembler/invalid-datalayout11.ll |
 | llvm/test/CodeGen/Mips/instverify/ins-pos-size.mir |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-toc.ll |
 | llvm/test/CodeGen/ARM/codemodel.ll |
 | llvm/test/MC/PowerPC/ppc64-localentry-error1.s |
 | llvm/test/CodeGen/Mips/Fast-ISel/double-arg.ll |
 | llvm/test/CodeGen/Mips/fp64a.ll |
 | llvm/test/MC/RISCV/mattr-invalid-combination.s |
 | llvm/test/MachineVerifier/test_g_fconstant.mir |
 | llvm/test/CodeGen/ARM/stc2.ll |
 | llvm/test/CodeGen/SystemZ/ghc-cc-02.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsu-pos.mir |
 | llvm/test/MachineVerifier/test_memccpy_intrinsics.mir |
 | llvm/test/CodeGen/SystemZ/ghc-cc-03.ll |
 | llvm/test/MachineVerifier/test_g_select.mir |
 | llvm/test/tools/llvm-lto2/X86/pipeline.ll |
 | llvm/test/CodeGen/BPF/xadd.ll |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-jump-table.mir |
 | llvm/test/CodeGen/Mips/msa/immediates-bad.ll |
 | llvm/test/MachineVerifier/verifier-generic-types-1.mir |
 | llvm/test/Assembler/invalid-datalayout21.ll |
 | llvm/test/CodeGen/Hexagon/misaligned-const-store.ll |
 | llvm/test/CodeGen/BPF/sdiv_error.ll |
 | llvm/test/tools/llvm-readobj/COFF/arm64-win-error2.s |
 | llvm/test/CodeGen/WebAssembly/tls-general-dynamic.ll |
 | llvm/docs/ProgrammersManual.rst |
 | llvm/test/CodeGen/NVPTX/global-ctor.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsm-size.mir |
 | llvm/test/CodeGen/RISCV/mattr-invalid-combination.ll |
 | llvm/test/CodeGen/AMDGPU/cc-sgpr-over-limit.ll |
 | llvm/test/CodeGen/AMDGPU/read-register-invalid-type-i64.ll |
 | llvm/test/Transforms/FunctionImport/not-prevailing.ll |
 | llvm/test/CodeGen/Mips/instverify/ins-size.mir |
 | llvm/test/CodeGen/SystemZ/ghc-cc-05.ll |
 | llvm/test/CodeGen/MIR/X86/machine-verifier.mir |
 | llvm/test/Assembler/invalid-datalayout2.ll |
 | llvm/test/CodeGen/Mips/interrupt-attr-64-error.ll |
 | llvm/test/CodeGen/ARM/special-reg-mcore.ll |
 | llvm/test/Assembler/invalid-datalayout14.ll |
 | llvm/test/CodeGen/Mips/instverify/dextm-pos-size.mir |
 | llvm/test/CodeGen/NVPTX/libcall-intrinsic.ll |
 | llvm/test/MachineVerifier/verifier-implicit-virtreg-invalid-physreg-liveness.mir |
 | llvm/test/CodeGen/AArch64/sve-neg-int-arith-imm.ll |
 | llvm/test/Transforms/BlockExtractor/invalid-function.ll |
 | llvm/test/MachineVerifier/verifier-generic-types-2.mir |
 | llvm/test/CodeGen/Generic/opt-codegen-no-target-machine.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsu-size.mir |
 | llvm/test/CodeGen/SystemZ/vec-args-error-02.ll |
 | llvm/test/CodeGen/RISCV/get-register-reserve.ll |
 | llvm/test/CodeGen/X86/label-redefinition.ll |
 | llvm/test/MachineVerifier/test_g_add.mir |
 | llvm/test/DebugInfo/COFF/types-recursive-unnamed.ll |
 | llvm/test/CodeGen/Mips/indirect-jump-hazard/unsupported-mips32.ll |
 | llvm/test/CodeGen/Mips/msa/3r-a.ll |
 | clang/unittests/libclang/CrashTests/LibclangCrashTest.cpp |
 | llvm/test/MachineVerifier/verifier-phi-fail0.mir |
 | llvm/test/Transforms/InstCombine/limit-max-iterations.ll |
 | llvm/test/CodeGen/X86/invalid-liveness.mir |
 | llvm/test/CodeGen/ARM/ssat-upper.ll |
 | llvm/test/CodeGen/AArch64/arm64-named-reg-notareg.ll |
 | llvm/test/Bitcode/function-default-address-spaces.ll |
 | llvm/test/CodeGen/PowerPC/ppc64-icbt-pwr7.ll |
 | llvm/test/MC/X86/invalid-sleb.s |
 | llvm/test/CodeGen/ARM/usat-lower.ll |
 | llvm/test/CodeGen/SPARC/fail-alloca-align.ll |
 | llvm/test/CodeGen/ARM/special-reg-v8m-base.ll |
 | llvm/test/CodeGen/PowerPC/codemodel.ll |
 | llvm/test/CodeGen/PowerPC/aix-cc-altivec.ll |
 | llvm/test/CodeGen/ARM/named-reg-alloc.ll |
 | llvm/test/CodeGen/PowerPC/named-reg-alloc-r2-64.ll |
 | llvm/test/CodeGen/Mips/micromips64-unsupported.ll |
 | llvm/test/MachineVerifier/test_g_inttoptr.mir |
 | llvm/test/CodeGen/PowerPC/lower-globaladdr32-aix.ll |
 | llvm/test/Transforms/BlockExtractor/invalid-block.ll |
 | llvm/test/MachineVerifier/test_g_phi.mir |
 | llvm/test/MC/X86/AlignedBundling/bundle-lock-option-error.s |
 | llvm/test/MC/ARM/AlignedBundling/illegal-subtarget-change.s |
 | llvm/test/CodeGen/Mips/instverify/dextm-size.mir |
 | llvm/test/CodeGen/SystemZ/ghc-cc-04.ll |
 | llvm/test/Object/wasm-string-outside-section.test |
 | llvm/test/MC/ARM/Windows/invalid-relocation.s |
 | llvm/test/CodeGen/X86/expand-integer-x86_64-intrinsic-error.ll |
 | llvm/test/CodeGen/ARM/usat-v4t.ll |
 | llvm/test/CodeGen/AArch64/GlobalISel/call-translator-musttail.ll |
 | llvm/test/MC/COFF/section-comdat-conflict.s |
 | llvm/test/MachineVerifier/test_g_ptrtoint.mir |
 | llvm/test/CodeGen/SystemZ/vec-args-error-03.ll |
 | llvm/test/CodeGen/ARM/named-reg-notareg.ll |
 | lld/test/ELF/lto/ltopasses-custom.ll |
 | llvm/test/CodeGen/Mips/instverify/dextm-pos.mir |
 | llvm/test/TableGen/HwModeSelect.td |
 | llvm/test/MC/X86/AlignedBundling/lock-without-bundle-mode-error.s |
 | llvm/test/CodeGen/Mips/instverify/ext-size.mir |
 | llvm/test/CodeGen/Mips/cpus.ll |
 | llvm/test/Assembler/invalid-datalayout15.ll |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-atomicrmw-nand.mir |
 | llvm/test/CodeGen/X86/GlobalISel/avoid-matchtable-crash.mir |
 | llvm/test/CodeGen/XCore/alignment.ll |
 | llvm/test/Bitcode/invalid.test |
 | llvm/test/CodeGen/AMDGPU/lds-initializer.ll |
 | llvm/test/CodeGen/X86/nonconst-static-ev.ll |
 | llvm/test/MC/ELF/common-error3.s |
 | llvm/test/CodeGen/SystemZ/vec-args-error-04.ll |
 | llvm/test/CodeGen/RISCV/musttail-call.ll |
 | llvm/test/CodeGen/PowerPC/aix-byval-param.ll |
 | llvm/test/CodeGen/Mips/instverify/dins-pos-size.mir |
 | llvm/test/CodeGen/X86/nonconst-static-iv.ll |
 | llvm/test/CodeGen/X86/cpus-intel-no-x86_64.ll |
 | llvm/test/CodeGen/AArch64/GlobalISel/legalize-inttoptr-xfail-1.mir |
 | llvm/test/CodeGen/Mips/instverify/dextu-size.mir |
 | llvm/test/CodeGen/Mips/cpus-no-mips64.ll |
 | llvm/test/CodeGen/Mips/mips64r6/compatibility.ll |
 | llvm/test/CodeGen/WebAssembly/clear-cache.ll |
 | llvm/test/Assembler/invalid-datalayout1.ll |
 | llvm/test/CodeGen/SystemZ/mnop-mcount-02.ll |
 | llvm/test/CodeGen/Mips/interrupt-attr-error.ll |
 | llvm/test/Other/optimization-remarks-inline.ll |
 | llvm/test/CodeGen/AArch64/tiny_supported.ll |
 | llvm/test/CodeGen/AMDGPU/verify-sop.mir |
 | llvm/test/CodeGen/SystemZ/mrecord-mcount-02.ll |
 | llvm/test/Assembler/invalid-datalayout9.ll |
 | llvm/test/CodeGen/X86/inalloca-regparm.ll |
 | llvm/test/CodeGen/AMDGPU/call-to-kernel.ll |
 | llvm/test/MachineVerifier/test_g_intrinsic.mir |
 | llvm/test/CodeGen/Mips/instverify/ins-pos.mir |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-lcomm.ll |
 | llvm/test/CodeGen/NVPTX/alias.ll |
 | llvm/test/Assembler/invalid-datalayout6.ll |
 | llvm/test/CodeGen/RISCV/interrupt-attr-invalid.ll |
 | llvm/test/MC/COFF/section-comdat-conflict2.s |
 | llvm/test/CodeGen/PowerPC/aix-stackargs.ll |
 | llvm/test/CodeGen/AArch64/arm64-named-reg-alloc.ll |
 | llvm/test/CodeGen/Mips/instverify/dext-pos.mir |
 | llvm/test/MC/X86/AlignedBundling/switch-section-locked-error.s |
 | llvm/test/CodeGen/X86/cfi-inserter-verify-inconsistent-offset.mir |
 | llvm/lib/Support/ErrorHandling.cpp |
 | llvm/test/MachineVerifier/test_g_jump_table.mir |
 | llvm/test/MachineVerifier/test_g_trunc.mir |
 | llvm/test/CodeGen/Mips/instverify/dextu-pos.mir |
 | llvm/test/CodeGen/X86/read-fp-no-frame-pointer.ll |
 | llvm/test/MC/X86/check-end-of-data-region.s |
 | llvm/test/CodeGen/SystemZ/ghc-cc-06.ll |
 | llvm/test/CodeGen/NVPTX/libcall-instruction.ll |
 | llvm/test/CodeGen/SystemZ/vec-args-error-07.ll |
 | llvm/test/CodeGen/RISCV/get-register-invalid.ll |
 | llvm/test/CodeGen/Generic/llc-start-stop.ll |
 | llvm/test/CodeGen/RISCV/rv32e.ll |
 | llvm/test/MachineVerifier/test_copy_mismatch_types.mir |
 | llvm/test/Assembler/invalid-datalayout5.ll |
 | llvm/test/CodeGen/AMDGPU/branch-relax-spill.ll |
 | llvm/test/CodeGen/SystemZ/vec-args-error-08.ll |
 | llvm/test/CodeGen/SystemZ/mverify-optypes.mir |
 | llvm/test/CodeGen/AArch64/sve-neg-int-arith-imm-2.ll |
 | llvm/test/Object/elf-invalid-phdr.test |
 | llvm/test/CodeGen/X86/segmented-stacks.ll |
 | llvm/test/Assembler/getInt.ll |
 | llvm/test/MachineVerifier/test_g_brjt.mir |
 | llvm/test/CodeGen/Mips/Fast-ISel/fast-isel-softfloat-lower-args.ll |
 | llvm/test/CodeGen/NVPTX/fcos-no-fast-math.ll |
 | llvm/test/CodeGen/X86/macho-comdat.ll |
 | llvm/test/MachineVerifier/test_g_build_vector.mir |
 | llvm/test/CodeGen/AMDGPU/read-register-invalid-subtarget.ll |
 | llvm/test/Assembler/invalid-datalayout4.ll |
 | llvm/test/MC/WebAssembly/data-symbol-in-text-section.ll |
 | llvm/test/MC/X86/AlignedBundling/bundle-group-too-large-error.s |
 | llvm/test/Assembler/invalid-datalayout-program-addrspace.ll |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/lds-zero-initializer.ll |
 | llvm/test/MachineVerifier/test_g_merge_values.mir |
 | llvm/test/CodeGen/PowerPC/named-reg-alloc-r0.ll |
 | llvm/test/CodeGen/SystemZ/vec-args-error-01.ll |
 | llvm/test/MachineVerifier/test_g_zextload.mir |
 | llvm/test/MachineVerifier/verifier-generic-extend-truncate.mir |
 | llvm/test/MachineVerifier/test_g_addrspacecast.mir |
 | llvm/test/Object/invalid.test |
 | llvm/test/CodeGen/SystemZ/vec-args-error-05.ll |
 | llvm/test/Assembler/invalid-datalayout7.ll |
 | llvm/test/MC/WebAssembly/blockaddress.ll |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-unmerge-values-xfail.mir |
 | llvm/test/CodeGen/X86/cfi-inserter-verify-inconsistent-register.mir |
 | llvm/test/Assembler/invalid-datalayout19.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsm-pos-size.mir |
 | llvm/test/Assembler/invalid-datalayout10.ll |
 | llvm/test/Object/coff-invalid.test |
 | llvm/test/CodeGen/AArch64/fast-isel-sp-adjust.ll |
 | llvm/test/CodeGen/X86/named-reg-notareg.ll |
 | llvm/test/Assembler/datalayout-invalid-function-ptr-alignment.ll |
 | llvm/test/MC/MachO/variable-errors.s |
 | llvm/test/MC/X86/AlignedBundling/unlock-without-lock-error.s |
 | clang-tools-extra/test/clang-tidy/infrastructure/empty-database.cpp |
 | llvm/test/CodeGen/X86/coff-comdat3.ll |
 | llvm/test/Transforms/GCOVProfiling/version.ll |
 | llvm/test/CodeGen/Lanai/codemodel.ll |
 | llvm/test/CodeGen/RISCV/verify-instr.mir |
 | llvm/test/CodeGen/Mips/indirect-jump-hazard/unsupported-micromips.ll |
 | llvm/test/CodeGen/PowerPC/lower-globaladdr64-aix.ll |
 | llvm/test/MachineVerifier/live-ins-01.mir |
 | llvm/test/MC/X86/reloc-bss.s |
 | llvm/test/CodeGen/AArch64/GlobalISel/legalize-inttoptr-xfail-2.mir |
 | llvm/test/CodeGen/ARM/machine-verifier.mir |
 | llvm/test/CodeGen/RISCV/target-abi-valid.ll |
 | llvm/test/CodeGen/WebAssembly/cpus.ll |
 | llvm/test/LTO/X86/attrs.ll |
 | llvm/test/MC/PowerPC/ppc64-localentry-error2.s |
 | llvm/test/CodeGen/Mips/indirect-jump-hazard/guards-verify-call.mir |
 | llvm/test/CodeGen/Mips/instverify/ext-pos-size.mir |
 | llvm/test/CodeGen/PowerPC/aix-nest-param.ll |
 | llvm/test/tools/llvm-readobj/COFF/arm64-many-epilogs.s |
 | llvm/test/MachineVerifier/test_g_load.mir |
 | llvm/test/MachineVerifier/live-ins-03.mir |
 | llvm/test/MC/Mips/micromips64-unsupported.s |
Commit
1e89fb947ed1f8042e13b5840751b73b18cd6534
by Vedant Kumardebugserver: Cut dependency on intrinsics_gen debugserver does not depend on intrinsics_gen or on llvm.
|
 | lldb/tools/debugserver/source/CMakeLists.txt |
Commit
6e24c6037f7921923fdc4584eb4fce889cc1745e
by Yuanfang ChenRevert "[Support] make report_fatal_error `abort` instead of `exit`" This reverts commit 647c3f4e47de8a850ffcaa897db68702d8d2459a. Got bots failure from sanitizer-windows and maybe others.
|
 | llvm/test/MC/Mips/micromips64-unsupported.s |
 | llvm/test/CodeGen/WebAssembly/exception.ll |
 | llvm/test/CodeGen/AMDGPU/verify-sop.mir |
 | llvm/test/Assembler/invalid-datalayout2.ll |
 | llvm/test/CodeGen/RISCV/interrupt-attr-invalid.ll |
 | llvm/test/MC/ARM/AlignedBundling/illegal-subtarget-change.s |
 | llvm/test/MachineVerifier/test_g_shuffle_vector.mir |
 | llvm/test/CodeGen/SystemZ/vec-args-error-07.ll |
 | llvm/test/CodeGen/X86/named-reg-notareg.ll |
 | llvm/test/MachineVerifier/verify-regbankselected.mir |
 | llvm/test/CodeGen/SystemZ/ghc-cc-07.ll |
 | llvm/test/CodeGen/Mips/instverify/dins-pos-size.mir |
 | llvm/test/DebugInfo/COFF/types-recursive-unnamed.ll |
 | llvm/test/CodeGen/RISCV/interrupt-attr-ret-error.ll |
 | llvm/test/MachineVerifier/verifier-generic-extend-truncate.mir |
 | llvm/test/MachineVerifier/verifier-generic-types-2.mir |
 | llvm/test/MC/X86/AlignedBundling/lock-without-bundle-mode-error.s |
 | llvm/test/Assembler/invalid-datalayout1.ll |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-unmerge-values-xfail.mir |
 | llvm/test/MachineVerifier/test_g_sext_inreg.mir |
 | llvm/test/CodeGen/Mips/fp64a.ll |
 | llvm/test/CodeGen/Mips/cpus.ll |
 | llvm/test/CodeGen/XCore/alignment.ll |
 | llvm/test/MC/X86/AlignedBundling/switch-section-locked-error.s |
 | llvm/test/CodeGen/X86/cpus-intel-no-x86_64.ll |
 | llvm/test/CodeGen/SystemZ/vec-args-error-08.ll |
 | llvm/test/MC/Mips/micromips64r6-unsupported.s |
 | llvm/test/CodeGen/Mips/instverify/ext-pos-size.mir |
 | llvm/test/CodeGen/X86/nonconst-static-ev.ll |
 | llvm/test/MachineVerifier/test_g_extract.mir |
 | llvm/test/CodeGen/Mips/instverify/dextu-pos.mir |
 | llvm/test/MachineVerifier/live-ins-01.mir |
 | llvm/test/MachineVerifier/test_g_ptr_add.mir |
 | llvm/test/Assembler/invalid-datalayout16.ll |
 | llvm/test/Bitcode/function-default-address-spaces.ll |
 | llvm/test/CodeGen/X86/coff-comdat2.ll |
 | llvm/test/MachineVerifier/test_memccpy_intrinsics.mir |
 | llvm/test/CodeGen/Mips/instverify/dins-size.mir |
 | llvm/test/CodeGen/Mips/msa/3r-a.ll |
 | llvm/test/MachineVerifier/test_g_sextload.mir |
 | llvm/test/CodeGen/Mips/msa/immediates-bad.ll |
 | llvm/test/CodeGen/AMDGPU/read-register-invalid-subtarget.ll |
 | llvm/test/MC/ELF/common-error3.s |
 | llvm/test/Object/invalid.test |
 | llvm/test/Assembler/invalid-datalayout23.ll |
 | llvm/test/MachineVerifier/test_g_addrspacecast.mir |
 | llvm/test/MachineVerifier/live-ins-02.mir |
 | llvm/test/CodeGen/Mips/indirect-jump-hazard/unsupported-micromips.ll |
 | llvm/test/CodeGen/RISCV/mattr-invalid-combination.ll |
 | llvm/test/CodeGen/WebAssembly/clear-cache.ll |
 | llvm/test/CodeGen/Mips/instverify/dext-size.mir |
 | llvm/test/CodeGen/X86/cfi-inserter-verify-inconsistent-register.mir |
 | llvm/test/Object/elf-invalid-phdr.test |
 | llvm/test/CodeGen/AArch64/GlobalISel/legalize-inttoptr-xfail-1.mir |
 | llvm/test/CodeGen/ARM/usat-lower.ll |
 | llvm/test/CodeGen/Mips/instverify/dins-pos.mir |
 | llvm/test/CodeGen/ARM/usat-v4t.ll |
 | llvm/test/CodeGen/X86/equiv_with_vardef.ll |
 | llvm/test/MachineVerifier/test_g_dyn_stackalloc.mir |
 | llvm/test/CodeGen/Mips/instverify/dextm-pos.mir |
 | llvm/test/CodeGen/ARM/special-reg-mcore.ll |
 | llvm/test/CodeGen/AArch64/GlobalISel/no-neon-no-fp.ll |
 | llvm/test/CodeGen/NVPTX/libcall-intrinsic.ll |
 | llvm/test/MC/COFF/section-comdat-conflict2.s |
 | llvm/test/MachineVerifier/test_g_fconstant.mir |
 | llvm/test/MachineVerifier/test_g_merge_values.mir |
 | llvm/test/Assembler/invalid-datalayout21.ll |
 | llvm/test/Assembler/invalid-datalayout-program-addrspace.ll |
 | llvm/test/MC/ELF/ARM/bss-non-zero-value.s |
 | llvm/test/CodeGen/Mips/interrupt-attr-error.ll |
 | llvm/test/CodeGen/SystemZ/vec-args-error-05.ll |
 | llvm/test/CodeGen/ARM/special-reg-v8m-base.ll |
 | llvm/test/CodeGen/AMDGPU/at-least-one-def-value-assert.mir |
 | llvm/test/CodeGen/PowerPC/named-reg-alloc-r2-64.ll |
 | llvm/test/Assembler/invalid-datalayout-alloca-addrspace.ll |
 | llvm/test/CodeGen/NVPTX/fsin-no-fast-math.ll |
 | llvm/test/MC/PowerPC/ppc64-localentry-error1.s |
 | llvm/test/tools/llvm-readobj/COFF/arm64-win-error2.s |
 | llvm/test/MC/COFF/section-comdat-conflict.s |
 | llvm/test/CodeGen/NVPTX/alias.ll |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-data.ll |
 | llvm/test/MachineVerifier/test_g_select.mir |
 | llvm/test/CodeGen/Mips/instverify/dinsm-pos-size.mir |
 | llvm/test/MachineVerifier/test_g_inttoptr.mir |
 | llvm/test/Assembler/invalid-datalayout14.ll |
 | llvm/test/CodeGen/Mips/instverify/ext-size.mir |
 | llvm/test/CodeGen/SystemZ/ghc-cc-06.ll |
 | llvm/test/Assembler/invalid-datalayout9.ll |
 | llvm/test/CodeGen/Mips/instverify/ins-pos-size.mir |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-rodata.ll |
 | llvm/test/CodeGen/WebAssembly/cpus.ll |
 | llvm/test/CodeGen/AArch64/GlobalISel/legalize-inttoptr-xfail-2.mir |
 | llvm/test/CodeGen/Mips/instverify/ext-pos.mir |
 | llvm/test/CodeGen/AArch64/arm64-tls-dynamics.ll |
 | llvm/test/CodeGen/X86/cpus-no-x86_64.ll |
 | llvm/test/MachineVerifier/verifier-generic-types-1.mir |
 | llvm/test/Transforms/BlockExtractor/invalid-function.ll |
 | llvm/test/Other/close-stderr.ll |
 | llvm/test/MachineVerifier/test_g_zextload.mir |
 | llvm/test/Assembler/invalid-datalayout20.ll |
 | llvm/test/CodeGen/SystemZ/ghc-cc-04.ll |
 | llvm/test/TableGen/HwModeSelect.td |
 | llvm/test/MachineVerifier/test_g_jump_table.mir |
 | llvm/test/Assembler/invalid-datalayout24.ll |
 | llvm/test/Assembler/invalid-datalayout13.ll |
 | llvm/test/CodeGen/PowerPC/lower-globaladdr64-aix.ll |
 | llvm/include/llvm/Support/ErrorHandling.h |
 | llvm/test/CodeGen/ARM/ssat-upper.ll |
 | llvm/test/CodeGen/SystemZ/vec-args-error-04.ll |
 | llvm/test/tools/llvm-readobj/COFF/arm64-many-epilogs.s |
 | llvm/test/LTO/X86/attrs.ll |
 | llvm/test/CodeGen/ARM/codemodel.ll |
 | llvm/test/CodeGen/AMDGPU/cc-sgpr-over-limit.ll |
 | llvm/test/CodeGen/Mips/indirect-jump-hazard/unsupported-mips32.ll |
 | llvm/test/MC/ELF/section-numeric-invalid-type.s |
 | llvm/test/MC/X86/AlignedBundling/bundle-group-too-large-error.s |
 | llvm/test/Assembler/datalayout-invalid-stack-natural-alignment.ll |
 | llvm/test/CodeGen/BPF/xadd.ll |
 | llvm/test/MachineVerifier/test_g_add.mir |
 | llvm/test/CodeGen/PowerPC/lower-globaladdr32-aix.ll |
 | llvm/test/MC/X86/reloc-bss.s |
 | llvm/test/MachineVerifier/test_copy.mir |
 | llvm/test/CodeGen/AArch64/arm64-named-reg-notareg.ll |
 | llvm/test/CodeGen/Mips/instverify/dextu-pos-size.mir |
 | llvm/test/CodeGen/XCore/codemodel.ll |
 | llvm/test/MC/PowerPC/pr24686.s |
 | llvm/test/CodeGen/Mips/interrupt-attr-64-error.ll |
 | llvm/test/CodeGen/SystemZ/ghc-cc-03.ll |
 | llvm/test/MC/WebAssembly/data-symbol-in-text-section.ll |
 | llvm/test/CodeGen/RISCV/verify-instr.mir |
 | llvm/test/MachineVerifier/test_g_icmp.mir |
 | llvm/test/MachineVerifier/test_copy_mismatch_types.mir |
 | llvm/test/CodeGen/NVPTX/libcall-instruction.ll |
 | llvm/test/CodeGen/Generic/llc-start-stop-instance-errors.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsu-pos.mir |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-atomicrmw-xchg-flat.mir |
 | llvm/test/CodeGen/RISCV/target-abi-valid.ll |
 | llvm/test/Assembler/invalid-datalayout10.ll |
 | llvm/docs/ProgrammersManual.rst |
 | llvm/test/Bitcode/invalid-functionptr-align.ll |
 | llvm/test/Assembler/invalid-datalayout8.ll |
 | llvm/test/CodeGen/Mips/interrupt-attr-args-error.ll |
 | llvm/test/CodeGen/PowerPC/aix-user-defined-memcpy.ll |
 | llvm/test/CodeGen/RISCV/interrupt-attr-args-error.ll |
 | llvm/test/CodeGen/PowerPC/ppc64-icbt-pwr7.ll |
 | llvm/test/MachineVerifier/test_g_concat_vectors.mir |
 | llvm/test/CodeGen/Mips/instverify/dinsm-pos.mir |
 | llvm/test/CodeGen/AMDGPU/lds-zero-initializer.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsu-pos-size.mir |
 | llvm/test/CodeGen/Mips/instverify/dextm-pos-size.mir |
 | llvm/test/CodeGen/Mips/fpxx.ll |
 | llvm/test/MC/Disassembler/AMDGPU/si-support.txt |
 | llvm/test/CodeGen/AArch64/sve-neg-int-arith-imm.ll |
 | llvm/test/CodeGen/Hexagon/verify-liveness-at-def.mir |
 | llvm/test/CodeGen/X86/inalloca-regparm.ll |
 | llvm/test/MC/X86/AlignedBundling/bundle-subtarget-change-error.s |
 | llvm/test/Assembler/invalid-datalayout7.ll |
 | llvm/test/CodeGen/RISCV/rv32e.ll |
 | llvm/test/CodeGen/X86/expand-integer-x86_64-intrinsic-error.ll |
 | llvm/test/CodeGen/SystemZ/mrecord-mcount-02.ll |
 | llvm/test/CodeGen/X86/fast-isel-args-fail2.ll |
 | llvm/test/CodeGen/X86/llc-print-machineinstrs.mir |
 | lld/test/ELF/lto/ltopasses-custom.ll |
 | llvm/test/Assembler/datalayout-invalid-function-ptr-alignment.ll |
 | llvm/test/CodeGen/NVPTX/global-dtor.ll |
 | llvm/test/MachineVerifier/test_g_store.mir |
 | llvm/test/Transforms/GCOVProfiling/version.ll |
 | llvm/test/CodeGen/ARM/stc2.ll |
 | llvm/test/MC/X86/AlignedBundling/unlock-without-lock-error.s |
 | llvm/test/MachineVerifier/verifier-pseudo-terminators.mir |
 | llvm/test/MC/WebAssembly/blockaddress.ll |
 | llvm/test/MC/X86/encoder-fail.s |
 | llvm/test/MachineVerifier/test_g_constant.mir |
 | llvm/test/CodeGen/AArch64/GlobalISel/arm64-fallback.ll |
 | llvm/test/CodeGen/AMDGPU/llvm.amdgcn.ds.gws.sema.release.all.ll |
 | llvm/test/CodeGen/X86/macho-comdat.ll |
 | llvm/test/Assembler/invalid-datalayout19.ll |
 | llvm/test/CodeGen/SystemZ/ghc-cc-02.ll |
 | clang-tools-extra/test/clang-tidy/infrastructure/empty-database.cpp |
 | llvm/test/CodeGen/AArch64/arm64-tls-initial-exec.ll |
 | llvm/test/Assembler/invalid-datalayout3.ll |
 | llvm/test/CodeGen/PowerPC/named-reg-alloc-r2.ll |
 | llvm/test/Transforms/InstCombine/limit-max-iterations.ll |
 | llvm/test/CodeGen/SystemZ/ghc-cc-05.ll |
 | llvm/test/CodeGen/AMDGPU/call-to-kernel.ll |
 | llvm/test/CodeGen/BPF/sdiv_error.ll |
 | llvm/test/CodeGen/PowerPC/aix-stackargs.ll |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-data-only-notoc.ll |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-toc.ll |
 | llvm/test/CodeGen/Mips/cpus-no-mips64.ll |
 | llvm/test/CodeGen/X86/named-reg-alloc.ll |
 | llvm/test/MachineVerifier/test_g_intrinsic.mir |
 | llvm/test/CodeGen/Mips/indirect-jump-hazard/guards-verify-call.mir |
 | llvm/test/MC/Mips/nooddspreg-cmdarg.s |
 | llvm/test/CodeGen/AArch64/sve-neg-int-arith-imm-2.ll |
 | llvm/test/CodeGen/ARM/special-reg-acore.ll |
 | llvm/test/CodeGen/WebAssembly/tls-general-dynamic.ll |
 | llvm/test/MC/X86/invalid-sleb.s |
 | llvm/test/MachineVerifier/test_phis_precede_nonphis.mir |
 | llvm/test/MachineVerifier/test_g_intrinsic_w_side_effects.mir |
 | llvm/test/CodeGen/AMDGPU/div_i128.ll |
 | llvm/test/MachineVerifier/verifier-phi-fail0.mir |
 | llvm/test/CodeGen/ARM/ssat-lower.ll |
 | llvm/test/CodeGen/PowerPC/named-reg-alloc-r0.ll |
 | llvm/test/CodeGen/AMDGPU/flat-error-unsupported-gpu-hsa.ll |
 | llvm/test/CodeGen/X86/codemodel.ll |
 | llvm/test/MachineVerifier/test_g_insert.mir |
 | llvm/test/MachineVerifier/verify-regops.mir |
 | llvm/test/CodeGen/ARM/special-reg-v8m-main.ll |
 | llvm/lib/Support/ErrorHandling.cpp |
 | llvm/test/CodeGen/SPARC/sret-secondary.ll |
 | llvm/test/CodeGen/X86/AppendingLinkage.ll |
 | llvm/test/Assembler/invalid-datalayout15.ll |
 | llvm/test/CodeGen/PowerPC/aix-nest-param.ll |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-illegal-copy.mir |
 | llvm/test/CodeGen/SystemZ/codemodel.ll |
 | llvm/test/CodeGen/Mips/instverify/ins-pos.mir |
 | llvm/test/CodeGen/Hexagon/misaligned-const-store.ll |
 | llvm/test/CodeGen/AMDGPU/read-register-invalid-type-i32.ll |
 | llvm/test/CodeGen/Mips/mips64r6/compatibility.ll |
 | llvm/test/CodeGen/MIR/X86/machine-verifier.mir |
 | llvm/test/CodeGen/AArch64/GlobalISel/call-translator-musttail.ll |
 | llvm/test/CodeGen/NVPTX/global-ctor.ll |
 | llvm/test/MachineVerifier/test_g_build_vector.mir |
 | llvm/test/CodeGen/AMDGPU/lds-initializer.ll |
 | llvm/test/CodeGen/SystemZ/vec-args-error-02.ll |
 | llvm/test/CodeGen/X86/cfi-inserter-verify-inconsistent-offset.mir |
 | llvm/test/CodeGen/SystemZ/vec-args-error-03.ll |
 | llvm/test/CodeGen/ARM/named-reg-notareg.ll |
 | llvm/test/CodeGen/PowerPC/aix-xcoff-lcomm.ll |
 | llvm/test/MachineVerifier/test_g_load.mir |
 | llvm/test/CodeGen/RISCV/get-register-invalid.ll |
 | llvm/test/Assembler/invalid-datalayout6.ll |
 | llvm/test/CodeGen/RISCV/get-register-reserve.ll |
 | llvm/test/MachineVerifier/test_g_phi.mir |
 | llvm/test/CodeGen/SystemZ/vec-args-error-06.ll |
 | llvm/test/MachineVerifier/test_g_build_vector_trunc.mir |
 | llvm/test/MachineVerifier/verifier-implicit-virtreg-invalid-physreg-liveness.mir |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/lds-zero-initializer.ll |
 | llvm/test/MachineVerifier/test_g_ptrtoint.mir |
 | llvm/test/CodeGen/SystemZ/mnop-mcount-02.ll |
 | llvm/test/CodeGen/ARM/ssat-v4t.ll |
 | llvm/test/MC/X86/check-end-of-data-region.s |
 | llvm/test/CodeGen/X86/GlobalISel/avoid-matchtable-crash.mir |
 | llvm/test/Assembler/invalid-datalayout11.ll |
 | llvm/test/CodeGen/Lanai/codemodel.ll |
 | llvm/test/MachineVerifier/test_g_trunc.mir |
 | llvm/test/CodeGen/MIR/X86/tied-physical-regs-match.mir |
 | llvm/test/CodeGen/AArch64/arm64-named-reg-alloc.ll |
 | llvm/test/CodeGen/X86/invalid-liveness.mir |
 | llvm/test/CodeGen/PowerPC/aix-byval-param.ll |
 | llvm/test/CodeGen/RISCV/musttail-call.ll |
 | llvm/test/CodeGen/Generic/opt-codegen-no-target-machine.ll |
 | llvm/test/CodeGen/SPARC/fail-alloca-align.ll |
 | llvm/test/MachineVerifier/live-ins-03.mir |
 | llvm/test/MachineVerifier/test_g_brjt.mir |
 | llvm/test/CodeGen/AMDGPU/read-register-invalid-type-i64.ll |
 | llvm/test/CodeGen/Mips/indirect-jump-hazard/guards-verify-tailcall.mir |
 | clang/unittests/libclang/CrashTests/LibclangCrashTest.cpp |
 | llvm/test/Assembler/invalid-datalayout22.ll |
 | llvm/test/CodeGen/PowerPC/aix-trampoline.ll |
 | llvm/test/CodeGen/X86/nonconst-static-iv.ll |
 | llvm/test/Other/optimization-remarks-inline.ll |
 | llvm/test/MachineVerifier/test_g_bitcast.mir |
 | llvm/test/Assembler/getInt.ll |
 | llvm/test/CodeGen/X86/label-redefinition.ll |
 | llvm/test/CodeGen/XCore/section-name.ll |
 | llvm/test/CodeGen/ARM/ldc2l.ll |
 | llvm/test/CodeGen/Mips/instverify/dextm-size.mir |
 | llvm/test/CodeGen/PowerPC/aix-cc-altivec.ll |
 | llvm/test/MachineVerifier/test_g_fcmp.mir |
 | llvm/test/Assembler/invalid-datalayout12.ll |
 | llvm/test/CodeGen/AArch64/fast-isel-sp-adjust.ll |
 | llvm/test/Assembler/invalid-datalayout18.ll |
 | llvm/test/CodeGen/X86/read-fp-no-frame-pointer.ll |
 | llvm/test/Bitcode/invalid.test |
 | llvm/test/CodeGen/SPARC/codemodel.ll |
 | llvm/test/Transforms/BlockExtractor/invalid-line.ll |
 | llvm/test/CodeGen/NVPTX/fcos-no-fast-math.ll |
 | llvm/test/MC/MachO/variable-errors.s |
 | llvm/test/CodeGen/X86/coff-comdat3.ll |
 | llvm/test/Object/wasm-invalid-file.yaml |
 | llvm/test/CodeGen/Hexagon/misaligned-const-load.ll |
 | llvm/test/CodeGen/X86/equiv_with_fndef.ll |
 | llvm/test/Object/coff-invalid.test |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-jump-table.mir |
 | llvm/test/MC/PowerPC/ppc64-localentry-error2.s |
 | llvm/test/CodeGen/AMDGPU/GlobalISel/legalize-atomicrmw-nand.mir |
 | llvm/test/CodeGen/ARM/usat-upper.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsm-size.mir |
 | llvm/test/Object/wasm-string-outside-section.test |
 | llvm/test/CodeGen/Generic/llc-start-stop.ll |
 | llvm/test/CodeGen/ARM/named-reg-alloc.ll |
 | llvm/test/CodeGen/X86/clwb.ll |
 | llvm/test/CodeGen/ARM/machine-verifier.mir |
 | llvm/test/Assembler/invalid-datalayout5.ll |
 | llvm/test/MachineVerifier/verify-selected.mir |
 | llvm/test/CodeGen/AMDGPU/call-to-kernel-undefined.ll |
 | llvm/test/CodeGen/AMDGPU/branch-relax-spill.ll |
 | llvm/test/CodeGen/Mips/instverify/ins-size.mir |
 | llvm/test/Assembler/invalid-datalayout4.ll |
 | llvm/test/CodeGen/AArch64/tiny_supported.ll |
 | llvm/test/CodeGen/Mips/instverify/dextu-size.mir |
 | llvm/test/CodeGen/X86/segmented-stacks.ll |
 | llvm/test/MC/RISCV/mattr-invalid-combination.s |
 | llvm/test/CodeGen/X86/cpus-amd-no-x86_64.ll |
 | llvm/test/CodeGen/Mips/instverify/dext-pos.mir |
 | llvm/test/Transforms/FunctionImport/not-prevailing.ll |
 | llvm/test/CodeGen/PowerPC/codemodel.ll |
 | llvm/test/MC/ARM/Windows/invalid-relocation.s |
 | llvm/test/tools/llvm-lto2/X86/pipeline.ll |
 | llvm/test/CodeGen/Mips/instverify/dinsu-size.mir |
 | llvm/test/CodeGen/Mips/micromips64-unsupported.ll |
 | llvm/test/MC/X86/AlignedBundling/bundle-lock-option-error.s |
 | llvm/test/CodeGen/SystemZ/mverify-optypes.mir |
 | llvm/test/Assembler/invalid-datalayout17.ll |
 | llvm/test/CodeGen/Mips/Fast-ISel/double-arg.ll |
 | llvm/test/CodeGen/WebAssembly/offset-atomics.ll |
 | llvm/test/CodeGen/Mips/Fast-ISel/fast-isel-softfloat-lower-args.ll |
 | llvm/test/CodeGen/Mips/mips32r6/compatibility.ll |
 | llvm/test/CodeGen/SystemZ/vec-args-error-01.ll |
 | llvm/test/Transforms/BlockExtractor/invalid-block.ll |
Commit
77eb1b8f63c120f90ba529a5da2d392e165a4bc4
by arsenm2llc: Don't overwrite frame-pointer attribute Continue making command line flags with matching attribute behavior consistent.
|
 | llvm/test/CodeGen/AArch64/machine-outliner.mir |
 | llvm/include/llvm/CodeGen/CommandFlags.inc |
 | llvm/test/CodeGen/AArch64/aarch64-fix-cortex-a53-835769.ll |
 | llvm/test/CodeGen/AArch64/GlobalISel/tail-call-no-save-fp-lr.ll |
 | llvm/test/CodeGen/ARM/disable-fp-elim.ll |
 | llvm/test/CodeGen/X86/fp-elim.ll |
 | llvm/test/Other/opt-override-frame-pointer.ll |
Commit
cd9e5c32302cd3b34b796683eedb072c6a1cfdc1
by jinghamFix the macos build after D71575. size_t and uint64_t are spelled slightly differently on macOS, which was causing the compiler to error out calling std::min - since the two types have to be the same. I fixed this by casting the uint64_t computation to a size_t. That's probably not the cleanest solution, but it gets us back to building.
|
 | lldb/source/Plugins/ObjectFile/wasm/ObjectFileWasm.cpp |
Commit
bff9f84dc85b2b4ef0d5efe2691d3411d2abcb60
by craig.topper[X86] Add 32-bit mode sse1 command line to scalar-int-to-fp.ll. NFC
|
 | llvm/test/CodeGen/X86/scalar-int-to-fp.ll |
Commit
e4454479212b28532909e0a0782b0102e9bcd1c4
by craig.topper[X86] When handling i64->f32 sint_to_fp on 32-bit targets only bitcast to f64 if sse2 is enabled. The code is trying to copy the i64 value to an xmm register to use a 64-bit store so that the 64-bit fild can benefit from store forwarding. But this trick only works if f64 is going to be stored in an XMM register. If we only have SSE1 then only float is in xmm register. So this trick just causes 2 stores i32 stores, an f64 load into the x87, an f64 from x87, and a 64-bit fild. So we end up with an extra stack temporary and still didn't get store forwarding. We might be able to use v2f32 here instead, but I didn't check. I just wanted the code to make sense. Found by inspection as I continue to stare too hard at our int_to_fp conversions.
|
 | llvm/test/CodeGen/X86/scalar-int-to-fp.ll |
 | llvm/lib/Target/X86/X86ISelLowering.cpp |
Commit
154cd6de513e1e9ce794ba2d1eae1647c873f812
by wmi[SampleFDO] Fix invalid branch profile generated by indirect call promotion. Suppose an inline instance has hot total sample count but 0 entry count, and it is an indirect call target. If the indirect call has no other call target and inline instance associated with it and it is promoted, currently the conditional branch generated by indirect call promotion will have invalid branch profile which is !{!"branch_weights", i32 0, i32 0} -- because the entry count of the promoted target is 0 and the total entry count of all targets is also 0. This caused a SEGV in Control Height Reduction and may cause problem in other passes. Function entry count of an inline instance is computed by a heuristic -- using either the sample of the starting line or starting inner inline instance. The patch changes the heuristic a little bit so that when total sample count is larger than 0, the computed entry count will be at least 1. Then the new branch profile will be !{!"branch_weights", i32 1, i32 0}. Differential Revision: https://reviews.llvm.org/D72790
|
 | llvm/test/Transforms/SampleProfile/Inputs/indirect-call.compact.afdo |
 | llvm/test/Transforms/SampleProfile/Inputs/indirect-call.prof |
 | llvm/test/Transforms/SampleProfile/inline-callee-update.ll |
 | llvm/include/llvm/ProfileData/SampleProf.h |
 | llvm/test/Transforms/SampleProfile/indirect-call.ll |
Commit
45d70806f4386adfb62b0d75949a8aad58e0576f
by richardPR42694 Support explicit(bool) in older language modes as an extension. This needs somewhat careful disambiguation, as C++2a explicit(bool) is a breaking change. We only enable it in cases where the source construct could not possibly be anything else.
|
 | clang/lib/Parse/ParseDecl.cpp |
 | clang/lib/Parse/Parser.cpp |
 | clang/lib/Parse/ParseTentative.cpp |
 | clang/test/SemaCXX/cxx2a-explicit-bool.cpp |
 | clang/include/clang/Basic/DiagnosticParseKinds.td |
 | clang/include/clang/Parse/Parser.h |
Commit
b54a50f52e9427f250c192a8618b881732e5d7a4
by Jonas Devlieghere[lldb/Reproducers] Extract function for reading environment override (NFC) Create a helper function for reading reproducer overrides from environment variables.
|
 | lldb/source/Utility/Reproducer.cpp |
Commit
c378e52cb9d1197bd828008ffdeaf3cebdca1506
by arsenm2Set some fast math attributes in setFunctionAttributes This will provide a more consistent view to codegen for these attributes. The current system is somewhat awkward, and the fields in TargetOptions are reset based on the command line flag if the attribute isn't set. By forcing these attributes with the flag, there can never be an inconsistency in the behavior if code directly inspects the attribute on the function without considering the command line flags.
|
 | llvm/lib/Target/TargetMachine.cpp |
 | llvm/include/llvm/CodeGen/CommandFlags.inc |
Commit
066e817b421e8502a72735988e14713940517aaa
by Jonas Devlieghere[lldb/Reproducers] Add a flag to always generating a reproducer Add a flag which always generates a reproducer when normally it would be discarded. This is meant for testing purposes to capture a debugger session without modification the session itself.
|
 | lldb/include/lldb/Utility/Reproducer.h |
 | lldb/tools/driver/Driver.cpp |
 | lldb/source/API/SBReproducer.cpp |
 | lldb/include/lldb/API/SBReproducer.h |
 | lldb/test/Shell/Reproducer/TestDriverOptions.test |
 | lldb/source/Utility/Reproducer.cpp |
 | lldb/tools/driver/Options.td |
Commit
8fdafb7dced812b2dc0af77f9668bfe23b4ffb0b
by chen3.liuInsert wait instruction after X87 instructions which could raise float-point exception. This patch also modify some mayRaiseFPException flag which set in D68854. Differential Revision: https://reviews.llvm.org/D72750
|
 | llvm/test/CodeGen/X86/vec-strict-inttofp-256.ll |
 | llvm/test/CodeGen/X86/fp-strict-scalar-cmp.ll |
 | llvm/test/CodeGen/X86/vector-constrained-fp-intrinsics.ll |
 | llvm/test/CodeGen/X86/fp-strict-scalar-inttofp.ll |
 | llvm/test/CodeGen/X86/vec-strict-fptoint-128.ll |
 | llvm/test/CodeGen/X86/vec-strict-inttofp-512.ll |
 | llvm/lib/Target/X86/X86TargetMachine.cpp |
 | llvm/test/CodeGen/X86/O0-pipeline.ll |
 | llvm/test/CodeGen/X86/fp-strict-scalar.ll |
 | llvm/lib/Target/X86/X86InsertWait.cpp |
 | llvm/lib/Target/X86/X86.h |
 | llvm/test/CodeGen/X86/fp-strict-libcalls-msvc32.ll |
 | llvm/test/CodeGen/X86/vec-strict-fptoint-512.ll |
 | llvm/test/CodeGen/X86/fp-strict-scalar-fptoint.ll |
 | llvm/test/CodeGen/X86/O3-pipeline.ll |
 | llvm/test/CodeGen/X86/fp80-strict-scalar.ll |
 | llvm/test/CodeGen/X86/fp128-cast-strict.ll |
 | llvm/test/CodeGen/X86/vec-strict-inttofp-128.ll |
 | llvm/lib/Target/X86/X86InstrFPStack.td |
 | llvm/lib/Target/X86/X86FloatingPoint.cpp |
 | llvm/test/CodeGen/X86/fp-strict-scalar-round.ll |
 | llvm/test/CodeGen/X86/vec-strict-fptoint-256.ll |
 | llvm/test/CodeGen/X86/constrained-fp80-trunc-ext.ll |
 | llvm/lib/Target/X86/CMakeLists.txt |
 | llvm/test/CodeGen/X86/fp80-strict-scalar-cmp.ll |
 | llvm/test/CodeGen/X86/vec-strict-128.ll |
 | llvm/test/CodeGen/X86/fp-intrinsics.ll |
Commit
cc5efa213d98f614989edd121f2a966fb53a7f54
by llvmgnsyncbot[gn build] Port 8fdafb7dced
|
 | llvm/utils/gn/secondary/llvm/lib/Target/X86/BUILD.gn |
Commit
982a77b69408d6d54526b331046b4508a68ef459
by Jonas Devlieghere[lldb/Reproducers] Print more info for reproducer status Reproducer status now prints the capture/replay path. It will also print the status of auto generation when enabled.
|
 | lldb/source/Commands/CommandObjectReproducer.cpp |
 | lldb/test/Shell/Reproducer/TestDriverOptions.test |
 | lldb/include/lldb/Utility/Reproducer.h |
 | lldb/source/Utility/Reproducer.cpp |
Commit
58265ad42a90ae8905be6a447cb42e53529a54a0
by inouehrs[mlir] fix broken links to Glossary Differential Revision: https://reviews.llvm.org/D72697
|
 | mlir/docs/Tutorials/Toy/Ch-6.md |
 | mlir/docs/Tutorials/Toy/Ch-2.md |
 | mlir/docs/LangRef.md |
 | mlir/docs/Tutorials/Toy/Ch-5.md |
Commit
5cf1b01a01179e3ede446ae6064c6f3bece46987
by craig.topper[LegalizeDAG][TargetLowering] Move vXi64/i64->vXf32/f32 uint_to_fp legalizing code from TargetLowering::expandUINT_TO_FP back to LegalizeDAG. This was moved in October 2018, but we don't appear to be using this for vectors on any in tree target. Moving it back simplifies D72794 so we can share the code for i32->f32.
|
 | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp |
 | llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp |
Commit
afb22d7c33a246967d5f21d5ab3c83c148178564
by ikudrin[DebugInfo] Simplify the constructor of DWARFDebugAranges::Range. NFC. This removes the default values of the arguments. The only caller, DWARFDebugAranges::construct(), provides all three parameters. Differential Revision: https://reviews.llvm.org/D72757
|
 | llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h |