├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── bin ├── README.md ├── debug │ └── empty ├── release │ └── empty └── typelib │ └── VBLLVM.tlb ├── lib ├── gen_idl │ ├── README.md │ ├── compile_parser.bat │ ├── gen_idl.exe │ ├── gen_idl.peg │ ├── gen_idl.vbp │ ├── mdGlobals.bas │ ├── mdJson.bas │ ├── mdMain.bas │ └── mdParser.bas ├── lld-6.0.1.src │ ├── .arcconfig │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CODE_OWNERS.TXT │ ├── COFF │ │ ├── CMakeLists.txt │ │ ├── Chunks.cpp │ │ ├── Chunks.h │ │ ├── Config.h │ │ ├── DLL.cpp │ │ ├── DLL.h │ │ ├── Driver.cpp │ │ ├── Driver.h │ │ ├── DriverUtils.cpp │ │ ├── ICF.cpp │ │ ├── InputFiles.cpp │ │ ├── InputFiles.h │ │ ├── LTO.cpp │ │ ├── LTO.h │ │ ├── MapFile.cpp │ │ ├── MapFile.h │ │ ├── MarkLive.cpp │ │ ├── MinGW.cpp │ │ ├── MinGW.h │ │ ├── Options.td │ │ ├── PDB.cpp │ │ ├── PDB.h │ │ ├── README.md │ │ ├── Strings.cpp │ │ ├── Strings.h │ │ ├── SymbolTable.cpp │ │ ├── SymbolTable.h │ │ ├── Symbols.cpp │ │ ├── Symbols.h │ │ ├── Writer.cpp │ │ └── Writer.h │ ├── Common │ │ ├── Args.cpp │ │ ├── CMakeLists.txt │ │ ├── ErrorHandler.cpp │ │ ├── Memory.cpp │ │ ├── Reproduce.cpp │ │ ├── Strings.cpp │ │ ├── TargetOptionsCommandFlags.cpp │ │ ├── Threads.cpp │ │ └── Version.cpp │ ├── ELF │ │ ├── AArch64ErrataFix.cpp │ │ ├── AArch64ErrataFix.h │ │ ├── Arch │ │ │ ├── AArch64.cpp │ │ │ ├── AMDGPU.cpp │ │ │ ├── ARM.cpp │ │ │ ├── AVR.cpp │ │ │ ├── Mips.cpp │ │ │ ├── MipsArchTree.cpp │ │ │ ├── PPC.cpp │ │ │ ├── PPC64.cpp │ │ │ ├── SPARCV9.cpp │ │ │ ├── X86.cpp │ │ │ └── X86_64.cpp │ │ ├── Bits.h │ │ ├── CMakeLists.txt │ │ ├── Config.h │ │ ├── Driver.cpp │ │ ├── Driver.h │ │ ├── DriverUtils.cpp │ │ ├── EhFrame.cpp │ │ ├── EhFrame.h │ │ ├── Filesystem.cpp │ │ ├── Filesystem.h │ │ ├── GdbIndex.cpp │ │ ├── GdbIndex.h │ │ ├── ICF.cpp │ │ ├── ICF.h │ │ ├── InputFiles.cpp │ │ ├── InputFiles.h │ │ ├── InputSection.cpp │ │ ├── InputSection.h │ │ ├── LTO.cpp │ │ ├── LTO.h │ │ ├── LinkerScript.cpp │ │ ├── LinkerScript.h │ │ ├── MapFile.cpp │ │ ├── MapFile.h │ │ ├── MarkLive.cpp │ │ ├── Options.td │ │ ├── OutputSections.cpp │ │ ├── OutputSections.h │ │ ├── README.md │ │ ├── Relocations.cpp │ │ ├── Relocations.h │ │ ├── ScriptLexer.cpp │ │ ├── ScriptLexer.h │ │ ├── ScriptParser.cpp │ │ ├── ScriptParser.h │ │ ├── Strings.cpp │ │ ├── Strings.h │ │ ├── SymbolTable.cpp │ │ ├── SymbolTable.h │ │ ├── Symbols.cpp │ │ ├── Symbols.h │ │ ├── SyntheticSections.cpp │ │ ├── SyntheticSections.h │ │ ├── Target.cpp │ │ ├── Target.h │ │ ├── Thunks.cpp │ │ ├── Thunks.h │ │ ├── Writer.cpp │ │ └── Writer.h │ ├── LICENSE.TXT │ ├── MinGW │ │ ├── CMakeLists.txt │ │ ├── Driver.cpp │ │ └── Options.td │ ├── README.md │ ├── cmake │ │ └── modules │ │ │ ├── AddLLD.cmake │ │ │ └── FindVTune.cmake │ ├── docs │ │ ├── AtomLLD.rst │ │ ├── CMakeLists.txt │ │ ├── Driver.rst │ │ ├── NewLLD.rst │ │ ├── README.txt │ │ ├── Readers.rst │ │ ├── ReleaseNotes.rst │ │ ├── WebAssembly.rst │ │ ├── _static │ │ │ └── favicon.ico │ │ ├── _templates │ │ │ ├── indexsidebar.html │ │ │ └── layout.html │ │ ├── conf.py │ │ ├── design.rst │ │ ├── development.rst │ │ ├── getting_started.rst │ │ ├── hello.png │ │ ├── index.rst │ │ ├── llvm-theme │ │ │ ├── layout.html │ │ │ ├── static │ │ │ │ ├── contents.png │ │ │ │ ├── llvm.css │ │ │ │ ├── logo.png │ │ │ │ └── navigation.png │ │ │ └── theme.conf │ │ ├── make.bat │ │ ├── open_projects.rst │ │ ├── sphinx_intro.rst │ │ └── windows_support.rst │ ├── include │ │ └── lld │ │ │ ├── Common │ │ │ ├── Args.h │ │ │ ├── Driver.h │ │ │ ├── ErrorHandler.h │ │ │ ├── LLVM.h │ │ │ ├── Memory.h │ │ │ ├── Reproduce.h │ │ │ ├── Strings.h │ │ │ ├── TargetOptionsCommandFlags.h │ │ │ ├── Threads.h │ │ │ ├── Version.h │ │ │ └── Version.inc.in │ │ │ ├── Core │ │ │ ├── AbsoluteAtom.h │ │ │ ├── ArchiveLibraryFile.h │ │ │ ├── Atom.h │ │ │ ├── DefinedAtom.h │ │ │ ├── Error.h │ │ │ ├── File.h │ │ │ ├── Instrumentation.h │ │ │ ├── LinkingContext.h │ │ │ ├── Node.h │ │ │ ├── Pass.h │ │ │ ├── PassManager.h │ │ │ ├── Reader.h │ │ │ ├── Reference.h │ │ │ ├── Resolver.h │ │ │ ├── SharedLibraryAtom.h │ │ │ ├── SharedLibraryFile.h │ │ │ ├── Simple.h │ │ │ ├── SymbolTable.h │ │ │ ├── TODO.txt │ │ │ ├── UndefinedAtom.h │ │ │ └── Writer.h │ │ │ └── ReaderWriter │ │ │ ├── MachOLinkingContext.h │ │ │ └── YamlContext.h │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── Core │ │ │ ├── CMakeLists.txt │ │ │ ├── DefinedAtom.cpp │ │ │ ├── Error.cpp │ │ │ ├── File.cpp │ │ │ ├── LinkingContext.cpp │ │ │ ├── Reader.cpp │ │ │ ├── Resolver.cpp │ │ │ ├── SymbolTable.cpp │ │ │ └── Writer.cpp │ │ ├── Driver │ │ │ ├── CMakeLists.txt │ │ │ ├── DarwinLdDriver.cpp │ │ │ └── DarwinLdOptions.td │ │ └── ReaderWriter │ │ │ ├── CMakeLists.txt │ │ │ ├── FileArchive.cpp │ │ │ ├── MachO │ │ │ ├── ArchHandler.cpp │ │ │ ├── ArchHandler.h │ │ │ ├── ArchHandler_arm.cpp │ │ │ ├── ArchHandler_arm64.cpp │ │ │ ├── ArchHandler_x86.cpp │ │ │ ├── ArchHandler_x86_64.cpp │ │ │ ├── Atoms.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CompactUnwindPass.cpp │ │ │ ├── DebugInfo.h │ │ │ ├── ExecutableAtoms.h │ │ │ ├── File.h │ │ │ ├── FlatNamespaceFile.h │ │ │ ├── GOTPass.cpp │ │ │ ├── LayoutPass.cpp │ │ │ ├── LayoutPass.h │ │ │ ├── MachOLinkingContext.cpp │ │ │ ├── MachONormalizedFile.h │ │ │ ├── MachONormalizedFileBinaryReader.cpp │ │ │ ├── MachONormalizedFileBinaryUtils.h │ │ │ ├── MachONormalizedFileBinaryWriter.cpp │ │ │ ├── MachONormalizedFileFromAtoms.cpp │ │ │ ├── MachONormalizedFileToAtoms.cpp │ │ │ ├── MachONormalizedFileYAML.cpp │ │ │ ├── MachOPasses.h │ │ │ ├── ObjCPass.cpp │ │ │ ├── SectCreateFile.h │ │ │ ├── ShimPass.cpp │ │ │ ├── StubsPass.cpp │ │ │ ├── TLVPass.cpp │ │ │ └── WriterMachO.cpp │ │ │ └── YAML │ │ │ ├── CMakeLists.txt │ │ │ └── ReaderWriterYAML.cpp │ ├── test │ │ ├── CMakeLists.txt │ │ ├── COFF │ │ │ ├── Inputs │ │ │ │ ├── alpha.ll │ │ │ │ ├── armnt-executable.obj.yaml │ │ │ │ ├── armnt-executable.s │ │ │ │ ├── associative-comdat-2.s │ │ │ │ ├── bar.ll │ │ │ │ ├── beta.ll │ │ │ │ ├── cl-gl.obj │ │ │ │ ├── combined-resources-2.rc │ │ │ │ ├── combined-resources-2.res │ │ │ │ ├── combined-resources-cursor.bmp │ │ │ │ ├── combined-resources-okay.bmp │ │ │ │ ├── combined-resources.rc │ │ │ │ ├── combined-resources.res │ │ │ │ ├── conflict.ll │ │ │ │ ├── constant-export.ll │ │ │ │ ├── constant-import.s │ │ │ │ ├── default.def │ │ │ │ ├── delayimports-error.yaml │ │ │ │ ├── entry-mangled.ll │ │ │ │ ├── except_handler3.lib │ │ │ │ ├── export.ll │ │ │ │ ├── export.yaml │ │ │ │ ├── export2.yaml │ │ │ │ ├── extension.def │ │ │ │ ├── far-arm-thumb-abs.s │ │ │ │ ├── far-arm-thumb-abs20.s │ │ │ │ ├── gamma.ll │ │ │ │ ├── hello32.yaml │ │ │ │ ├── hello64.asm │ │ │ │ ├── hello64.obj │ │ │ │ ├── import.yaml │ │ │ │ ├── imports-mangle.lib │ │ │ │ ├── include1a.yaml │ │ │ │ ├── include1b.yaml │ │ │ │ ├── include1c.yaml │ │ │ │ ├── library-arm64.lib │ │ │ │ ├── library.def │ │ │ │ ├── library.lib │ │ │ │ ├── library2-arm64.lib │ │ │ │ ├── library2.def │ │ │ │ ├── locally-imported-def.s │ │ │ │ ├── locally-imported-imp.s │ │ │ │ ├── lto-cache.ll │ │ │ │ ├── lto-chkstk-chkstk.s │ │ │ │ ├── lto-chkstk-foo.s │ │ │ │ ├── lto-comdat1.ll │ │ │ │ ├── lto-comdat2.ll │ │ │ │ ├── lto-dep.ll │ │ │ │ ├── lto-lazy-reference-dummy.ll │ │ │ │ ├── lto-lazy-reference-quadruple.ll │ │ │ │ ├── machine-x64.yaml │ │ │ │ ├── machine-x86.yaml │ │ │ │ ├── manifestinput.test │ │ │ │ ├── msvclto-order-a.ll │ │ │ │ ├── msvclto-order-b.ll │ │ │ │ ├── msvclto.s │ │ │ │ ├── named.def │ │ │ │ ├── object.s │ │ │ │ ├── oldname.yaml │ │ │ │ ├── pdb-diff-cl.pdb │ │ │ │ ├── pdb-diff.cpp │ │ │ │ ├── pdb-diff.obj │ │ │ │ ├── pdb-global-gc.s │ │ │ │ ├── pdb-globals.yaml │ │ │ │ ├── pdb-hashes-1.yaml │ │ │ │ ├── pdb-hashes-2-missing.yaml │ │ │ │ ├── pdb-hashes-2.yaml │ │ │ │ ├── pdb-import-gc.lib │ │ │ │ ├── pdb-scopes-a.yaml │ │ │ │ ├── pdb-scopes-b.yaml │ │ │ │ ├── pdb-type-server-simple-a.yaml │ │ │ │ ├── pdb-type-server-simple-b.yaml │ │ │ │ ├── pdb-type-server-simple-ts.yaml │ │ │ │ ├── pdb1.yaml │ │ │ │ ├── pdb2.yaml │ │ │ │ ├── pdb_comdat_bar.yaml │ │ │ │ ├── pdb_comdat_main.yaml │ │ │ │ ├── pdb_lines_1.yaml │ │ │ │ ├── pdb_lines_2.yaml │ │ │ │ ├── resource.res │ │ │ │ ├── ret42.lib │ │ │ │ ├── ret42.obj │ │ │ │ ├── ret42.yaml │ │ │ │ ├── std32.lib │ │ │ │ ├── std64.lib │ │ │ │ ├── thinlto-mangled-qux.ll │ │ │ │ ├── weak-external.ll │ │ │ │ ├── weak-external2.ll │ │ │ │ └── weak-external3.ll │ │ │ ├── alternatename.test │ │ │ ├── ar-comdat.test │ │ │ ├── arm-thumb-branch-error.s │ │ │ ├── arm-thumb-branch20-error.s │ │ │ ├── arm64-dynamicbase.s │ │ │ ├── arm64-import2.test │ │ │ ├── arm64-magic.yaml │ │ │ ├── arm64-relocs-imports.test │ │ │ ├── armnt-blx23t.test │ │ │ ├── armnt-branch24t.test │ │ │ ├── armnt-dynamicbase.test │ │ │ ├── armnt-entry-point.test │ │ │ ├── armnt-imports.test │ │ │ ├── armnt-mov32t-exec.test │ │ │ ├── armnt-movt32t.test │ │ │ ├── associative-comdat.s │ │ │ ├── base.test │ │ │ ├── baserel.test │ │ │ ├── cl-gl.test │ │ │ ├── combined-resources.test │ │ │ ├── common-alignment.test │ │ │ ├── common.test │ │ │ ├── conflict-mangled.test │ │ │ ├── conflict.test │ │ │ ├── constant-export.test │ │ │ ├── constant.test │ │ │ ├── ctors_dtors_priority.s │ │ │ ├── debug-dwarf.test │ │ │ ├── debug.test │ │ │ ├── def-export-stdcall.s │ │ │ ├── def-name.test │ │ │ ├── defparser.test │ │ │ ├── delayimports-armnt.yaml │ │ │ ├── delayimports-error.test │ │ │ ├── delayimports.test │ │ │ ├── delayimports32.test │ │ │ ├── dll.test │ │ │ ├── dllexport-mingw.s │ │ │ ├── dllimport-gc.test │ │ │ ├── driver-windows.test │ │ │ ├── driver.test │ │ │ ├── duplicate.test │ │ │ ├── entry-drectve.test │ │ │ ├── entry-inference.test │ │ │ ├── entry-inference2.test │ │ │ ├── entry-inference32.test │ │ │ ├── entry-mangled.test │ │ │ ├── entrylib.ll │ │ │ ├── error-limit.test │ │ │ ├── export-all.s │ │ │ ├── export-arm64.yaml │ │ │ ├── export-armnt.yaml │ │ │ ├── export-exe.test │ │ │ ├── export.test │ │ │ ├── export32.test │ │ │ ├── failifmismatch.test │ │ │ ├── filename-casing.s │ │ │ ├── filetype.test │ │ │ ├── force.test │ │ │ ├── guardcf.test │ │ │ ├── heap.test │ │ │ ├── hello32.test │ │ │ ├── help.test │ │ │ ├── icf-associative.test │ │ │ ├── icf-circular.test │ │ │ ├── icf-circular2.test │ │ │ ├── icf-data.test │ │ │ ├── icf-different-align.test │ │ │ ├── icf-executable.s │ │ │ ├── icf-local.test │ │ │ ├── icf-simple.test │ │ │ ├── icf-xdata.s │ │ │ ├── ignore4217.yaml │ │ │ ├── implib-name.test │ │ │ ├── imports-mangle.test │ │ │ ├── imports.test │ │ │ ├── include-lto.ll │ │ │ ├── include.test │ │ │ ├── include2.test │ │ │ ├── internal.test │ │ │ ├── invalid-debug-type.test │ │ │ ├── invalid-obj.test │ │ │ ├── largeaddressaware.test │ │ │ ├── lib.test │ │ │ ├── libpath.test │ │ │ ├── linkenv.test │ │ │ ├── linkrepro-manifest.test │ │ │ ├── linkrepro-pdb.test │ │ │ ├── linkrepro-res.test │ │ │ ├── linkrepro.test │ │ │ ├── lldmap.test │ │ │ ├── loadcfg.ll │ │ │ ├── loadcfg.test │ │ │ ├── loadcfg32.test │ │ │ ├── locally-imported-arm64.test │ │ │ ├── locally-imported-warn-multiple.s │ │ │ ├── locally-imported.test │ │ │ ├── locally-imported32.test │ │ │ ├── long-section-name.test │ │ │ ├── lto-cache.ll │ │ │ ├── lto-chkstk.ll │ │ │ ├── lto-comdat.ll │ │ │ ├── lto-debug-pass-arguments.ll │ │ │ ├── lto-lazy-reference.ll │ │ │ ├── lto-linker-opts.ll │ │ │ ├── lto-new-symbol.ll │ │ │ ├── lto-opt-level.ll │ │ │ ├── lto-parallel.ll │ │ │ ├── lto-reloc-model.ll │ │ │ ├── lto.ll │ │ │ ├── machine.test │ │ │ ├── manifest.test │ │ │ ├── manifestinput-error.test │ │ │ ├── manifestinput-nowarning.test │ │ │ ├── manifestinput.test │ │ │ ├── merge.test │ │ │ ├── msvclto-archive.ll │ │ │ ├── msvclto-order.ll │ │ │ ├── msvclto.ll │ │ │ ├── nodefaultlib.test │ │ │ ├── noentry.test │ │ │ ├── opt.test │ │ │ ├── options.test │ │ │ ├── order.test │ │ │ ├── out.test │ │ │ ├── pdata-arm64.yaml │ │ │ ├── pdb-comdat.test │ │ │ ├── pdb-diff.test │ │ │ ├── pdb-global-gc.yaml │ │ │ ├── pdb-global-hashes.test │ │ │ ├── pdb-globals.test │ │ │ ├── pdb-heapsite.yaml │ │ │ ├── pdb-import-gc.yaml │ │ │ ├── pdb-invalid-func-type.yaml │ │ │ ├── pdb-lib.s │ │ │ ├── pdb-linker-module.test │ │ │ ├── pdb-none.test │ │ │ ├── pdb-options.test │ │ │ ├── pdb-procid-remapping.test │ │ │ ├── pdb-publics-import.test │ │ │ ├── pdb-safeseh.yaml │ │ │ ├── pdb-same-name.test │ │ │ ├── pdb-scopes.test │ │ │ ├── pdb-secrel-absolute.yaml │ │ │ ├── pdb-source-lines.test │ │ │ ├── pdb-symbol-types.yaml │ │ │ ├── pdb-thunk.yaml │ │ │ ├── pdb-type-server-missing.yaml │ │ │ ├── pdb-type-server-simple.test │ │ │ ├── pdb.test │ │ │ ├── reloc-arm.test │ │ │ ├── reloc-discarded-dwarf.s │ │ │ ├── reloc-discarded-early.s │ │ │ ├── reloc-discarded-early2.s │ │ │ ├── reloc-discarded.s │ │ │ ├── reloc-oob.yaml │ │ │ ├── reloc-x64.test │ │ │ ├── reloc-x86.test │ │ │ ├── resource.test │ │ │ ├── responsefile.test │ │ │ ├── rsds.test │ │ │ ├── safeseh-diag-feat.test │ │ │ ├── safeseh-md.s │ │ │ ├── safeseh.s │ │ │ ├── savetemps.ll │ │ │ ├── secidx-absolute.s │ │ │ ├── secrel-absolute.s │ │ │ ├── secrel-common.s │ │ │ ├── section-size.s │ │ │ ├── section.test │ │ │ ├── seh-comdat.test │ │ │ ├── seh.test │ │ │ ├── sort-debug.test │ │ │ ├── stack.test │ │ │ ├── strtab-size.s │ │ │ ├── subsystem-drectve.test │ │ │ ├── subsystem-inference.test │ │ │ ├── subsystem.test │ │ │ ├── symtab.test │ │ │ ├── thinlto-archives.ll │ │ │ ├── thinlto-mangled.ll │ │ │ ├── thinlto.ll │ │ │ ├── tls.test │ │ │ ├── tls32.test │ │ │ ├── unwind.test │ │ │ ├── version.test │ │ │ ├── weak-external.test │ │ │ ├── weak-external2.test │ │ │ ├── weak-external3.test │ │ │ ├── wholearchive.s │ │ │ └── wx.s │ │ ├── Driver │ │ │ └── Inputs │ │ │ │ ├── libtest.a │ │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ ├── i386 │ │ │ │ └── libtest.a │ │ │ │ └── libtest.a │ │ ├── ELF │ │ │ ├── Inputs │ │ │ │ ├── aarch64-condb-reloc.s │ │ │ │ ├── aarch64-copy2.s │ │ │ │ ├── aarch64-tls-gdie.s │ │ │ │ ├── aarch64-tls-ie.s │ │ │ │ ├── aarch64-tstbr14-reloc.s │ │ │ │ ├── abs-hidden.s │ │ │ │ ├── abs.s │ │ │ │ ├── abs255.s │ │ │ │ ├── abs256.s │ │ │ │ ├── abs257.s │ │ │ │ ├── allow-multiple-definition.s │ │ │ │ ├── allow-shlib-undefined.s │ │ │ │ ├── amdgpu-kernel-0.s │ │ │ │ ├── amdgpu-kernel-1.s │ │ │ │ ├── amdgpu-kernel-2.o │ │ │ │ ├── archive.s │ │ │ │ ├── archive2.s │ │ │ │ ├── archive3.s │ │ │ │ ├── archive4.s │ │ │ │ ├── arm-attributes1.s │ │ │ │ ├── arm-exidx-cantunwind.s │ │ │ │ ├── arm-plt-reloc.s │ │ │ │ ├── arm-shared.s │ │ │ │ ├── arm-thumb-blx-targets.s │ │ │ │ ├── arm-thumb-narrow-branch.o │ │ │ │ ├── arm-thumb-narrow-branch.s │ │ │ │ ├── arm-tls-get-addr.s │ │ │ │ ├── as-needed-lazy.s │ │ │ │ ├── bad-archive.a │ │ │ │ ├── comdat.s │ │ │ │ ├── comment-gc.s │ │ │ │ ├── common.s │ │ │ │ ├── compress-debug.s │ │ │ │ ├── conflict-debug.s │ │ │ │ ├── conflict.s │ │ │ │ ├── copy-in-shared.s │ │ │ │ ├── copy-rel-abs.s │ │ │ │ ├── copy-rel-corrupted.s │ │ │ │ ├── copy-rel-large.s │ │ │ │ ├── copy-rel-pie.s │ │ │ │ ├── corrupt-version-reference.so │ │ │ │ ├── ctors_dtors_priority1.s │ │ │ │ ├── ctors_dtors_priority2.s │ │ │ │ ├── ctors_dtors_priority3.s │ │ │ │ ├── discard-merge-unnamed.o │ │ │ │ ├── dso-undef-size.s │ │ │ │ ├── dtrace-r.o │ │ │ │ ├── duplicated-plt-entry.s │ │ │ │ ├── dynamic-list-weak-archive.s │ │ │ │ ├── dynamic-reloc-weak.s │ │ │ │ ├── dynamic-reloc.s │ │ │ │ ├── eh-frame-end.s │ │ │ │ ├── eh-frame.s │ │ │ │ ├── ehframe-relocation.s │ │ │ │ ├── empty-ver.ver │ │ │ │ ├── exclude-libs.s │ │ │ │ ├── far-arm-abs.s │ │ │ │ ├── far-arm-thumb-abs.s │ │ │ │ ├── gc-sections-shared.s │ │ │ │ ├── gc-sections-shared2.s │ │ │ │ ├── gc-sections-weak.s │ │ │ │ ├── gdb-index.s │ │ │ │ ├── gnu-ifunc-dso.s │ │ │ │ ├── gnu-ifunc-gotpcrel.s │ │ │ │ ├── gotpc-relax-und-dso.s │ │ │ │ ├── i386-got32x-baseless.elf │ │ │ │ ├── i386-reloc-16-error.s │ │ │ │ ├── i386-reloc-16.s │ │ │ │ ├── i386-reloc-8-error.s │ │ │ │ ├── i386-reloc-8.s │ │ │ │ ├── i386-tls-got.s │ │ │ │ ├── icf-absolute.s │ │ │ │ ├── icf-merge-sec.s │ │ │ │ ├── icf-merge.s │ │ │ │ ├── icf-merge2.s │ │ │ │ ├── icf-merge3.s │ │ │ │ ├── icf-non-mergeable.s │ │ │ │ ├── icf2.s │ │ │ │ ├── libsearch-dyn.s │ │ │ │ ├── libsearch-st.s │ │ │ │ ├── llvm33-rela-outside-group.o │ │ │ │ ├── local-symbol-in-dso.so │ │ │ │ ├── map-file2.s │ │ │ │ ├── map-file3.s │ │ │ │ ├── map-file4.s │ │ │ │ ├── map-file5.s │ │ │ │ ├── merge.s │ │ │ │ ├── mips-align-err.s │ │ │ │ ├── mips-concatenated-abiflags.o │ │ │ │ ├── mips-dynamic.s │ │ │ │ ├── mips-fnpic.s │ │ │ │ ├── mips-fpic.s │ │ │ │ ├── mips-gp-dips-corrupt-ver.s │ │ │ │ ├── mips-gp-dips-corrupt-ver.so │ │ │ │ ├── mips-gp-disp.so │ │ │ │ ├── mips-gp0-non-zero.o │ │ │ │ ├── mips-micro.s │ │ │ │ ├── mips-n32-rels.o │ │ │ │ ├── mips-nonalloc.s │ │ │ │ ├── mips-options.o │ │ │ │ ├── mips-pic.s │ │ │ │ ├── mips-tls.s │ │ │ │ ├── no-symtab.o │ │ │ │ ├── plt-aarch64.s │ │ │ │ ├── ppc64-addr16-error.s │ │ │ │ ├── progname-ver.s │ │ │ │ ├── protected-shared.s │ │ │ │ ├── relocatable-comdat-multiple.s │ │ │ │ ├── relocatable-ehframe.s │ │ │ │ ├── relocatable-non-alloc.s │ │ │ │ ├── relocatable-tls.s │ │ │ │ ├── relocatable.s │ │ │ │ ├── relocatable2.s │ │ │ │ ├── relocation-copy-alias.s │ │ │ │ ├── relocation-copy-align-common.s │ │ │ │ ├── relocation-copy-align.s │ │ │ │ ├── relocation-copy-arm.s │ │ │ │ ├── relocation-copy-relro.s │ │ │ │ ├── relocation-copy.s │ │ │ │ ├── relocation-relative-absolute.s │ │ │ │ ├── relocation-size-shared.s │ │ │ │ ├── resolution-end.s │ │ │ │ ├── resolution-shared.s │ │ │ │ ├── resolution.s │ │ │ │ ├── rodynamic.s │ │ │ │ ├── shared-ppc64.s │ │ │ │ ├── shared.s │ │ │ │ ├── shared2-x86-64.s │ │ │ │ ├── shared2.s │ │ │ │ ├── shared3.s │ │ │ │ ├── shf-info-link.test │ │ │ │ ├── shlib-undefined-ref.s │ │ │ │ ├── sht-group-gold-r.elf │ │ │ │ ├── sht-group-gold-r.s │ │ │ │ ├── start-lib-comdat.s │ │ │ │ ├── start-lib1.s │ │ │ │ ├── start-lib2.s │ │ │ │ ├── startstop-shared2.s │ │ │ │ ├── symbol-override.s │ │ │ │ ├── symver-archive1.s │ │ │ │ ├── symver-archive2.s │ │ │ │ ├── tls-got-entry.s │ │ │ │ ├── tls-got.s │ │ │ │ ├── tls-in-archive.s │ │ │ │ ├── tls-mismatch.s │ │ │ │ ├── tls-opt-gdie.s │ │ │ │ ├── tls-opt-gdiele-i686.s │ │ │ │ ├── tls-opt-iele-i686-nopic.s │ │ │ │ ├── trace-ar1.s │ │ │ │ ├── trace-ar2.s │ │ │ │ ├── trace-symbols-foo-strong.s │ │ │ │ ├── trace-symbols-foo-weak.s │ │ │ │ ├── uabs_label.s │ │ │ │ ├── undef-debug.s │ │ │ │ ├── undef-with-plt-addr.s │ │ │ │ ├── undef.s │ │ │ │ ├── undefined-error.s │ │ │ │ ├── unknown-reloc.s │ │ │ │ ├── unresolved-symbols.s │ │ │ │ ├── use-bar.s │ │ │ │ ├── verdef-defaultver.s │ │ │ │ ├── verdef.s │ │ │ │ ├── verneed1.s │ │ │ │ ├── verneed2.s │ │ │ │ ├── version-script-err.script │ │ │ │ ├── version-script-no-warn2.s │ │ │ │ ├── version-script-weak.s │ │ │ │ ├── version-undef-sym.so │ │ │ │ ├── version-use.script │ │ │ │ ├── version-use.so │ │ │ │ ├── visibility.s │ │ │ │ ├── warn-common.s │ │ │ │ ├── warn-common2.s │ │ │ │ ├── weak-and-strong-undef.s │ │ │ │ ├── weak-undef-lazy.s │ │ │ │ ├── whole-archive.s │ │ │ │ ├── wrap-dynamic-undef.s │ │ │ │ ├── wrap-no-real.s │ │ │ │ ├── wrap-no-real2.s │ │ │ │ ├── wrap.s │ │ │ │ ├── writable-sec-plt-reloc.s │ │ │ │ ├── x86-64-relax-offset.s │ │ │ │ ├── x86-64-reloc-16-error.s │ │ │ │ ├── x86-64-reloc-16.s │ │ │ │ ├── x86-64-reloc-8-error.s │ │ │ │ ├── x86-64-reloc-8.s │ │ │ │ ├── x86-64-reloc-error.s │ │ │ │ ├── x86-64-tls-gd-got.s │ │ │ │ ├── znotext-copy-relocations.s │ │ │ │ ├── znotext-plt-relocations-protected.s │ │ │ │ ├── znotext-plt-relocations.s │ │ │ │ └── ztext-text-notext.s │ │ │ ├── aarch64-abs16.s │ │ │ ├── aarch64-abs32.s │ │ │ ├── aarch64-abs64-dyn.s │ │ │ ├── aarch64-call26-thunk.s │ │ │ ├── aarch64-condb-reloc.s │ │ │ ├── aarch64-copy.s │ │ │ ├── aarch64-copy2.s │ │ │ ├── aarch64-cortex-a53-843419-address.s │ │ │ ├── aarch64-cortex-a53-843419-cli.s │ │ │ ├── aarch64-cortex-a53-843419-large.s │ │ │ ├── aarch64-cortex-a53-843419-nopatch.s │ │ │ ├── aarch64-cortex-a53-843419-recognize.s │ │ │ ├── aarch64-cortex-a53-843419-thunk.s │ │ │ ├── aarch64-data-relocs.s │ │ │ ├── aarch64-fpic-abs16.s │ │ │ ├── aarch64-fpic-add_abs_lo12_nc.s │ │ │ ├── aarch64-fpic-adr_prel_lo21.s │ │ │ ├── aarch64-fpic-adr_prel_pg_hi21.s │ │ │ ├── aarch64-fpic-got.s │ │ │ ├── aarch64-fpic-ldst32_abs_lo12_nc.s │ │ │ ├── aarch64-fpic-ldst64_abs_lo12_nc.s │ │ │ ├── aarch64-fpic-ldst8_abs_lo12_nc.s │ │ │ ├── aarch64-fpic-prel16.s │ │ │ ├── aarch64-fpic-prel32.s │ │ │ ├── aarch64-fpic-prel64.s │ │ │ ├── aarch64-gnu-ifunc-nosym.s │ │ │ ├── aarch64-gnu-ifunc-plt.s │ │ │ ├── aarch64-gnu-ifunc.s │ │ │ ├── aarch64-got-reloc.s │ │ │ ├── aarch64-got-relocations.s │ │ │ ├── aarch64-got.s │ │ │ ├── aarch64-hi21-error.s │ │ │ ├── aarch64-jump26-thunk.s │ │ │ ├── aarch64-ldprel-lo19-invalid.s │ │ │ ├── aarch64-lo12-alignment.s │ │ │ ├── aarch64-lo21-error.s │ │ │ ├── aarch64-load-alignment.s │ │ │ ├── aarch64-prel16.s │ │ │ ├── aarch64-prel32.s │ │ │ ├── aarch64-relative.s │ │ │ ├── aarch64-relocs.s │ │ │ ├── aarch64-relro.s │ │ │ ├── aarch64-thunk-pi.s │ │ │ ├── aarch64-thunk-script.s │ │ │ ├── aarch64-thunk-section-location.s │ │ │ ├── aarch64-tls-gdie.s │ │ │ ├── aarch64-tls-gdle.s │ │ │ ├── aarch64-tls-ie.s │ │ │ ├── aarch64-tls-iele.s │ │ │ ├── aarch64-tls-le.s │ │ │ ├── aarch64-tls-pie.s │ │ │ ├── aarch64-tls-static.s │ │ │ ├── aarch64-tlsdesc.s │ │ │ ├── aarch64-tstbr14-reloc.s │ │ │ ├── aarch64-undefined-weak.s │ │ │ ├── abs-conflict.s │ │ │ ├── abs-hidden.s │ │ │ ├── allow-multiple-definition.s │ │ │ ├── allow-shlib-undefined.s │ │ │ ├── amdgpu-elf-flags-err.s │ │ │ ├── amdgpu-elf-flags.s │ │ │ ├── amdgpu-globals.s │ │ │ ├── amdgpu-kernels.s │ │ │ ├── amdgpu-relocs.s │ │ │ ├── archive.s │ │ │ ├── arm-abs32-dyn.s │ │ │ ├── arm-attributes.s │ │ │ ├── arm-bl-v6.s │ │ │ ├── arm-blx-v4t.s │ │ │ ├── arm-blx.s │ │ │ ├── arm-branch-rangethunk.s │ │ │ ├── arm-branch-undef-weak-plt-thunk.s │ │ │ ├── arm-branch.s │ │ │ ├── arm-copy.s │ │ │ ├── arm-data-prel.s │ │ │ ├── arm-data-relocs.s │ │ │ ├── arm-eabi-version.s │ │ │ ├── arm-exidx-canunwind.s │ │ │ ├── arm-exidx-dedup-and-sentinel.s │ │ │ ├── arm-exidx-dedup.s │ │ │ ├── arm-exidx-gc.s │ │ │ ├── arm-exidx-link.s │ │ │ ├── arm-exidx-order.s │ │ │ ├── arm-exidx-output.s │ │ │ ├── arm-exidx-relocatable.s │ │ │ ├── arm-exidx-sentinel-norelocatable.s │ │ │ ├── arm-exidx-sentinel-orphan.s │ │ │ ├── arm-exidx-shared.s │ │ │ ├── arm-fpic-got.s │ │ │ ├── arm-gnu-ifunc-nosym.s │ │ │ ├── arm-gnu-ifunc-plt.s │ │ │ ├── arm-gnu-ifunc.s │ │ │ ├── arm-got-relative.s │ │ │ ├── arm-gotoff.s │ │ │ ├── arm-icf-exidx.s │ │ │ ├── arm-mov-relocs.s │ │ │ ├── arm-pie-relative.s │ │ │ ├── arm-plt-reloc.s │ │ │ ├── arm-sbrel32.s │ │ │ ├── arm-static-defines.s │ │ │ ├── arm-target1.s │ │ │ ├── arm-target2.s │ │ │ ├── arm-thumb-blx.s │ │ │ ├── arm-thumb-branch-rangethunk.s │ │ │ ├── arm-thumb-branch.s │ │ │ ├── arm-thumb-condbranch-thunk.s │ │ │ ├── arm-thumb-interwork-shared.s │ │ │ ├── arm-thumb-interwork-thunk-range.s │ │ │ ├── arm-thumb-interwork-thunk.s │ │ │ ├── arm-thumb-mix-range-thunk-os.s │ │ │ ├── arm-thumb-narrow-branch-check.s │ │ │ ├── arm-thumb-no-undefined-thunk.s │ │ │ ├── arm-thumb-plt-range-thunk-os.s │ │ │ ├── arm-thumb-plt-reloc.s │ │ │ ├── arm-thumb-range-thunk-os.s │ │ │ ├── arm-thumb-thunk-empty-pass.s │ │ │ ├── arm-thumb-thunk-symbols.s │ │ │ ├── arm-thumb-undefined-weak.s │ │ │ ├── arm-thunk-edgecase.s │ │ │ ├── arm-thunk-largesection.s │ │ │ ├── arm-thunk-linkerscript-dotexpr.s │ │ │ ├── arm-thunk-linkerscript-large.s │ │ │ ├── arm-thunk-linkerscript-orphan.s │ │ │ ├── arm-thunk-linkerscript-sort.s │ │ │ ├── arm-thunk-linkerscript.s │ │ │ ├── arm-thunk-multipass.s │ │ │ ├── arm-thunk-re-add.s │ │ │ ├── arm-thunk-toolargesection.s │ │ │ ├── arm-tls-gd-nonpreemptible.s │ │ │ ├── arm-tls-gd32.s │ │ │ ├── arm-tls-ie32.s │ │ │ ├── arm-tls-ldm32.s │ │ │ ├── arm-tls-le32.s │ │ │ ├── arm-tls-norelax-gd-ie.s │ │ │ ├── arm-tls-norelax-gd-le.s │ │ │ ├── arm-tls-norelax-ie-le.s │ │ │ ├── arm-tls-norelax-ld-le.s │ │ │ ├── arm-undefined-weak.s │ │ │ ├── arm-use-r-output.s │ │ │ ├── as-needed-lazy.s │ │ │ ├── as-needed-no-reloc.s │ │ │ ├── as-needed.s │ │ │ ├── assignment-archive.s │ │ │ ├── auxiliary.s │ │ │ ├── avoid-empty-program-headers.s │ │ │ ├── bad-archive.s │ │ │ ├── basic-aarch64.s │ │ │ ├── basic-avr.s │ │ │ ├── basic-freebsd.s │ │ │ ├── basic-mips.s │ │ │ ├── basic-ppc.s │ │ │ ├── basic-sparcv9.s │ │ │ ├── basic.s │ │ │ ├── basic32.s │ │ │ ├── basic64be.s │ │ │ ├── bss-start-common.s │ │ │ ├── bss.s │ │ │ ├── bsymbolic-undef.s │ │ │ ├── bsymbolic.s │ │ │ ├── build-id.s │ │ │ ├── chroot.s │ │ │ ├── color-diagnostics.test │ │ │ ├── combrelocs.s │ │ │ ├── comdat-linkonce.s │ │ │ ├── comdat.s │ │ │ ├── comment-gc.s │ │ │ ├── common-gc.s │ │ │ ├── common-gc2.s │ │ │ ├── common-gc3.s │ │ │ ├── common.s │ │ │ ├── compatible-section-types.s │ │ │ ├── compress-debug-sections-reloc.s │ │ │ ├── compress-debug-sections.s │ │ │ ├── compressed-debug-conflict.s │ │ │ ├── compressed-debug-input.s │ │ │ ├── conflict-debug-variable.s │ │ │ ├── conflict-debug-variable2.s │ │ │ ├── conflict.s │ │ │ ├── copy-errors.s │ │ │ ├── copy-in-shared.s │ │ │ ├── copy-rel-abs.s │ │ │ ├── copy-rel-corrupted.s │ │ │ ├── copy-rel-large.s │ │ │ ├── copy-rel-pie-error.s │ │ │ ├── copy-rel-pie.s │ │ │ ├── corrupted-version-reference.s │ │ │ ├── ctors_dtors_priority.s │ │ │ ├── debug-gc.s │ │ │ ├── debug-gnu-pubnames.s │ │ │ ├── default-fill.s │ │ │ ├── default-output.s │ │ │ ├── defined-tls_get_addr.s │ │ │ ├── defsym-dynamic.s │ │ │ ├── defsym.s │ │ │ ├── discard-locals.s │ │ │ ├── discard-merge-locals.s │ │ │ ├── discard-merge-unnamed.s │ │ │ ├── discard-none.s │ │ │ ├── dont-export-hidden.s │ │ │ ├── driver-access.test │ │ │ ├── driver.test │ │ │ ├── dso-undef-size.s │ │ │ ├── dso_handle.s │ │ │ ├── dt_flags.s │ │ │ ├── dt_tags.s │ │ │ ├── dtrace-r.test │ │ │ ├── duplicated-plt-entry.s │ │ │ ├── duplicated-synthetic-sym.s │ │ │ ├── dynamic-got-rela.s │ │ │ ├── dynamic-got.s │ │ │ ├── dynamic-list-empty.s │ │ │ ├── dynamic-list-extern.s │ │ │ ├── dynamic-list-preempt.s │ │ │ ├── dynamic-list-weak-archive.s │ │ │ ├── dynamic-list-wildcard.s │ │ │ ├── dynamic-list.s │ │ │ ├── dynamic-no-rosegment.s │ │ │ ├── dynamic-reloc-in-ro.s │ │ │ ├── dynamic-reloc-index.s │ │ │ ├── dynamic-reloc-weak.s │ │ │ ├── dynamic-reloc.s │ │ │ ├── dynamic.s │ │ │ ├── dynstr-no-rosegment.s │ │ │ ├── dynsym-no-rosegment.s │ │ │ ├── dynsym-pie.s │ │ │ ├── early-exit-for-bad-paths.s │ │ │ ├── edata-etext.s │ │ │ ├── edata-no-bss.s │ │ │ ├── eh-align-cie.s │ │ │ ├── eh-frame-begin-end.s │ │ │ ├── eh-frame-dyn-rel.s │ │ │ ├── eh-frame-gc.s │ │ │ ├── eh-frame-gc2.s │ │ │ ├── eh-frame-hdr-abs-fde.s │ │ │ ├── eh-frame-hdr-augmentation.s │ │ │ ├── eh-frame-hdr-icf-fde.s │ │ │ ├── eh-frame-hdr-icf.s │ │ │ ├── eh-frame-hdr-no-out2.s │ │ │ ├── eh-frame-hdr.s │ │ │ ├── eh-frame-marker.s │ │ │ ├── eh-frame-merge.s │ │ │ ├── eh-frame-multilpe-cie.s │ │ │ ├── eh-frame-padding-no-rosegment.s │ │ │ ├── eh-frame-plt.s │ │ │ ├── eh-frame-rel.s │ │ │ ├── eh-frame-type.test │ │ │ ├── eh-frame.s │ │ │ ├── ehdr_start.s │ │ │ ├── ehframe-relocation.s │ │ │ ├── emit-relocs-gc.s │ │ │ ├── emit-relocs-merge.s │ │ │ ├── emit-relocs-mergeable-i386.s │ │ │ ├── emit-relocs-mergeable.s │ │ │ ├── emit-relocs-shared.s │ │ │ ├── emit-relocs.s │ │ │ ├── empty-archive.s │ │ │ ├── empty-pt-load.s │ │ │ ├── empty-ver.s │ │ │ ├── emulation.s │ │ │ ├── end-abs.s │ │ │ ├── end-preserve.s │ │ │ ├── end-update.s │ │ │ ├── end.s │ │ │ ├── entry.s │ │ │ ├── error-limit.test │ │ │ ├── exclude-libs.s │ │ │ ├── exclude.s │ │ │ ├── executable-undefined-ignoreall.s │ │ │ ├── executable-undefined-protected-ignoreall.s │ │ │ ├── fatal-warnings.s │ │ │ ├── file-access.s │ │ │ ├── file-sym.s │ │ │ ├── fill-trap.s │ │ │ ├── filter.s │ │ │ ├── format-binary-non-ascii.s │ │ │ ├── format-binary.test │ │ │ ├── gc-absolute.s │ │ │ ├── gc-collect-undefined.s │ │ │ ├── gc-debuginfo-tls.s │ │ │ ├── gc-merge-local-sym.s │ │ │ ├── gc-sections-alloc.s │ │ │ ├── gc-sections-eh.s │ │ │ ├── gc-sections-implicit-addend.s │ │ │ ├── gc-sections-keep-shared-start.s │ │ │ ├── gc-sections-linker-defined-symbol.s │ │ │ ├── gc-sections-local-sym.s │ │ │ ├── gc-sections-lsda.s │ │ │ ├── gc-sections-merge-addend.s │ │ │ ├── gc-sections-merge-implicit-addend.s │ │ │ ├── gc-sections-merge.s │ │ │ ├── gc-sections-metadata-startstop.s │ │ │ ├── gc-sections-metadata.s │ │ │ ├── gc-sections-metadata2.s │ │ │ ├── gc-sections-non-alloc-to-merge.s │ │ │ ├── gc-sections-print.s │ │ │ ├── gc-sections-protected.s │ │ │ ├── gc-sections-shared.s │ │ │ ├── gc-sections-synthetic.s │ │ │ ├── gc-sections-undefined.s │ │ │ ├── gc-sections-weak.s │ │ │ ├── gc-sections.s │ │ │ ├── gdb-index-base-addr.s │ │ │ ├── gdb-index-dup-types.s │ │ │ ├── gdb-index-empty.s │ │ │ ├── gdb-index-gc-sections.s │ │ │ ├── gdb-index-noranges.s │ │ │ ├── gdb-index-ranges.s │ │ │ ├── gdb-index-tls.s │ │ │ ├── gdb-index.s │ │ │ ├── global-offset-table-position-aarch64.s │ │ │ ├── global-offset-table-position-arm.s │ │ │ ├── global-offset-table-position-i386.s │ │ │ ├── global-offset-table-position-mips.s │ │ │ ├── global-offset-table-position.s │ │ │ ├── global_offset_table.s │ │ │ ├── global_offset_table_shared.s │ │ │ ├── gnu-hash-table-copy.s │ │ │ ├── gnu-hash-table-many.s │ │ │ ├── gnu-hash-table-rwsegment.s │ │ │ ├── gnu-hash-table.s │ │ │ ├── gnu-ifunc-dso.s │ │ │ ├── gnu-ifunc-dynsym.s │ │ │ ├── gnu-ifunc-dyntags.s │ │ │ ├── gnu-ifunc-gotpcrel.s │ │ │ ├── gnu-ifunc-i386.s │ │ │ ├── gnu-ifunc-nosym-i386.s │ │ │ ├── gnu-ifunc-nosym.s │ │ │ ├── gnu-ifunc-plt-i386.s │ │ │ ├── gnu-ifunc-plt.s │ │ │ ├── gnu-ifunc-relative.s │ │ │ ├── gnu-ifunc-shared.s │ │ │ ├── gnu-ifunc.s │ │ │ ├── gnu-unique.s │ │ │ ├── gnustack.s │ │ │ ├── got-aarch64.s │ │ │ ├── got-i386.s │ │ │ ├── got-plt-header.s │ │ │ ├── got.s │ │ │ ├── got32-i386-pie-rw.s │ │ │ ├── got32-i386.s │ │ │ ├── got32x-i386.s │ │ │ ├── gotpc-relax-nopic.s │ │ │ ├── gotpc-relax-und-dso.s │ │ │ ├── gotpc-relax.s │ │ │ ├── gotpcrelx.s │ │ │ ├── help.s │ │ │ ├── hidden-vis-shared.s │ │ │ ├── i386-debug-noabs.test │ │ │ ├── i386-got-and-copy.s │ │ │ ├── i386-got-value.s │ │ │ ├── i386-gotoff-shared.s │ │ │ ├── i386-gotpc-dynamic.s │ │ │ ├── i386-gotpc.s │ │ │ ├── i386-merge.s │ │ │ ├── i386-pc16.test │ │ │ ├── i386-pc8-pc16-addend.s │ │ │ ├── i386-pc8.s │ │ │ ├── i386-relative.s │ │ │ ├── i386-relax-reloc.s │ │ │ ├── i386-reloc-16.s │ │ │ ├── i386-reloc-8.s │ │ │ ├── i386-reloc-large-addend.s │ │ │ ├── i386-reloc-range.s │ │ │ ├── i386-reloc8-reloc16-addend.s │ │ │ ├── i386-retpoline-nopic.s │ │ │ ├── i386-retpoline-pic.s │ │ │ ├── i386-tls-got.s │ │ │ ├── i386-tls-ie-shared.s │ │ │ ├── i386-tls-initial-exec-local.s │ │ │ ├── icf-absolute.s │ │ │ ├── icf-comdat.s │ │ │ ├── icf-i386.s │ │ │ ├── icf-merge-sec.s │ │ │ ├── icf-merge.s │ │ │ ├── icf-non-mergeable.s │ │ │ ├── icf-none.s │ │ │ ├── icf-symbol-type.s │ │ │ ├── icf1.s │ │ │ ├── icf2.s │ │ │ ├── icf3.s │ │ │ ├── icf4.s │ │ │ ├── icf5.s │ │ │ ├── icf6.s │ │ │ ├── icf7.s │ │ │ ├── icf8.s │ │ │ ├── icf9.s │ │ │ ├── image-base.s │ │ │ ├── incompatible-ar-first.s │ │ │ ├── incompatible-section-flags.s │ │ │ ├── incompatible-section-types2.s │ │ │ ├── incompatible.s │ │ │ ├── init-fini-progbits.s │ │ │ ├── init-fini.s │ │ │ ├── init_fini_priority.s │ │ │ ├── invalid-cie-length.s │ │ │ ├── invalid-cie-length2.s │ │ │ ├── invalid-cie-length3.s │ │ │ ├── invalid-cie-length4.s │ │ │ ├── invalid-cie-length5.s │ │ │ ├── invalid-cie-reference.s │ │ │ ├── invalid-dynamic-list.test │ │ │ ├── invalid-fde-rel.s │ │ │ ├── invalid-linkerscript.test │ │ │ ├── invalid-local-symbol-in-dso.s │ │ │ ├── invalid-relocations.test │ │ │ ├── invalid-undef-section-symbol.test │ │ │ ├── invalid-z.s │ │ │ ├── invalid │ │ │ │ ├── Inputs │ │ │ │ │ ├── binding.elf │ │ │ │ │ ├── broken-relaxation-x64.elf │ │ │ │ │ ├── cie-version2.elf │ │ │ │ │ ├── common-symbol-alignment.elf │ │ │ │ │ ├── common-symbol-alignment2.elf │ │ │ │ │ ├── data-encoding.a │ │ │ │ │ ├── dynamic-section-sh_size.elf │ │ │ │ │ ├── file-class.a │ │ │ │ │ ├── invalid-e_shnum.elf │ │ │ │ │ ├── mips-invalid-options-descriptor.elf │ │ │ │ │ ├── multiple-eh-relocs.elf │ │ │ │ │ ├── section-alignment-notpow2.elf │ │ │ │ │ ├── section-index.elf │ │ │ │ │ ├── shentsize-zero.elf │ │ │ │ │ ├── sht-group.elf │ │ │ │ │ ├── symbol-index.elf │ │ │ │ │ ├── symbol-name-offset.elf │ │ │ │ │ ├── symtab-sh_info.elf │ │ │ │ │ ├── symtab-sh_info2.elf │ │ │ │ │ ├── symtab-sh_info3.elf │ │ │ │ │ ├── tls-symbol.elf │ │ │ │ │ └── too-short.elf │ │ │ │ ├── broken-relaxation-x64.test │ │ │ │ ├── common-symbol-alignment.s │ │ │ │ ├── dynamic-section-size.s │ │ │ │ ├── eh-frame-hdr-no-out.s │ │ │ │ ├── invalid-debug-relocations.test │ │ │ │ ├── invalid-e_shnum.s │ │ │ │ ├── invalid-elf.test │ │ │ │ ├── invalid-relocation-x64.test │ │ │ │ ├── merge-invalid-size.s │ │ │ │ ├── mips-invalid-options-descriptor.s │ │ │ │ ├── section-alignment.test │ │ │ │ ├── section-alignment2.s │ │ │ │ ├── sht-group.s │ │ │ │ ├── symbol-index.s │ │ │ │ ├── symbol-name.s │ │ │ │ ├── symtab-sh-info.s │ │ │ │ ├── symtab-symbols.test │ │ │ │ ├── tls-symbol.s │ │ │ │ ├── too-short.s │ │ │ │ └── verdef-no-symtab.test │ │ │ ├── libsearch.s │ │ │ ├── linkerscript │ │ │ │ ├── Inputs │ │ │ │ │ ├── comdat-gc.s │ │ │ │ │ ├── common-filespec1.s │ │ │ │ │ ├── common-filespec2.s │ │ │ │ │ ├── compress-debug-sections.s │ │ │ │ │ ├── copy-rel-symbol-value.s │ │ │ │ │ ├── exclude-multiple1.s │ │ │ │ │ ├── exclude-multiple2.s │ │ │ │ │ ├── filename-spec.s │ │ │ │ │ ├── implicit-program-header.script │ │ │ │ │ ├── include.s │ │ │ │ │ ├── keep.s │ │ │ │ │ ├── lazy-symbols.s │ │ │ │ │ ├── libsearch-dyn.s │ │ │ │ │ ├── libsearch-st.s │ │ │ │ │ ├── merge-sections-reloc.s │ │ │ │ │ ├── notinclude.s │ │ │ │ │ ├── provide-shared.s │ │ │ │ │ ├── segment-start.script │ │ │ │ │ ├── shared.s │ │ │ │ │ ├── sort-nested.s │ │ │ │ │ ├── sort.s │ │ │ │ │ └── symbol-reserved.script │ │ │ │ ├── absolute-expr.s │ │ │ │ ├── absolute.s │ │ │ │ ├── absolute2.s │ │ │ │ ├── addr-zero.s │ │ │ │ ├── addr.s │ │ │ │ ├── align-empty.s │ │ │ │ ├── align-section-offset.s │ │ │ │ ├── align-section.s │ │ │ │ ├── align.s │ │ │ │ ├── alignof.s │ │ │ │ ├── alternate-sections.s │ │ │ │ ├── arm-exidx-order.s │ │ │ │ ├── arm-exidx-phdrs.s │ │ │ │ ├── arm-exidx-sentinel-and-assignment.s │ │ │ │ ├── arm-lscript.s │ │ │ │ ├── assert.s │ │ │ │ ├── at-addr.s │ │ │ │ ├── at-self-reference.s │ │ │ │ ├── at.s │ │ │ │ ├── at2.s │ │ │ │ ├── at3.s │ │ │ │ ├── bss-fill.s │ │ │ │ ├── comdat-gc.s │ │ │ │ ├── common-assign.s │ │ │ │ ├── common-exclude.s │ │ │ │ ├── common-filespec.s │ │ │ │ ├── common.s │ │ │ │ ├── compress-debug-sections-custom.s │ │ │ │ ├── compress-debug-sections.s │ │ │ │ ├── constructor.s │ │ │ │ ├── copy-rel-symbol-value-err.s │ │ │ │ ├── copy-rel-symbol-value.s │ │ │ │ ├── data-commands-gc.s │ │ │ │ ├── data-commands.s │ │ │ │ ├── data-segment-relro.s │ │ │ │ ├── define.s │ │ │ │ ├── diagnostic.s │ │ │ │ ├── discard-interp.s │ │ │ │ ├── discard-print-gc.s │ │ │ │ ├── discard-section-err.s │ │ │ │ ├── discard-section-metadata.s │ │ │ │ ├── discard-section.s │ │ │ │ ├── dot-is-not-abs.s │ │ │ │ ├── double-bss.s │ │ │ │ ├── dynamic-sym.s │ │ │ │ ├── dynamic.s │ │ │ │ ├── early-assign-symbol.s │ │ │ │ ├── edata-etext.s │ │ │ │ ├── eh-frame-hdr.s │ │ │ │ ├── eh-frame-reloc-out-of-range.s │ │ │ │ ├── eh-frame.s │ │ │ │ ├── ehdr_start.s │ │ │ │ ├── emit-reloc-section-names.s │ │ │ │ ├── emit-reloc.s │ │ │ │ ├── emit-relocs-discard.s │ │ │ │ ├── emit-relocs-ehframe-discard.s │ │ │ │ ├── emit-relocs-multiple.s │ │ │ │ ├── empty-load.s │ │ │ │ ├── empty-tls.s │ │ │ │ ├── entry.s │ │ │ │ ├── exclude-multiple.s │ │ │ │ ├── excludefile.s │ │ │ │ ├── exidx-crash.s │ │ │ │ ├── expr-invalid-sec.s │ │ │ │ ├── expr-sections.s │ │ │ │ ├── extend-pt-load.s │ │ │ │ ├── filename-spec.s │ │ │ │ ├── fill-exec-sections.s │ │ │ │ ├── fill.s │ │ │ │ ├── got-write-offset.s │ │ │ │ ├── group.s │ │ │ │ ├── header-addr.s │ │ │ │ ├── header-phdr.s │ │ │ │ ├── huge-temporary-file.s │ │ │ │ ├── image-base.s │ │ │ │ ├── implicit-program-header.s │ │ │ │ ├── include-cycle.s │ │ │ │ ├── input-order.s │ │ │ │ ├── input-sec-dup.s │ │ │ │ ├── lazy-symbols.s │ │ │ │ ├── linker-script-in-search-path.s │ │ │ │ ├── linkerscript.s │ │ │ │ ├── loadaddr.s │ │ │ │ ├── locationcountererr.s │ │ │ │ ├── locationcountererr2.s │ │ │ │ ├── memory-at.s │ │ │ │ ├── memory-err.s │ │ │ │ ├── memory.s │ │ │ │ ├── memory2.s │ │ │ │ ├── memory3.s │ │ │ │ ├── merge-header-load.s │ │ │ │ ├── merge-sections-reloc.s │ │ │ │ ├── merge-sections-syms.s │ │ │ │ ├── merge-sections.s │ │ │ │ ├── multi-sections-constraint.s │ │ │ │ ├── multiple-tbss.s │ │ │ │ ├── no-pt-load.s │ │ │ │ ├── no-space.s │ │ │ │ ├── nobits-offset.s │ │ │ │ ├── noload.s │ │ │ │ ├── non-absolute.s │ │ │ │ ├── non-absolute2.s │ │ │ │ ├── non-alloc-segment.s │ │ │ │ ├── non-alloc.s │ │ │ │ ├── numbers.s │ │ │ │ ├── obj-symbol-value.s │ │ │ │ ├── openbsd-bootdata.s │ │ │ │ ├── openbsd-randomize.s │ │ │ │ ├── openbsd-wxneeded.s │ │ │ │ ├── operators.s │ │ │ │ ├── orphan-align.s │ │ │ │ ├── orphan-discard.s │ │ │ │ ├── orphan-end.s │ │ │ │ ├── orphan-first-cmd.s │ │ │ │ ├── orphan-phdrs.s │ │ │ │ ├── orphan-report.s │ │ │ │ ├── orphan.s │ │ │ │ ├── orphans.s │ │ │ │ ├── ouputformat.s │ │ │ │ ├── out-of-order.s │ │ │ │ ├── output-too-large.s │ │ │ │ ├── outputarch.s │ │ │ │ ├── outsections-addr.s │ │ │ │ ├── page-size-align.s │ │ │ │ ├── page-size.s │ │ │ │ ├── parse-section-in-addr.s │ │ │ │ ├── phdr-check.s │ │ │ │ ├── phdrs-flags.s │ │ │ │ ├── phdrs.s │ │ │ │ ├── provide-shared.s │ │ │ │ ├── pt_gnu_eh_frame.s │ │ │ │ ├── region-alias.s │ │ │ │ ├── repsection-symbol.s │ │ │ │ ├── repsection-va.s │ │ │ │ ├── rosegment.s │ │ │ │ ├── searchdir.s │ │ │ │ ├── section-align.s │ │ │ │ ├── section-metadata.s │ │ │ │ ├── sections-constraint.s │ │ │ │ ├── sections-constraint2.s │ │ │ │ ├── sections-constraint3.s │ │ │ │ ├── sections-constraint4.s │ │ │ │ ├── sections-constraint5.s │ │ │ │ ├── sections-gc.s │ │ │ │ ├── sections-gc2.s │ │ │ │ ├── sections-keep.s │ │ │ │ ├── sections-padding.s │ │ │ │ ├── sections-sort.s │ │ │ │ ├── sections.s │ │ │ │ ├── segment-headers.s │ │ │ │ ├── segment-none.s │ │ │ │ ├── segment-start.s │ │ │ │ ├── sizeof.s │ │ │ │ ├── sizeofheaders.s │ │ │ │ ├── sort-constructors.s │ │ │ │ ├── sort-init.s │ │ │ │ ├── sort-nested.s │ │ │ │ ├── sort-non-script.s │ │ │ │ ├── sort.s │ │ │ │ ├── sort2.s │ │ │ │ ├── start-end.s │ │ │ │ ├── subalign.s │ │ │ │ ├── symbol-assignexpr.s │ │ │ │ ├── symbol-conflict.s │ │ │ │ ├── symbol-memoryexpr.s │ │ │ │ ├── symbol-only-flags.s │ │ │ │ ├── symbol-only.s │ │ │ │ ├── symbol-ordering-file.s │ │ │ │ ├── symbol-reserved.s │ │ │ │ ├── symbolreferenced.s │ │ │ │ ├── symbols-non-alloc.s │ │ │ │ ├── symbols-synthetic.s │ │ │ │ ├── symbols.s │ │ │ │ ├── tbss.s │ │ │ │ ├── thunk-gen-mips.s │ │ │ │ ├── ttext-script.s │ │ │ │ ├── undef.s │ │ │ │ ├── unused-synthetic.s │ │ │ │ ├── va.s │ │ │ │ ├── version-linker-symbol.s │ │ │ │ ├── visibility.s │ │ │ │ ├── wildcards.s │ │ │ │ └── wildcards2.s │ │ │ ├── lit.local.cfg │ │ │ ├── llvm33-rela-outside-group.s │ │ │ ├── local-dynamic.s │ │ │ ├── local-got-pie.s │ │ │ ├── local-got-shared.s │ │ │ ├── local-got.s │ │ │ ├── local-undefined-symbol.s │ │ │ ├── local.s │ │ │ ├── lto-plugin-ignore.s │ │ │ ├── lto │ │ │ │ ├── Inputs │ │ │ │ │ ├── archive-2.ll │ │ │ │ │ ├── archive-3.ll │ │ │ │ │ ├── archive.ll │ │ │ │ │ ├── available-externally.ll │ │ │ │ │ ├── cache.ll │ │ │ │ │ ├── comdat.s │ │ │ │ │ ├── common.s │ │ │ │ │ ├── common3.ll │ │ │ │ │ ├── data-ordering-lto.ll │ │ │ │ │ ├── defsym-bar.ll │ │ │ │ │ ├── drop-debug-info.bc │ │ │ │ │ ├── drop-linkage.ll │ │ │ │ │ ├── duplicated-name.ll │ │ │ │ │ ├── dynsym.s │ │ │ │ │ ├── internalize-exportdyn.ll │ │ │ │ │ ├── internalize-undef.ll │ │ │ │ │ ├── irmover-error.ll │ │ │ │ │ ├── linker-script-symbols-ipo.ll │ │ │ │ │ ├── linkonce-odr.ll │ │ │ │ │ ├── linkonce.ll │ │ │ │ │ ├── relocation-model-pic.ll │ │ │ │ │ ├── resolution.s │ │ │ │ │ ├── save-temps.ll │ │ │ │ │ ├── shared.s │ │ │ │ │ ├── start-lib1.ll │ │ │ │ │ ├── start-lib2.ll │ │ │ │ │ ├── symbol-ordering-lto.ll │ │ │ │ │ ├── thin1.ll │ │ │ │ │ ├── thin2.ll │ │ │ │ │ ├── thinlto.ll │ │ │ │ │ ├── tls-mixed.s │ │ │ │ │ ├── type-merge.ll │ │ │ │ │ ├── type-merge2.ll │ │ │ │ │ ├── undef-mixed.s │ │ │ │ │ ├── unnamed-addr-drop.ll │ │ │ │ │ ├── unnamed-addr-lib.s │ │ │ │ │ ├── visibility.s │ │ │ │ │ └── wrap-bar.ll │ │ │ │ ├── archive-2.ll │ │ │ │ ├── archive-3.ll │ │ │ │ ├── archive-no-index.ll │ │ │ │ ├── archive.ll │ │ │ │ ├── asmundef.ll │ │ │ │ ├── available-externally.ll │ │ │ │ ├── bitcode-nodatalayout.ll │ │ │ │ ├── cache.ll │ │ │ │ ├── codemodel.ll │ │ │ │ ├── combined-lto-object-name.ll │ │ │ │ ├── comdat.ll │ │ │ │ ├── comdat2.ll │ │ │ │ ├── common.ll │ │ │ │ ├── common2.ll │ │ │ │ ├── common3.ll │ │ │ │ ├── ctors.ll │ │ │ │ ├── data-ordering-lto.s │ │ │ │ ├── defsym.ll │ │ │ │ ├── discard-value-names.ll │ │ │ │ ├── drop-debug-info.ll │ │ │ │ ├── drop-linkage.ll │ │ │ │ ├── duplicated-name.ll │ │ │ │ ├── duplicated.ll │ │ │ │ ├── dynamic-list.ll │ │ │ │ ├── dynsym.ll │ │ │ │ ├── inline-asm.ll │ │ │ │ ├── internalize-basic.ll │ │ │ │ ├── internalize-exportdyn.ll │ │ │ │ ├── internalize-llvmused.ll │ │ │ │ ├── internalize-undef.ll │ │ │ │ ├── internalize-version-script.ll │ │ │ │ ├── irmover-error.ll │ │ │ │ ├── keep-undefined.ll │ │ │ │ ├── linkage.ll │ │ │ │ ├── linker-script-symbols-assign.ll │ │ │ │ ├── linker-script-symbols-ipo.ll │ │ │ │ ├── linker-script-symbols.ll │ │ │ │ ├── linkonce-odr.ll │ │ │ │ ├── linkonce.ll │ │ │ │ ├── lto-start.ll │ │ │ │ ├── ltopasses-basic.ll │ │ │ │ ├── ltopasses-custom.ll │ │ │ │ ├── metadata.ll │ │ │ │ ├── mix-platforms.ll │ │ │ │ ├── module-asm.ll │ │ │ │ ├── opt-level.ll │ │ │ │ ├── opt-remarks.ll │ │ │ │ ├── parallel-internalize.ll │ │ │ │ ├── parallel.ll │ │ │ │ ├── pic.ll │ │ │ │ ├── relax-relocs.ll │ │ │ │ ├── relocatable.ll │ │ │ │ ├── relocation-model.ll │ │ │ │ ├── resolution.ll │ │ │ │ ├── save-temps.ll │ │ │ │ ├── section-name.ll │ │ │ │ ├── shlib-undefined.ll │ │ │ │ ├── start-lib.ll │ │ │ │ ├── symbol-ordering-lto.s │ │ │ │ ├── thin-archivecollision.ll │ │ │ │ ├── thinlto.ll │ │ │ │ ├── timepasses.ll │ │ │ │ ├── tls-mixed.ll │ │ │ │ ├── tls-preserve.ll │ │ │ │ ├── type-merge.ll │ │ │ │ ├── type-merge2.ll │ │ │ │ ├── undef-mixed.ll │ │ │ │ ├── undef-weak.ll │ │ │ │ ├── undef.ll │ │ │ │ ├── undefined-puts.ll │ │ │ │ ├── unnamed-addr-comdat.ll │ │ │ │ ├── unnamed-addr-drop.ll │ │ │ │ ├── unnamed-addr-lib.ll │ │ │ │ ├── unnamed-addr.ll │ │ │ │ ├── verify-invalid.ll │ │ │ │ ├── version-script.ll │ │ │ │ ├── visibility.ll │ │ │ │ ├── weak.ll │ │ │ │ ├── wrap-1.ll │ │ │ │ └── wrap-2.ll │ │ │ ├── many-alloc-sections.s │ │ │ ├── many-sections.s │ │ │ ├── map-file.s │ │ │ ├── map-gc-sections.s │ │ │ ├── merge-align.s │ │ │ ├── merge-entsize.s │ │ │ ├── merge-reloc.s │ │ │ ├── merge-section-types.s │ │ │ ├── merge-shared-str.s │ │ │ ├── merge-shared.s │ │ │ ├── merge-string-align.s │ │ │ ├── merge-string-empty.s │ │ │ ├── merge-string-error.s │ │ │ ├── merge-string-no-null.s │ │ │ ├── merge-string.s │ │ │ ├── merge-sym.s │ │ │ ├── merge.s │ │ │ ├── mips-26-mask.s │ │ │ ├── mips-26-n32-n64.s │ │ │ ├── mips-26.s │ │ │ ├── mips-32.s │ │ │ ├── mips-64-disp.s │ │ │ ├── mips-64-got.s │ │ │ ├── mips-64-gprel-so.s │ │ │ ├── mips-64-rels.s │ │ │ ├── mips-64.s │ │ │ ├── mips-align-err.s │ │ │ ├── mips-call-hilo.s │ │ │ ├── mips-call16.s │ │ │ ├── mips-dynamic.s │ │ │ ├── mips-dynsym-sort.s │ │ │ ├── mips-elf-flags-err.s │ │ │ ├── mips-elf-flags.s │ │ │ ├── mips-gnu-hash.s │ │ │ ├── mips-got-and-copy.s │ │ │ ├── mips-got-extsym.s │ │ │ ├── mips-got-hilo.s │ │ │ ├── mips-got-page-script.s │ │ │ ├── mips-got-page.s │ │ │ ├── mips-got-redundant.s │ │ │ ├── mips-got-relocs.s │ │ │ ├── mips-got-script.s │ │ │ ├── mips-got-string.s │ │ │ ├── mips-got-weak.s │ │ │ ├── mips-got16-relocatable.s │ │ │ ├── mips-got16.s │ │ │ ├── mips-gp-disp-ver.s │ │ │ ├── mips-gp-disp.s │ │ │ ├── mips-gp-ext.s │ │ │ ├── mips-gp-local.s │ │ │ ├── mips-gp-lowest.s │ │ │ ├── mips-gprel-sec.s │ │ │ ├── mips-gprel32-relocs-gp0.s │ │ │ ├── mips-gprel32-relocs.s │ │ │ ├── mips-higher-highest.s │ │ │ ├── mips-hilo-gp-disp.s │ │ │ ├── mips-hilo-hi-only.s │ │ │ ├── mips-hilo.s │ │ │ ├── mips-jalr.test │ │ │ ├── mips-lo16-not-relative.s │ │ │ ├── mips-merge-abiflags.s │ │ │ ├── mips-micro-got.s │ │ │ ├── mips-micro-got64.s │ │ │ ├── mips-micro-jal.s │ │ │ ├── mips-micro-plt.s │ │ │ ├── mips-micro-relocs.s │ │ │ ├── mips-micro-thunks.s │ │ │ ├── mips-n32-emul.s │ │ │ ├── mips-n32-rels.s │ │ │ ├── mips-no-objects.s │ │ │ ├── mips-nonalloc.s │ │ │ ├── mips-npic-call-pic-os.s │ │ │ ├── mips-npic-call-pic-script.s │ │ │ ├── mips-npic-call-pic.s │ │ │ ├── mips-options-r.test │ │ │ ├── mips-options.s │ │ │ ├── mips-out-of-bounds-call16-reloc.s │ │ │ ├── mips-pc-relocs.s │ │ │ ├── mips-plt-copy.s │ │ │ ├── mips-plt-r6.s │ │ │ ├── mips-reginfo.s │ │ │ ├── mips-relocatable.s │ │ │ ├── mips-sto-pic-flag.s │ │ │ ├── mips-sto-plt.s │ │ │ ├── mips-tls-64.s │ │ │ ├── mips-tls-hilo.s │ │ │ ├── mips-tls-static-64.s │ │ │ ├── mips-tls-static.s │ │ │ ├── mips-tls.s │ │ │ ├── mips-xgot-order.s │ │ │ ├── mips64-eh-abs-reloc.s │ │ │ ├── new-dtags.test │ │ │ ├── no-augmentation.s │ │ │ ├── no-dynamic-linker.s │ │ │ ├── no-inhibit-exec.s │ │ │ ├── no-merge.s │ │ │ ├── no-obj.s │ │ │ ├── no-plt-shared.s │ │ │ ├── no-soname.s │ │ │ ├── no-symtab.s │ │ │ ├── no-undefined.s │ │ │ ├── non-abs-reloc.s │ │ │ ├── noplt-pie.s │ │ │ ├── note-contiguous.s │ │ │ ├── note-loadaddr.c │ │ │ ├── note-multiple.s │ │ │ ├── note.s │ │ │ ├── oformat-binary-ttext.s │ │ │ ├── oformat-binary.s │ │ │ ├── openbsd-randomize.s │ │ │ ├── openbsd-wxneeded.s │ │ │ ├── output-section.s │ │ │ ├── pack-dyn-relocs.s │ │ │ ├── phdr-align.s │ │ │ ├── pie-weak.s │ │ │ ├── pie.s │ │ │ ├── plt-aarch64.s │ │ │ ├── plt-i686.s │ │ │ ├── plt.s │ │ │ ├── ppc-relocs.s │ │ │ ├── ppc64-addr16-error.s │ │ │ ├── ppc64-rel-calls.s │ │ │ ├── ppc64-relocs.s │ │ │ ├── ppc64-shared-rel-toc.s │ │ │ ├── ppc64-toc-restore.s │ │ │ ├── ppc64-weak-undef-call-shared.s │ │ │ ├── ppc64-weak-undef-call.s │ │ │ ├── pr34660.s │ │ │ ├── pr34872.s │ │ │ ├── pre_init_fini_array.s │ │ │ ├── pre_init_fini_array_missing.s │ │ │ ├── progname.s │ │ │ ├── program-header-layout.s │ │ │ ├── protected-shared.s │ │ │ ├── rel-offset.s │ │ │ ├── relative-dynamic-reloc-pie.s │ │ │ ├── relative-dynamic-reloc-ppc64.s │ │ │ ├── relative-dynamic-reloc.s │ │ │ ├── relocatable-bss.s │ │ │ ├── relocatable-comdat-multiple.s │ │ │ ├── relocatable-comdat.s │ │ │ ├── relocatable-comdat2.s │ │ │ ├── relocatable-comment.s │ │ │ ├── relocatable-common.s │ │ │ ├── relocatable-compressed-input.s │ │ │ ├── relocatable-eh-frame-hdr.s │ │ │ ├── relocatable-eh-frame.s │ │ │ ├── relocatable-ehframe.s │ │ │ ├── relocatable-empty-archive.s │ │ │ ├── relocatable-local-sym.s │ │ │ ├── relocatable-non-alloc.s │ │ │ ├── relocatable-reloc.s │ │ │ ├── relocatable-script.s │ │ │ ├── relocatable-section-symbol.s │ │ │ ├── relocatable-sections.s │ │ │ ├── relocatable-symbol-name.s │ │ │ ├── relocatable-symbols.s │ │ │ ├── relocatable-tls.s │ │ │ ├── relocatable-versioned.s │ │ │ ├── relocatable-visibility.s │ │ │ ├── relocatable.s │ │ │ ├── relocation-absolute.s │ │ │ ├── relocation-b-aarch64.test │ │ │ ├── relocation-common.s │ │ │ ├── relocation-copy-alias.s │ │ │ ├── relocation-copy-align-common.s │ │ │ ├── relocation-copy-align.s │ │ │ ├── relocation-copy-flags.s │ │ │ ├── relocation-copy-i686.s │ │ │ ├── relocation-copy-relro.s │ │ │ ├── relocation-copy.s │ │ │ ├── relocation-dtrace.test │ │ │ ├── relocation-group.test │ │ │ ├── relocation-i686.s │ │ │ ├── relocation-in-merge.s │ │ │ ├── relocation-local.s │ │ │ ├── relocation-nocopy.s │ │ │ ├── relocation-non-alloc.s │ │ │ ├── relocation-none-aarch64.test │ │ │ ├── relocation-none-i686.test │ │ │ ├── relocation-past-merge-end.s │ │ │ ├── relocation-relative-absolute.s │ │ │ ├── relocation-relative-synthetic.s │ │ │ ├── relocation-relative-weak.s │ │ │ ├── relocation-shared.s │ │ │ ├── relocation-size-err.s │ │ │ ├── relocation-size-shared.s │ │ │ ├── relocation-size.s │ │ │ ├── relocation-undefined-weak.s │ │ │ ├── relocation.s │ │ │ ├── relro-copyrel-bss-script.s │ │ │ ├── relro-non-contiguous-script-data.s │ │ │ ├── relro-non-contiguous.s │ │ │ ├── relro-omagic.s │ │ │ ├── relro-script.s │ │ │ ├── relro-tls.s │ │ │ ├── relro.s │ │ │ ├── reproduce-backslash.s │ │ │ ├── reproduce-error.s │ │ │ ├── reproduce-linkerscript.s │ │ │ ├── reproduce-thin-archive.s │ │ │ ├── reproduce-windows.s │ │ │ ├── reproduce-windows2.s │ │ │ ├── reproduce.s │ │ │ ├── resolution-end.s │ │ │ ├── resolution-shared.s │ │ │ ├── resolution.s │ │ │ ├── retain-symbols-file.s │ │ │ ├── retain-und.s │ │ │ ├── rodynamic.s │ │ │ ├── section-align-0.test │ │ │ ├── section-layout.s │ │ │ ├── section-metadata-err.s │ │ │ ├── section-name.s │ │ │ ├── section-symbol.s │ │ │ ├── section-symbols.test │ │ │ ├── sectionstart-noallochdr.s │ │ │ ├── sectionstart.s │ │ │ ├── segments.s │ │ │ ├── shared-be.s │ │ │ ├── shared-lazy.s │ │ │ ├── shared.s │ │ │ ├── shf-info-link.test │ │ │ ├── shlib-undefined-shared.s │ │ │ ├── sht-group-gold-r.test │ │ │ ├── silent-ignore.test │ │ │ ├── soname.s │ │ │ ├── soname2.s │ │ │ ├── sort-norosegment.s │ │ │ ├── splitstacks.s │ │ │ ├── start-lib-comdat.s │ │ │ ├── start-lib.s │ │ │ ├── startstop-gccollect.s │ │ │ ├── startstop-shared.s │ │ │ ├── startstop-shared2.s │ │ │ ├── startstop.s │ │ │ ├── static-with-export-dynamic.s │ │ │ ├── string-gc.s │ │ │ ├── string-table.s │ │ │ ├── strip-all.s │ │ │ ├── strip-debug.s │ │ │ ├── symbol-ordering-file.s │ │ │ ├── symbol-ordering-file2.s │ │ │ ├── symbol-override.s │ │ │ ├── symbols.s │ │ │ ├── symver-archive.s │ │ │ ├── synthetic-got.s │ │ │ ├── sysroot.s │ │ │ ├── sysv-hash-no-rosegment.s │ │ │ ├── tail-merge-string-align.s │ │ │ ├── tls-align.s │ │ │ ├── tls-archive.s │ │ │ ├── tls-dynamic-i686.s │ │ │ ├── tls-dynamic.s │ │ │ ├── tls-error.s │ │ │ ├── tls-got-entry.s │ │ │ ├── tls-got.s │ │ │ ├── tls-i686.s │ │ │ ├── tls-in-archive.s │ │ │ ├── tls-initial-exec-local.s │ │ │ ├── tls-mismatch.s │ │ │ ├── tls-offset.s │ │ │ ├── tls-opt-gdie.s │ │ │ ├── tls-opt-gdiele-i686.s │ │ │ ├── tls-opt-i686.s │ │ │ ├── tls-opt-iele-i686-nopic.s │ │ │ ├── tls-opt-local.s │ │ │ ├── tls-opt-no-plt.s │ │ │ ├── tls-opt.s │ │ │ ├── tls-relocatable.s │ │ │ ├── tls-static.s │ │ │ ├── tls-two-relocs.s │ │ │ ├── tls-weak-undef.s │ │ │ ├── tls.s │ │ │ ├── trace-ar.s │ │ │ ├── trace-symbols.s │ │ │ ├── trace.s │ │ │ ├── ttext-tdata-tbss.s │ │ │ ├── typed-undef.s │ │ │ ├── undef-broken-debug.test │ │ │ ├── undef-shared.s │ │ │ ├── undef-start.s │ │ │ ├── undef-version-script.s │ │ │ ├── undef-with-plt-addr-i686.s │ │ │ ├── undef-with-plt-addr.s │ │ │ ├── undef.s │ │ │ ├── undefined-opt.s │ │ │ ├── undefined-versioned-symbol.s │ │ │ ├── unresolved-symbols.s │ │ │ ├── user_def_init_array_start.s │ │ │ ├── verdef-defaultver.s │ │ │ ├── verdef-dependency.s │ │ │ ├── verdef.s │ │ │ ├── verneed-as-needed-weak.s │ │ │ ├── verneed-local.s │ │ │ ├── verneed.s │ │ │ ├── version-script-anonymous-local.s │ │ │ ├── version-script-complex-wildcards.s │ │ │ ├── version-script-copy-rel.s │ │ │ ├── version-script-err.s │ │ │ ├── version-script-extern-exact.s │ │ │ ├── version-script-extern-wildcards-anon.s │ │ │ ├── version-script-extern-wildcards.s │ │ │ ├── version-script-extern.s │ │ │ ├── version-script-glob.s │ │ │ ├── version-script-hide-so-symbol.s │ │ │ ├── version-script-locals-extern.s │ │ │ ├── version-script-locals.s │ │ │ ├── version-script-missing.s │ │ │ ├── version-script-no-warn.s │ │ │ ├── version-script-no-warn2.s │ │ │ ├── version-script-noundef.s │ │ │ ├── version-script-symver.s │ │ │ ├── version-script-symver2.s │ │ │ ├── version-script-twice.s │ │ │ ├── version-script-undef-version.s │ │ │ ├── version-script-weak.s │ │ │ ├── version-script.s │ │ │ ├── version-symbol-error.s │ │ │ ├── version-undef-sym.s │ │ │ ├── version-use.s │ │ │ ├── version-wildcard.test │ │ │ ├── visibility.s │ │ │ ├── warn-common.s │ │ │ ├── warn-unresolved-symbols-hidden.s │ │ │ ├── warn-unresolved-symbols.s │ │ │ ├── weak-and-strong-undef.s │ │ │ ├── weak-entry.s │ │ │ ├── weak-undef-export.s │ │ │ ├── weak-undef-hidden.s │ │ │ ├── weak-undef-lazy.s │ │ │ ├── weak-undef-rw.s │ │ │ ├── weak-undef-shared.s │ │ │ ├── weak-undef-val.s │ │ │ ├── weak-undef.s │ │ │ ├── whole-archive.s │ │ │ ├── wrap-dynamic-undef.s │ │ │ ├── wrap-no-real.s │ │ │ ├── wrap.s │ │ │ ├── writable-merge.s │ │ │ ├── writable-sec-plt-reloc.s │ │ │ ├── x86-64-dyn-rel-error.s │ │ │ ├── x86-64-dyn-rel-error2.s │ │ │ ├── x86-64-rela.s │ │ │ ├── x86-64-relax-got-abs.s │ │ │ ├── x86-64-relax-offset.s │ │ │ ├── x86-64-reloc-16.s │ │ │ ├── x86-64-reloc-32-fpic.s │ │ │ ├── x86-64-reloc-8.s │ │ │ ├── x86-64-reloc-error.s │ │ │ ├── x86-64-reloc-pc32-fpic.s │ │ │ ├── x86-64-reloc-range.s │ │ │ ├── x86-64-reloc-tpoff32-fpic.s │ │ │ ├── x86-64-retpoline-znow.s │ │ │ ├── x86-64-retpoline.s │ │ │ ├── x86-64-tls-gd-got.s │ │ │ ├── x86-64-tls-gd-local.s │ │ │ ├── x86-64-tls-pie.s │ │ │ ├── zdefs.s │ │ │ ├── znotext-copy-relocation.s │ │ │ ├── znotext-plt-relocations-protected.s │ │ │ ├── znotext-plt-relocations.s │ │ │ ├── znotext-weak-undef.s │ │ │ ├── zstack-size.s │ │ │ └── ztext-text-notext.s │ │ ├── MinGW │ │ │ ├── driver.test │ │ │ └── lib.test │ │ ├── Unit │ │ │ ├── lit.cfg.py │ │ │ └── lit.site.cfg.py.in │ │ ├── darwin │ │ │ ├── Inputs │ │ │ │ ├── native-and-mach-o.objtxt │ │ │ │ └── native-and-mach-o2.objtxt │ │ │ ├── cmdline-objc_gc.objtxt │ │ │ ├── cmdline-objc_gc_compaction.objtxt │ │ │ ├── cmdline-objc_gc_only.objtxt │ │ │ └── native-and-mach-o.objtxt │ │ ├── lit.cfg.py │ │ ├── lit.site.cfg.py.in │ │ ├── mach-o │ │ │ ├── Inputs │ │ │ │ ├── DependencyDump.py │ │ │ │ ├── PIE.yaml │ │ │ │ ├── arm-interworking.yaml │ │ │ │ ├── arm-shims.yaml │ │ │ │ ├── arm64 │ │ │ │ │ └── libSystem.yaml │ │ │ │ ├── armv7 │ │ │ │ │ └── libSystem.yaml │ │ │ │ ├── bar.yaml │ │ │ │ ├── cstring-sections.yaml │ │ │ │ ├── exported_symbols_list.exp │ │ │ │ ├── full.filelist │ │ │ │ ├── got-order.yaml │ │ │ │ ├── got-order2.yaml │ │ │ │ ├── hello-world-arm64.yaml │ │ │ │ ├── hello-world-armv6.yaml │ │ │ │ ├── hello-world-armv7.yaml │ │ │ │ ├── hello-world-x86.yaml │ │ │ │ ├── hello-world-x86_64.yaml │ │ │ │ ├── hw.raw_bytes │ │ │ │ ├── interposing-section.yaml │ │ │ │ ├── lazy-bind-x86_64-2.yaml │ │ │ │ ├── lazy-bind-x86_64-3.yaml │ │ │ │ ├── lazy-bind-x86_64.yaml │ │ │ │ ├── lib-search-paths │ │ │ │ │ └── usr │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── libmyshared.dylib │ │ │ │ │ │ └── libmystatic.a │ │ │ │ │ │ └── local │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── file.o │ │ │ │ ├── libbar.a │ │ │ │ ├── libfoo.a │ │ │ │ ├── linker-as-ld.yaml │ │ │ │ ├── no-version-min-load-command-object.yaml │ │ │ │ ├── order_file-basic.order │ │ │ │ ├── partial.filelist │ │ │ │ ├── re-exported-dylib-ordinal.yaml │ │ │ │ ├── re-exported-dylib-ordinal2.yaml │ │ │ │ ├── re-exported-dylib-ordinal3.yaml │ │ │ │ ├── swift-version-1.yaml │ │ │ │ ├── unwind-info-simple-arm64.yaml │ │ │ │ ├── use-dylib-install-names.yaml │ │ │ │ ├── use-simple-dylib.yaml │ │ │ │ ├── write-final-sections.yaml │ │ │ │ ├── wrong-arch-error.yaml │ │ │ │ ├── x86 │ │ │ │ │ └── libSystem.yaml │ │ │ │ └── x86_64 │ │ │ │ │ └── libSystem.yaml │ │ │ ├── PIE.yaml │ │ │ ├── align_text.yaml │ │ │ ├── arm-interworking-movw.yaml │ │ │ ├── arm-interworking.yaml │ │ │ ├── arm-shims.yaml │ │ │ ├── arm-subsections-via-symbols.yaml │ │ │ ├── arm64-reloc-negDelta32-fixup.yaml │ │ │ ├── arm64-relocs-errors-delta64-offset.yaml │ │ │ ├── arm64-section-order.yaml │ │ │ ├── bind-opcodes.yaml │ │ │ ├── cstring-sections.yaml │ │ │ ├── data-in-code-load-command.yaml │ │ │ ├── data-only-dylib.yaml │ │ │ ├── dead-strip-globals.yaml │ │ │ ├── debug-syms.yaml │ │ │ ├── demangle.yaml │ │ │ ├── dependency_info.yaml │ │ │ ├── do-not-emit-unwind-fde-arm64.yaml │ │ │ ├── dso_handle.yaml │ │ │ ├── dylib-install-names.yaml │ │ │ ├── eh-frame-relocs-arm64.yaml │ │ │ ├── error-simulator-vs-macosx.yaml │ │ │ ├── exe-offsets.yaml │ │ │ ├── exe-segment-overlap.yaml │ │ │ ├── executable-exports.yaml │ │ │ ├── export-trie-order.yaml │ │ │ ├── exported_symbols_list-dylib.yaml │ │ │ ├── exported_symbols_list-obj.yaml │ │ │ ├── exported_symbols_list-undef.yaml │ │ │ ├── fat-archive.yaml │ │ │ ├── filelist.yaml │ │ │ ├── flat_namespace_undef_error.yaml │ │ │ ├── flat_namespace_undef_suppress.yaml │ │ │ ├── force_load-dylib.yaml │ │ │ ├── force_load-x86_64.yaml │ │ │ ├── framework-user-paths.yaml │ │ │ ├── function-starts-load-command.yaml │ │ │ ├── gcc_except_tab-got-arm64.yaml │ │ │ ├── got-order.yaml │ │ │ ├── hello-world-arm64.yaml │ │ │ ├── hello-world-armv6.yaml │ │ │ ├── hello-world-armv7.yaml │ │ │ ├── hello-world-x86.yaml │ │ │ ├── hello-world-x86_64.yaml │ │ │ ├── image-base.yaml │ │ │ ├── infer-arch.yaml │ │ │ ├── interposing-section.yaml │ │ │ ├── keep_private_externs.yaml │ │ │ ├── lazy-bind-x86_64.yaml │ │ │ ├── lc_segment_filesize.yaml │ │ │ ├── lib-search-paths.yaml │ │ │ ├── library-order.yaml │ │ │ ├── library-rescan.yaml │ │ │ ├── libresolve-bizarre-root-override.yaml │ │ │ ├── libresolve-multiple-syslibroots.yaml │ │ │ ├── libresolve-one-syslibroot.yaml │ │ │ ├── libresolve-simple.yaml │ │ │ ├── libresolve-user-paths.yaml │ │ │ ├── libresolve-z.yaml │ │ │ ├── linker-as-ld.yaml │ │ │ ├── lit.local.cfg │ │ │ ├── mach_header-cpusubtype.yaml │ │ │ ├── mh_bundle_header.yaml │ │ │ ├── mh_dylib_header.yaml │ │ │ ├── objc-category-list-atom.yaml │ │ │ ├── objc-image-info-host-vs-simulator.yaml │ │ │ ├── objc-image-info-invalid-size.yaml │ │ │ ├── objc-image-info-invalid-version.yaml │ │ │ ├── objc-image-info-mismatched-swift-version.yaml │ │ │ ├── objc-image-info-pass-output.yaml │ │ │ ├── objc-image-info-simulator-vs-host.yaml │ │ │ ├── objc-image-info-unsupported-gc.yaml │ │ │ ├── objc_export_list.yaml │ │ │ ├── order_file-basic.yaml │ │ │ ├── parse-aliases.yaml │ │ │ ├── parse-arm-relocs.yaml │ │ │ ├── parse-cfstring32.yaml │ │ │ ├── parse-cfstring64.yaml │ │ │ ├── parse-compact-unwind32.yaml │ │ │ ├── parse-compact-unwind64.yaml │ │ │ ├── parse-data-in-code-armv7.yaml │ │ │ ├── parse-data-in-code-x86.yaml │ │ │ ├── parse-data-relocs-arm64.yaml │ │ │ ├── parse-data-relocs-x86_64.yaml │ │ │ ├── parse-data.yaml │ │ │ ├── parse-eh-frame-relocs-x86_64.yaml │ │ │ ├── parse-eh-frame-x86-anon.yaml │ │ │ ├── parse-eh-frame-x86-labeled.yaml │ │ │ ├── parse-eh-frame.yaml │ │ │ ├── parse-function.yaml │ │ │ ├── parse-initializers32.yaml │ │ │ ├── parse-initializers64.yaml │ │ │ ├── parse-literals-error.yaml │ │ │ ├── parse-literals.yaml │ │ │ ├── parse-non-lazy-pointers.yaml │ │ │ ├── parse-relocs-x86.yaml │ │ │ ├── parse-section-no-symbol.yaml │ │ │ ├── parse-tentative-defs.yaml │ │ │ ├── parse-text-relocs-arm64.yaml │ │ │ ├── parse-text-relocs-x86_64.yaml │ │ │ ├── parse-tlv-relocs-x86-64.yaml │ │ │ ├── re-exported-dylib-ordinal.yaml │ │ │ ├── rpath.yaml │ │ │ ├── run-tlv-pass-x86-64.yaml │ │ │ ├── sdk-version-error.yaml │ │ │ ├── sectalign.yaml │ │ │ ├── sectattrs.yaml │ │ │ ├── sectcreate.yaml │ │ │ ├── seg-protection-arm64.yaml │ │ │ ├── seg-protection-x86_64.yaml │ │ │ ├── source-version.yaml │ │ │ ├── stack-size.yaml │ │ │ ├── string-table.yaml │ │ │ ├── subsections-via-symbols-default.yaml │ │ │ ├── twolevel_namespace_undef_dynamic_lookup.yaml │ │ │ ├── twolevel_namespace_undef_warning_suppress.yaml │ │ │ ├── unwind-info-simple-arm64.yaml │ │ │ ├── unwind-info-simple-x86_64.yaml │ │ │ ├── upward-dylib-load-command.yaml │ │ │ ├── upward-dylib-paths.yaml │ │ │ ├── usage.yaml │ │ │ ├── use-dylib.yaml │ │ │ ├── use-simple-dylib.yaml │ │ │ ├── version-min-load-command-object.yaml │ │ │ ├── version-min-load-command.yaml │ │ │ ├── write-final-sections.yaml │ │ │ └── wrong-arch-error.yaml │ │ └── wasm │ │ │ ├── Inputs │ │ │ ├── archive1.ll │ │ │ ├── archive2.ll │ │ │ ├── call-indirect.ll │ │ │ ├── global-ctor-dtor.ll │ │ │ ├── hello.ll │ │ │ ├── hidden.ll │ │ │ ├── many-funcs.ll │ │ │ ├── ret32.ll │ │ │ ├── ret64.ll │ │ │ ├── weak-alias.ll │ │ │ ├── weak-symbol1.ll │ │ │ └── weak-symbol2.ll │ │ │ ├── archive.ll │ │ │ ├── call-indirect.ll │ │ │ ├── conflict.test │ │ │ ├── data-layout.ll │ │ │ ├── entry.ll │ │ │ ├── function-imports-first.ll │ │ │ ├── function-imports.ll │ │ │ ├── function-index.test │ │ │ ├── import-memory.test │ │ │ ├── init-fini.ll │ │ │ ├── invalid-stack-size.test │ │ │ ├── lit.local.cfg │ │ │ ├── load-undefined.ll │ │ │ ├── local-symbols.ll │ │ │ ├── many-functions.ll │ │ │ ├── relocatable.ll │ │ │ ├── signature-mismatch.ll │ │ │ ├── stack-pointer.ll │ │ │ ├── strip-debug.test │ │ │ ├── symbol-type-mismatch.ll │ │ │ ├── undefined-entry.test │ │ │ ├── undefined.ll │ │ │ ├── version.ll │ │ │ ├── visibility-hidden.ll │ │ │ ├── weak-alias-overide.ll │ │ │ ├── weak-alias.ll │ │ │ ├── weak-external.ll │ │ │ └── weak-symbols.ll │ ├── tools │ │ └── lld │ │ │ ├── CMakeLists.txt │ │ │ └── lld.cpp │ ├── unittests │ │ ├── CMakeLists.txt │ │ ├── DriverTests │ │ │ ├── CMakeLists.txt │ │ │ └── DarwinLdDriverTest.cpp │ │ └── MachOTests │ │ │ ├── CMakeLists.txt │ │ │ ├── MachONormalizedFileBinaryReaderTests.cpp │ │ │ ├── MachONormalizedFileBinaryWriterTests.cpp │ │ │ ├── MachONormalizedFileToAtomsTests.cpp │ │ │ ├── MachONormalizedFileYAMLTests.cpp │ │ │ └── empty_obj_x86_armv7.txt │ ├── utils │ │ ├── benchmark.py │ │ └── link.yaml │ └── wasm │ │ ├── CMakeLists.txt │ │ ├── Config.h │ │ ├── Driver.cpp │ │ ├── InputFiles.cpp │ │ ├── InputFiles.h │ │ ├── InputSegment.cpp │ │ ├── InputSegment.h │ │ ├── Options.td │ │ ├── OutputSections.cpp │ │ ├── OutputSections.h │ │ ├── OutputSegment.h │ │ ├── SymbolTable.cpp │ │ ├── SymbolTable.h │ │ ├── Symbols.cpp │ │ ├── Symbols.h │ │ ├── Writer.cpp │ │ ├── Writer.h │ │ ├── WriterUtils.cpp │ │ └── WriterUtils.h ├── lld-build-debug │ └── setup.bat ├── lld-build-release │ └── setup.bat ├── lld-install-debug │ └── README ├── lld-install-release │ └── README ├── llvm-6.0.0.src │ ├── .arcconfig │ ├── .clang-format │ ├── .clang-tidy │ ├── .gitattributes │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CODE_OWNERS.TXT │ ├── CREDITS.TXT │ ├── LICENSE.TXT │ ├── LLVMBuild.txt │ ├── README.txt │ ├── RELEASE_TESTERS.TXT │ ├── bindings │ │ ├── LLVMBuild.txt │ │ ├── README.txt │ │ ├── go │ │ │ ├── README.txt │ │ │ ├── build.sh │ │ │ ├── conftest.go │ │ │ └── llvm │ │ │ │ ├── DIBuilderBindings.cpp │ │ │ │ ├── DIBuilderBindings.h │ │ │ │ ├── IRBindings.cpp │ │ │ │ ├── IRBindings.h │ │ │ │ ├── InstrumentationBindings.cpp │ │ │ │ ├── InstrumentationBindings.h │ │ │ │ ├── SupportBindings.cpp │ │ │ │ ├── SupportBindings.h │ │ │ │ ├── analysis.go │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── dibuilder.go │ │ │ │ ├── executionengine.go │ │ │ │ ├── executionengine_test.go │ │ │ │ ├── ir.go │ │ │ │ ├── ir_test.go │ │ │ │ ├── linker.go │ │ │ │ ├── llvm_config.go.in │ │ │ │ ├── llvm_dep.go │ │ │ │ ├── string.go │ │ │ │ ├── string_test.go │ │ │ │ ├── support.go │ │ │ │ ├── target.go │ │ │ │ ├── transforms_instrumentation.go │ │ │ │ ├── transforms_ipo.go │ │ │ │ ├── transforms_pmbuilder.go │ │ │ │ ├── transforms_scalar.go │ │ │ │ └── version.go │ │ ├── ocaml │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── all_backends │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── all_backends_ocaml.c │ │ │ │ ├── llvm_all_backends.ml │ │ │ │ └── llvm_all_backends.mli │ │ │ ├── analysis │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── analysis_ocaml.c │ │ │ │ ├── llvm_analysis.ml │ │ │ │ └── llvm_analysis.mli │ │ │ ├── backends │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── META.llvm_backend.in │ │ │ │ ├── backend_ocaml.c │ │ │ │ ├── llvm_backend.ml.in │ │ │ │ └── llvm_backend.mli.in │ │ │ ├── bitreader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bitreader_ocaml.c │ │ │ │ ├── llvm_bitreader.ml │ │ │ │ └── llvm_bitreader.mli │ │ │ ├── bitwriter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bitwriter_ocaml.c │ │ │ │ ├── llvm_bitwriter.ml │ │ │ │ └── llvm_bitwriter.mli │ │ │ ├── executionengine │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── executionengine_ocaml.c │ │ │ │ ├── llvm_executionengine.ml │ │ │ │ └── llvm_executionengine.mli │ │ │ ├── irreader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── irreader_ocaml.c │ │ │ │ ├── llvm_irreader.ml │ │ │ │ └── llvm_irreader.mli │ │ │ ├── linker │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── linker_ocaml.c │ │ │ │ ├── llvm_linker.ml │ │ │ │ └── llvm_linker.mli │ │ │ ├── llvm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── META.llvm.in │ │ │ │ ├── llvm.ml │ │ │ │ ├── llvm.mli │ │ │ │ └── llvm_ocaml.c │ │ │ ├── target │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── llvm_target.ml │ │ │ │ ├── llvm_target.mli │ │ │ │ └── target_ocaml.c │ │ │ └── transforms │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ipo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ipo_ocaml.c │ │ │ │ ├── llvm_ipo.ml │ │ │ │ └── llvm_ipo.mli │ │ │ │ ├── passmgr_builder │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── llvm_passmgr_builder.ml │ │ │ │ ├── llvm_passmgr_builder.mli │ │ │ │ └── passmgr_builder_ocaml.c │ │ │ │ ├── scalar_opts │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── llvm_scalar_opts.ml │ │ │ │ ├── llvm_scalar_opts.mli │ │ │ │ └── scalar_opts_ocaml.c │ │ │ │ ├── utils │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── llvm_transform_utils.ml │ │ │ │ ├── llvm_transform_utils.mli │ │ │ │ └── transform_utils_ocaml.c │ │ │ │ └── vectorize │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── llvm_vectorize.ml │ │ │ │ ├── llvm_vectorize.mli │ │ │ │ └── vectorize_ocaml.c │ │ └── python │ │ │ ├── README.txt │ │ │ └── llvm │ │ │ ├── __init__.py │ │ │ ├── bit_reader.py │ │ │ ├── common.py │ │ │ ├── core.py │ │ │ ├── disassembler.py │ │ │ ├── enumerations.py │ │ │ ├── object.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── test.bc │ │ │ ├── test_bitreader.py │ │ │ ├── test_core.py │ │ │ ├── test_disassembler.py │ │ │ ├── test_file │ │ │ └── test_object.py │ ├── cmake │ │ ├── README │ │ ├── config-ix.cmake │ │ ├── config.guess │ │ ├── dummy.cpp │ │ ├── modules │ │ │ ├── AddLLVM.cmake │ │ │ ├── AddLLVMDefinitions.cmake │ │ │ ├── AddOCaml.cmake │ │ │ ├── AddSphinxTarget.cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── CheckAtomic.cmake │ │ │ ├── CheckCompilerVersion.cmake │ │ │ ├── CheckLinkerFlag.cmake │ │ │ ├── ChooseMSVCCRT.cmake │ │ │ ├── CrossCompile.cmake │ │ │ ├── DetermineGCCCompatible.cmake │ │ │ ├── FindOCaml.cmake │ │ │ ├── FindSphinx.cmake │ │ │ ├── GenerateVersionFromCVS.cmake │ │ │ ├── GetHostTriple.cmake │ │ │ ├── GetSVN.cmake │ │ │ ├── HandleLLVMOptions.cmake │ │ │ ├── HandleLLVMStdlib.cmake │ │ │ ├── LLVM-Config.cmake │ │ │ ├── LLVMConfig.cmake.in │ │ │ ├── LLVMConfigVersion.cmake.in │ │ │ ├── LLVMExternalProjectUtils.cmake │ │ │ ├── LLVMInstallSymlink.cmake │ │ │ ├── LLVMProcessSources.cmake │ │ │ ├── TableGen.cmake │ │ │ └── VersionFromVCS.cmake │ │ ├── nsis_icon.ico │ │ ├── nsis_logo.bmp │ │ └── platforms │ │ │ ├── Android.cmake │ │ │ ├── ClangClCMakeCompileRules.cmake │ │ │ ├── WinMsvc.cmake │ │ │ └── iOS.cmake │ ├── configure │ ├── docs │ │ ├── AMDGPUUsage.rst │ │ ├── ARM-BE-bitcastfail.png │ │ ├── ARM-BE-bitcastsuccess.png │ │ ├── ARM-BE-ld1.png │ │ ├── ARM-BE-ldr.png │ │ ├── AdvancedBuilds.rst │ │ ├── AliasAnalysis.rst │ │ ├── Atomics.rst │ │ ├── Benchmarking.rst │ │ ├── BigEndianNEON.rst │ │ ├── BitCodeFormat.rst │ │ ├── BlockFrequencyTerminology.rst │ │ ├── BranchWeightMetadata.rst │ │ ├── Bugpoint.rst │ │ ├── CFIVerify.rst │ │ ├── CMake.rst │ │ ├── CMakeLists.txt │ │ ├── CMakePrimer.rst │ │ ├── CodeGenerator.rst │ │ ├── CodeOfConduct.rst │ │ ├── CodingStandards.rst │ │ ├── CommandGuide │ │ │ ├── FileCheck.rst │ │ │ ├── bugpoint.rst │ │ │ ├── dsymutil.rst │ │ │ ├── index.rst │ │ │ ├── lit.rst │ │ │ ├── llc.rst │ │ │ ├── lli.rst │ │ │ ├── llvm-ar.rst │ │ │ ├── llvm-as.rst │ │ │ ├── llvm-bcanalyzer.rst │ │ │ ├── llvm-build.rst │ │ │ ├── llvm-config.rst │ │ │ ├── llvm-cov.rst │ │ │ ├── llvm-diff.rst │ │ │ ├── llvm-dis.rst │ │ │ ├── llvm-dwarfdump.rst │ │ │ ├── llvm-extract.rst │ │ │ ├── llvm-lib.rst │ │ │ ├── llvm-link.rst │ │ │ ├── llvm-nm.rst │ │ │ ├── llvm-pdbutil.rst │ │ │ ├── llvm-profdata.rst │ │ │ ├── llvm-readobj.rst │ │ │ ├── llvm-stress.rst │ │ │ ├── llvm-symbolizer.rst │ │ │ ├── opt.rst │ │ │ └── tblgen.rst │ │ ├── CommandLine.rst │ │ ├── CompileCudaWithLLVM.rst │ │ ├── CompilerWriterInfo.rst │ │ ├── Coroutines.rst │ │ ├── CoverageMappingFormat.rst │ │ ├── DebuggingJITedCode.rst │ │ ├── DeveloperPolicy.rst │ │ ├── Docker.rst │ │ ├── ExceptionHandling.rst │ │ ├── ExtendedIntegerResults.txt │ │ ├── ExtendingLLVM.rst │ │ ├── Extensions.rst │ │ ├── FAQ.rst │ │ ├── FaultMaps.rst │ │ ├── Frontend │ │ │ └── PerformanceTips.rst │ │ ├── FuzzingLLVM.rst │ │ ├── GarbageCollection.rst │ │ ├── GetElementPtr.rst │ │ ├── GettingStarted.rst │ │ ├── GettingStartedVS.rst │ │ ├── GlobalISel.rst │ │ ├── GoldPlugin.rst │ │ ├── HistoricalNotes │ │ │ ├── 2000-11-18-EarlyDesignIdeas.txt │ │ │ ├── 2000-11-18-EarlyDesignIdeasResp.txt │ │ │ ├── 2000-12-06-EncodingIdea.txt │ │ │ ├── 2000-12-06-MeetingSummary.txt │ │ │ ├── 2001-01-31-UniversalIRIdea.txt │ │ │ ├── 2001-02-06-TypeNotationDebate.txt │ │ │ ├── 2001-02-06-TypeNotationDebateResp1.txt │ │ │ ├── 2001-02-06-TypeNotationDebateResp2.txt │ │ │ ├── 2001-02-06-TypeNotationDebateResp4.txt │ │ │ ├── 2001-02-09-AdveComments.txt │ │ │ ├── 2001-02-09-AdveCommentsResponse.txt │ │ │ ├── 2001-02-13-Reference-Memory.txt │ │ │ ├── 2001-02-13-Reference-MemoryResponse.txt │ │ │ ├── 2001-04-16-DynamicCompilation.txt │ │ │ ├── 2001-05-18-ExceptionHandling.txt │ │ │ ├── 2001-05-19-ExceptionResponse.txt │ │ │ ├── 2001-06-01-GCCOptimizations.txt │ │ │ ├── 2001-06-01-GCCOptimizations2.txt │ │ │ ├── 2001-06-20-.NET-Differences.txt │ │ │ ├── 2001-07-06-LoweringIRForCodeGen.txt │ │ │ ├── 2001-09-18-OptimizeExceptions.txt │ │ │ ├── 2002-05-12-InstListChange.txt │ │ │ ├── 2002-06-25-MegaPatchInfo.txt │ │ │ ├── 2003-01-23-CygwinNotes.txt │ │ │ ├── 2003-06-25-Reoptimizer1.txt │ │ │ ├── 2003-06-26-Reoptimizer2.txt │ │ │ └── 2007-OriginalClangReadme.txt │ │ ├── HowToAddABuilder.rst │ │ ├── HowToBuildOnARM.rst │ │ ├── HowToCrossCompileBuiltinsOnArm.rst │ │ ├── HowToCrossCompileLLVM.rst │ │ ├── HowToReleaseLLVM.rst │ │ ├── HowToSetUpLLVMStyleRTTI.rst │ │ ├── HowToSubmitABug.rst │ │ ├── HowToUseAttributes.rst │ │ ├── HowToUseInstrMappings.rst │ │ ├── InAlloca.rst │ │ ├── LLVMBuild.rst │ │ ├── LLVMBuild.txt │ │ ├── LangRef.rst │ │ ├── Lexicon.rst │ │ ├── LibFuzzer.rst │ │ ├── LinkTimeOptimization.rst │ │ ├── MCJIT-creation.png │ │ ├── MCJIT-dyld-load.png │ │ ├── MCJIT-engine-builder.png │ │ ├── MCJIT-load-object.png │ │ ├── MCJIT-load.png │ │ ├── MCJIT-resolve-relocations.png │ │ ├── MCJITDesignAndImplementation.rst │ │ ├── MIRLangRef.rst │ │ ├── Makefile.sphinx │ │ ├── MarkedUpDisassembly.rst │ │ ├── MemorySSA.rst │ │ ├── MergeFunctions.rst │ │ ├── NVPTXUsage.rst │ │ ├── OptBisect.rst │ │ ├── PDB │ │ │ ├── CodeViewSymbols.rst │ │ │ ├── CodeViewTypes.rst │ │ │ ├── DbiStream.rst │ │ │ ├── GlobalStream.rst │ │ │ ├── HashStream.rst │ │ │ ├── ModiStream.rst │ │ │ ├── MsfFile.rst │ │ │ ├── PdbStream.rst │ │ │ ├── PublicStream.rst │ │ │ ├── TpiStream.rst │ │ │ └── index.rst │ │ ├── Packaging.rst │ │ ├── Passes.rst │ │ ├── Phabricator.rst │ │ ├── ProgrammersManual.rst │ │ ├── Projects.rst │ │ ├── Proposals │ │ │ ├── GitHubMove.rst │ │ │ └── VectorizationPlan.rst │ │ ├── README.txt │ │ ├── ReleaseNotes.rst │ │ ├── ReleaseProcess.rst │ │ ├── ReportingGuide.rst │ │ ├── ScudoHardenedAllocator.rst │ │ ├── SegmentedStacks.rst │ │ ├── SourceLevelDebugging.rst │ │ ├── SphinxQuickstartTemplate.rst │ │ ├── StackMaps.rst │ │ ├── Statepoints.rst │ │ ├── SystemLibrary.rst │ │ ├── TableGen │ │ │ ├── BackEnds.rst │ │ │ ├── Deficiencies.rst │ │ │ ├── LangIntro.rst │ │ │ ├── LangRef.rst │ │ │ └── index.rst │ │ ├── TableGenFundamentals.rst │ │ ├── TestSuiteMakefileGuide.rst │ │ ├── TestingGuide.rst │ │ ├── TypeMetadata.rst │ │ ├── Vectorizers.rst │ │ ├── WritingAnLLVMBackend.rst │ │ ├── WritingAnLLVMPass.rst │ │ ├── XRay.rst │ │ ├── XRayExample.rst │ │ ├── XRayFDRFormat.rst │ │ ├── YamlIO.rst │ │ ├── _ocamldoc │ │ │ └── style.css │ │ ├── _static │ │ │ ├── lines.gif │ │ │ └── llvm.css │ │ ├── _templates │ │ │ ├── indexsidebar.html │ │ │ └── layout.html │ │ ├── _themes │ │ │ └── llvm-theme │ │ │ │ ├── layout.html │ │ │ │ ├── static │ │ │ │ ├── contents.png │ │ │ │ ├── llvm-theme.css │ │ │ │ ├── logo.png │ │ │ │ └── navigation.png │ │ │ │ └── theme.conf │ │ ├── conf.py │ │ ├── doxygen-mainpage.dox │ │ ├── doxygen.cfg.in │ │ ├── gcc-loops.png │ │ ├── index.rst │ │ ├── linpack-pc.png │ │ ├── make.bat │ │ ├── re_format.7 │ │ ├── tutorial │ │ │ ├── BuildingAJIT1.rst │ │ │ ├── BuildingAJIT2.rst │ │ │ ├── BuildingAJIT3.rst │ │ │ ├── BuildingAJIT4.rst │ │ │ ├── BuildingAJIT5.rst │ │ │ ├── LangImpl01.rst │ │ │ ├── LangImpl02.rst │ │ │ ├── LangImpl03.rst │ │ │ ├── LangImpl04.rst │ │ │ ├── LangImpl05-cfg.png │ │ │ ├── LangImpl05.rst │ │ │ ├── LangImpl06.rst │ │ │ ├── LangImpl07.rst │ │ │ ├── LangImpl08.rst │ │ │ ├── LangImpl09.rst │ │ │ ├── LangImpl10.rst │ │ │ ├── OCamlLangImpl1.rst │ │ │ ├── OCamlLangImpl2.rst │ │ │ ├── OCamlLangImpl3.rst │ │ │ ├── OCamlLangImpl4.rst │ │ │ ├── OCamlLangImpl5.rst │ │ │ ├── OCamlLangImpl6.rst │ │ │ ├── OCamlLangImpl7.rst │ │ │ ├── OCamlLangImpl8.rst │ │ │ └── index.rst │ │ └── yaml2obj.rst │ ├── examples │ │ ├── BrainF │ │ │ ├── BrainF.cpp │ │ │ ├── BrainF.h │ │ │ ├── BrainFDriver.cpp │ │ │ └── CMakeLists.txt │ │ ├── CMakeLists.txt │ │ ├── ExceptionDemo │ │ │ ├── CMakeLists.txt │ │ │ └── ExceptionDemo.cpp │ │ ├── Fibonacci │ │ │ ├── CMakeLists.txt │ │ │ └── fibonacci.cpp │ │ ├── HowToUseJIT │ │ │ ├── CMakeLists.txt │ │ │ └── HowToUseJIT.cpp │ │ ├── Kaleidoscope │ │ │ ├── BuildingAJIT │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Chapter1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── KaleidoscopeJIT.h │ │ │ │ │ └── toy.cpp │ │ │ │ ├── Chapter2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── KaleidoscopeJIT.h │ │ │ │ │ └── toy.cpp │ │ │ │ ├── Chapter3 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── KaleidoscopeJIT.h │ │ │ │ │ └── toy.cpp │ │ │ │ ├── Chapter4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── KaleidoscopeJIT.h │ │ │ │ │ └── toy.cpp │ │ │ │ └── Chapter5 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── KaleidoscopeJIT.h │ │ │ │ │ ├── RemoteJITUtils.h │ │ │ │ │ ├── Server │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── server.cpp │ │ │ │ │ └── toy.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Chapter2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── toy.cpp │ │ │ ├── Chapter3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── toy.cpp │ │ │ ├── Chapter4 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── toy.cpp │ │ │ ├── Chapter5 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── toy.cpp │ │ │ ├── Chapter6 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── toy.cpp │ │ │ ├── Chapter7 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── toy.cpp │ │ │ ├── Chapter8 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── toy.cpp │ │ │ ├── Chapter9 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── toy.cpp │ │ │ ├── MCJIT │ │ │ │ ├── README.txt │ │ │ │ ├── cached │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── genk-timing.py │ │ │ │ │ ├── split-lib.py │ │ │ │ │ ├── toy-jit.cpp │ │ │ │ │ └── toy.cpp │ │ │ │ ├── complete │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── genk-timing.py │ │ │ │ │ ├── split-lib.py │ │ │ │ │ └── toy.cpp │ │ │ │ ├── initial │ │ │ │ │ ├── README.txt │ │ │ │ │ └── toy.cpp │ │ │ │ └── lazy │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── genk-timing.py │ │ │ │ │ ├── toy-jit.cpp │ │ │ │ │ └── toy.cpp │ │ │ └── include │ │ │ │ └── KaleidoscopeJIT.h │ │ ├── LLVMBuild.txt │ │ ├── ModuleMaker │ │ │ ├── CMakeLists.txt │ │ │ ├── ModuleMaker.cpp │ │ │ └── README.txt │ │ ├── OCaml-Kaleidoscope │ │ │ ├── Chapter2 │ │ │ │ ├── _tags │ │ │ │ ├── ast.ml │ │ │ │ ├── lexer.ml │ │ │ │ ├── parser.ml │ │ │ │ ├── token.ml │ │ │ │ ├── toplevel.ml │ │ │ │ └── toy.ml │ │ │ ├── Chapter3 │ │ │ │ ├── _tags │ │ │ │ ├── ast.ml │ │ │ │ ├── codegen.ml │ │ │ │ ├── lexer.ml │ │ │ │ ├── myocamlbuild.ml │ │ │ │ ├── parser.ml │ │ │ │ ├── token.ml │ │ │ │ ├── toplevel.ml │ │ │ │ └── toy.ml │ │ │ ├── Chapter4 │ │ │ │ ├── _tags │ │ │ │ ├── ast.ml │ │ │ │ ├── bindings.c │ │ │ │ ├── codegen.ml │ │ │ │ ├── lexer.ml │ │ │ │ ├── myocamlbuild.ml │ │ │ │ ├── parser.ml │ │ │ │ ├── token.ml │ │ │ │ ├── toplevel.ml │ │ │ │ └── toy.ml │ │ │ ├── Chapter5 │ │ │ │ ├── _tags │ │ │ │ ├── ast.ml │ │ │ │ ├── bindings.c │ │ │ │ ├── codegen.ml │ │ │ │ ├── lexer.ml │ │ │ │ ├── myocamlbuild.ml │ │ │ │ ├── parser.ml │ │ │ │ ├── token.ml │ │ │ │ ├── toplevel.ml │ │ │ │ └── toy.ml │ │ │ ├── Chapter6 │ │ │ │ ├── _tags │ │ │ │ ├── ast.ml │ │ │ │ ├── bindings.c │ │ │ │ ├── codegen.ml │ │ │ │ ├── lexer.ml │ │ │ │ ├── myocamlbuild.ml │ │ │ │ ├── parser.ml │ │ │ │ ├── token.ml │ │ │ │ ├── toplevel.ml │ │ │ │ └── toy.ml │ │ │ └── Chapter7 │ │ │ │ ├── _tags │ │ │ │ ├── ast.ml │ │ │ │ ├── bindings.c │ │ │ │ ├── codegen.ml │ │ │ │ ├── lexer.ml │ │ │ │ ├── myocamlbuild.ml │ │ │ │ ├── parser.ml │ │ │ │ ├── token.ml │ │ │ │ ├── toplevel.ml │ │ │ │ └── toy.ml │ │ └── ParallelJIT │ │ │ ├── CMakeLists.txt │ │ │ └── ParallelJIT.cpp │ ├── include │ │ ├── llvm-c │ │ │ ├── Analysis.h │ │ │ ├── BitReader.h │ │ │ ├── BitWriter.h │ │ │ ├── Core.h │ │ │ ├── DebugInfo.h │ │ │ ├── Disassembler.h │ │ │ ├── ErrorHandling.h │ │ │ ├── ExecutionEngine.h │ │ │ ├── IRReader.h │ │ │ ├── Initialization.h │ │ │ ├── LinkTimeOptimizer.h │ │ │ ├── Linker.h │ │ │ ├── Object.h │ │ │ ├── OrcBindings.h │ │ │ ├── Support.h │ │ │ ├── Target.h │ │ │ ├── TargetMachine.h │ │ │ ├── Transforms │ │ │ │ ├── IPO.h │ │ │ │ ├── PassManagerBuilder.h │ │ │ │ ├── Scalar.h │ │ │ │ └── Vectorize.h │ │ │ ├── Types.h │ │ │ ├── lto.h │ │ │ └── module.modulemap │ │ └── llvm │ │ │ ├── ADT │ │ │ ├── APFloat.h │ │ │ ├── APInt.h │ │ │ ├── APSInt.h │ │ │ ├── AllocatorList.h │ │ │ ├── ArrayRef.h │ │ │ ├── BitVector.h │ │ │ ├── BitmaskEnum.h │ │ │ ├── BreadthFirstIterator.h │ │ │ ├── CachedHashString.h │ │ │ ├── DAGDeltaAlgorithm.h │ │ │ ├── DeltaAlgorithm.h │ │ │ ├── DenseMap.h │ │ │ ├── DenseMapInfo.h │ │ │ ├── DenseSet.h │ │ │ ├── DepthFirstIterator.h │ │ │ ├── EpochTracker.h │ │ │ ├── EquivalenceClasses.h │ │ │ ├── FoldingSet.h │ │ │ ├── GraphTraits.h │ │ │ ├── Hashing.h │ │ │ ├── ImmutableList.h │ │ │ ├── ImmutableMap.h │ │ │ ├── ImmutableSet.h │ │ │ ├── IndexedMap.h │ │ │ ├── IntEqClasses.h │ │ │ ├── IntervalMap.h │ │ │ ├── IntrusiveRefCntPtr.h │ │ │ ├── MapVector.h │ │ │ ├── None.h │ │ │ ├── Optional.h │ │ │ ├── PackedVector.h │ │ │ ├── PointerEmbeddedInt.h │ │ │ ├── PointerIntPair.h │ │ │ ├── PointerSumType.h │ │ │ ├── PointerUnion.h │ │ │ ├── PostOrderIterator.h │ │ │ ├── PriorityQueue.h │ │ │ ├── PriorityWorklist.h │ │ │ ├── SCCIterator.h │ │ │ ├── STLExtras.h │ │ │ ├── ScopeExit.h │ │ │ ├── ScopedHashTable.h │ │ │ ├── Sequence.h │ │ │ ├── SetOperations.h │ │ │ ├── SetVector.h │ │ │ ├── SmallBitVector.h │ │ │ ├── SmallPtrSet.h │ │ │ ├── SmallSet.h │ │ │ ├── SmallString.h │ │ │ ├── SmallVector.h │ │ │ ├── SparseBitVector.h │ │ │ ├── SparseMultiSet.h │ │ │ ├── SparseSet.h │ │ │ ├── Statistic.h │ │ │ ├── StringExtras.h │ │ │ ├── StringMap.h │ │ │ ├── StringRef.h │ │ │ ├── StringSet.h │ │ │ ├── StringSwitch.h │ │ │ ├── TinyPtrVector.h │ │ │ ├── Triple.h │ │ │ ├── Twine.h │ │ │ ├── UniqueVector.h │ │ │ ├── VariadicFunction.h │ │ │ ├── edit_distance.h │ │ │ ├── ilist.h │ │ │ ├── ilist_base.h │ │ │ ├── ilist_iterator.h │ │ │ ├── ilist_node.h │ │ │ ├── ilist_node_base.h │ │ │ ├── ilist_node_options.h │ │ │ ├── iterator.h │ │ │ ├── iterator_range.h │ │ │ └── simple_ilist.h │ │ │ ├── Analysis │ │ │ ├── AliasAnalysis.h │ │ │ ├── AliasAnalysisEvaluator.h │ │ │ ├── AliasSetTracker.h │ │ │ ├── AssumptionCache.h │ │ │ ├── BasicAliasAnalysis.h │ │ │ ├── BlockFrequencyInfo.h │ │ │ ├── BlockFrequencyInfoImpl.h │ │ │ ├── BranchProbabilityInfo.h │ │ │ ├── CFG.h │ │ │ ├── CFGPrinter.h │ │ │ ├── CFLAliasAnalysisUtils.h │ │ │ ├── CFLAndersAliasAnalysis.h │ │ │ ├── CFLSteensAliasAnalysis.h │ │ │ ├── CGSCCPassManager.h │ │ │ ├── CallGraph.h │ │ │ ├── CallGraphSCCPass.h │ │ │ ├── CallPrinter.h │ │ │ ├── CaptureTracking.h │ │ │ ├── CmpInstAnalysis.h │ │ │ ├── CodeMetrics.h │ │ │ ├── ConstantFolding.h │ │ │ ├── DOTGraphTraitsPass.h │ │ │ ├── DemandedBits.h │ │ │ ├── DependenceAnalysis.h │ │ │ ├── DivergenceAnalysis.h │ │ │ ├── DomPrinter.h │ │ │ ├── DominanceFrontier.h │ │ │ ├── DominanceFrontierImpl.h │ │ │ ├── EHPersonalities.h │ │ │ ├── GlobalsModRef.h │ │ │ ├── IVUsers.h │ │ │ ├── IndirectCallPromotionAnalysis.h │ │ │ ├── IndirectCallSiteVisitor.h │ │ │ ├── InlineCost.h │ │ │ ├── InstructionSimplify.h │ │ │ ├── Interval.h │ │ │ ├── IntervalIterator.h │ │ │ ├── IntervalPartition.h │ │ │ ├── IteratedDominanceFrontier.h │ │ │ ├── LazyBlockFrequencyInfo.h │ │ │ ├── LazyBranchProbabilityInfo.h │ │ │ ├── LazyCallGraph.h │ │ │ ├── LazyValueInfo.h │ │ │ ├── Lint.h │ │ │ ├── Loads.h │ │ │ ├── LoopAccessAnalysis.h │ │ │ ├── LoopAnalysisManager.h │ │ │ ├── LoopInfo.h │ │ │ ├── LoopInfoImpl.h │ │ │ ├── LoopIterator.h │ │ │ ├── LoopPass.h │ │ │ ├── LoopUnrollAnalyzer.h │ │ │ ├── MemoryBuiltins.h │ │ │ ├── MemoryDependenceAnalysis.h │ │ │ ├── MemoryLocation.h │ │ │ ├── MemorySSA.h │ │ │ ├── MemorySSAUpdater.h │ │ │ ├── ModuleSummaryAnalysis.h │ │ │ ├── ObjCARCAliasAnalysis.h │ │ │ ├── ObjCARCAnalysisUtils.h │ │ │ ├── ObjCARCInstKind.h │ │ │ ├── ObjectUtils.h │ │ │ ├── OptimizationRemarkEmitter.h │ │ │ ├── OrderedBasicBlock.h │ │ │ ├── PHITransAddr.h │ │ │ ├── Passes.h │ │ │ ├── PostDominators.h │ │ │ ├── ProfileSummaryInfo.h │ │ │ ├── PtrUseVisitor.h │ │ │ ├── RegionInfo.h │ │ │ ├── RegionInfoImpl.h │ │ │ ├── RegionIterator.h │ │ │ ├── RegionPass.h │ │ │ ├── RegionPrinter.h │ │ │ ├── ScalarEvolution.h │ │ │ ├── ScalarEvolutionAliasAnalysis.h │ │ │ ├── ScalarEvolutionExpander.h │ │ │ ├── ScalarEvolutionExpressions.h │ │ │ ├── ScalarEvolutionNormalization.h │ │ │ ├── ScopedNoAliasAA.h │ │ │ ├── SparsePropagation.h │ │ │ ├── TargetFolder.h │ │ │ ├── TargetLibraryInfo.def │ │ │ ├── TargetLibraryInfo.h │ │ │ ├── TargetTransformInfo.h │ │ │ ├── TargetTransformInfoImpl.h │ │ │ ├── Trace.h │ │ │ ├── TypeBasedAliasAnalysis.h │ │ │ ├── TypeMetadataUtils.h │ │ │ ├── ValueLattice.h │ │ │ ├── ValueLatticeUtils.h │ │ │ ├── ValueTracking.h │ │ │ └── VectorUtils.h │ │ │ ├── AsmParser │ │ │ ├── Parser.h │ │ │ └── SlotMapping.h │ │ │ ├── BinaryFormat │ │ │ ├── COFF.h │ │ │ ├── Dwarf.def │ │ │ ├── Dwarf.h │ │ │ ├── ELF.h │ │ │ ├── ELFRelocs │ │ │ │ ├── AArch64.def │ │ │ │ ├── AMDGPU.def │ │ │ │ ├── ARC.def │ │ │ │ ├── ARM.def │ │ │ │ ├── AVR.def │ │ │ │ ├── BPF.def │ │ │ │ ├── Hexagon.def │ │ │ │ ├── Lanai.def │ │ │ │ ├── Mips.def │ │ │ │ ├── PowerPC.def │ │ │ │ ├── PowerPC64.def │ │ │ │ ├── RISCV.def │ │ │ │ ├── Sparc.def │ │ │ │ ├── SystemZ.def │ │ │ │ ├── WebAssembly.def │ │ │ │ ├── i386.def │ │ │ │ └── x86_64.def │ │ │ ├── MachO.def │ │ │ ├── MachO.h │ │ │ ├── Magic.h │ │ │ ├── Wasm.h │ │ │ └── WasmRelocs.def │ │ │ ├── Bitcode │ │ │ ├── BitCodes.h │ │ │ ├── BitcodeReader.h │ │ │ ├── BitcodeWriter.h │ │ │ ├── BitcodeWriterPass.h │ │ │ ├── BitstreamReader.h │ │ │ ├── BitstreamWriter.h │ │ │ └── LLVMBitCodes.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CodeGen │ │ │ ├── Analysis.h │ │ │ ├── AsmPrinter.h │ │ │ ├── AtomicExpandUtils.h │ │ │ ├── BasicTTIImpl.h │ │ │ ├── CalcSpillWeights.h │ │ │ ├── CallingConvLower.h │ │ │ ├── CommandFlags.def │ │ │ ├── CostTable.h │ │ │ ├── DAGCombine.h │ │ │ ├── DFAPacketizer.h │ │ │ ├── DIE.h │ │ │ ├── DIEValue.def │ │ │ ├── DwarfStringPoolEntry.h │ │ │ ├── EdgeBundles.h │ │ │ ├── ExecutionDepsFix.h │ │ │ ├── ExpandReductions.h │ │ │ ├── FastISel.h │ │ │ ├── FaultMaps.h │ │ │ ├── FunctionLoweringInfo.h │ │ │ ├── GCMetadata.h │ │ │ ├── GCMetadataPrinter.h │ │ │ ├── GCStrategy.h │ │ │ ├── GCs.h │ │ │ ├── GlobalISel │ │ │ │ ├── CallLowering.h │ │ │ │ ├── GISelWorkList.h │ │ │ │ ├── IRTranslator.h │ │ │ │ ├── InstructionSelect.h │ │ │ │ ├── InstructionSelector.h │ │ │ │ ├── InstructionSelectorImpl.h │ │ │ │ ├── LegalizationArtifactCombiner.h │ │ │ │ ├── Legalizer.h │ │ │ │ ├── LegalizerHelper.h │ │ │ │ ├── LegalizerInfo.h │ │ │ │ ├── Localizer.h │ │ │ │ ├── MachineIRBuilder.h │ │ │ │ ├── RegBankSelect.h │ │ │ │ ├── RegisterBank.h │ │ │ │ ├── RegisterBankInfo.h │ │ │ │ ├── Types.h │ │ │ │ └── Utils.h │ │ │ ├── ISDOpcodes.h │ │ │ ├── IntrinsicLowering.h │ │ │ ├── LatencyPriorityQueue.h │ │ │ ├── LazyMachineBlockFrequencyInfo.h │ │ │ ├── LexicalScopes.h │ │ │ ├── LinkAllAsmWriterComponents.h │ │ │ ├── LinkAllCodegenComponents.h │ │ │ ├── LiveInterval.h │ │ │ ├── LiveIntervalUnion.h │ │ │ ├── LiveIntervals.h │ │ │ ├── LivePhysRegs.h │ │ │ ├── LiveRangeEdit.h │ │ │ ├── LiveRegMatrix.h │ │ │ ├── LiveRegUnits.h │ │ │ ├── LiveStacks.h │ │ │ ├── LiveVariables.h │ │ │ ├── LowLevelType.h │ │ │ ├── MIRParser │ │ │ │ └── MIRParser.h │ │ │ ├── MIRPrinter.h │ │ │ ├── MIRYamlMapping.h │ │ │ ├── MachORelocation.h │ │ │ ├── MachineBasicBlock.h │ │ │ ├── MachineBlockFrequencyInfo.h │ │ │ ├── MachineBranchProbabilityInfo.h │ │ │ ├── MachineCombinerPattern.h │ │ │ ├── MachineConstantPool.h │ │ │ ├── MachineDominanceFrontier.h │ │ │ ├── MachineDominators.h │ │ │ ├── MachineFrameInfo.h │ │ │ ├── MachineFunction.h │ │ │ ├── MachineFunctionPass.h │ │ │ ├── MachineInstr.h │ │ │ ├── MachineInstrBuilder.h │ │ │ ├── MachineInstrBundle.h │ │ │ ├── MachineInstrBundleIterator.h │ │ │ ├── MachineJumpTableInfo.h │ │ │ ├── MachineLoopInfo.h │ │ │ ├── MachineMemOperand.h │ │ │ ├── MachineModuleInfo.h │ │ │ ├── MachineModuleInfoImpls.h │ │ │ ├── MachineOperand.h │ │ │ ├── MachineOptimizationRemarkEmitter.h │ │ │ ├── MachinePassRegistry.h │ │ │ ├── MachinePostDominators.h │ │ │ ├── MachineRegionInfo.h │ │ │ ├── MachineRegisterInfo.h │ │ │ ├── MachineSSAUpdater.h │ │ │ ├── MachineScheduler.h │ │ │ ├── MachineTraceMetrics.h │ │ │ ├── MachineValueType.h │ │ │ ├── MacroFusion.h │ │ │ ├── PBQP │ │ │ │ ├── CostAllocator.h │ │ │ │ ├── Graph.h │ │ │ │ ├── Math.h │ │ │ │ ├── ReductionRules.h │ │ │ │ └── Solution.h │ │ │ ├── PBQPRAConstraint.h │ │ │ ├── ParallelCG.h │ │ │ ├── Passes.h │ │ │ ├── PreISelIntrinsicLowering.h │ │ │ ├── PseudoSourceValue.h │ │ │ ├── RegAllocPBQP.h │ │ │ ├── RegAllocRegistry.h │ │ │ ├── RegisterClassInfo.h │ │ │ ├── RegisterPressure.h │ │ │ ├── RegisterScavenging.h │ │ │ ├── RegisterUsageInfo.h │ │ │ ├── ResourcePriorityQueue.h │ │ │ ├── RuntimeLibcalls.def │ │ │ ├── RuntimeLibcalls.h │ │ │ ├── SDNodeProperties.td │ │ │ ├── ScheduleDAG.h │ │ │ ├── ScheduleDAGInstrs.h │ │ │ ├── ScheduleDAGMutation.h │ │ │ ├── ScheduleDFS.h │ │ │ ├── ScheduleHazardRecognizer.h │ │ │ ├── SchedulerRegistry.h │ │ │ ├── ScoreboardHazardRecognizer.h │ │ │ ├── SelectionDAG.h │ │ │ ├── SelectionDAGAddressAnalysis.h │ │ │ ├── SelectionDAGISel.h │ │ │ ├── SelectionDAGNodes.h │ │ │ ├── SelectionDAGTargetInfo.h │ │ │ ├── SlotIndexes.h │ │ │ ├── StackMaps.h │ │ │ ├── StackProtector.h │ │ │ ├── TailDuplicator.h │ │ │ ├── TargetCallingConv.h │ │ │ ├── TargetFrameLowering.h │ │ │ ├── TargetInstrInfo.h │ │ │ ├── TargetLowering.h │ │ │ ├── TargetLoweringObjectFile.h │ │ │ ├── TargetLoweringObjectFileImpl.h │ │ │ ├── TargetOpcodes.def │ │ │ ├── TargetOpcodes.h │ │ │ ├── TargetPassConfig.h │ │ │ ├── TargetRegisterInfo.h │ │ │ ├── TargetSchedule.h │ │ │ ├── TargetSubtargetInfo.h │ │ │ ├── UnreachableBlockElim.h │ │ │ ├── ValueTypes.h │ │ │ ├── ValueTypes.td │ │ │ ├── VirtRegMap.h │ │ │ └── WinEHFuncInfo.h │ │ │ ├── Config │ │ │ ├── AsmParsers.def.in │ │ │ ├── AsmPrinters.def.in │ │ │ ├── Disassemblers.def.in │ │ │ ├── Targets.def.in │ │ │ ├── abi-breaking.h.cmake │ │ │ ├── config.h.cmake │ │ │ └── llvm-config.h.cmake │ │ │ ├── DebugInfo │ │ │ ├── CodeView │ │ │ │ ├── AppendingTypeTableBuilder.h │ │ │ │ ├── CVDebugRecord.h │ │ │ │ ├── CVRecord.h │ │ │ │ ├── CVSymbolVisitor.h │ │ │ │ ├── CVTypeVisitor.h │ │ │ │ ├── CodeView.h │ │ │ │ ├── CodeViewError.h │ │ │ │ ├── CodeViewRecordIO.h │ │ │ │ ├── CodeViewRegisters.def │ │ │ │ ├── CodeViewSymbols.def │ │ │ │ ├── CodeViewTypes.def │ │ │ │ ├── ContinuationRecordBuilder.h │ │ │ │ ├── DebugChecksumsSubsection.h │ │ │ │ ├── DebugCrossExSubsection.h │ │ │ │ ├── DebugCrossImpSubsection.h │ │ │ │ ├── DebugFrameDataSubsection.h │ │ │ │ ├── DebugInlineeLinesSubsection.h │ │ │ │ ├── DebugLinesSubsection.h │ │ │ │ ├── DebugStringTableSubsection.h │ │ │ │ ├── DebugSubsection.h │ │ │ │ ├── DebugSubsectionRecord.h │ │ │ │ ├── DebugSubsectionVisitor.h │ │ │ │ ├── DebugSymbolRVASubsection.h │ │ │ │ ├── DebugSymbolsSubsection.h │ │ │ │ ├── DebugUnknownSubsection.h │ │ │ │ ├── EnumTables.h │ │ │ │ ├── Formatters.h │ │ │ │ ├── FunctionId.h │ │ │ │ ├── GUID.h │ │ │ │ ├── GlobalTypeTableBuilder.h │ │ │ │ ├── LazyRandomTypeCollection.h │ │ │ │ ├── Line.h │ │ │ │ ├── MergingTypeTableBuilder.h │ │ │ │ ├── RecordName.h │ │ │ │ ├── RecordSerialization.h │ │ │ │ ├── SimpleTypeSerializer.h │ │ │ │ ├── StringsAndChecksums.h │ │ │ │ ├── SymbolDeserializer.h │ │ │ │ ├── SymbolDumpDelegate.h │ │ │ │ ├── SymbolDumper.h │ │ │ │ ├── SymbolRecord.h │ │ │ │ ├── SymbolRecordMapping.h │ │ │ │ ├── SymbolSerializer.h │ │ │ │ ├── SymbolVisitorCallbackPipeline.h │ │ │ │ ├── SymbolVisitorCallbacks.h │ │ │ │ ├── SymbolVisitorDelegate.h │ │ │ │ ├── TypeCollection.h │ │ │ │ ├── TypeDeserializer.h │ │ │ │ ├── TypeDumpVisitor.h │ │ │ │ ├── TypeHashing.h │ │ │ │ ├── TypeIndex.h │ │ │ │ ├── TypeIndexDiscovery.h │ │ │ │ ├── TypeRecord.h │ │ │ │ ├── TypeRecordMapping.h │ │ │ │ ├── TypeStreamMerger.h │ │ │ │ ├── TypeSymbolEmitter.h │ │ │ │ ├── TypeTableCollection.h │ │ │ │ ├── TypeVisitorCallbackPipeline.h │ │ │ │ └── TypeVisitorCallbacks.h │ │ │ ├── DIContext.h │ │ │ ├── DWARF │ │ │ │ ├── DWARFAbbreviationDeclaration.h │ │ │ │ ├── DWARFAcceleratorTable.h │ │ │ │ ├── DWARFAttribute.h │ │ │ │ ├── DWARFCompileUnit.h │ │ │ │ ├── DWARFContext.h │ │ │ │ ├── DWARFDataExtractor.h │ │ │ │ ├── DWARFDebugAbbrev.h │ │ │ │ ├── DWARFDebugArangeSet.h │ │ │ │ ├── DWARFDebugAranges.h │ │ │ │ ├── DWARFDebugFrame.h │ │ │ │ ├── DWARFDebugInfoEntry.h │ │ │ │ ├── DWARFDebugLine.h │ │ │ │ ├── DWARFDebugLoc.h │ │ │ │ ├── DWARFDebugMacro.h │ │ │ │ ├── DWARFDebugPubTable.h │ │ │ │ ├── DWARFDebugRangeList.h │ │ │ │ ├── DWARFDie.h │ │ │ │ ├── DWARFExpression.h │ │ │ │ ├── DWARFFormValue.h │ │ │ │ ├── DWARFGdbIndex.h │ │ │ │ ├── DWARFObject.h │ │ │ │ ├── DWARFRelocMap.h │ │ │ │ ├── DWARFSection.h │ │ │ │ ├── DWARFTypeUnit.h │ │ │ │ ├── DWARFUnit.h │ │ │ │ ├── DWARFUnitIndex.h │ │ │ │ └── DWARFVerifier.h │ │ │ ├── MSF │ │ │ │ ├── IMSFFile.h │ │ │ │ ├── MSFBuilder.h │ │ │ │ ├── MSFCommon.h │ │ │ │ ├── MSFError.h │ │ │ │ └── MappedBlockStream.h │ │ │ ├── PDB │ │ │ │ ├── ConcreteSymbolEnumerator.h │ │ │ │ ├── DIA │ │ │ │ │ ├── DIADataStream.h │ │ │ │ │ ├── DIAEnumDebugStreams.h │ │ │ │ │ ├── DIAEnumLineNumbers.h │ │ │ │ │ ├── DIAEnumSourceFiles.h │ │ │ │ │ ├── DIAEnumSymbols.h │ │ │ │ │ ├── DIAEnumTables.h │ │ │ │ │ ├── DIAError.h │ │ │ │ │ ├── DIALineNumber.h │ │ │ │ │ ├── DIARawSymbol.h │ │ │ │ │ ├── DIASession.h │ │ │ │ │ ├── DIASourceFile.h │ │ │ │ │ ├── DIASupport.h │ │ │ │ │ └── DIATable.h │ │ │ │ ├── GenericError.h │ │ │ │ ├── IPDBDataStream.h │ │ │ │ ├── IPDBEnumChildren.h │ │ │ │ ├── IPDBLineNumber.h │ │ │ │ ├── IPDBRawSymbol.h │ │ │ │ ├── IPDBSession.h │ │ │ │ ├── IPDBSourceFile.h │ │ │ │ ├── IPDBTable.h │ │ │ │ ├── Native │ │ │ │ │ ├── DbiModuleDescriptor.h │ │ │ │ │ ├── DbiModuleDescriptorBuilder.h │ │ │ │ │ ├── DbiModuleList.h │ │ │ │ │ ├── DbiStream.h │ │ │ │ │ ├── DbiStreamBuilder.h │ │ │ │ │ ├── EnumTables.h │ │ │ │ │ ├── Formatters.h │ │ │ │ │ ├── GSIStreamBuilder.h │ │ │ │ │ ├── GlobalsStream.h │ │ │ │ │ ├── Hash.h │ │ │ │ │ ├── HashTable.h │ │ │ │ │ ├── ISectionContribVisitor.h │ │ │ │ │ ├── InfoStream.h │ │ │ │ │ ├── InfoStreamBuilder.h │ │ │ │ │ ├── ModuleDebugStream.h │ │ │ │ │ ├── NamedStreamMap.h │ │ │ │ │ ├── NativeBuiltinSymbol.h │ │ │ │ │ ├── NativeCompilandSymbol.h │ │ │ │ │ ├── NativeEnumModules.h │ │ │ │ │ ├── NativeEnumSymbol.h │ │ │ │ │ ├── NativeEnumTypes.h │ │ │ │ │ ├── NativeExeSymbol.h │ │ │ │ │ ├── NativeRawSymbol.h │ │ │ │ │ ├── NativeSession.h │ │ │ │ │ ├── PDBFile.h │ │ │ │ │ ├── PDBFileBuilder.h │ │ │ │ │ ├── PDBStringTable.h │ │ │ │ │ ├── PDBStringTableBuilder.h │ │ │ │ │ ├── PublicsStream.h │ │ │ │ │ ├── RawConstants.h │ │ │ │ │ ├── RawError.h │ │ │ │ │ ├── RawTypes.h │ │ │ │ │ ├── SymbolStream.h │ │ │ │ │ ├── TpiHashing.h │ │ │ │ │ ├── TpiStream.h │ │ │ │ │ └── TpiStreamBuilder.h │ │ │ │ ├── PDB.h │ │ │ │ ├── PDBContext.h │ │ │ │ ├── PDBExtras.h │ │ │ │ ├── PDBSymDumper.h │ │ │ │ ├── PDBSymbol.h │ │ │ │ ├── PDBSymbolAnnotation.h │ │ │ │ ├── PDBSymbolBlock.h │ │ │ │ ├── PDBSymbolCompiland.h │ │ │ │ ├── PDBSymbolCompilandDetails.h │ │ │ │ ├── PDBSymbolCompilandEnv.h │ │ │ │ ├── PDBSymbolCustom.h │ │ │ │ ├── PDBSymbolData.h │ │ │ │ ├── PDBSymbolExe.h │ │ │ │ ├── PDBSymbolFunc.h │ │ │ │ ├── PDBSymbolFuncDebugEnd.h │ │ │ │ ├── PDBSymbolFuncDebugStart.h │ │ │ │ ├── PDBSymbolLabel.h │ │ │ │ ├── PDBSymbolPublicSymbol.h │ │ │ │ ├── PDBSymbolThunk.h │ │ │ │ ├── PDBSymbolTypeArray.h │ │ │ │ ├── PDBSymbolTypeBaseClass.h │ │ │ │ ├── PDBSymbolTypeBuiltin.h │ │ │ │ ├── PDBSymbolTypeCustom.h │ │ │ │ ├── PDBSymbolTypeDimension.h │ │ │ │ ├── PDBSymbolTypeEnum.h │ │ │ │ ├── PDBSymbolTypeFriend.h │ │ │ │ ├── PDBSymbolTypeFunctionArg.h │ │ │ │ ├── PDBSymbolTypeFunctionSig.h │ │ │ │ ├── PDBSymbolTypeManaged.h │ │ │ │ ├── PDBSymbolTypePointer.h │ │ │ │ ├── PDBSymbolTypeTypedef.h │ │ │ │ ├── PDBSymbolTypeUDT.h │ │ │ │ ├── PDBSymbolTypeVTable.h │ │ │ │ ├── PDBSymbolTypeVTableShape.h │ │ │ │ ├── PDBSymbolUnknown.h │ │ │ │ ├── PDBSymbolUsingNamespace.h │ │ │ │ ├── PDBTypes.h │ │ │ │ └── UDTLayout.h │ │ │ └── Symbolize │ │ │ │ ├── DIPrinter.h │ │ │ │ ├── SymbolizableModule.h │ │ │ │ └── Symbolize.h │ │ │ ├── Demangle │ │ │ └── Demangle.h │ │ │ ├── ExecutionEngine │ │ │ ├── ExecutionEngine.h │ │ │ ├── GenericValue.h │ │ │ ├── Interpreter.h │ │ │ ├── JITEventListener.h │ │ │ ├── JITSymbol.h │ │ │ ├── MCJIT.h │ │ │ ├── OProfileWrapper.h │ │ │ ├── ObjectCache.h │ │ │ ├── ObjectMemoryBuffer.h │ │ │ ├── Orc │ │ │ │ ├── CompileOnDemandLayer.h │ │ │ │ ├── CompileUtils.h │ │ │ │ ├── ExecutionUtils.h │ │ │ │ ├── GlobalMappingLayer.h │ │ │ │ ├── IRCompileLayer.h │ │ │ │ ├── IRTransformLayer.h │ │ │ │ ├── IndirectionUtils.h │ │ │ │ ├── LambdaResolver.h │ │ │ │ ├── LazyEmittingLayer.h │ │ │ │ ├── NullResolver.h │ │ │ │ ├── ObjectTransformLayer.h │ │ │ │ ├── OrcABISupport.h │ │ │ │ ├── OrcError.h │ │ │ │ ├── OrcRemoteTargetClient.h │ │ │ │ ├── OrcRemoteTargetRPCAPI.h │ │ │ │ ├── OrcRemoteTargetServer.h │ │ │ │ ├── RPCSerialization.h │ │ │ │ ├── RPCUtils.h │ │ │ │ ├── RTDyldObjectLinkingLayer.h │ │ │ │ ├── RawByteChannel.h │ │ │ │ ├── RemoteObjectLayer.h │ │ │ │ └── SymbolStringPool.h │ │ │ ├── OrcMCJITReplacement.h │ │ │ ├── RTDyldMemoryManager.h │ │ │ ├── RuntimeDyld.h │ │ │ ├── RuntimeDyldChecker.h │ │ │ └── SectionMemoryManager.h │ │ │ ├── FuzzMutate │ │ │ ├── FuzzerCLI.h │ │ │ ├── IRMutator.h │ │ │ ├── OpDescriptor.h │ │ │ ├── Operations.h │ │ │ ├── Random.h │ │ │ └── RandomIRBuilder.h │ │ │ ├── IR │ │ │ ├── Argument.h │ │ │ ├── AssemblyAnnotationWriter.h │ │ │ ├── Attributes.h │ │ │ ├── Attributes.td │ │ │ ├── AutoUpgrade.h │ │ │ ├── BasicBlock.h │ │ │ ├── CFG.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CallSite.h │ │ │ ├── CallingConv.h │ │ │ ├── Comdat.h │ │ │ ├── Constant.h │ │ │ ├── ConstantFolder.h │ │ │ ├── ConstantRange.h │ │ │ ├── Constants.h │ │ │ ├── DIBuilder.h │ │ │ ├── DataLayout.h │ │ │ ├── DebugInfo.h │ │ │ ├── DebugInfoFlags.def │ │ │ ├── DebugInfoMetadata.h │ │ │ ├── DebugLoc.h │ │ │ ├── DerivedTypes.h │ │ │ ├── DerivedUser.h │ │ │ ├── DiagnosticHandler.h │ │ │ ├── DiagnosticInfo.h │ │ │ ├── DiagnosticPrinter.h │ │ │ ├── Dominators.h │ │ │ ├── Function.h │ │ │ ├── GVMaterializer.h │ │ │ ├── GetElementPtrTypeIterator.h │ │ │ ├── GlobalAlias.h │ │ │ ├── GlobalIFunc.h │ │ │ ├── GlobalIndirectSymbol.h │ │ │ ├── GlobalObject.h │ │ │ ├── GlobalValue.h │ │ │ ├── GlobalVariable.h │ │ │ ├── IRBuilder.h │ │ │ ├── IRPrintingPasses.h │ │ │ ├── InlineAsm.h │ │ │ ├── InstIterator.h │ │ │ ├── InstVisitor.h │ │ │ ├── InstrTypes.h │ │ │ ├── Instruction.def │ │ │ ├── Instruction.h │ │ │ ├── Instructions.h │ │ │ ├── IntrinsicInst.h │ │ │ ├── Intrinsics.h │ │ │ ├── Intrinsics.td │ │ │ ├── IntrinsicsAArch64.td │ │ │ ├── IntrinsicsAMDGPU.td │ │ │ ├── IntrinsicsARM.td │ │ │ ├── IntrinsicsBPF.td │ │ │ ├── IntrinsicsHexagon.td │ │ │ ├── IntrinsicsMips.td │ │ │ ├── IntrinsicsNVVM.td │ │ │ ├── IntrinsicsPowerPC.td │ │ │ ├── IntrinsicsSystemZ.td │ │ │ ├── IntrinsicsWebAssembly.td │ │ │ ├── IntrinsicsX86.td │ │ │ ├── IntrinsicsXCore.td │ │ │ ├── LLVMContext.h │ │ │ ├── LegacyPassManager.h │ │ │ ├── LegacyPassManagers.h │ │ │ ├── LegacyPassNameParser.h │ │ │ ├── MDBuilder.h │ │ │ ├── Mangler.h │ │ │ ├── Metadata.def │ │ │ ├── Metadata.h │ │ │ ├── Module.h │ │ │ ├── ModuleSlotTracker.h │ │ │ ├── ModuleSummaryIndex.h │ │ │ ├── ModuleSummaryIndexYAML.h │ │ │ ├── NoFolder.h │ │ │ ├── OperandTraits.h │ │ │ ├── Operator.h │ │ │ ├── OptBisect.h │ │ │ ├── PassManager.h │ │ │ ├── PassManagerInternal.h │ │ │ ├── PatternMatch.h │ │ │ ├── PredIteratorCache.h │ │ │ ├── ProfileSummary.h │ │ │ ├── SafepointIRVerifier.h │ │ │ ├── Statepoint.h │ │ │ ├── SymbolTableListTraits.h │ │ │ ├── TrackingMDRef.h │ │ │ ├── Type.h │ │ │ ├── TypeBuilder.h │ │ │ ├── TypeFinder.h │ │ │ ├── Use.h │ │ │ ├── UseListOrder.h │ │ │ ├── User.h │ │ │ ├── Value.def │ │ │ ├── Value.h │ │ │ ├── ValueHandle.h │ │ │ ├── ValueMap.h │ │ │ ├── ValueSymbolTable.h │ │ │ └── Verifier.h │ │ │ ├── IRReader │ │ │ └── IRReader.h │ │ │ ├── InitializePasses.h │ │ │ ├── LTO │ │ │ ├── Caching.h │ │ │ ├── Config.h │ │ │ ├── LTO.h │ │ │ ├── LTOBackend.h │ │ │ └── legacy │ │ │ │ ├── LTOCodeGenerator.h │ │ │ │ ├── LTOModule.h │ │ │ │ ├── ThinLTOCodeGenerator.h │ │ │ │ └── UpdateCompilerUsed.h │ │ │ ├── LineEditor │ │ │ └── LineEditor.h │ │ │ ├── LinkAllIR.h │ │ │ ├── LinkAllPasses.h │ │ │ ├── Linker │ │ │ ├── IRMover.h │ │ │ └── Linker.h │ │ │ ├── MC │ │ │ ├── ConstantPools.h │ │ │ ├── LaneBitmask.h │ │ │ ├── MCAsmBackend.h │ │ │ ├── MCAsmInfo.h │ │ │ ├── MCAsmInfoCOFF.h │ │ │ ├── MCAsmInfoDarwin.h │ │ │ ├── MCAsmInfoELF.h │ │ │ ├── MCAsmInfoWasm.h │ │ │ ├── MCAsmLayout.h │ │ │ ├── MCAsmMacro.h │ │ │ ├── MCAssembler.h │ │ │ ├── MCCodeEmitter.h │ │ │ ├── MCCodePadder.h │ │ │ ├── MCCodeView.h │ │ │ ├── MCContext.h │ │ │ ├── MCDirectives.h │ │ │ ├── MCDisassembler │ │ │ │ ├── MCDisassembler.h │ │ │ │ ├── MCExternalSymbolizer.h │ │ │ │ ├── MCRelocationInfo.h │ │ │ │ └── MCSymbolizer.h │ │ │ ├── MCDwarf.h │ │ │ ├── MCELFObjectWriter.h │ │ │ ├── MCELFStreamer.h │ │ │ ├── MCExpr.h │ │ │ ├── MCFixedLenDisassembler.h │ │ │ ├── MCFixup.h │ │ │ ├── MCFixupKindInfo.h │ │ │ ├── MCFragment.h │ │ │ ├── MCInst.h │ │ │ ├── MCInstBuilder.h │ │ │ ├── MCInstPrinter.h │ │ │ ├── MCInstrAnalysis.h │ │ │ ├── MCInstrDesc.h │ │ │ ├── MCInstrInfo.h │ │ │ ├── MCInstrItineraries.h │ │ │ ├── MCLabel.h │ │ │ ├── MCLinkerOptimizationHint.h │ │ │ ├── MCMachObjectWriter.h │ │ │ ├── MCObjectFileInfo.h │ │ │ ├── MCObjectStreamer.h │ │ │ ├── MCObjectWriter.h │ │ │ ├── MCParser │ │ │ │ ├── AsmCond.h │ │ │ │ ├── AsmLexer.h │ │ │ │ ├── MCAsmLexer.h │ │ │ │ ├── MCAsmParser.h │ │ │ │ ├── MCAsmParserExtension.h │ │ │ │ ├── MCAsmParserUtils.h │ │ │ │ ├── MCParsedAsmOperand.h │ │ │ │ └── MCTargetAsmParser.h │ │ │ ├── MCRegisterInfo.h │ │ │ ├── MCSchedule.h │ │ │ ├── MCSection.h │ │ │ ├── MCSectionCOFF.h │ │ │ ├── MCSectionELF.h │ │ │ ├── MCSectionMachO.h │ │ │ ├── MCSectionWasm.h │ │ │ ├── MCStreamer.h │ │ │ ├── MCSubtargetInfo.h │ │ │ ├── MCSymbol.h │ │ │ ├── MCSymbolCOFF.h │ │ │ ├── MCSymbolELF.h │ │ │ ├── MCSymbolMachO.h │ │ │ ├── MCSymbolWasm.h │ │ │ ├── MCTargetOptions.h │ │ │ ├── MCTargetOptionsCommandFlags.def │ │ │ ├── MCValue.h │ │ │ ├── MCWasmObjectWriter.h │ │ │ ├── MCWasmStreamer.h │ │ │ ├── MCWin64EH.h │ │ │ ├── MCWinCOFFObjectWriter.h │ │ │ ├── MCWinCOFFStreamer.h │ │ │ ├── MCWinEH.h │ │ │ ├── MachineLocation.h │ │ │ ├── SectionKind.h │ │ │ ├── StringTableBuilder.h │ │ │ └── SubtargetFeature.h │ │ │ ├── Object │ │ │ ├── Archive.h │ │ │ ├── ArchiveWriter.h │ │ │ ├── Binary.h │ │ │ ├── COFF.h │ │ │ ├── COFFImportFile.h │ │ │ ├── COFFModuleDefinition.h │ │ │ ├── Decompressor.h │ │ │ ├── ELF.h │ │ │ ├── ELFObjectFile.h │ │ │ ├── ELFTypes.h │ │ │ ├── Error.h │ │ │ ├── IRObjectFile.h │ │ │ ├── IRSymtab.h │ │ │ ├── MachO.h │ │ │ ├── MachOUniversal.h │ │ │ ├── ModuleSymbolTable.h │ │ │ ├── ObjectFile.h │ │ │ ├── RelocVisitor.h │ │ │ ├── StackMapParser.h │ │ │ ├── SymbolSize.h │ │ │ ├── SymbolicFile.h │ │ │ ├── Wasm.h │ │ │ └── WindowsResource.h │ │ │ ├── ObjectYAML │ │ │ ├── COFFYAML.h │ │ │ ├── CodeViewYAMLDebugSections.h │ │ │ ├── CodeViewYAMLSymbols.h │ │ │ ├── CodeViewYAMLTypeHashing.h │ │ │ ├── CodeViewYAMLTypes.h │ │ │ ├── DWARFEmitter.h │ │ │ ├── DWARFYAML.h │ │ │ ├── ELFYAML.h │ │ │ ├── MachOYAML.h │ │ │ ├── ObjectYAML.h │ │ │ ├── WasmYAML.h │ │ │ └── YAML.h │ │ │ ├── Option │ │ │ ├── Arg.h │ │ │ ├── ArgList.h │ │ │ ├── OptParser.td │ │ │ ├── OptSpecifier.h │ │ │ ├── OptTable.h │ │ │ └── Option.h │ │ │ ├── Pass.h │ │ │ ├── PassAnalysisSupport.h │ │ │ ├── PassInfo.h │ │ │ ├── PassRegistry.h │ │ │ ├── PassSupport.h │ │ │ ├── Passes │ │ │ └── PassBuilder.h │ │ │ ├── ProfileData │ │ │ ├── Coverage │ │ │ │ ├── CoverageMapping.h │ │ │ │ ├── CoverageMappingReader.h │ │ │ │ └── CoverageMappingWriter.h │ │ │ ├── GCOV.h │ │ │ ├── InstrProf.h │ │ │ ├── InstrProfData.inc │ │ │ ├── InstrProfReader.h │ │ │ ├── InstrProfWriter.h │ │ │ ├── ProfileCommon.h │ │ │ ├── SampleProf.h │ │ │ ├── SampleProfReader.h │ │ │ └── SampleProfWriter.h │ │ │ ├── Support │ │ │ ├── AArch64TargetParser.def │ │ │ ├── AMDGPUKernelDescriptor.h │ │ │ ├── AMDGPUMetadata.h │ │ │ ├── ARMAttributeParser.h │ │ │ ├── ARMBuildAttributes.h │ │ │ ├── ARMEHABI.h │ │ │ ├── ARMTargetParser.def │ │ │ ├── ARMWinEH.h │ │ │ ├── AlignOf.h │ │ │ ├── Allocator.h │ │ │ ├── ArrayRecycler.h │ │ │ ├── Atomic.h │ │ │ ├── AtomicOrdering.h │ │ │ ├── BinaryByteStream.h │ │ │ ├── BinaryItemStream.h │ │ │ ├── BinaryStream.h │ │ │ ├── BinaryStreamArray.h │ │ │ ├── BinaryStreamError.h │ │ │ ├── BinaryStreamReader.h │ │ │ ├── BinaryStreamRef.h │ │ │ ├── BinaryStreamWriter.h │ │ │ ├── BlockFrequency.h │ │ │ ├── BranchProbability.h │ │ │ ├── CBindingWrapping.h │ │ │ ├── CMakeLists.txt │ │ │ ├── COM.h │ │ │ ├── CachePruning.h │ │ │ ├── Capacity.h │ │ │ ├── Casting.h │ │ │ ├── Chrono.h │ │ │ ├── CodeGen.h │ │ │ ├── CodeGenCWrappers.h │ │ │ ├── CodeGenCoverage.h │ │ │ ├── CommandLine.h │ │ │ ├── Compiler.h │ │ │ ├── Compression.h │ │ │ ├── ConvertUTF.h │ │ │ ├── CrashRecoveryContext.h │ │ │ ├── DOTGraphTraits.h │ │ │ ├── DataExtractor.h │ │ │ ├── DataTypes.h.cmake │ │ │ ├── Debug.h │ │ │ ├── DebugCounter.h │ │ │ ├── DynamicLibrary.h │ │ │ ├── Endian.h │ │ │ ├── EndianStream.h │ │ │ ├── Errc.h │ │ │ ├── Errno.h │ │ │ ├── Error.h │ │ │ ├── ErrorHandling.h │ │ │ ├── ErrorOr.h │ │ │ ├── FileOutputBuffer.h │ │ │ ├── FileSystem.h │ │ │ ├── FileUtilities.h │ │ │ ├── Format.h │ │ │ ├── FormatAdapters.h │ │ │ ├── FormatCommon.h │ │ │ ├── FormatProviders.h │ │ │ ├── FormatVariadic.h │ │ │ ├── FormatVariadicDetails.h │ │ │ ├── FormattedStream.h │ │ │ ├── GenericDomTree.h │ │ │ ├── GenericDomTreeConstruction.h │ │ │ ├── GlobPattern.h │ │ │ ├── GraphWriter.h │ │ │ ├── Host.h │ │ │ ├── JamCRC.h │ │ │ ├── KnownBits.h │ │ │ ├── LEB128.h │ │ │ ├── LICENSE.TXT │ │ │ ├── LineIterator.h │ │ │ ├── Locale.h │ │ │ ├── LockFileManager.h │ │ │ ├── LowLevelTypeImpl.h │ │ │ ├── MD5.h │ │ │ ├── ManagedStatic.h │ │ │ ├── MathExtras.h │ │ │ ├── Memory.h │ │ │ ├── MemoryBuffer.h │ │ │ ├── MipsABIFlags.h │ │ │ ├── Mutex.h │ │ │ ├── MutexGuard.h │ │ │ ├── NativeFormatting.h │ │ │ ├── OnDiskHashTable.h │ │ │ ├── Options.h │ │ │ ├── Parallel.h │ │ │ ├── Path.h │ │ │ ├── PluginLoader.h │ │ │ ├── PointerLikeTypeTraits.h │ │ │ ├── PrettyStackTrace.h │ │ │ ├── Printable.h │ │ │ ├── Process.h │ │ │ ├── Program.h │ │ │ ├── RWMutex.h │ │ │ ├── RandomNumberGenerator.h │ │ │ ├── Recycler.h │ │ │ ├── RecyclingAllocator.h │ │ │ ├── Regex.h │ │ │ ├── Registry.h │ │ │ ├── ReverseIteration.h │ │ │ ├── SHA1.h │ │ │ ├── SMLoc.h │ │ │ ├── SaveAndRestore.h │ │ │ ├── ScaledNumber.h │ │ │ ├── ScopedPrinter.h │ │ │ ├── Signals.h │ │ │ ├── Solaris │ │ │ │ └── sys │ │ │ │ │ └── regset.h │ │ │ ├── SourceMgr.h │ │ │ ├── SpecialCaseList.h │ │ │ ├── StringPool.h │ │ │ ├── StringSaver.h │ │ │ ├── SwapByteOrder.h │ │ │ ├── SystemUtils.h │ │ │ ├── TarWriter.h │ │ │ ├── TargetParser.h │ │ │ ├── TargetRegistry.h │ │ │ ├── TargetSelect.h │ │ │ ├── ThreadLocal.h │ │ │ ├── ThreadPool.h │ │ │ ├── Threading.h │ │ │ ├── Timer.h │ │ │ ├── ToolOutputFile.h │ │ │ ├── TrailingObjects.h │ │ │ ├── TrigramIndex.h │ │ │ ├── TypeName.h │ │ │ ├── Unicode.h │ │ │ ├── UnicodeCharRanges.h │ │ │ ├── UniqueLock.h │ │ │ ├── Valgrind.h │ │ │ ├── Watchdog.h │ │ │ ├── Win64EH.h │ │ │ ├── WindowsError.h │ │ │ ├── X86TargetParser.def │ │ │ ├── YAMLParser.h │ │ │ ├── YAMLTraits.h │ │ │ ├── circular_raw_ostream.h │ │ │ ├── raw_os_ostream.h │ │ │ ├── raw_ostream.h │ │ │ ├── raw_sha1_ostream.h │ │ │ ├── thread.h │ │ │ ├── type_traits.h │ │ │ └── xxhash.h │ │ │ ├── TableGen │ │ │ ├── Error.h │ │ │ ├── Main.h │ │ │ ├── Record.h │ │ │ ├── SearchableTable.td │ │ │ ├── SetTheory.h │ │ │ ├── StringMatcher.h │ │ │ ├── StringToOffsetTable.h │ │ │ └── TableGenBackend.h │ │ │ ├── Target │ │ │ ├── GenericOpcodes.td │ │ │ ├── GlobalISel │ │ │ │ ├── RegisterBank.td │ │ │ │ ├── SelectionDAGCompat.td │ │ │ │ └── Target.td │ │ │ ├── Target.td │ │ │ ├── TargetCallingConv.td │ │ │ ├── TargetIntrinsicInfo.h │ │ │ ├── TargetItinerary.td │ │ │ ├── TargetMachine.h │ │ │ ├── TargetOptions.h │ │ │ ├── TargetSchedule.td │ │ │ └── TargetSelectionDAG.td │ │ │ ├── Testing │ │ │ └── Support │ │ │ │ ├── Error.h │ │ │ │ └── SupportHelpers.h │ │ │ ├── ToolDrivers │ │ │ ├── llvm-dlltool │ │ │ │ └── DlltoolDriver.h │ │ │ └── llvm-lib │ │ │ │ └── LibDriver.h │ │ │ ├── Transforms │ │ │ ├── Coroutines.h │ │ │ ├── GCOVProfiler.h │ │ │ ├── IPO.h │ │ │ ├── IPO │ │ │ │ ├── AlwaysInliner.h │ │ │ │ ├── ArgumentPromotion.h │ │ │ │ ├── CalledValuePropagation.h │ │ │ │ ├── ConstantMerge.h │ │ │ │ ├── CrossDSOCFI.h │ │ │ │ ├── DeadArgumentElimination.h │ │ │ │ ├── ElimAvailExtern.h │ │ │ │ ├── ForceFunctionAttrs.h │ │ │ │ ├── FunctionAttrs.h │ │ │ │ ├── FunctionImport.h │ │ │ │ ├── GlobalDCE.h │ │ │ │ ├── GlobalOpt.h │ │ │ │ ├── GlobalSplit.h │ │ │ │ ├── InferFunctionAttrs.h │ │ │ │ ├── Inliner.h │ │ │ │ ├── Internalize.h │ │ │ │ ├── LowerTypeTests.h │ │ │ │ ├── PartialInlining.h │ │ │ │ ├── PassManagerBuilder.h │ │ │ │ ├── SCCP.h │ │ │ │ ├── StripDeadPrototypes.h │ │ │ │ ├── ThinLTOBitcodeWriter.h │ │ │ │ └── WholeProgramDevirt.h │ │ │ ├── InstCombine │ │ │ │ ├── InstCombine.h │ │ │ │ └── InstCombineWorklist.h │ │ │ ├── InstrProfiling.h │ │ │ ├── Instrumentation.h │ │ │ ├── Instrumentation │ │ │ │ └── BoundsChecking.h │ │ │ ├── ObjCARC.h │ │ │ ├── PGOInstrumentation.h │ │ │ ├── SampleProfile.h │ │ │ ├── Scalar.h │ │ │ ├── Scalar │ │ │ │ ├── ADCE.h │ │ │ │ ├── AlignmentFromAssumptions.h │ │ │ │ ├── BDCE.h │ │ │ │ ├── CallSiteSplitting.h │ │ │ │ ├── ConstantHoisting.h │ │ │ │ ├── CorrelatedValuePropagation.h │ │ │ │ ├── DCE.h │ │ │ │ ├── DeadStoreElimination.h │ │ │ │ ├── DivRemPairs.h │ │ │ │ ├── EarlyCSE.h │ │ │ │ ├── Float2Int.h │ │ │ │ ├── GVN.h │ │ │ │ ├── GVNExpression.h │ │ │ │ ├── GuardWidening.h │ │ │ │ ├── IVUsersPrinter.h │ │ │ │ ├── IndVarSimplify.h │ │ │ │ ├── JumpThreading.h │ │ │ │ ├── LICM.h │ │ │ │ ├── LoopAccessAnalysisPrinter.h │ │ │ │ ├── LoopDataPrefetch.h │ │ │ │ ├── LoopDeletion.h │ │ │ │ ├── LoopDistribute.h │ │ │ │ ├── LoopIdiomRecognize.h │ │ │ │ ├── LoopInstSimplify.h │ │ │ │ ├── LoopLoadElimination.h │ │ │ │ ├── LoopPassManager.h │ │ │ │ ├── LoopPredication.h │ │ │ │ ├── LoopRotation.h │ │ │ │ ├── LoopSimplifyCFG.h │ │ │ │ ├── LoopSink.h │ │ │ │ ├── LoopStrengthReduce.h │ │ │ │ ├── LoopUnrollPass.h │ │ │ │ ├── LowerAtomic.h │ │ │ │ ├── LowerExpectIntrinsic.h │ │ │ │ ├── LowerGuardIntrinsic.h │ │ │ │ ├── MemCpyOptimizer.h │ │ │ │ ├── MergedLoadStoreMotion.h │ │ │ │ ├── NaryReassociate.h │ │ │ │ ├── NewGVN.h │ │ │ │ ├── PartiallyInlineLibCalls.h │ │ │ │ ├── Reassociate.h │ │ │ │ ├── RewriteStatepointsForGC.h │ │ │ │ ├── SCCP.h │ │ │ │ ├── SROA.h │ │ │ │ ├── SimpleLoopUnswitch.h │ │ │ │ ├── SimplifyCFG.h │ │ │ │ ├── Sink.h │ │ │ │ ├── SpeculateAroundPHIs.h │ │ │ │ ├── SpeculativeExecution.h │ │ │ │ └── TailRecursionElimination.h │ │ │ ├── Utils │ │ │ │ ├── ASanStackFrameLayout.h │ │ │ │ ├── AddDiscriminators.h │ │ │ │ ├── BasicBlockUtils.h │ │ │ │ ├── BreakCriticalEdges.h │ │ │ │ ├── BuildLibCalls.h │ │ │ │ ├── BypassSlowDivision.h │ │ │ │ ├── CallPromotionUtils.h │ │ │ │ ├── Cloning.h │ │ │ │ ├── CodeExtractor.h │ │ │ │ ├── CtorUtils.h │ │ │ │ ├── EntryExitInstrumenter.h │ │ │ │ ├── EscapeEnumerator.h │ │ │ │ ├── Evaluator.h │ │ │ │ ├── FunctionComparator.h │ │ │ │ ├── FunctionImportUtils.h │ │ │ │ ├── GlobalStatus.h │ │ │ │ ├── ImportedFunctionsInliningStatistics.h │ │ │ │ ├── IntegerDivision.h │ │ │ │ ├── LCSSA.h │ │ │ │ ├── LibCallsShrinkWrap.h │ │ │ │ ├── Local.h │ │ │ │ ├── LoopSimplify.h │ │ │ │ ├── LoopUtils.h │ │ │ │ ├── LoopVersioning.h │ │ │ │ ├── LowerInvoke.h │ │ │ │ ├── LowerMemIntrinsics.h │ │ │ │ ├── Mem2Reg.h │ │ │ │ ├── ModuleUtils.h │ │ │ │ ├── NameAnonGlobals.h │ │ │ │ ├── OrderedInstructions.h │ │ │ │ ├── PredicateInfo.h │ │ │ │ ├── PromoteMemToReg.h │ │ │ │ ├── SSAUpdater.h │ │ │ │ ├── SSAUpdaterImpl.h │ │ │ │ ├── SanitizerStats.h │ │ │ │ ├── SimplifyIndVar.h │ │ │ │ ├── SimplifyInstructions.h │ │ │ │ ├── SimplifyLibCalls.h │ │ │ │ ├── SplitModule.h │ │ │ │ ├── SymbolRewriter.h │ │ │ │ ├── UnifyFunctionExitNodes.h │ │ │ │ ├── UnrollLoop.h │ │ │ │ ├── VNCoercion.h │ │ │ │ └── ValueMapper.h │ │ │ ├── Vectorize.h │ │ │ └── Vectorize │ │ │ │ ├── LoopVectorize.h │ │ │ │ └── SLPVectorizer.h │ │ │ ├── WindowsManifest │ │ │ └── WindowsManifestMerger.h │ │ │ ├── WindowsResource │ │ │ ├── ResourceProcessor.h │ │ │ ├── ResourceScriptToken.h │ │ │ └── ResourceScriptTokenList.h │ │ │ ├── XRay │ │ │ ├── Graph.h │ │ │ ├── InstrumentationMap.h │ │ │ ├── Trace.h │ │ │ ├── XRayRecord.h │ │ │ └── YAMLXRayRecord.h │ │ │ ├── module.modulemap │ │ │ └── module.modulemap.build │ ├── lib │ │ ├── Analysis │ │ │ ├── AliasAnalysis.cpp │ │ │ ├── AliasAnalysisEvaluator.cpp │ │ │ ├── AliasAnalysisSummary.cpp │ │ │ ├── AliasAnalysisSummary.h │ │ │ ├── AliasSetTracker.cpp │ │ │ ├── Analysis.cpp │ │ │ ├── AssumptionCache.cpp │ │ │ ├── BasicAliasAnalysis.cpp │ │ │ ├── BlockFrequencyInfo.cpp │ │ │ ├── BlockFrequencyInfoImpl.cpp │ │ │ ├── BranchProbabilityInfo.cpp │ │ │ ├── CFG.cpp │ │ │ ├── CFGPrinter.cpp │ │ │ ├── CFLAndersAliasAnalysis.cpp │ │ │ ├── CFLGraph.h │ │ │ ├── CFLSteensAliasAnalysis.cpp │ │ │ ├── CGSCCPassManager.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CallGraph.cpp │ │ │ ├── CallGraphSCCPass.cpp │ │ │ ├── CallPrinter.cpp │ │ │ ├── CaptureTracking.cpp │ │ │ ├── CmpInstAnalysis.cpp │ │ │ ├── CodeMetrics.cpp │ │ │ ├── ConstantFolding.cpp │ │ │ ├── CostModel.cpp │ │ │ ├── Delinearization.cpp │ │ │ ├── DemandedBits.cpp │ │ │ ├── DependenceAnalysis.cpp │ │ │ ├── DivergenceAnalysis.cpp │ │ │ ├── DomPrinter.cpp │ │ │ ├── DominanceFrontier.cpp │ │ │ ├── EHPersonalities.cpp │ │ │ ├── GlobalsModRef.cpp │ │ │ ├── IVUsers.cpp │ │ │ ├── IndirectCallPromotionAnalysis.cpp │ │ │ ├── InlineCost.cpp │ │ │ ├── InstCount.cpp │ │ │ ├── InstructionSimplify.cpp │ │ │ ├── Interval.cpp │ │ │ ├── IntervalPartition.cpp │ │ │ ├── IteratedDominanceFrontier.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── LazyBlockFrequencyInfo.cpp │ │ │ ├── LazyBranchProbabilityInfo.cpp │ │ │ ├── LazyCallGraph.cpp │ │ │ ├── LazyValueInfo.cpp │ │ │ ├── Lint.cpp │ │ │ ├── Loads.cpp │ │ │ ├── LoopAccessAnalysis.cpp │ │ │ ├── LoopAnalysisManager.cpp │ │ │ ├── LoopInfo.cpp │ │ │ ├── LoopPass.cpp │ │ │ ├── LoopUnrollAnalyzer.cpp │ │ │ ├── MemDepPrinter.cpp │ │ │ ├── MemDerefPrinter.cpp │ │ │ ├── MemoryBuiltins.cpp │ │ │ ├── MemoryDependenceAnalysis.cpp │ │ │ ├── MemoryLocation.cpp │ │ │ ├── MemorySSA.cpp │ │ │ ├── MemorySSAUpdater.cpp │ │ │ ├── ModuleDebugInfoPrinter.cpp │ │ │ ├── ModuleSummaryAnalysis.cpp │ │ │ ├── ObjCARCAliasAnalysis.cpp │ │ │ ├── ObjCARCAnalysisUtils.cpp │ │ │ ├── ObjCARCInstKind.cpp │ │ │ ├── OptimizationRemarkEmitter.cpp │ │ │ ├── OrderedBasicBlock.cpp │ │ │ ├── PHITransAddr.cpp │ │ │ ├── PostDominators.cpp │ │ │ ├── ProfileSummaryInfo.cpp │ │ │ ├── PtrUseVisitor.cpp │ │ │ ├── README.txt │ │ │ ├── RegionInfo.cpp │ │ │ ├── RegionPass.cpp │ │ │ ├── RegionPrinter.cpp │ │ │ ├── ScalarEvolution.cpp │ │ │ ├── ScalarEvolutionAliasAnalysis.cpp │ │ │ ├── ScalarEvolutionExpander.cpp │ │ │ ├── ScalarEvolutionNormalization.cpp │ │ │ ├── ScopedNoAliasAA.cpp │ │ │ ├── StratifiedSets.h │ │ │ ├── TargetLibraryInfo.cpp │ │ │ ├── TargetTransformInfo.cpp │ │ │ ├── Trace.cpp │ │ │ ├── TypeBasedAliasAnalysis.cpp │ │ │ ├── TypeMetadataUtils.cpp │ │ │ ├── ValueLattice.cpp │ │ │ ├── ValueLatticeUtils.cpp │ │ │ ├── ValueTracking.cpp │ │ │ └── VectorUtils.cpp │ │ ├── AsmParser │ │ │ ├── CMakeLists.txt │ │ │ ├── LLLexer.cpp │ │ │ ├── LLLexer.h │ │ │ ├── LLParser.cpp │ │ │ ├── LLParser.h │ │ │ ├── LLToken.h │ │ │ ├── LLVMBuild.txt │ │ │ └── Parser.cpp │ │ ├── BinaryFormat │ │ │ ├── CMakeLists.txt │ │ │ ├── Dwarf.cpp │ │ │ ├── LLVMBuild.txt │ │ │ └── Magic.cpp │ │ ├── Bitcode │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── Reader │ │ │ │ ├── BitReader.cpp │ │ │ │ ├── BitcodeReader.cpp │ │ │ │ ├── BitstreamReader.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MetadataLoader.cpp │ │ │ │ ├── MetadataLoader.h │ │ │ │ ├── ValueList.cpp │ │ │ │ └── ValueList.h │ │ │ └── Writer │ │ │ │ ├── BitWriter.cpp │ │ │ │ ├── BitcodeWriter.cpp │ │ │ │ ├── BitcodeWriterPass.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── ValueEnumerator.cpp │ │ │ │ └── ValueEnumerator.h │ │ ├── CMakeLists.txt │ │ ├── CodeGen │ │ │ ├── AggressiveAntiDepBreaker.cpp │ │ │ ├── AggressiveAntiDepBreaker.h │ │ │ ├── AllocationOrder.cpp │ │ │ ├── AllocationOrder.h │ │ │ ├── Analysis.cpp │ │ │ ├── AntiDepBreaker.h │ │ │ ├── AsmPrinter │ │ │ │ ├── ARMException.cpp │ │ │ │ ├── AddressPool.cpp │ │ │ │ ├── AddressPool.h │ │ │ │ ├── AsmPrinter.cpp │ │ │ │ ├── AsmPrinterDwarf.cpp │ │ │ │ ├── AsmPrinterHandler.h │ │ │ │ ├── AsmPrinterInlineAsm.cpp │ │ │ │ ├── ByteStreamer.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CodeViewDebug.cpp │ │ │ │ ├── CodeViewDebug.h │ │ │ │ ├── DIE.cpp │ │ │ │ ├── DIEHash.cpp │ │ │ │ ├── DIEHash.h │ │ │ │ ├── DIEHashAttributes.def │ │ │ │ ├── DbgValueHistoryCalculator.cpp │ │ │ │ ├── DbgValueHistoryCalculator.h │ │ │ │ ├── DebugHandlerBase.cpp │ │ │ │ ├── DebugHandlerBase.h │ │ │ │ ├── DebugLocEntry.h │ │ │ │ ├── DebugLocStream.cpp │ │ │ │ ├── DebugLocStream.h │ │ │ │ ├── DwarfAccelTable.cpp │ │ │ │ ├── DwarfAccelTable.h │ │ │ │ ├── DwarfCFIException.cpp │ │ │ │ ├── DwarfCompileUnit.cpp │ │ │ │ ├── DwarfCompileUnit.h │ │ │ │ ├── DwarfDebug.cpp │ │ │ │ ├── DwarfDebug.h │ │ │ │ ├── DwarfException.h │ │ │ │ ├── DwarfExpression.cpp │ │ │ │ ├── DwarfExpression.h │ │ │ │ ├── DwarfFile.cpp │ │ │ │ ├── DwarfFile.h │ │ │ │ ├── DwarfStringPool.cpp │ │ │ │ ├── DwarfStringPool.h │ │ │ │ ├── DwarfUnit.cpp │ │ │ │ ├── DwarfUnit.h │ │ │ │ ├── EHStreamer.cpp │ │ │ │ ├── EHStreamer.h │ │ │ │ ├── ErlangGCPrinter.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── OcamlGCPrinter.cpp │ │ │ │ ├── WinException.cpp │ │ │ │ └── WinException.h │ │ │ ├── AtomicExpandPass.cpp │ │ │ ├── BasicTargetTransformInfo.cpp │ │ │ ├── BranchFolding.cpp │ │ │ ├── BranchFolding.h │ │ │ ├── BranchRelaxation.cpp │ │ │ ├── BuiltinGCs.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CalcSpillWeights.cpp │ │ │ ├── CallingConvLower.cpp │ │ │ ├── CodeGen.cpp │ │ │ ├── CodeGenPrepare.cpp │ │ │ ├── CriticalAntiDepBreaker.cpp │ │ │ ├── CriticalAntiDepBreaker.h │ │ │ ├── DFAPacketizer.cpp │ │ │ ├── DeadMachineInstructionElim.cpp │ │ │ ├── DetectDeadLanes.cpp │ │ │ ├── DwarfEHPrepare.cpp │ │ │ ├── EarlyIfConversion.cpp │ │ │ ├── EdgeBundles.cpp │ │ │ ├── ExecutionDepsFix.cpp │ │ │ ├── ExpandISelPseudos.cpp │ │ │ ├── ExpandMemCmp.cpp │ │ │ ├── ExpandPostRAPseudos.cpp │ │ │ ├── ExpandReductions.cpp │ │ │ ├── FEntryInserter.cpp │ │ │ ├── FaultMaps.cpp │ │ │ ├── FuncletLayout.cpp │ │ │ ├── GCMetadata.cpp │ │ │ ├── GCMetadataPrinter.cpp │ │ │ ├── GCRootLowering.cpp │ │ │ ├── GCStrategy.cpp │ │ │ ├── GlobalISel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CallLowering.cpp │ │ │ │ ├── GlobalISel.cpp │ │ │ │ ├── IRTranslator.cpp │ │ │ │ ├── InstructionSelect.cpp │ │ │ │ ├── InstructionSelector.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── Legalizer.cpp │ │ │ │ ├── LegalizerHelper.cpp │ │ │ │ ├── LegalizerInfo.cpp │ │ │ │ ├── Localizer.cpp │ │ │ │ ├── MachineIRBuilder.cpp │ │ │ │ ├── RegBankSelect.cpp │ │ │ │ ├── RegisterBank.cpp │ │ │ │ ├── RegisterBankInfo.cpp │ │ │ │ └── Utils.cpp │ │ │ ├── GlobalMerge.cpp │ │ │ ├── IfConversion.cpp │ │ │ ├── ImplicitNullChecks.cpp │ │ │ ├── IndirectBrExpandPass.cpp │ │ │ ├── InlineSpiller.cpp │ │ │ ├── InterferenceCache.cpp │ │ │ ├── InterferenceCache.h │ │ │ ├── InterleavedAccessPass.cpp │ │ │ ├── IntrinsicLowering.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── LLVMTargetMachine.cpp │ │ │ ├── LatencyPriorityQueue.cpp │ │ │ ├── LazyMachineBlockFrequencyInfo.cpp │ │ │ ├── LexicalScopes.cpp │ │ │ ├── LiveDebugValues.cpp │ │ │ ├── LiveDebugVariables.cpp │ │ │ ├── LiveDebugVariables.h │ │ │ ├── LiveInterval.cpp │ │ │ ├── LiveIntervalUnion.cpp │ │ │ ├── LiveIntervals.cpp │ │ │ ├── LivePhysRegs.cpp │ │ │ ├── LiveRangeCalc.cpp │ │ │ ├── LiveRangeCalc.h │ │ │ ├── LiveRangeEdit.cpp │ │ │ ├── LiveRangeShrink.cpp │ │ │ ├── LiveRangeUtils.h │ │ │ ├── LiveRegMatrix.cpp │ │ │ ├── LiveRegUnits.cpp │ │ │ ├── LiveStacks.cpp │ │ │ ├── LiveVariables.cpp │ │ │ ├── LocalStackSlotAllocation.cpp │ │ │ ├── LowLevelType.cpp │ │ │ ├── LowerEmuTLS.cpp │ │ │ ├── MIRCanonicalizerPass.cpp │ │ │ ├── MIRParser │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MILexer.cpp │ │ │ │ ├── MILexer.h │ │ │ │ ├── MIParser.cpp │ │ │ │ ├── MIParser.h │ │ │ │ └── MIRParser.cpp │ │ │ ├── MIRPrinter.cpp │ │ │ ├── MIRPrintingPass.cpp │ │ │ ├── MachineBasicBlock.cpp │ │ │ ├── MachineBlockFrequencyInfo.cpp │ │ │ ├── MachineBlockPlacement.cpp │ │ │ ├── MachineBranchProbabilityInfo.cpp │ │ │ ├── MachineCSE.cpp │ │ │ ├── MachineCombiner.cpp │ │ │ ├── MachineCopyPropagation.cpp │ │ │ ├── MachineDominanceFrontier.cpp │ │ │ ├── MachineDominators.cpp │ │ │ ├── MachineFrameInfo.cpp │ │ │ ├── MachineFunction.cpp │ │ │ ├── MachineFunctionPass.cpp │ │ │ ├── MachineFunctionPrinterPass.cpp │ │ │ ├── MachineInstr.cpp │ │ │ ├── MachineInstrBundle.cpp │ │ │ ├── MachineLICM.cpp │ │ │ ├── MachineLoopInfo.cpp │ │ │ ├── MachineModuleInfo.cpp │ │ │ ├── MachineModuleInfoImpls.cpp │ │ │ ├── MachineOperand.cpp │ │ │ ├── MachineOptimizationRemarkEmitter.cpp │ │ │ ├── MachineOutliner.cpp │ │ │ ├── MachinePassRegistry.cpp │ │ │ ├── MachinePipeliner.cpp │ │ │ ├── MachinePostDominators.cpp │ │ │ ├── MachineRegionInfo.cpp │ │ │ ├── MachineRegisterInfo.cpp │ │ │ ├── MachineSSAUpdater.cpp │ │ │ ├── MachineScheduler.cpp │ │ │ ├── MachineSink.cpp │ │ │ ├── MachineTraceMetrics.cpp │ │ │ ├── MachineVerifier.cpp │ │ │ ├── MacroFusion.cpp │ │ │ ├── OptimizePHIs.cpp │ │ │ ├── PHIElimination.cpp │ │ │ ├── PHIEliminationUtils.cpp │ │ │ ├── PHIEliminationUtils.h │ │ │ ├── ParallelCG.cpp │ │ │ ├── PatchableFunction.cpp │ │ │ ├── PeepholeOptimizer.cpp │ │ │ ├── PostRAHazardRecognizer.cpp │ │ │ ├── PostRASchedulerList.cpp │ │ │ ├── PreISelIntrinsicLowering.cpp │ │ │ ├── ProcessImplicitDefs.cpp │ │ │ ├── PrologEpilogInserter.cpp │ │ │ ├── PseudoSourceValue.cpp │ │ │ ├── README.txt │ │ │ ├── RegAllocBase.cpp │ │ │ ├── RegAllocBase.h │ │ │ ├── RegAllocBasic.cpp │ │ │ ├── RegAllocFast.cpp │ │ │ ├── RegAllocGreedy.cpp │ │ │ ├── RegAllocPBQP.cpp │ │ │ ├── RegUsageInfoCollector.cpp │ │ │ ├── RegUsageInfoPropagate.cpp │ │ │ ├── RegisterClassInfo.cpp │ │ │ ├── RegisterCoalescer.cpp │ │ │ ├── RegisterCoalescer.h │ │ │ ├── RegisterPressure.cpp │ │ │ ├── RegisterScavenging.cpp │ │ │ ├── RegisterUsageInfo.cpp │ │ │ ├── RenameIndependentSubregs.cpp │ │ │ ├── ResetMachineFunctionPass.cpp │ │ │ ├── SafeStack.cpp │ │ │ ├── SafeStackColoring.cpp │ │ │ ├── SafeStackColoring.h │ │ │ ├── SafeStackLayout.cpp │ │ │ ├── SafeStackLayout.h │ │ │ ├── ScalarizeMaskedMemIntrin.cpp │ │ │ ├── ScheduleDAG.cpp │ │ │ ├── ScheduleDAGInstrs.cpp │ │ │ ├── ScheduleDAGPrinter.cpp │ │ │ ├── ScoreboardHazardRecognizer.cpp │ │ │ ├── SelectionDAG │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DAGCombiner.cpp │ │ │ │ ├── FastISel.cpp │ │ │ │ ├── FunctionLoweringInfo.cpp │ │ │ │ ├── InstrEmitter.cpp │ │ │ │ ├── InstrEmitter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── LegalizeDAG.cpp │ │ │ │ ├── LegalizeFloatTypes.cpp │ │ │ │ ├── LegalizeIntegerTypes.cpp │ │ │ │ ├── LegalizeTypes.cpp │ │ │ │ ├── LegalizeTypes.h │ │ │ │ ├── LegalizeTypesGeneric.cpp │ │ │ │ ├── LegalizeVectorOps.cpp │ │ │ │ ├── LegalizeVectorTypes.cpp │ │ │ │ ├── ResourcePriorityQueue.cpp │ │ │ │ ├── SDNodeDbgValue.h │ │ │ │ ├── ScheduleDAGFast.cpp │ │ │ │ ├── ScheduleDAGRRList.cpp │ │ │ │ ├── ScheduleDAGSDNodes.cpp │ │ │ │ ├── ScheduleDAGSDNodes.h │ │ │ │ ├── ScheduleDAGVLIW.cpp │ │ │ │ ├── SelectionDAG.cpp │ │ │ │ ├── SelectionDAGAddressAnalysis.cpp │ │ │ │ ├── SelectionDAGBuilder.cpp │ │ │ │ ├── SelectionDAGBuilder.h │ │ │ │ ├── SelectionDAGDumper.cpp │ │ │ │ ├── SelectionDAGISel.cpp │ │ │ │ ├── SelectionDAGPrinter.cpp │ │ │ │ ├── SelectionDAGTargetInfo.cpp │ │ │ │ ├── StatepointLowering.cpp │ │ │ │ ├── StatepointLowering.h │ │ │ │ └── TargetLowering.cpp │ │ │ ├── ShadowStackGCLowering.cpp │ │ │ ├── ShrinkWrap.cpp │ │ │ ├── SjLjEHPrepare.cpp │ │ │ ├── SlotIndexes.cpp │ │ │ ├── SpillPlacement.cpp │ │ │ ├── SpillPlacement.h │ │ │ ├── Spiller.h │ │ │ ├── SplitKit.cpp │ │ │ ├── SplitKit.h │ │ │ ├── StackColoring.cpp │ │ │ ├── StackMapLivenessAnalysis.cpp │ │ │ ├── StackMaps.cpp │ │ │ ├── StackProtector.cpp │ │ │ ├── StackSlotColoring.cpp │ │ │ ├── TailDuplication.cpp │ │ │ ├── TailDuplicator.cpp │ │ │ ├── TargetFrameLoweringImpl.cpp │ │ │ ├── TargetInstrInfo.cpp │ │ │ ├── TargetLoweringBase.cpp │ │ │ ├── TargetLoweringObjectFileImpl.cpp │ │ │ ├── TargetOptionsImpl.cpp │ │ │ ├── TargetPassConfig.cpp │ │ │ ├── TargetRegisterInfo.cpp │ │ │ ├── TargetSchedule.cpp │ │ │ ├── TargetSubtargetInfo.cpp │ │ │ ├── TwoAddressInstructionPass.cpp │ │ │ ├── UnreachableBlockElim.cpp │ │ │ ├── VirtRegMap.cpp │ │ │ ├── WinEHPrepare.cpp │ │ │ └── XRayInstrumentation.cpp │ │ ├── DebugInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── CodeView │ │ │ │ ├── AppendingTypeTableBuilder.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CVSymbolVisitor.cpp │ │ │ │ ├── CVTypeVisitor.cpp │ │ │ │ ├── CodeViewError.cpp │ │ │ │ ├── CodeViewRecordIO.cpp │ │ │ │ ├── ContinuationRecordBuilder.cpp │ │ │ │ ├── DebugChecksumsSubsection.cpp │ │ │ │ ├── DebugCrossExSubsection.cpp │ │ │ │ ├── DebugCrossImpSubsection.cpp │ │ │ │ ├── DebugFrameDataSubsection.cpp │ │ │ │ ├── DebugInlineeLinesSubsection.cpp │ │ │ │ ├── DebugLinesSubsection.cpp │ │ │ │ ├── DebugStringTableSubsection.cpp │ │ │ │ ├── DebugSubsection.cpp │ │ │ │ ├── DebugSubsectionRecord.cpp │ │ │ │ ├── DebugSubsectionVisitor.cpp │ │ │ │ ├── DebugSymbolRVASubsection.cpp │ │ │ │ ├── DebugSymbolsSubsection.cpp │ │ │ │ ├── EnumTables.cpp │ │ │ │ ├── Formatters.cpp │ │ │ │ ├── GlobalTypeTableBuilder.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── LazyRandomTypeCollection.cpp │ │ │ │ ├── Line.cpp │ │ │ │ ├── MergingTypeTableBuilder.cpp │ │ │ │ ├── RecordName.cpp │ │ │ │ ├── RecordSerialization.cpp │ │ │ │ ├── SimpleTypeSerializer.cpp │ │ │ │ ├── StringsAndChecksums.cpp │ │ │ │ ├── SymbolDumper.cpp │ │ │ │ ├── SymbolRecordMapping.cpp │ │ │ │ ├── SymbolSerializer.cpp │ │ │ │ ├── TypeDumpVisitor.cpp │ │ │ │ ├── TypeHashing.cpp │ │ │ │ ├── TypeIndex.cpp │ │ │ │ ├── TypeIndexDiscovery.cpp │ │ │ │ ├── TypeRecordMapping.cpp │ │ │ │ ├── TypeStreamMerger.cpp │ │ │ │ └── TypeTableCollection.cpp │ │ │ ├── DWARF │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DWARFAbbreviationDeclaration.cpp │ │ │ │ ├── DWARFAcceleratorTable.cpp │ │ │ │ ├── DWARFCompileUnit.cpp │ │ │ │ ├── DWARFContext.cpp │ │ │ │ ├── DWARFDataExtractor.cpp │ │ │ │ ├── DWARFDebugAbbrev.cpp │ │ │ │ ├── DWARFDebugArangeSet.cpp │ │ │ │ ├── DWARFDebugAranges.cpp │ │ │ │ ├── DWARFDebugFrame.cpp │ │ │ │ ├── DWARFDebugInfoEntry.cpp │ │ │ │ ├── DWARFDebugLine.cpp │ │ │ │ ├── DWARFDebugLoc.cpp │ │ │ │ ├── DWARFDebugMacro.cpp │ │ │ │ ├── DWARFDebugPubTable.cpp │ │ │ │ ├── DWARFDebugRangeList.cpp │ │ │ │ ├── DWARFDie.cpp │ │ │ │ ├── DWARFExpression.cpp │ │ │ │ ├── DWARFFormValue.cpp │ │ │ │ ├── DWARFGdbIndex.cpp │ │ │ │ ├── DWARFTypeUnit.cpp │ │ │ │ ├── DWARFUnit.cpp │ │ │ │ ├── DWARFUnitIndex.cpp │ │ │ │ ├── DWARFVerifier.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── SyntaxHighlighting.cpp │ │ │ │ └── SyntaxHighlighting.h │ │ │ ├── LLVMBuild.txt │ │ │ ├── MSF │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MSFBuilder.cpp │ │ │ │ ├── MSFCommon.cpp │ │ │ │ ├── MSFError.cpp │ │ │ │ └── MappedBlockStream.cpp │ │ │ ├── PDB │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DIA │ │ │ │ │ ├── DIADataStream.cpp │ │ │ │ │ ├── DIAEnumDebugStreams.cpp │ │ │ │ │ ├── DIAEnumLineNumbers.cpp │ │ │ │ │ ├── DIAEnumSourceFiles.cpp │ │ │ │ │ ├── DIAEnumSymbols.cpp │ │ │ │ │ ├── DIAEnumTables.cpp │ │ │ │ │ ├── DIAError.cpp │ │ │ │ │ ├── DIALineNumber.cpp │ │ │ │ │ ├── DIARawSymbol.cpp │ │ │ │ │ ├── DIASession.cpp │ │ │ │ │ ├── DIASourceFile.cpp │ │ │ │ │ └── DIATable.cpp │ │ │ │ ├── GenericError.cpp │ │ │ │ ├── IPDBSourceFile.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── Native │ │ │ │ │ ├── DbiModuleDescriptor.cpp │ │ │ │ │ ├── DbiModuleDescriptorBuilder.cpp │ │ │ │ │ ├── DbiModuleList.cpp │ │ │ │ │ ├── DbiStream.cpp │ │ │ │ │ ├── DbiStreamBuilder.cpp │ │ │ │ │ ├── EnumTables.cpp │ │ │ │ │ ├── GSIStreamBuilder.cpp │ │ │ │ │ ├── GlobalsStream.cpp │ │ │ │ │ ├── Hash.cpp │ │ │ │ │ ├── HashTable.cpp │ │ │ │ │ ├── InfoStream.cpp │ │ │ │ │ ├── InfoStreamBuilder.cpp │ │ │ │ │ ├── ModuleDebugStream.cpp │ │ │ │ │ ├── NamedStreamMap.cpp │ │ │ │ │ ├── NativeBuiltinSymbol.cpp │ │ │ │ │ ├── NativeCompilandSymbol.cpp │ │ │ │ │ ├── NativeEnumModules.cpp │ │ │ │ │ ├── NativeEnumSymbol.cpp │ │ │ │ │ ├── NativeEnumTypes.cpp │ │ │ │ │ ├── NativeExeSymbol.cpp │ │ │ │ │ ├── NativeRawSymbol.cpp │ │ │ │ │ ├── NativeSession.cpp │ │ │ │ │ ├── PDBFile.cpp │ │ │ │ │ ├── PDBFileBuilder.cpp │ │ │ │ │ ├── PDBStringTable.cpp │ │ │ │ │ ├── PDBStringTableBuilder.cpp │ │ │ │ │ ├── PublicsStream.cpp │ │ │ │ │ ├── RawError.cpp │ │ │ │ │ ├── SymbolStream.cpp │ │ │ │ │ ├── TpiHashing.cpp │ │ │ │ │ ├── TpiStream.cpp │ │ │ │ │ └── TpiStreamBuilder.cpp │ │ │ │ ├── PDB.cpp │ │ │ │ ├── PDBContext.cpp │ │ │ │ ├── PDBExtras.cpp │ │ │ │ ├── PDBInterfaceAnchors.cpp │ │ │ │ ├── PDBSymDumper.cpp │ │ │ │ ├── PDBSymbol.cpp │ │ │ │ ├── PDBSymbolAnnotation.cpp │ │ │ │ ├── PDBSymbolBlock.cpp │ │ │ │ ├── PDBSymbolCompiland.cpp │ │ │ │ ├── PDBSymbolCompilandDetails.cpp │ │ │ │ ├── PDBSymbolCompilandEnv.cpp │ │ │ │ ├── PDBSymbolCustom.cpp │ │ │ │ ├── PDBSymbolData.cpp │ │ │ │ ├── PDBSymbolExe.cpp │ │ │ │ ├── PDBSymbolFunc.cpp │ │ │ │ ├── PDBSymbolFuncDebugEnd.cpp │ │ │ │ ├── PDBSymbolFuncDebugStart.cpp │ │ │ │ ├── PDBSymbolLabel.cpp │ │ │ │ ├── PDBSymbolPublicSymbol.cpp │ │ │ │ ├── PDBSymbolThunk.cpp │ │ │ │ ├── PDBSymbolTypeArray.cpp │ │ │ │ ├── PDBSymbolTypeBaseClass.cpp │ │ │ │ ├── PDBSymbolTypeBuiltin.cpp │ │ │ │ ├── PDBSymbolTypeCustom.cpp │ │ │ │ ├── PDBSymbolTypeDimension.cpp │ │ │ │ ├── PDBSymbolTypeEnum.cpp │ │ │ │ ├── PDBSymbolTypeFriend.cpp │ │ │ │ ├── PDBSymbolTypeFunctionArg.cpp │ │ │ │ ├── PDBSymbolTypeFunctionSig.cpp │ │ │ │ ├── PDBSymbolTypeManaged.cpp │ │ │ │ ├── PDBSymbolTypePointer.cpp │ │ │ │ ├── PDBSymbolTypeTypedef.cpp │ │ │ │ ├── PDBSymbolTypeUDT.cpp │ │ │ │ ├── PDBSymbolTypeVTable.cpp │ │ │ │ ├── PDBSymbolTypeVTableShape.cpp │ │ │ │ ├── PDBSymbolUnknown.cpp │ │ │ │ ├── PDBSymbolUsingNamespace.cpp │ │ │ │ └── UDTLayout.cpp │ │ │ └── Symbolize │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DIPrinter.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── SymbolizableObjectFile.cpp │ │ │ │ ├── SymbolizableObjectFile.h │ │ │ │ └── Symbolize.cpp │ │ ├── Demangle │ │ │ ├── CMakeLists.txt │ │ │ ├── ItaniumDemangle.cpp │ │ │ └── LLVMBuild.txt │ │ ├── ExecutionEngine │ │ │ ├── CMakeLists.txt │ │ │ ├── ExecutionEngine.cpp │ │ │ ├── ExecutionEngineBindings.cpp │ │ │ ├── GDBRegistrationListener.cpp │ │ │ ├── IntelJITEvents │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── IntelJITEventListener.cpp │ │ │ │ ├── IntelJITEventsWrapper.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── ittnotify_config.h │ │ │ │ ├── ittnotify_types.h │ │ │ │ ├── jitprofiling.c │ │ │ │ └── jitprofiling.h │ │ │ ├── Interpreter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Execution.cpp │ │ │ │ ├── ExternalFunctions.cpp │ │ │ │ ├── Interpreter.cpp │ │ │ │ ├── Interpreter.h │ │ │ │ └── LLVMBuild.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── MCJIT │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCJIT.cpp │ │ │ │ ├── MCJIT.h │ │ │ │ └── ObjectBuffer.h │ │ │ ├── OProfileJIT │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── OProfileJITEventListener.cpp │ │ │ │ └── OProfileWrapper.cpp │ │ │ ├── Orc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ExecutionUtils.cpp │ │ │ │ ├── IndirectionUtils.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── NullResolver.cpp │ │ │ │ ├── OrcABISupport.cpp │ │ │ │ ├── OrcCBindings.cpp │ │ │ │ ├── OrcCBindingsStack.h │ │ │ │ ├── OrcError.cpp │ │ │ │ ├── OrcMCJITReplacement.cpp │ │ │ │ ├── OrcMCJITReplacement.h │ │ │ │ └── RPCUtils.cpp │ │ │ ├── RuntimeDyld │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JITSymbol.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── RTDyldMemoryManager.cpp │ │ │ │ ├── RuntimeDyld.cpp │ │ │ │ ├── RuntimeDyldCOFF.cpp │ │ │ │ ├── RuntimeDyldCOFF.h │ │ │ │ ├── RuntimeDyldChecker.cpp │ │ │ │ ├── RuntimeDyldCheckerImpl.h │ │ │ │ ├── RuntimeDyldELF.cpp │ │ │ │ ├── RuntimeDyldELF.h │ │ │ │ ├── RuntimeDyldImpl.h │ │ │ │ ├── RuntimeDyldMachO.cpp │ │ │ │ ├── RuntimeDyldMachO.h │ │ │ │ └── Targets │ │ │ │ │ ├── RuntimeDyldCOFFI386.h │ │ │ │ │ ├── RuntimeDyldCOFFThumb.h │ │ │ │ │ ├── RuntimeDyldCOFFX86_64.h │ │ │ │ │ ├── RuntimeDyldELFMips.cpp │ │ │ │ │ ├── RuntimeDyldELFMips.h │ │ │ │ │ ├── RuntimeDyldMachOAArch64.h │ │ │ │ │ ├── RuntimeDyldMachOARM.h │ │ │ │ │ ├── RuntimeDyldMachOI386.h │ │ │ │ │ └── RuntimeDyldMachOX86_64.h │ │ │ ├── SectionMemoryManager.cpp │ │ │ └── TargetSelect.cpp │ │ ├── FuzzMutate │ │ │ ├── CMakeLists.txt │ │ │ ├── FuzzerCLI.cpp │ │ │ ├── IRMutator.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── OpDescriptor.cpp │ │ │ ├── Operations.cpp │ │ │ └── RandomIRBuilder.cpp │ │ ├── Fuzzer │ │ │ └── README.txt │ │ ├── IR │ │ │ ├── AsmWriter.cpp │ │ │ ├── AttributeImpl.h │ │ │ ├── Attributes.cpp │ │ │ ├── AttributesCompatFunc.td │ │ │ ├── AutoUpgrade.cpp │ │ │ ├── BasicBlock.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Comdat.cpp │ │ │ ├── ConstantFold.cpp │ │ │ ├── ConstantFold.h │ │ │ ├── ConstantRange.cpp │ │ │ ├── Constants.cpp │ │ │ ├── ConstantsContext.h │ │ │ ├── Core.cpp │ │ │ ├── DIBuilder.cpp │ │ │ ├── DataLayout.cpp │ │ │ ├── DebugInfo.cpp │ │ │ ├── DebugInfoMetadata.cpp │ │ │ ├── DebugLoc.cpp │ │ │ ├── DiagnosticHandler.cpp │ │ │ ├── DiagnosticInfo.cpp │ │ │ ├── DiagnosticPrinter.cpp │ │ │ ├── Dominators.cpp │ │ │ ├── Function.cpp │ │ │ ├── GVMaterializer.cpp │ │ │ ├── Globals.cpp │ │ │ ├── IRBuilder.cpp │ │ │ ├── IRPrintingPasses.cpp │ │ │ ├── InlineAsm.cpp │ │ │ ├── Instruction.cpp │ │ │ ├── Instructions.cpp │ │ │ ├── IntrinsicInst.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── LLVMContext.cpp │ │ │ ├── LLVMContextImpl.cpp │ │ │ ├── LLVMContextImpl.h │ │ │ ├── LegacyPassManager.cpp │ │ │ ├── MDBuilder.cpp │ │ │ ├── Mangler.cpp │ │ │ ├── Metadata.cpp │ │ │ ├── MetadataImpl.h │ │ │ ├── Module.cpp │ │ │ ├── ModuleSummaryIndex.cpp │ │ │ ├── Operator.cpp │ │ │ ├── OptBisect.cpp │ │ │ ├── Pass.cpp │ │ │ ├── PassManager.cpp │ │ │ ├── PassRegistry.cpp │ │ │ ├── ProfileSummary.cpp │ │ │ ├── SafepointIRVerifier.cpp │ │ │ ├── Statepoint.cpp │ │ │ ├── SymbolTableListTraitsImpl.h │ │ │ ├── Type.cpp │ │ │ ├── TypeFinder.cpp │ │ │ ├── Use.cpp │ │ │ ├── User.cpp │ │ │ ├── Value.cpp │ │ │ ├── ValueSymbolTable.cpp │ │ │ ├── ValueTypes.cpp │ │ │ └── Verifier.cpp │ │ ├── IRReader │ │ │ ├── CMakeLists.txt │ │ │ ├── IRReader.cpp │ │ │ └── LLVMBuild.txt │ │ ├── LLVMBuild.txt │ │ ├── LTO │ │ │ ├── CMakeLists.txt │ │ │ ├── Caching.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── LTO.cpp │ │ │ ├── LTOBackend.cpp │ │ │ ├── LTOCodeGenerator.cpp │ │ │ ├── LTOModule.cpp │ │ │ ├── ThinLTOCodeGenerator.cpp │ │ │ └── UpdateCompilerUsed.cpp │ │ ├── LineEditor │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── LineEditor.cpp │ │ ├── Linker │ │ │ ├── CMakeLists.txt │ │ │ ├── IRMover.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── LinkDiagnosticInfo.h │ │ │ └── LinkModules.cpp │ │ ├── MC │ │ │ ├── CMakeLists.txt │ │ │ ├── ConstantPools.cpp │ │ │ ├── ELFObjectWriter.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── MCAsmBackend.cpp │ │ │ ├── MCAsmInfo.cpp │ │ │ ├── MCAsmInfoCOFF.cpp │ │ │ ├── MCAsmInfoDarwin.cpp │ │ │ ├── MCAsmInfoELF.cpp │ │ │ ├── MCAsmInfoWasm.cpp │ │ │ ├── MCAsmStreamer.cpp │ │ │ ├── MCAssembler.cpp │ │ │ ├── MCCodeEmitter.cpp │ │ │ ├── MCCodePadder.cpp │ │ │ ├── MCCodeView.cpp │ │ │ ├── MCContext.cpp │ │ │ ├── MCDisassembler │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler.cpp │ │ │ │ ├── Disassembler.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCDisassembler.cpp │ │ │ │ ├── MCExternalSymbolizer.cpp │ │ │ │ ├── MCRelocationInfo.cpp │ │ │ │ └── MCSymbolizer.cpp │ │ │ ├── MCDwarf.cpp │ │ │ ├── MCELFObjectTargetWriter.cpp │ │ │ ├── MCELFStreamer.cpp │ │ │ ├── MCExpr.cpp │ │ │ ├── MCFragment.cpp │ │ │ ├── MCInst.cpp │ │ │ ├── MCInstPrinter.cpp │ │ │ ├── MCInstrAnalysis.cpp │ │ │ ├── MCInstrDesc.cpp │ │ │ ├── MCLabel.cpp │ │ │ ├── MCLinkerOptimizationHint.cpp │ │ │ ├── MCMachOStreamer.cpp │ │ │ ├── MCMachObjectTargetWriter.cpp │ │ │ ├── MCNullStreamer.cpp │ │ │ ├── MCObjectFileInfo.cpp │ │ │ ├── MCObjectStreamer.cpp │ │ │ ├── MCObjectWriter.cpp │ │ │ ├── MCParser │ │ │ │ ├── AsmLexer.cpp │ │ │ │ ├── AsmParser.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COFFAsmParser.cpp │ │ │ │ ├── DarwinAsmParser.cpp │ │ │ │ ├── ELFAsmParser.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCAsmLexer.cpp │ │ │ │ ├── MCAsmParser.cpp │ │ │ │ ├── MCAsmParserExtension.cpp │ │ │ │ └── MCTargetAsmParser.cpp │ │ │ ├── MCRegisterInfo.cpp │ │ │ ├── MCSchedule.cpp │ │ │ ├── MCSection.cpp │ │ │ ├── MCSectionCOFF.cpp │ │ │ ├── MCSectionELF.cpp │ │ │ ├── MCSectionMachO.cpp │ │ │ ├── MCSectionWasm.cpp │ │ │ ├── MCStreamer.cpp │ │ │ ├── MCSubtargetInfo.cpp │ │ │ ├── MCSymbol.cpp │ │ │ ├── MCSymbolELF.cpp │ │ │ ├── MCTargetOptions.cpp │ │ │ ├── MCValue.cpp │ │ │ ├── MCWasmObjectTargetWriter.cpp │ │ │ ├── MCWasmStreamer.cpp │ │ │ ├── MCWin64EH.cpp │ │ │ ├── MCWinCOFFStreamer.cpp │ │ │ ├── MCWinEH.cpp │ │ │ ├── MachObjectWriter.cpp │ │ │ ├── StringTableBuilder.cpp │ │ │ ├── SubtargetFeature.cpp │ │ │ ├── WasmObjectWriter.cpp │ │ │ └── WinCOFFObjectWriter.cpp │ │ ├── Object │ │ │ ├── Archive.cpp │ │ │ ├── ArchiveWriter.cpp │ │ │ ├── Binary.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── COFFImportFile.cpp │ │ │ ├── COFFModuleDefinition.cpp │ │ │ ├── COFFObjectFile.cpp │ │ │ ├── Decompressor.cpp │ │ │ ├── ELF.cpp │ │ │ ├── ELFObjectFile.cpp │ │ │ ├── Error.cpp │ │ │ ├── IRObjectFile.cpp │ │ │ ├── IRSymtab.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── MachOObjectFile.cpp │ │ │ ├── MachOUniversal.cpp │ │ │ ├── ModuleSymbolTable.cpp │ │ │ ├── Object.cpp │ │ │ ├── ObjectFile.cpp │ │ │ ├── RecordStreamer.cpp │ │ │ ├── RecordStreamer.h │ │ │ ├── SymbolSize.cpp │ │ │ ├── SymbolicFile.cpp │ │ │ ├── WasmObjectFile.cpp │ │ │ └── WindowsResource.cpp │ │ ├── ObjectYAML │ │ │ ├── CMakeLists.txt │ │ │ ├── COFFYAML.cpp │ │ │ ├── CodeViewYAMLDebugSections.cpp │ │ │ ├── CodeViewYAMLSymbols.cpp │ │ │ ├── CodeViewYAMLTypeHashing.cpp │ │ │ ├── CodeViewYAMLTypes.cpp │ │ │ ├── DWARFEmitter.cpp │ │ │ ├── DWARFVisitor.cpp │ │ │ ├── DWARFVisitor.h │ │ │ ├── DWARFYAML.cpp │ │ │ ├── ELFYAML.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── MachOYAML.cpp │ │ │ ├── ObjectYAML.cpp │ │ │ ├── WasmYAML.cpp │ │ │ └── YAML.cpp │ │ ├── Option │ │ │ ├── Arg.cpp │ │ │ ├── ArgList.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── OptTable.cpp │ │ │ └── Option.cpp │ │ ├── Passes │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── PassBuilder.cpp │ │ │ └── PassRegistry.def │ │ ├── ProfileData │ │ │ ├── CMakeLists.txt │ │ │ ├── Coverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CoverageMapping.cpp │ │ │ │ ├── CoverageMappingReader.cpp │ │ │ │ ├── CoverageMappingWriter.cpp │ │ │ │ └── LLVMBuild.txt │ │ │ ├── GCOV.cpp │ │ │ ├── InstrProf.cpp │ │ │ ├── InstrProfReader.cpp │ │ │ ├── InstrProfWriter.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── ProfileSummaryBuilder.cpp │ │ │ ├── SampleProf.cpp │ │ │ ├── SampleProfReader.cpp │ │ │ └── SampleProfWriter.cpp │ │ ├── Support │ │ │ ├── AMDGPUMetadata.cpp │ │ │ ├── APFloat.cpp │ │ │ ├── APInt.cpp │ │ │ ├── APSInt.cpp │ │ │ ├── ARMAttributeParser.cpp │ │ │ ├── ARMBuildAttrs.cpp │ │ │ ├── ARMWinEH.cpp │ │ │ ├── Allocator.cpp │ │ │ ├── Atomic.cpp │ │ │ ├── BinaryStreamError.cpp │ │ │ ├── BinaryStreamReader.cpp │ │ │ ├── BinaryStreamRef.cpp │ │ │ ├── BinaryStreamWriter.cpp │ │ │ ├── BlockFrequency.cpp │ │ │ ├── BranchProbability.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── COM.cpp │ │ │ ├── COPYRIGHT.regex │ │ │ ├── CachePruning.cpp │ │ │ ├── Chrono.cpp │ │ │ ├── CodeGenCoverage.cpp │ │ │ ├── CommandLine.cpp │ │ │ ├── Compression.cpp │ │ │ ├── ConvertUTF.cpp │ │ │ ├── ConvertUTFWrapper.cpp │ │ │ ├── CrashRecoveryContext.cpp │ │ │ ├── DAGDeltaAlgorithm.cpp │ │ │ ├── DataExtractor.cpp │ │ │ ├── Debug.cpp │ │ │ ├── DebugCounter.cpp │ │ │ ├── DeltaAlgorithm.cpp │ │ │ ├── DynamicLibrary.cpp │ │ │ ├── Errno.cpp │ │ │ ├── Error.cpp │ │ │ ├── ErrorHandling.cpp │ │ │ ├── FileOutputBuffer.cpp │ │ │ ├── FileUtilities.cpp │ │ │ ├── FoldingSet.cpp │ │ │ ├── FormatVariadic.cpp │ │ │ ├── FormattedStream.cpp │ │ │ ├── GlobPattern.cpp │ │ │ ├── GraphWriter.cpp │ │ │ ├── Hashing.cpp │ │ │ ├── Host.cpp │ │ │ ├── IntEqClasses.cpp │ │ │ ├── IntervalMap.cpp │ │ │ ├── JamCRC.cpp │ │ │ ├── KnownBits.cpp │ │ │ ├── LEB128.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── LineIterator.cpp │ │ │ ├── Locale.cpp │ │ │ ├── LockFileManager.cpp │ │ │ ├── LowLevelType.cpp │ │ │ ├── MD5.cpp │ │ │ ├── ManagedStatic.cpp │ │ │ ├── MathExtras.cpp │ │ │ ├── Memory.cpp │ │ │ ├── MemoryBuffer.cpp │ │ │ ├── Mutex.cpp │ │ │ ├── NativeFormatting.cpp │ │ │ ├── Options.cpp │ │ │ ├── Parallel.cpp │ │ │ ├── Path.cpp │ │ │ ├── PluginLoader.cpp │ │ │ ├── PrettyStackTrace.cpp │ │ │ ├── Process.cpp │ │ │ ├── Program.cpp │ │ │ ├── README.txt.system │ │ │ ├── RWMutex.cpp │ │ │ ├── RandomNumberGenerator.cpp │ │ │ ├── Regex.cpp │ │ │ ├── SHA1.cpp │ │ │ ├── ScaledNumber.cpp │ │ │ ├── ScopedPrinter.cpp │ │ │ ├── Signals.cpp │ │ │ ├── SmallPtrSet.cpp │ │ │ ├── SmallVector.cpp │ │ │ ├── SourceMgr.cpp │ │ │ ├── SpecialCaseList.cpp │ │ │ ├── Statistic.cpp │ │ │ ├── StringExtras.cpp │ │ │ ├── StringMap.cpp │ │ │ ├── StringPool.cpp │ │ │ ├── StringRef.cpp │ │ │ ├── StringSaver.cpp │ │ │ ├── SystemUtils.cpp │ │ │ ├── TarWriter.cpp │ │ │ ├── TargetParser.cpp │ │ │ ├── TargetRegistry.cpp │ │ │ ├── ThreadLocal.cpp │ │ │ ├── ThreadPool.cpp │ │ │ ├── Threading.cpp │ │ │ ├── Timer.cpp │ │ │ ├── ToolOutputFile.cpp │ │ │ ├── TrigramIndex.cpp │ │ │ ├── Triple.cpp │ │ │ ├── Twine.cpp │ │ │ ├── Unicode.cpp │ │ │ ├── Unix │ │ │ │ ├── COM.inc │ │ │ │ ├── DynamicLibrary.inc │ │ │ │ ├── Host.inc │ │ │ │ ├── Memory.inc │ │ │ │ ├── Mutex.inc │ │ │ │ ├── Path.inc │ │ │ │ ├── Process.inc │ │ │ │ ├── Program.inc │ │ │ │ ├── README.txt │ │ │ │ ├── RWMutex.inc │ │ │ │ ├── Signals.inc │ │ │ │ ├── ThreadLocal.inc │ │ │ │ ├── Threading.inc │ │ │ │ ├── Unix.h │ │ │ │ └── Watchdog.inc │ │ │ ├── Valgrind.cpp │ │ │ ├── Watchdog.cpp │ │ │ ├── Windows │ │ │ │ ├── COM.inc │ │ │ │ ├── DynamicLibrary.inc │ │ │ │ ├── Host.inc │ │ │ │ ├── Memory.inc │ │ │ │ ├── Mutex.inc │ │ │ │ ├── Path.inc │ │ │ │ ├── Process.inc │ │ │ │ ├── Program.inc │ │ │ │ ├── RWMutex.inc │ │ │ │ ├── Signals.inc │ │ │ │ ├── ThreadLocal.inc │ │ │ │ ├── Threading.inc │ │ │ │ ├── Watchdog.inc │ │ │ │ ├── WindowsSupport.h │ │ │ │ └── explicit_symbols.inc │ │ │ ├── YAMLParser.cpp │ │ │ ├── YAMLTraits.cpp │ │ │ ├── circular_raw_ostream.cpp │ │ │ ├── raw_os_ostream.cpp │ │ │ ├── raw_ostream.cpp │ │ │ ├── regcomp.c │ │ │ ├── regengine.inc │ │ │ ├── regerror.c │ │ │ ├── regex2.h │ │ │ ├── regex_impl.h │ │ │ ├── regexec.c │ │ │ ├── regfree.c │ │ │ ├── regstrlcpy.c │ │ │ ├── regutils.h │ │ │ └── xxhash.cpp │ │ ├── TableGen │ │ │ ├── CMakeLists.txt │ │ │ ├── Error.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── Main.cpp │ │ │ ├── Record.cpp │ │ │ ├── SetTheory.cpp │ │ │ ├── StringMatcher.cpp │ │ │ ├── TGLexer.cpp │ │ │ ├── TGLexer.h │ │ │ ├── TGParser.cpp │ │ │ ├── TGParser.h │ │ │ └── TableGenBackend.cpp │ │ ├── Target │ │ │ ├── AArch64 │ │ │ │ ├── AArch64.h │ │ │ │ ├── AArch64.td │ │ │ │ ├── AArch64A53Fix835769.cpp │ │ │ │ ├── AArch64A57FPLoadBalancing.cpp │ │ │ │ ├── AArch64AdvSIMDScalarPass.cpp │ │ │ │ ├── AArch64AsmPrinter.cpp │ │ │ │ ├── AArch64CallLowering.cpp │ │ │ │ ├── AArch64CallLowering.h │ │ │ │ ├── AArch64CallingConvention.h │ │ │ │ ├── AArch64CallingConvention.td │ │ │ │ ├── AArch64CleanupLocalDynamicTLSPass.cpp │ │ │ │ ├── AArch64CollectLOH.cpp │ │ │ │ ├── AArch64CondBrTuning.cpp │ │ │ │ ├── AArch64ConditionOptimizer.cpp │ │ │ │ ├── AArch64ConditionalCompares.cpp │ │ │ │ ├── AArch64DeadRegisterDefinitionsPass.cpp │ │ │ │ ├── AArch64ExpandPseudoInsts.cpp │ │ │ │ ├── AArch64FalkorHWPFFix.cpp │ │ │ │ ├── AArch64FastISel.cpp │ │ │ │ ├── AArch64FrameLowering.cpp │ │ │ │ ├── AArch64FrameLowering.h │ │ │ │ ├── AArch64GenRegisterBankInfo.def │ │ │ │ ├── AArch64ISelDAGToDAG.cpp │ │ │ │ ├── AArch64ISelLowering.cpp │ │ │ │ ├── AArch64ISelLowering.h │ │ │ │ ├── AArch64InstrAtomics.td │ │ │ │ ├── AArch64InstrFormats.td │ │ │ │ ├── AArch64InstrInfo.cpp │ │ │ │ ├── AArch64InstrInfo.h │ │ │ │ ├── AArch64InstrInfo.td │ │ │ │ ├── AArch64InstructionSelector.cpp │ │ │ │ ├── AArch64LegalizerInfo.cpp │ │ │ │ ├── AArch64LegalizerInfo.h │ │ │ │ ├── AArch64LoadStoreOptimizer.cpp │ │ │ │ ├── AArch64MCInstLower.cpp │ │ │ │ ├── AArch64MCInstLower.h │ │ │ │ ├── AArch64MachineFunctionInfo.h │ │ │ │ ├── AArch64MacroFusion.cpp │ │ │ │ ├── AArch64MacroFusion.h │ │ │ │ ├── AArch64PBQPRegAlloc.cpp │ │ │ │ ├── AArch64PBQPRegAlloc.h │ │ │ │ ├── AArch64PerfectShuffle.h │ │ │ │ ├── AArch64PromoteConstant.cpp │ │ │ │ ├── AArch64RedundantCopyElimination.cpp │ │ │ │ ├── AArch64RegisterBankInfo.cpp │ │ │ │ ├── AArch64RegisterBankInfo.h │ │ │ │ ├── AArch64RegisterBanks.td │ │ │ │ ├── AArch64RegisterInfo.cpp │ │ │ │ ├── AArch64RegisterInfo.h │ │ │ │ ├── AArch64RegisterInfo.td │ │ │ │ ├── AArch64SIMDInstrOpt.cpp │ │ │ │ ├── AArch64SVEInstrInfo.td │ │ │ │ ├── AArch64SchedA53.td │ │ │ │ ├── AArch64SchedA57.td │ │ │ │ ├── AArch64SchedA57WriteRes.td │ │ │ │ ├── AArch64SchedCyclone.td │ │ │ │ ├── AArch64SchedFalkor.td │ │ │ │ ├── AArch64SchedFalkorDetails.td │ │ │ │ ├── AArch64SchedKryo.td │ │ │ │ ├── AArch64SchedKryoDetails.td │ │ │ │ ├── AArch64SchedM1.td │ │ │ │ ├── AArch64SchedThunderX.td │ │ │ │ ├── AArch64SchedThunderX2T99.td │ │ │ │ ├── AArch64Schedule.td │ │ │ │ ├── AArch64SelectionDAGInfo.cpp │ │ │ │ ├── AArch64SelectionDAGInfo.h │ │ │ │ ├── AArch64StorePairSuppress.cpp │ │ │ │ ├── AArch64Subtarget.cpp │ │ │ │ ├── AArch64Subtarget.h │ │ │ │ ├── AArch64SystemOperands.td │ │ │ │ ├── AArch64TargetMachine.cpp │ │ │ │ ├── AArch64TargetMachine.h │ │ │ │ ├── AArch64TargetObjectFile.cpp │ │ │ │ ├── AArch64TargetObjectFile.h │ │ │ │ ├── AArch64TargetTransformInfo.cpp │ │ │ │ ├── AArch64TargetTransformInfo.h │ │ │ │ ├── AsmParser │ │ │ │ │ ├── AArch64AsmParser.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── AArch64Disassembler.cpp │ │ │ │ │ ├── AArch64Disassembler.h │ │ │ │ │ ├── AArch64ExternalSymbolizer.cpp │ │ │ │ │ ├── AArch64ExternalSymbolizer.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── AArch64InstPrinter.cpp │ │ │ │ │ ├── AArch64InstPrinter.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── AArch64AddressingModes.h │ │ │ │ │ ├── AArch64AsmBackend.cpp │ │ │ │ │ ├── AArch64ELFObjectWriter.cpp │ │ │ │ │ ├── AArch64ELFStreamer.cpp │ │ │ │ │ ├── AArch64ELFStreamer.h │ │ │ │ │ ├── AArch64FixupKinds.h │ │ │ │ │ ├── AArch64MCAsmInfo.cpp │ │ │ │ │ ├── AArch64MCAsmInfo.h │ │ │ │ │ ├── AArch64MCCodeEmitter.cpp │ │ │ │ │ ├── AArch64MCExpr.cpp │ │ │ │ │ ├── AArch64MCExpr.h │ │ │ │ │ ├── AArch64MCTargetDesc.cpp │ │ │ │ │ ├── AArch64MCTargetDesc.h │ │ │ │ │ ├── AArch64MachObjectWriter.cpp │ │ │ │ │ ├── AArch64TargetStreamer.cpp │ │ │ │ │ ├── AArch64TargetStreamer.h │ │ │ │ │ ├── AArch64WinCOFFObjectWriter.cpp │ │ │ │ │ ├── AArch64WinCOFFStreamer.cpp │ │ │ │ │ ├── AArch64WinCOFFStreamer.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── SVEInstrFormats.td │ │ │ │ ├── TargetInfo │ │ │ │ │ ├── AArch64TargetInfo.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ └── Utils │ │ │ │ │ ├── AArch64BaseInfo.cpp │ │ │ │ │ ├── AArch64BaseInfo.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ ├── AMDGPU │ │ │ │ ├── AMDGPU.h │ │ │ │ ├── AMDGPU.td │ │ │ │ ├── AMDGPUAliasAnalysis.cpp │ │ │ │ ├── AMDGPUAliasAnalysis.h │ │ │ │ ├── AMDGPUAlwaysInlinePass.cpp │ │ │ │ ├── AMDGPUAnnotateKernelFeatures.cpp │ │ │ │ ├── AMDGPUAnnotateUniformValues.cpp │ │ │ │ ├── AMDGPUArgumentUsageInfo.cpp │ │ │ │ ├── AMDGPUArgumentUsageInfo.h │ │ │ │ ├── AMDGPUAsmPrinter.cpp │ │ │ │ ├── AMDGPUAsmPrinter.h │ │ │ │ ├── AMDGPUCallLowering.cpp │ │ │ │ ├── AMDGPUCallLowering.h │ │ │ │ ├── AMDGPUCallingConv.td │ │ │ │ ├── AMDGPUCodeGenPrepare.cpp │ │ │ │ ├── AMDGPUFrameLowering.cpp │ │ │ │ ├── AMDGPUFrameLowering.h │ │ │ │ ├── AMDGPUGenRegisterBankInfo.def │ │ │ │ ├── AMDGPUISelDAGToDAG.cpp │ │ │ │ ├── AMDGPUISelLowering.cpp │ │ │ │ ├── AMDGPUISelLowering.h │ │ │ │ ├── AMDGPUInline.cpp │ │ │ │ ├── AMDGPUInstrInfo.cpp │ │ │ │ ├── AMDGPUInstrInfo.h │ │ │ │ ├── AMDGPUInstrInfo.td │ │ │ │ ├── AMDGPUInstructionSelector.cpp │ │ │ │ ├── AMDGPUInstructionSelector.h │ │ │ │ ├── AMDGPUInstructions.td │ │ │ │ ├── AMDGPUIntrinsicInfo.cpp │ │ │ │ ├── AMDGPUIntrinsicInfo.h │ │ │ │ ├── AMDGPUIntrinsics.td │ │ │ │ ├── AMDGPULegalizerInfo.cpp │ │ │ │ ├── AMDGPULegalizerInfo.h │ │ │ │ ├── AMDGPULibCalls.cpp │ │ │ │ ├── AMDGPULibFunc.cpp │ │ │ │ ├── AMDGPULibFunc.h │ │ │ │ ├── AMDGPULowerIntrinsics.cpp │ │ │ │ ├── AMDGPUMCInstLower.cpp │ │ │ │ ├── AMDGPUMCInstLower.h │ │ │ │ ├── AMDGPUMachineCFGStructurizer.cpp │ │ │ │ ├── AMDGPUMachineFunction.cpp │ │ │ │ ├── AMDGPUMachineFunction.h │ │ │ │ ├── AMDGPUMachineModuleInfo.cpp │ │ │ │ ├── AMDGPUMachineModuleInfo.h │ │ │ │ ├── AMDGPUMacroFusion.cpp │ │ │ │ ├── AMDGPUMacroFusion.h │ │ │ │ ├── AMDGPUOpenCLEnqueuedBlockLowering.cpp │ │ │ │ ├── AMDGPUOpenCLImageTypeLoweringPass.cpp │ │ │ │ ├── AMDGPUPTNote.h │ │ │ │ ├── AMDGPUPromoteAlloca.cpp │ │ │ │ ├── AMDGPURegAsmNames.inc.cpp │ │ │ │ ├── AMDGPURegisterBankInfo.cpp │ │ │ │ ├── AMDGPURegisterBankInfo.h │ │ │ │ ├── AMDGPURegisterBanks.td │ │ │ │ ├── AMDGPURegisterInfo.cpp │ │ │ │ ├── AMDGPURegisterInfo.h │ │ │ │ ├── AMDGPURegisterInfo.td │ │ │ │ ├── AMDGPURewriteOutArguments.cpp │ │ │ │ ├── AMDGPUSubtarget.cpp │ │ │ │ ├── AMDGPUSubtarget.h │ │ │ │ ├── AMDGPUTargetMachine.cpp │ │ │ │ ├── AMDGPUTargetMachine.h │ │ │ │ ├── AMDGPUTargetObjectFile.cpp │ │ │ │ ├── AMDGPUTargetObjectFile.h │ │ │ │ ├── AMDGPUTargetTransformInfo.cpp │ │ │ │ ├── AMDGPUTargetTransformInfo.h │ │ │ │ ├── AMDGPUUnifyDivergentExitNodes.cpp │ │ │ │ ├── AMDGPUUnifyMetadata.cpp │ │ │ │ ├── AMDILCFGStructurizer.cpp │ │ │ │ ├── AMDKernelCodeT.h │ │ │ │ ├── AsmParser │ │ │ │ │ ├── AMDGPUAsmParser.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── BUFInstructions.td │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CaymanInstructions.td │ │ │ │ ├── DSInstructions.td │ │ │ │ ├── Disassembler │ │ │ │ │ ├── AMDGPUDisassembler.cpp │ │ │ │ │ ├── AMDGPUDisassembler.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── EvergreenInstructions.td │ │ │ │ ├── FLATInstructions.td │ │ │ │ ├── GCNHazardRecognizer.cpp │ │ │ │ ├── GCNHazardRecognizer.h │ │ │ │ ├── GCNILPSched.cpp │ │ │ │ ├── GCNIterativeScheduler.cpp │ │ │ │ ├── GCNIterativeScheduler.h │ │ │ │ ├── GCNMinRegStrategy.cpp │ │ │ │ ├── GCNProcessors.td │ │ │ │ ├── GCNRegPressure.cpp │ │ │ │ ├── GCNRegPressure.h │ │ │ │ ├── GCNSchedStrategy.cpp │ │ │ │ ├── GCNSchedStrategy.h │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── AMDGPUInstPrinter.cpp │ │ │ │ │ ├── AMDGPUInstPrinter.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── AMDGPUAsmBackend.cpp │ │ │ │ │ ├── AMDGPUELFObjectWriter.cpp │ │ │ │ │ ├── AMDGPUELFStreamer.cpp │ │ │ │ │ ├── AMDGPUELFStreamer.h │ │ │ │ │ ├── AMDGPUFixupKinds.h │ │ │ │ │ ├── AMDGPUHSAMetadataStreamer.cpp │ │ │ │ │ ├── AMDGPUHSAMetadataStreamer.h │ │ │ │ │ ├── AMDGPUMCAsmInfo.cpp │ │ │ │ │ ├── AMDGPUMCAsmInfo.h │ │ │ │ │ ├── AMDGPUMCCodeEmitter.cpp │ │ │ │ │ ├── AMDGPUMCCodeEmitter.h │ │ │ │ │ ├── AMDGPUMCTargetDesc.cpp │ │ │ │ │ ├── AMDGPUMCTargetDesc.h │ │ │ │ │ ├── AMDGPUTargetStreamer.cpp │ │ │ │ │ ├── AMDGPUTargetStreamer.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── R600MCCodeEmitter.cpp │ │ │ │ │ └── SIMCCodeEmitter.cpp │ │ │ │ ├── MIMGInstructions.td │ │ │ │ ├── Processors.td │ │ │ │ ├── R600ClauseMergePass.cpp │ │ │ │ ├── R600ControlFlowFinalizer.cpp │ │ │ │ ├── R600Defines.h │ │ │ │ ├── R600EmitClauseMarkers.cpp │ │ │ │ ├── R600ExpandSpecialInstrs.cpp │ │ │ │ ├── R600FrameLowering.cpp │ │ │ │ ├── R600FrameLowering.h │ │ │ │ ├── R600ISelLowering.cpp │ │ │ │ ├── R600ISelLowering.h │ │ │ │ ├── R600InstrFormats.td │ │ │ │ ├── R600InstrInfo.cpp │ │ │ │ ├── R600InstrInfo.h │ │ │ │ ├── R600Instructions.td │ │ │ │ ├── R600Intrinsics.td │ │ │ │ ├── R600MachineFunctionInfo.cpp │ │ │ │ ├── R600MachineFunctionInfo.h │ │ │ │ ├── R600MachineScheduler.cpp │ │ │ │ ├── R600MachineScheduler.h │ │ │ │ ├── R600OptimizeVectorRegisters.cpp │ │ │ │ ├── R600Packetizer.cpp │ │ │ │ ├── R600Processors.td │ │ │ │ ├── R600RegisterInfo.cpp │ │ │ │ ├── R600RegisterInfo.h │ │ │ │ ├── R600RegisterInfo.td │ │ │ │ ├── R600Schedule.td │ │ │ │ ├── R700Instructions.td │ │ │ │ ├── SIAnnotateControlFlow.cpp │ │ │ │ ├── SIDebuggerInsertNops.cpp │ │ │ │ ├── SIDefines.h │ │ │ │ ├── SIFixSGPRCopies.cpp │ │ │ │ ├── SIFixVGPRCopies.cpp │ │ │ │ ├── SIFixWWMLiveness.cpp │ │ │ │ ├── SIFoldOperands.cpp │ │ │ │ ├── SIFrameLowering.cpp │ │ │ │ ├── SIFrameLowering.h │ │ │ │ ├── SIISelLowering.cpp │ │ │ │ ├── SIISelLowering.h │ │ │ │ ├── SIInsertSkips.cpp │ │ │ │ ├── SIInsertWaitcnts.cpp │ │ │ │ ├── SIInsertWaits.cpp │ │ │ │ ├── SIInstrFormats.td │ │ │ │ ├── SIInstrInfo.cpp │ │ │ │ ├── SIInstrInfo.h │ │ │ │ ├── SIInstrInfo.td │ │ │ │ ├── SIInstructions.td │ │ │ │ ├── SIIntrinsics.td │ │ │ │ ├── SILoadStoreOptimizer.cpp │ │ │ │ ├── SILowerControlFlow.cpp │ │ │ │ ├── SILowerI1Copies.cpp │ │ │ │ ├── SIMachineFunctionInfo.cpp │ │ │ │ ├── SIMachineFunctionInfo.h │ │ │ │ ├── SIMachineScheduler.cpp │ │ │ │ ├── SIMachineScheduler.h │ │ │ │ ├── SIMemoryLegalizer.cpp │ │ │ │ ├── SIOptimizeExecMasking.cpp │ │ │ │ ├── SIOptimizeExecMaskingPreRA.cpp │ │ │ │ ├── SIPeepholeSDWA.cpp │ │ │ │ ├── SIRegisterInfo.cpp │ │ │ │ ├── SIRegisterInfo.h │ │ │ │ ├── SIRegisterInfo.td │ │ │ │ ├── SISchedule.td │ │ │ │ ├── SIShrinkInstructions.cpp │ │ │ │ ├── SIWholeQuadMode.cpp │ │ │ │ ├── SMInstructions.td │ │ │ │ ├── SOPInstructions.td │ │ │ │ ├── TargetInfo │ │ │ │ │ ├── AMDGPUTargetInfo.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── Utils │ │ │ │ │ ├── AMDGPUAsmUtils.cpp │ │ │ │ │ ├── AMDGPUAsmUtils.h │ │ │ │ │ ├── AMDGPUBaseInfo.cpp │ │ │ │ │ ├── AMDGPUBaseInfo.h │ │ │ │ │ ├── AMDKernelCodeTInfo.h │ │ │ │ │ ├── AMDKernelCodeTUtils.cpp │ │ │ │ │ ├── AMDKernelCodeTUtils.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── VIInstrFormats.td │ │ │ │ ├── VIInstructions.td │ │ │ │ ├── VOP1Instructions.td │ │ │ │ ├── VOP2Instructions.td │ │ │ │ ├── VOP3Instructions.td │ │ │ │ ├── VOP3PInstructions.td │ │ │ │ ├── VOPCInstructions.td │ │ │ │ └── VOPInstructions.td │ │ │ ├── ARC │ │ │ │ ├── ARC.h │ │ │ │ ├── ARC.td │ │ │ │ ├── ARCAsmPrinter.cpp │ │ │ │ ├── ARCBranchFinalize.cpp │ │ │ │ ├── ARCCallingConv.td │ │ │ │ ├── ARCExpandPseudos.cpp │ │ │ │ ├── ARCFrameLowering.cpp │ │ │ │ ├── ARCFrameLowering.h │ │ │ │ ├── ARCISelDAGToDAG.cpp │ │ │ │ ├── ARCISelLowering.cpp │ │ │ │ ├── ARCISelLowering.h │ │ │ │ ├── ARCInstrFormats.td │ │ │ │ ├── ARCInstrInfo.cpp │ │ │ │ ├── ARCInstrInfo.h │ │ │ │ ├── ARCInstrInfo.td │ │ │ │ ├── ARCMCInstLower.cpp │ │ │ │ ├── ARCMCInstLower.h │ │ │ │ ├── ARCMachineFunctionInfo.cpp │ │ │ │ ├── ARCMachineFunctionInfo.h │ │ │ │ ├── ARCRegisterInfo.cpp │ │ │ │ ├── ARCRegisterInfo.h │ │ │ │ ├── ARCRegisterInfo.td │ │ │ │ ├── ARCSubtarget.cpp │ │ │ │ ├── ARCSubtarget.h │ │ │ │ ├── ARCTargetMachine.cpp │ │ │ │ ├── ARCTargetMachine.h │ │ │ │ ├── ARCTargetStreamer.h │ │ │ │ ├── ARCTargetTransformInfo.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── ARCDisassembler.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── ARCInstPrinter.cpp │ │ │ │ │ ├── ARCInstPrinter.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── ARCInfo.h │ │ │ │ │ ├── ARCMCAsmInfo.cpp │ │ │ │ │ ├── ARCMCAsmInfo.h │ │ │ │ │ ├── ARCMCTargetDesc.cpp │ │ │ │ │ ├── ARCMCTargetDesc.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ └── TargetInfo │ │ │ │ │ ├── ARCTargetInfo.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ ├── ARM │ │ │ │ ├── A15SDOptimizer.cpp │ │ │ │ ├── ARM.h │ │ │ │ ├── ARM.td │ │ │ │ ├── ARMAsmPrinter.cpp │ │ │ │ ├── ARMAsmPrinter.h │ │ │ │ ├── ARMBaseInstrInfo.cpp │ │ │ │ ├── ARMBaseInstrInfo.h │ │ │ │ ├── ARMBaseRegisterInfo.cpp │ │ │ │ ├── ARMBaseRegisterInfo.h │ │ │ │ ├── ARMBasicBlockInfo.h │ │ │ │ ├── ARMCallLowering.cpp │ │ │ │ ├── ARMCallLowering.h │ │ │ │ ├── ARMCallingConv.h │ │ │ │ ├── ARMCallingConv.td │ │ │ │ ├── ARMComputeBlockSize.cpp │ │ │ │ ├── ARMConstantIslandPass.cpp │ │ │ │ ├── ARMConstantPoolValue.cpp │ │ │ │ ├── ARMConstantPoolValue.h │ │ │ │ ├── ARMExpandPseudoInsts.cpp │ │ │ │ ├── ARMFastISel.cpp │ │ │ │ ├── ARMFeatures.h │ │ │ │ ├── ARMFrameLowering.cpp │ │ │ │ ├── ARMFrameLowering.h │ │ │ │ ├── ARMHazardRecognizer.cpp │ │ │ │ ├── ARMHazardRecognizer.h │ │ │ │ ├── ARMISelDAGToDAG.cpp │ │ │ │ ├── ARMISelLowering.cpp │ │ │ │ ├── ARMISelLowering.h │ │ │ │ ├── ARMInstrFormats.td │ │ │ │ ├── ARMInstrInfo.cpp │ │ │ │ ├── ARMInstrInfo.h │ │ │ │ ├── ARMInstrInfo.td │ │ │ │ ├── ARMInstrNEON.td │ │ │ │ ├── ARMInstrThumb.td │ │ │ │ ├── ARMInstrThumb2.td │ │ │ │ ├── ARMInstrVFP.td │ │ │ │ ├── ARMInstructionSelector.cpp │ │ │ │ ├── ARMLegalizerInfo.cpp │ │ │ │ ├── ARMLegalizerInfo.h │ │ │ │ ├── ARMLoadStoreOptimizer.cpp │ │ │ │ ├── ARMMCInstLower.cpp │ │ │ │ ├── ARMMachineFunctionInfo.cpp │ │ │ │ ├── ARMMachineFunctionInfo.h │ │ │ │ ├── ARMMacroFusion.cpp │ │ │ │ ├── ARMMacroFusion.h │ │ │ │ ├── ARMOptimizeBarriersPass.cpp │ │ │ │ ├── ARMPerfectShuffle.h │ │ │ │ ├── ARMRegisterBankInfo.cpp │ │ │ │ ├── ARMRegisterBankInfo.h │ │ │ │ ├── ARMRegisterBanks.td │ │ │ │ ├── ARMRegisterInfo.cpp │ │ │ │ ├── ARMRegisterInfo.h │ │ │ │ ├── ARMRegisterInfo.td │ │ │ │ ├── ARMSchedule.td │ │ │ │ ├── ARMScheduleA57.td │ │ │ │ ├── ARMScheduleA57WriteRes.td │ │ │ │ ├── ARMScheduleA8.td │ │ │ │ ├── ARMScheduleA9.td │ │ │ │ ├── ARMScheduleM3.td │ │ │ │ ├── ARMScheduleR52.td │ │ │ │ ├── ARMScheduleSwift.td │ │ │ │ ├── ARMScheduleV6.td │ │ │ │ ├── ARMSelectionDAGInfo.cpp │ │ │ │ ├── ARMSelectionDAGInfo.h │ │ │ │ ├── ARMSubtarget.cpp │ │ │ │ ├── ARMSubtarget.h │ │ │ │ ├── ARMSystemRegister.td │ │ │ │ ├── ARMTargetMachine.cpp │ │ │ │ ├── ARMTargetMachine.h │ │ │ │ ├── ARMTargetObjectFile.cpp │ │ │ │ ├── ARMTargetObjectFile.h │ │ │ │ ├── ARMTargetTransformInfo.cpp │ │ │ │ ├── ARMTargetTransformInfo.h │ │ │ │ ├── AsmParser │ │ │ │ │ ├── ARMAsmParser.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── ARMDisassembler.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── ARMInstPrinter.cpp │ │ │ │ │ ├── ARMInstPrinter.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── ARMAddressingModes.h │ │ │ │ │ ├── ARMAsmBackend.cpp │ │ │ │ │ ├── ARMAsmBackend.h │ │ │ │ │ ├── ARMAsmBackendDarwin.h │ │ │ │ │ ├── ARMAsmBackendELF.h │ │ │ │ │ ├── ARMAsmBackendWinCOFF.h │ │ │ │ │ ├── ARMBaseInfo.h │ │ │ │ │ ├── ARMELFObjectWriter.cpp │ │ │ │ │ ├── ARMELFStreamer.cpp │ │ │ │ │ ├── ARMFixupKinds.h │ │ │ │ │ ├── ARMMCAsmInfo.cpp │ │ │ │ │ ├── ARMMCAsmInfo.h │ │ │ │ │ ├── ARMMCCodeEmitter.cpp │ │ │ │ │ ├── ARMMCExpr.cpp │ │ │ │ │ ├── ARMMCExpr.h │ │ │ │ │ ├── ARMMCTargetDesc.cpp │ │ │ │ │ ├── ARMMCTargetDesc.h │ │ │ │ │ ├── ARMMachORelocationInfo.cpp │ │ │ │ │ ├── ARMMachObjectWriter.cpp │ │ │ │ │ ├── ARMTargetStreamer.cpp │ │ │ │ │ ├── ARMUnwindOpAsm.cpp │ │ │ │ │ ├── ARMUnwindOpAsm.h │ │ │ │ │ ├── ARMWinCOFFObjectWriter.cpp │ │ │ │ │ ├── ARMWinCOFFStreamer.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── MLxExpansionPass.cpp │ │ │ │ ├── README-Thumb.txt │ │ │ │ ├── README-Thumb2.txt │ │ │ │ ├── README.txt │ │ │ │ ├── TargetInfo │ │ │ │ │ ├── ARMTargetInfo.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── Thumb1FrameLowering.cpp │ │ │ │ ├── Thumb1FrameLowering.h │ │ │ │ ├── Thumb1InstrInfo.cpp │ │ │ │ ├── Thumb1InstrInfo.h │ │ │ │ ├── Thumb2ITBlockPass.cpp │ │ │ │ ├── Thumb2InstrInfo.cpp │ │ │ │ ├── Thumb2InstrInfo.h │ │ │ │ ├── Thumb2SizeReduction.cpp │ │ │ │ ├── ThumbRegisterInfo.cpp │ │ │ │ ├── ThumbRegisterInfo.h │ │ │ │ └── Utils │ │ │ │ │ ├── ARMBaseInfo.cpp │ │ │ │ │ ├── ARMBaseInfo.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ ├── AVR │ │ │ │ ├── AVR.h │ │ │ │ ├── AVR.td │ │ │ │ ├── AVRAsmPrinter.cpp │ │ │ │ ├── AVRCallingConv.td │ │ │ │ ├── AVRDevices.td │ │ │ │ ├── AVRExpandPseudoInsts.cpp │ │ │ │ ├── AVRFrameLowering.cpp │ │ │ │ ├── AVRFrameLowering.h │ │ │ │ ├── AVRISelDAGToDAG.cpp │ │ │ │ ├── AVRISelLowering.cpp │ │ │ │ ├── AVRISelLowering.h │ │ │ │ ├── AVRInstrFormats.td │ │ │ │ ├── AVRInstrInfo.cpp │ │ │ │ ├── AVRInstrInfo.h │ │ │ │ ├── AVRInstrInfo.td │ │ │ │ ├── AVRMCInstLower.cpp │ │ │ │ ├── AVRMCInstLower.h │ │ │ │ ├── AVRMachineFunctionInfo.h │ │ │ │ ├── AVRRegisterInfo.cpp │ │ │ │ ├── AVRRegisterInfo.h │ │ │ │ ├── AVRRegisterInfo.td │ │ │ │ ├── AVRRelaxMemOperations.cpp │ │ │ │ ├── AVRSelectionDAGInfo.h │ │ │ │ ├── AVRSubtarget.cpp │ │ │ │ ├── AVRSubtarget.h │ │ │ │ ├── AVRTargetMachine.cpp │ │ │ │ ├── AVRTargetMachine.h │ │ │ │ ├── AVRTargetObjectFile.cpp │ │ │ │ ├── AVRTargetObjectFile.h │ │ │ │ ├── AsmParser │ │ │ │ │ ├── AVRAsmParser.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── AVRDisassembler.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── AVRInstPrinter.cpp │ │ │ │ │ ├── AVRInstPrinter.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── AVRAsmBackend.cpp │ │ │ │ │ ├── AVRAsmBackend.h │ │ │ │ │ ├── AVRELFObjectWriter.cpp │ │ │ │ │ ├── AVRELFStreamer.cpp │ │ │ │ │ ├── AVRELFStreamer.h │ │ │ │ │ ├── AVRFixupKinds.h │ │ │ │ │ ├── AVRMCAsmInfo.cpp │ │ │ │ │ ├── AVRMCAsmInfo.h │ │ │ │ │ ├── AVRMCCodeEmitter.cpp │ │ │ │ │ ├── AVRMCCodeEmitter.h │ │ │ │ │ ├── AVRMCELFStreamer.cpp │ │ │ │ │ ├── AVRMCELFStreamer.h │ │ │ │ │ ├── AVRMCExpr.cpp │ │ │ │ │ ├── AVRMCExpr.h │ │ │ │ │ ├── AVRMCTargetDesc.cpp │ │ │ │ │ ├── AVRMCTargetDesc.h │ │ │ │ │ ├── AVRTargetStreamer.cpp │ │ │ │ │ ├── AVRTargetStreamer.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── README.md │ │ │ │ ├── TODO.md │ │ │ │ └── TargetInfo │ │ │ │ │ ├── AVRTargetInfo.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ ├── BPF │ │ │ │ ├── AsmParser │ │ │ │ │ ├── BPFAsmParser.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── BPF.h │ │ │ │ ├── BPF.td │ │ │ │ ├── BPFAsmPrinter.cpp │ │ │ │ ├── BPFCallingConv.td │ │ │ │ ├── BPFFrameLowering.cpp │ │ │ │ ├── BPFFrameLowering.h │ │ │ │ ├── BPFISelDAGToDAG.cpp │ │ │ │ ├── BPFISelLowering.cpp │ │ │ │ ├── BPFISelLowering.h │ │ │ │ ├── BPFInstrFormats.td │ │ │ │ ├── BPFInstrInfo.cpp │ │ │ │ ├── BPFInstrInfo.h │ │ │ │ ├── BPFInstrInfo.td │ │ │ │ ├── BPFMCInstLower.cpp │ │ │ │ ├── BPFMCInstLower.h │ │ │ │ ├── BPFRegisterInfo.cpp │ │ │ │ ├── BPFRegisterInfo.h │ │ │ │ ├── BPFRegisterInfo.td │ │ │ │ ├── BPFSubtarget.cpp │ │ │ │ ├── BPFSubtarget.h │ │ │ │ ├── BPFTargetMachine.cpp │ │ │ │ ├── BPFTargetMachine.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── BPFDisassembler.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── BPFInstPrinter.cpp │ │ │ │ │ ├── BPFInstPrinter.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── BPFAsmBackend.cpp │ │ │ │ │ ├── BPFELFObjectWriter.cpp │ │ │ │ │ ├── BPFMCAsmInfo.h │ │ │ │ │ ├── BPFMCCodeEmitter.cpp │ │ │ │ │ ├── BPFMCTargetDesc.cpp │ │ │ │ │ ├── BPFMCTargetDesc.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ └── TargetInfo │ │ │ │ │ ├── BPFTargetInfo.cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── LLVMBuild.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── Hexagon │ │ │ │ ├── AsmParser │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── HexagonAsmParser.cpp │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── BitTracker.cpp │ │ │ │ ├── BitTracker.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── HexagonDisassembler.cpp │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── Hexagon.h │ │ │ │ ├── Hexagon.td │ │ │ │ ├── HexagonAsmPrinter.cpp │ │ │ │ ├── HexagonAsmPrinter.h │ │ │ │ ├── HexagonBitSimplify.cpp │ │ │ │ ├── HexagonBitTracker.cpp │ │ │ │ ├── HexagonBitTracker.h │ │ │ │ ├── HexagonBlockRanges.cpp │ │ │ │ ├── HexagonBlockRanges.h │ │ │ │ ├── HexagonBranchRelaxation.cpp │ │ │ │ ├── HexagonCFGOptimizer.cpp │ │ │ │ ├── HexagonCommonGEP.cpp │ │ │ │ ├── HexagonConstExtenders.cpp │ │ │ │ ├── HexagonConstPropagation.cpp │ │ │ │ ├── HexagonCopyToCombine.cpp │ │ │ │ ├── HexagonDepArch.h │ │ │ │ ├── HexagonDepArch.td │ │ │ │ ├── HexagonDepDecoders.h │ │ │ │ ├── HexagonDepIICHVX.td │ │ │ │ ├── HexagonDepIICScalar.td │ │ │ │ ├── HexagonDepITypes.h │ │ │ │ ├── HexagonDepITypes.td │ │ │ │ ├── HexagonDepInstrFormats.td │ │ │ │ ├── HexagonDepInstrInfo.td │ │ │ │ ├── HexagonDepMappings.td │ │ │ │ ├── HexagonDepOperands.td │ │ │ │ ├── HexagonDepTimingClasses.h │ │ │ │ ├── HexagonEarlyIfConv.cpp │ │ │ │ ├── HexagonExpandCondsets.cpp │ │ │ │ ├── HexagonFixupHwLoops.cpp │ │ │ │ ├── HexagonFrameLowering.cpp │ │ │ │ ├── HexagonFrameLowering.h │ │ │ │ ├── HexagonGatherPacketize.cpp │ │ │ │ ├── HexagonGenExtract.cpp │ │ │ │ ├── HexagonGenInsert.cpp │ │ │ │ ├── HexagonGenMux.cpp │ │ │ │ ├── HexagonGenPredicate.cpp │ │ │ │ ├── HexagonHardwareLoops.cpp │ │ │ │ ├── HexagonHazardRecognizer.cpp │ │ │ │ ├── HexagonHazardRecognizer.h │ │ │ │ ├── HexagonIICHVX.td │ │ │ │ ├── HexagonIICScalar.td │ │ │ │ ├── HexagonISelDAGToDAG.cpp │ │ │ │ ├── HexagonISelDAGToDAG.h │ │ │ │ ├── HexagonISelDAGToDAGHVX.cpp │ │ │ │ ├── HexagonISelLowering.cpp │ │ │ │ ├── HexagonISelLowering.h │ │ │ │ ├── HexagonISelLoweringHVX.cpp │ │ │ │ ├── HexagonInstrFormats.td │ │ │ │ ├── HexagonInstrFormatsV4.td │ │ │ │ ├── HexagonInstrFormatsV60.td │ │ │ │ ├── HexagonInstrFormatsV65.td │ │ │ │ ├── HexagonInstrInfo.cpp │ │ │ │ ├── HexagonInstrInfo.h │ │ │ │ ├── HexagonIntrinsics.td │ │ │ │ ├── HexagonIntrinsicsV3.td │ │ │ │ ├── HexagonIntrinsicsV4.td │ │ │ │ ├── HexagonIntrinsicsV5.td │ │ │ │ ├── HexagonIntrinsicsV60.td │ │ │ │ ├── HexagonLoopIdiomRecognition.cpp │ │ │ │ ├── HexagonMCInstLower.cpp │ │ │ │ ├── HexagonMachineFunctionInfo.cpp │ │ │ │ ├── HexagonMachineFunctionInfo.h │ │ │ │ ├── HexagonMachineScheduler.cpp │ │ │ │ ├── HexagonMachineScheduler.h │ │ │ │ ├── HexagonMapAsm2IntrinV62.gen.td │ │ │ │ ├── HexagonMapAsm2IntrinV65.gen.td │ │ │ │ ├── HexagonNewValueJump.cpp │ │ │ │ ├── HexagonOperands.td │ │ │ │ ├── HexagonOptAddrMode.cpp │ │ │ │ ├── HexagonOptimizeSZextends.cpp │ │ │ │ ├── HexagonPatterns.td │ │ │ │ ├── HexagonPatternsV65.td │ │ │ │ ├── HexagonPeephole.cpp │ │ │ │ ├── HexagonPseudo.td │ │ │ │ ├── HexagonRDFOpt.cpp │ │ │ │ ├── HexagonRegisterInfo.cpp │ │ │ │ ├── HexagonRegisterInfo.h │ │ │ │ ├── HexagonRegisterInfo.td │ │ │ │ ├── HexagonSchedule.td │ │ │ │ ├── HexagonScheduleV4.td │ │ │ │ ├── HexagonScheduleV55.td │ │ │ │ ├── HexagonScheduleV60.td │ │ │ │ ├── HexagonScheduleV62.td │ │ │ │ ├── HexagonScheduleV65.td │ │ │ │ ├── HexagonSelectionDAGInfo.cpp │ │ │ │ ├── HexagonSelectionDAGInfo.h │ │ │ │ ├── HexagonSplitConst32AndConst64.cpp │ │ │ │ ├── HexagonSplitDouble.cpp │ │ │ │ ├── HexagonStoreWidening.cpp │ │ │ │ ├── HexagonSubtarget.cpp │ │ │ │ ├── HexagonSubtarget.h │ │ │ │ ├── HexagonTargetMachine.cpp │ │ │ │ ├── HexagonTargetMachine.h │ │ │ │ ├── HexagonTargetObjectFile.cpp │ │ │ │ ├── HexagonTargetObjectFile.h │ │ │ │ ├── HexagonTargetStreamer.h │ │ │ │ ├── HexagonTargetTransformInfo.cpp │ │ │ │ ├── HexagonTargetTransformInfo.h │ │ │ │ ├── HexagonVLIWPacketizer.cpp │ │ │ │ ├── HexagonVLIWPacketizer.h │ │ │ │ ├── HexagonVectorLoopCarriedReuse.cpp │ │ │ │ ├── HexagonVectorPrint.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── HexagonAsmBackend.cpp │ │ │ │ │ ├── HexagonBaseInfo.h │ │ │ │ │ ├── HexagonELFObjectWriter.cpp │ │ │ │ │ ├── HexagonFixupKinds.h │ │ │ │ │ ├── HexagonInstPrinter.cpp │ │ │ │ │ ├── HexagonInstPrinter.h │ │ │ │ │ ├── HexagonMCAsmInfo.cpp │ │ │ │ │ ├── HexagonMCAsmInfo.h │ │ │ │ │ ├── HexagonMCChecker.cpp │ │ │ │ │ ├── HexagonMCChecker.h │ │ │ │ │ ├── HexagonMCCodeEmitter.cpp │ │ │ │ │ ├── HexagonMCCodeEmitter.h │ │ │ │ │ ├── HexagonMCCompound.cpp │ │ │ │ │ ├── HexagonMCDuplexInfo.cpp │ │ │ │ │ ├── HexagonMCELFStreamer.cpp │ │ │ │ │ ├── HexagonMCELFStreamer.h │ │ │ │ │ ├── HexagonMCExpr.cpp │ │ │ │ │ ├── HexagonMCExpr.h │ │ │ │ │ ├── HexagonMCInstrInfo.cpp │ │ │ │ │ ├── HexagonMCInstrInfo.h │ │ │ │ │ ├── HexagonMCShuffler.cpp │ │ │ │ │ ├── HexagonMCShuffler.h │ │ │ │ │ ├── HexagonMCTargetDesc.cpp │ │ │ │ │ ├── HexagonMCTargetDesc.h │ │ │ │ │ ├── HexagonShuffler.cpp │ │ │ │ │ ├── HexagonShuffler.h │ │ │ │ │ └── LLVMBuild.txt │ │ │ │ ├── RDFCopy.cpp │ │ │ │ ├── RDFCopy.h │ │ │ │ ├── RDFDeadCode.cpp │ │ │ │ ├── RDFDeadCode.h │ │ │ │ ├── RDFGraph.cpp │ │ │ │ ├── RDFGraph.h │ │ │ │ ├── RDFLiveness.cpp │ │ │ │ ├── RDFLiveness.h │ │ │ │ ├── RDFRegisters.cpp │ │ │ │ ├── RDFRegisters.h │ │ │ │ └── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── HexagonTargetInfo.cpp │ │ │ │ │ └── LLVMBuild.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── Lanai │ │ │ │ ├── AsmParser │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── LanaiAsmParser.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── LanaiDisassembler.cpp │ │ │ │ │ └── LanaiDisassembler.h │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── LanaiInstPrinter.cpp │ │ │ │ │ └── LanaiInstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── Lanai.h │ │ │ │ ├── Lanai.td │ │ │ │ ├── LanaiAluCode.h │ │ │ │ ├── LanaiAsmPrinter.cpp │ │ │ │ ├── LanaiCallingConv.td │ │ │ │ ├── LanaiCondCode.h │ │ │ │ ├── LanaiDelaySlotFiller.cpp │ │ │ │ ├── LanaiFrameLowering.cpp │ │ │ │ ├── LanaiFrameLowering.h │ │ │ │ ├── LanaiISelDAGToDAG.cpp │ │ │ │ ├── LanaiISelLowering.cpp │ │ │ │ ├── LanaiISelLowering.h │ │ │ │ ├── LanaiInstrFormats.td │ │ │ │ ├── LanaiInstrInfo.cpp │ │ │ │ ├── LanaiInstrInfo.h │ │ │ │ ├── LanaiInstrInfo.td │ │ │ │ ├── LanaiMCInstLower.cpp │ │ │ │ ├── LanaiMCInstLower.h │ │ │ │ ├── LanaiMachineFunctionInfo.cpp │ │ │ │ ├── LanaiMachineFunctionInfo.h │ │ │ │ ├── LanaiMemAluCombiner.cpp │ │ │ │ ├── LanaiRegisterInfo.cpp │ │ │ │ ├── LanaiRegisterInfo.h │ │ │ │ ├── LanaiRegisterInfo.td │ │ │ │ ├── LanaiSchedule.td │ │ │ │ ├── LanaiSelectionDAGInfo.cpp │ │ │ │ ├── LanaiSelectionDAGInfo.h │ │ │ │ ├── LanaiSubtarget.cpp │ │ │ │ ├── LanaiSubtarget.h │ │ │ │ ├── LanaiTargetMachine.cpp │ │ │ │ ├── LanaiTargetMachine.h │ │ │ │ ├── LanaiTargetObjectFile.cpp │ │ │ │ ├── LanaiTargetObjectFile.h │ │ │ │ ├── LanaiTargetTransformInfo.h │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── LanaiAsmBackend.cpp │ │ │ │ │ ├── LanaiBaseInfo.h │ │ │ │ │ ├── LanaiELFObjectWriter.cpp │ │ │ │ │ ├── LanaiFixupKinds.h │ │ │ │ │ ├── LanaiMCAsmInfo.cpp │ │ │ │ │ ├── LanaiMCAsmInfo.h │ │ │ │ │ ├── LanaiMCCodeEmitter.cpp │ │ │ │ │ ├── LanaiMCExpr.cpp │ │ │ │ │ ├── LanaiMCExpr.h │ │ │ │ │ ├── LanaiMCTargetDesc.cpp │ │ │ │ │ └── LanaiMCTargetDesc.h │ │ │ │ └── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── LanaiTargetInfo.cpp │ │ │ ├── MSP430 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── MSP430InstPrinter.cpp │ │ │ │ │ └── MSP430InstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── MSP430MCAsmInfo.cpp │ │ │ │ │ ├── MSP430MCAsmInfo.h │ │ │ │ │ ├── MSP430MCTargetDesc.cpp │ │ │ │ │ └── MSP430MCTargetDesc.h │ │ │ │ ├── MSP430.h │ │ │ │ ├── MSP430.td │ │ │ │ ├── MSP430AsmPrinter.cpp │ │ │ │ ├── MSP430BranchSelector.cpp │ │ │ │ ├── MSP430CallingConv.td │ │ │ │ ├── MSP430FrameLowering.cpp │ │ │ │ ├── MSP430FrameLowering.h │ │ │ │ ├── MSP430ISelDAGToDAG.cpp │ │ │ │ ├── MSP430ISelLowering.cpp │ │ │ │ ├── MSP430ISelLowering.h │ │ │ │ ├── MSP430InstrFormats.td │ │ │ │ ├── MSP430InstrInfo.cpp │ │ │ │ ├── MSP430InstrInfo.h │ │ │ │ ├── MSP430InstrInfo.td │ │ │ │ ├── MSP430MCInstLower.cpp │ │ │ │ ├── MSP430MCInstLower.h │ │ │ │ ├── MSP430MachineFunctionInfo.cpp │ │ │ │ ├── MSP430MachineFunctionInfo.h │ │ │ │ ├── MSP430RegisterInfo.cpp │ │ │ │ ├── MSP430RegisterInfo.h │ │ │ │ ├── MSP430RegisterInfo.td │ │ │ │ ├── MSP430Subtarget.cpp │ │ │ │ ├── MSP430Subtarget.h │ │ │ │ ├── MSP430TargetMachine.cpp │ │ │ │ ├── MSP430TargetMachine.h │ │ │ │ ├── README.txt │ │ │ │ └── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── MSP430TargetInfo.cpp │ │ │ ├── Mips │ │ │ │ ├── AsmParser │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── MipsAsmParser.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── MipsDisassembler.cpp │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── MipsInstPrinter.cpp │ │ │ │ │ └── MipsInstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── MipsABIFlagsSection.cpp │ │ │ │ │ ├── MipsABIFlagsSection.h │ │ │ │ │ ├── MipsABIInfo.cpp │ │ │ │ │ ├── MipsABIInfo.h │ │ │ │ │ ├── MipsAsmBackend.cpp │ │ │ │ │ ├── MipsAsmBackend.h │ │ │ │ │ ├── MipsBaseInfo.h │ │ │ │ │ ├── MipsELFObjectWriter.cpp │ │ │ │ │ ├── MipsELFStreamer.cpp │ │ │ │ │ ├── MipsELFStreamer.h │ │ │ │ │ ├── MipsFixupKinds.h │ │ │ │ │ ├── MipsMCAsmInfo.cpp │ │ │ │ │ ├── MipsMCAsmInfo.h │ │ │ │ │ ├── MipsMCCodeEmitter.cpp │ │ │ │ │ ├── MipsMCCodeEmitter.h │ │ │ │ │ ├── MipsMCExpr.cpp │ │ │ │ │ ├── MipsMCExpr.h │ │ │ │ │ ├── MipsMCNaCl.h │ │ │ │ │ ├── MipsMCTargetDesc.cpp │ │ │ │ │ ├── MipsMCTargetDesc.h │ │ │ │ │ ├── MipsNaClELFStreamer.cpp │ │ │ │ │ ├── MipsOptionRecord.cpp │ │ │ │ │ └── MipsTargetStreamer.cpp │ │ │ │ ├── MSA.txt │ │ │ │ ├── MicroMips32r6InstrFormats.td │ │ │ │ ├── MicroMips32r6InstrInfo.td │ │ │ │ ├── MicroMipsDSPInstrFormats.td │ │ │ │ ├── MicroMipsDSPInstrInfo.td │ │ │ │ ├── MicroMipsInstrFPU.td │ │ │ │ ├── MicroMipsInstrFormats.td │ │ │ │ ├── MicroMipsInstrInfo.td │ │ │ │ ├── MicroMipsSizeReduction.cpp │ │ │ │ ├── Mips.h │ │ │ │ ├── Mips.td │ │ │ │ ├── Mips16FrameLowering.cpp │ │ │ │ ├── Mips16FrameLowering.h │ │ │ │ ├── Mips16HardFloat.cpp │ │ │ │ ├── Mips16HardFloatInfo.cpp │ │ │ │ ├── Mips16HardFloatInfo.h │ │ │ │ ├── Mips16ISelDAGToDAG.cpp │ │ │ │ ├── Mips16ISelDAGToDAG.h │ │ │ │ ├── Mips16ISelLowering.cpp │ │ │ │ ├── Mips16ISelLowering.h │ │ │ │ ├── Mips16InstrFormats.td │ │ │ │ ├── Mips16InstrInfo.cpp │ │ │ │ ├── Mips16InstrInfo.h │ │ │ │ ├── Mips16InstrInfo.td │ │ │ │ ├── Mips16RegisterInfo.cpp │ │ │ │ ├── Mips16RegisterInfo.h │ │ │ │ ├── Mips32r6InstrFormats.td │ │ │ │ ├── Mips32r6InstrInfo.td │ │ │ │ ├── Mips64InstrInfo.td │ │ │ │ ├── Mips64r6InstrInfo.td │ │ │ │ ├── MipsAnalyzeImmediate.cpp │ │ │ │ ├── MipsAnalyzeImmediate.h │ │ │ │ ├── MipsAsmPrinter.cpp │ │ │ │ ├── MipsAsmPrinter.h │ │ │ │ ├── MipsCCState.cpp │ │ │ │ ├── MipsCCState.h │ │ │ │ ├── MipsCallingConv.td │ │ │ │ ├── MipsCondMov.td │ │ │ │ ├── MipsConstantIslandPass.cpp │ │ │ │ ├── MipsDSPInstrFormats.td │ │ │ │ ├── MipsDSPInstrInfo.td │ │ │ │ ├── MipsDelaySlotFiller.cpp │ │ │ │ ├── MipsEVAInstrFormats.td │ │ │ │ ├── MipsEVAInstrInfo.td │ │ │ │ ├── MipsFastISel.cpp │ │ │ │ ├── MipsFrameLowering.cpp │ │ │ │ ├── MipsFrameLowering.h │ │ │ │ ├── MipsHazardSchedule.cpp │ │ │ │ ├── MipsISelDAGToDAG.cpp │ │ │ │ ├── MipsISelDAGToDAG.h │ │ │ │ ├── MipsISelLowering.cpp │ │ │ │ ├── MipsISelLowering.h │ │ │ │ ├── MipsInstrFPU.td │ │ │ │ ├── MipsInstrFormats.td │ │ │ │ ├── MipsInstrInfo.cpp │ │ │ │ ├── MipsInstrInfo.h │ │ │ │ ├── MipsInstrInfo.td │ │ │ │ ├── MipsLongBranch.cpp │ │ │ │ ├── MipsMCInstLower.cpp │ │ │ │ ├── MipsMCInstLower.h │ │ │ │ ├── MipsMSAInstrFormats.td │ │ │ │ ├── MipsMSAInstrInfo.td │ │ │ │ ├── MipsMTInstrFormats.td │ │ │ │ ├── MipsMTInstrInfo.td │ │ │ │ ├── MipsMachineFunction.cpp │ │ │ │ ├── MipsMachineFunction.h │ │ │ │ ├── MipsModuleISelDAGToDAG.cpp │ │ │ │ ├── MipsOptimizePICCall.cpp │ │ │ │ ├── MipsOptionRecord.h │ │ │ │ ├── MipsOs16.cpp │ │ │ │ ├── MipsRegisterInfo.cpp │ │ │ │ ├── MipsRegisterInfo.h │ │ │ │ ├── MipsRegisterInfo.td │ │ │ │ ├── MipsSEFrameLowering.cpp │ │ │ │ ├── MipsSEFrameLowering.h │ │ │ │ ├── MipsSEISelDAGToDAG.cpp │ │ │ │ ├── MipsSEISelDAGToDAG.h │ │ │ │ ├── MipsSEISelLowering.cpp │ │ │ │ ├── MipsSEISelLowering.h │ │ │ │ ├── MipsSEInstrInfo.cpp │ │ │ │ ├── MipsSEInstrInfo.h │ │ │ │ ├── MipsSERegisterInfo.cpp │ │ │ │ ├── MipsSERegisterInfo.h │ │ │ │ ├── MipsSchedule.td │ │ │ │ ├── MipsScheduleGeneric.td │ │ │ │ ├── MipsScheduleP5600.td │ │ │ │ ├── MipsSubtarget.cpp │ │ │ │ ├── MipsSubtarget.h │ │ │ │ ├── MipsTargetMachine.cpp │ │ │ │ ├── MipsTargetMachine.h │ │ │ │ ├── MipsTargetObjectFile.cpp │ │ │ │ ├── MipsTargetObjectFile.h │ │ │ │ ├── MipsTargetStreamer.h │ │ │ │ ├── Relocation.txt │ │ │ │ └── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── MipsTargetInfo.cpp │ │ │ ├── NVPTX │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── NVPTXInstPrinter.cpp │ │ │ │ │ └── NVPTXInstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── NVPTXBaseInfo.h │ │ │ │ │ ├── NVPTXMCAsmInfo.cpp │ │ │ │ │ ├── NVPTXMCAsmInfo.h │ │ │ │ │ ├── NVPTXMCTargetDesc.cpp │ │ │ │ │ └── NVPTXMCTargetDesc.h │ │ │ │ ├── ManagedStringPool.h │ │ │ │ ├── NVPTX.h │ │ │ │ ├── NVPTX.td │ │ │ │ ├── NVPTXAllocaHoisting.cpp │ │ │ │ ├── NVPTXAllocaHoisting.h │ │ │ │ ├── NVPTXAsmPrinter.cpp │ │ │ │ ├── NVPTXAsmPrinter.h │ │ │ │ ├── NVPTXAssignValidGlobalNames.cpp │ │ │ │ ├── NVPTXFrameLowering.cpp │ │ │ │ ├── NVPTXFrameLowering.h │ │ │ │ ├── NVPTXGenericToNVVM.cpp │ │ │ │ ├── NVPTXISelDAGToDAG.cpp │ │ │ │ ├── NVPTXISelDAGToDAG.h │ │ │ │ ├── NVPTXISelLowering.cpp │ │ │ │ ├── NVPTXISelLowering.h │ │ │ │ ├── NVPTXImageOptimizer.cpp │ │ │ │ ├── NVPTXInstrFormats.td │ │ │ │ ├── NVPTXInstrInfo.cpp │ │ │ │ ├── NVPTXInstrInfo.h │ │ │ │ ├── NVPTXInstrInfo.td │ │ │ │ ├── NVPTXIntrinsics.td │ │ │ │ ├── NVPTXLowerAggrCopies.cpp │ │ │ │ ├── NVPTXLowerAggrCopies.h │ │ │ │ ├── NVPTXLowerAlloca.cpp │ │ │ │ ├── NVPTXLowerArgs.cpp │ │ │ │ ├── NVPTXMCExpr.cpp │ │ │ │ ├── NVPTXMCExpr.h │ │ │ │ ├── NVPTXMachineFunctionInfo.h │ │ │ │ ├── NVPTXPeephole.cpp │ │ │ │ ├── NVPTXPrologEpilogPass.cpp │ │ │ │ ├── NVPTXRegisterInfo.cpp │ │ │ │ ├── NVPTXRegisterInfo.h │ │ │ │ ├── NVPTXRegisterInfo.td │ │ │ │ ├── NVPTXReplaceImageHandles.cpp │ │ │ │ ├── NVPTXSection.h │ │ │ │ ├── NVPTXSubtarget.cpp │ │ │ │ ├── NVPTXSubtarget.h │ │ │ │ ├── NVPTXTargetMachine.cpp │ │ │ │ ├── NVPTXTargetMachine.h │ │ │ │ ├── NVPTXTargetObjectFile.h │ │ │ │ ├── NVPTXTargetTransformInfo.cpp │ │ │ │ ├── NVPTXTargetTransformInfo.h │ │ │ │ ├── NVPTXUtilities.cpp │ │ │ │ ├── NVPTXUtilities.h │ │ │ │ ├── NVVMIntrRange.cpp │ │ │ │ ├── NVVMReflect.cpp │ │ │ │ ├── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── NVPTXTargetInfo.cpp │ │ │ │ └── cl_common_defines.h │ │ │ ├── Nios2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── Nios2InstPrinter.cpp │ │ │ │ │ └── Nios2InstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── Nios2AsmBackend.cpp │ │ │ │ │ ├── Nios2AsmBackend.h │ │ │ │ │ ├── Nios2BaseInfo.h │ │ │ │ │ ├── Nios2ELFObjectWriter.cpp │ │ │ │ │ ├── Nios2FixupKinds.h │ │ │ │ │ ├── Nios2MCAsmInfo.cpp │ │ │ │ │ ├── Nios2MCAsmInfo.h │ │ │ │ │ ├── Nios2MCExpr.cpp │ │ │ │ │ ├── Nios2MCExpr.h │ │ │ │ │ ├── Nios2MCTargetDesc.cpp │ │ │ │ │ ├── Nios2MCTargetDesc.h │ │ │ │ │ └── Nios2TargetStreamer.cpp │ │ │ │ ├── Nios2.h │ │ │ │ ├── Nios2.td │ │ │ │ ├── Nios2AsmPrinter.cpp │ │ │ │ ├── Nios2CallingConv.td │ │ │ │ ├── Nios2FrameLowering.cpp │ │ │ │ ├── Nios2FrameLowering.h │ │ │ │ ├── Nios2ISelDAGToDAG.cpp │ │ │ │ ├── Nios2ISelLowering.cpp │ │ │ │ ├── Nios2ISelLowering.h │ │ │ │ ├── Nios2InstrFormats.td │ │ │ │ ├── Nios2InstrInfo.cpp │ │ │ │ ├── Nios2InstrInfo.h │ │ │ │ ├── Nios2InstrInfo.td │ │ │ │ ├── Nios2MCInstLower.cpp │ │ │ │ ├── Nios2MachineFunction.cpp │ │ │ │ ├── Nios2MachineFunction.h │ │ │ │ ├── Nios2RegisterInfo.cpp │ │ │ │ ├── Nios2RegisterInfo.h │ │ │ │ ├── Nios2RegisterInfo.td │ │ │ │ ├── Nios2Schedule.td │ │ │ │ ├── Nios2Subtarget.cpp │ │ │ │ ├── Nios2Subtarget.h │ │ │ │ ├── Nios2TargetMachine.cpp │ │ │ │ ├── Nios2TargetMachine.h │ │ │ │ ├── Nios2TargetObjectFile.cpp │ │ │ │ ├── Nios2TargetObjectFile.h │ │ │ │ ├── Nios2TargetStreamer.h │ │ │ │ └── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── Nios2TargetInfo.cpp │ │ │ ├── PowerPC │ │ │ │ ├── AsmParser │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── PPCAsmParser.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── PPCDisassembler.cpp │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── PPCInstPrinter.cpp │ │ │ │ │ └── PPCInstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── PPCAsmBackend.cpp │ │ │ │ │ ├── PPCELFObjectWriter.cpp │ │ │ │ │ ├── PPCFixupKinds.h │ │ │ │ │ ├── PPCMCAsmInfo.cpp │ │ │ │ │ ├── PPCMCAsmInfo.h │ │ │ │ │ ├── PPCMCCodeEmitter.cpp │ │ │ │ │ ├── PPCMCExpr.cpp │ │ │ │ │ ├── PPCMCExpr.h │ │ │ │ │ ├── PPCMCTargetDesc.cpp │ │ │ │ │ ├── PPCMCTargetDesc.h │ │ │ │ │ ├── PPCMachObjectWriter.cpp │ │ │ │ │ ├── PPCPredicates.cpp │ │ │ │ │ └── PPCPredicates.h │ │ │ │ ├── P9InstrResources.td │ │ │ │ ├── PPC.h │ │ │ │ ├── PPC.td │ │ │ │ ├── PPCAsmPrinter.cpp │ │ │ │ ├── PPCBoolRetToInt.cpp │ │ │ │ ├── PPCBranchCoalescing.cpp │ │ │ │ ├── PPCBranchSelector.cpp │ │ │ │ ├── PPCCCState.cpp │ │ │ │ ├── PPCCCState.h │ │ │ │ ├── PPCCTRLoops.cpp │ │ │ │ ├── PPCCallingConv.h │ │ │ │ ├── PPCCallingConv.td │ │ │ │ ├── PPCEarlyReturn.cpp │ │ │ │ ├── PPCExpandISEL.cpp │ │ │ │ ├── PPCFastISel.cpp │ │ │ │ ├── PPCFrameLowering.cpp │ │ │ │ ├── PPCFrameLowering.h │ │ │ │ ├── PPCHazardRecognizers.cpp │ │ │ │ ├── PPCHazardRecognizers.h │ │ │ │ ├── PPCISelDAGToDAG.cpp │ │ │ │ ├── PPCISelLowering.cpp │ │ │ │ ├── PPCISelLowering.h │ │ │ │ ├── PPCInstr64Bit.td │ │ │ │ ├── PPCInstrAltivec.td │ │ │ │ ├── PPCInstrBuilder.h │ │ │ │ ├── PPCInstrFormats.td │ │ │ │ ├── PPCInstrHTM.td │ │ │ │ ├── PPCInstrInfo.cpp │ │ │ │ ├── PPCInstrInfo.h │ │ │ │ ├── PPCInstrInfo.td │ │ │ │ ├── PPCInstrQPX.td │ │ │ │ ├── PPCInstrSPE.td │ │ │ │ ├── PPCInstrVSX.td │ │ │ │ ├── PPCLoopPreIncPrep.cpp │ │ │ │ ├── PPCMCInstLower.cpp │ │ │ │ ├── PPCMIPeephole.cpp │ │ │ │ ├── PPCMachineBasicBlockUtils.h │ │ │ │ ├── PPCMachineFunctionInfo.cpp │ │ │ │ ├── PPCMachineFunctionInfo.h │ │ │ │ ├── PPCPerfectShuffle.h │ │ │ │ ├── PPCPreEmitPeephole.cpp │ │ │ │ ├── PPCQPXLoadSplat.cpp │ │ │ │ ├── PPCReduceCRLogicals.cpp │ │ │ │ ├── PPCRegisterInfo.cpp │ │ │ │ ├── PPCRegisterInfo.h │ │ │ │ ├── PPCRegisterInfo.td │ │ │ │ ├── PPCSchedule.td │ │ │ │ ├── PPCSchedule440.td │ │ │ │ ├── PPCScheduleA2.td │ │ │ │ ├── PPCScheduleE500mc.td │ │ │ │ ├── PPCScheduleE5500.td │ │ │ │ ├── PPCScheduleG3.td │ │ │ │ ├── PPCScheduleG4.td │ │ │ │ ├── PPCScheduleG4Plus.td │ │ │ │ ├── PPCScheduleG5.td │ │ │ │ ├── PPCScheduleP7.td │ │ │ │ ├── PPCScheduleP8.td │ │ │ │ ├── PPCScheduleP9.td │ │ │ │ ├── PPCSubtarget.cpp │ │ │ │ ├── PPCSubtarget.h │ │ │ │ ├── PPCTLSDynamicCall.cpp │ │ │ │ ├── PPCTOCRegDeps.cpp │ │ │ │ ├── PPCTargetMachine.cpp │ │ │ │ ├── PPCTargetMachine.h │ │ │ │ ├── PPCTargetObjectFile.cpp │ │ │ │ ├── PPCTargetObjectFile.h │ │ │ │ ├── PPCTargetStreamer.h │ │ │ │ ├── PPCTargetTransformInfo.cpp │ │ │ │ ├── PPCTargetTransformInfo.h │ │ │ │ ├── PPCVSXCopy.cpp │ │ │ │ ├── PPCVSXFMAMutate.cpp │ │ │ │ ├── PPCVSXSwapRemoval.cpp │ │ │ │ ├── README.txt │ │ │ │ ├── README_ALTIVEC.txt │ │ │ │ ├── README_P9.txt │ │ │ │ └── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── PowerPCTargetInfo.cpp │ │ │ ├── README.txt │ │ │ ├── RISCV │ │ │ │ ├── AsmParser │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── RISCVAsmParser.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── RISCVDisassembler.cpp │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── RISCVInstPrinter.cpp │ │ │ │ │ └── RISCVInstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── RISCVAsmBackend.cpp │ │ │ │ │ ├── RISCVBaseInfo.h │ │ │ │ │ ├── RISCVELFObjectWriter.cpp │ │ │ │ │ ├── RISCVFixupKinds.h │ │ │ │ │ ├── RISCVMCAsmInfo.cpp │ │ │ │ │ ├── RISCVMCAsmInfo.h │ │ │ │ │ ├── RISCVMCCodeEmitter.cpp │ │ │ │ │ ├── RISCVMCExpr.cpp │ │ │ │ │ ├── RISCVMCExpr.h │ │ │ │ │ ├── RISCVMCTargetDesc.cpp │ │ │ │ │ └── RISCVMCTargetDesc.h │ │ │ │ ├── RISCV.h │ │ │ │ ├── RISCV.td │ │ │ │ ├── RISCVAsmPrinter.cpp │ │ │ │ ├── RISCVCallingConv.td │ │ │ │ ├── RISCVFrameLowering.cpp │ │ │ │ ├── RISCVFrameLowering.h │ │ │ │ ├── RISCVISelDAGToDAG.cpp │ │ │ │ ├── RISCVISelLowering.cpp │ │ │ │ ├── RISCVISelLowering.h │ │ │ │ ├── RISCVInstrFormats.td │ │ │ │ ├── RISCVInstrFormatsC.td │ │ │ │ ├── RISCVInstrInfo.cpp │ │ │ │ ├── RISCVInstrInfo.h │ │ │ │ ├── RISCVInstrInfo.td │ │ │ │ ├── RISCVInstrInfoA.td │ │ │ │ ├── RISCVInstrInfoC.td │ │ │ │ ├── RISCVInstrInfoD.td │ │ │ │ ├── RISCVInstrInfoF.td │ │ │ │ ├── RISCVInstrInfoM.td │ │ │ │ ├── RISCVMCInstLower.cpp │ │ │ │ ├── RISCVRegisterInfo.cpp │ │ │ │ ├── RISCVRegisterInfo.h │ │ │ │ ├── RISCVRegisterInfo.td │ │ │ │ ├── RISCVSubtarget.cpp │ │ │ │ ├── RISCVSubtarget.h │ │ │ │ ├── RISCVTargetMachine.cpp │ │ │ │ ├── RISCVTargetMachine.h │ │ │ │ └── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── RISCVTargetInfo.cpp │ │ │ ├── Sparc │ │ │ │ ├── AsmParser │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── SparcAsmParser.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DelaySlotFiller.cpp │ │ │ │ ├── Disassembler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── SparcDisassembler.cpp │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── SparcInstPrinter.cpp │ │ │ │ │ └── SparcInstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── LeonFeatures.td │ │ │ │ ├── LeonPasses.cpp │ │ │ │ ├── LeonPasses.h │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── SparcAsmBackend.cpp │ │ │ │ │ ├── SparcELFObjectWriter.cpp │ │ │ │ │ ├── SparcFixupKinds.h │ │ │ │ │ ├── SparcMCAsmInfo.cpp │ │ │ │ │ ├── SparcMCAsmInfo.h │ │ │ │ │ ├── SparcMCCodeEmitter.cpp │ │ │ │ │ ├── SparcMCExpr.cpp │ │ │ │ │ ├── SparcMCExpr.h │ │ │ │ │ ├── SparcMCTargetDesc.cpp │ │ │ │ │ ├── SparcMCTargetDesc.h │ │ │ │ │ └── SparcTargetStreamer.cpp │ │ │ │ ├── README.txt │ │ │ │ ├── Sparc.h │ │ │ │ ├── Sparc.td │ │ │ │ ├── SparcAsmPrinter.cpp │ │ │ │ ├── SparcCallingConv.td │ │ │ │ ├── SparcFrameLowering.cpp │ │ │ │ ├── SparcFrameLowering.h │ │ │ │ ├── SparcISelDAGToDAG.cpp │ │ │ │ ├── SparcISelLowering.cpp │ │ │ │ ├── SparcISelLowering.h │ │ │ │ ├── SparcInstr64Bit.td │ │ │ │ ├── SparcInstrAliases.td │ │ │ │ ├── SparcInstrFormats.td │ │ │ │ ├── SparcInstrInfo.cpp │ │ │ │ ├── SparcInstrInfo.h │ │ │ │ ├── SparcInstrInfo.td │ │ │ │ ├── SparcInstrVIS.td │ │ │ │ ├── SparcMCInstLower.cpp │ │ │ │ ├── SparcMachineFunctionInfo.cpp │ │ │ │ ├── SparcMachineFunctionInfo.h │ │ │ │ ├── SparcRegisterInfo.cpp │ │ │ │ ├── SparcRegisterInfo.h │ │ │ │ ├── SparcRegisterInfo.td │ │ │ │ ├── SparcSchedule.td │ │ │ │ ├── SparcSubtarget.cpp │ │ │ │ ├── SparcSubtarget.h │ │ │ │ ├── SparcTargetMachine.cpp │ │ │ │ ├── SparcTargetMachine.h │ │ │ │ ├── SparcTargetObjectFile.cpp │ │ │ │ ├── SparcTargetObjectFile.h │ │ │ │ ├── SparcTargetStreamer.h │ │ │ │ └── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── SparcTargetInfo.cpp │ │ │ ├── SystemZ │ │ │ │ ├── AsmParser │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── SystemZAsmParser.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── SystemZDisassembler.cpp │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── SystemZInstPrinter.cpp │ │ │ │ │ └── SystemZInstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── SystemZMCAsmBackend.cpp │ │ │ │ │ ├── SystemZMCAsmInfo.cpp │ │ │ │ │ ├── SystemZMCAsmInfo.h │ │ │ │ │ ├── SystemZMCCodeEmitter.cpp │ │ │ │ │ ├── SystemZMCFixups.h │ │ │ │ │ ├── SystemZMCObjectWriter.cpp │ │ │ │ │ ├── SystemZMCTargetDesc.cpp │ │ │ │ │ └── SystemZMCTargetDesc.h │ │ │ │ ├── README.txt │ │ │ │ ├── SystemZ.h │ │ │ │ ├── SystemZ.td │ │ │ │ ├── SystemZAsmPrinter.cpp │ │ │ │ ├── SystemZAsmPrinter.h │ │ │ │ ├── SystemZCallingConv.cpp │ │ │ │ ├── SystemZCallingConv.h │ │ │ │ ├── SystemZCallingConv.td │ │ │ │ ├── SystemZConstantPoolValue.cpp │ │ │ │ ├── SystemZConstantPoolValue.h │ │ │ │ ├── SystemZElimCompare.cpp │ │ │ │ ├── SystemZExpandPseudo.cpp │ │ │ │ ├── SystemZFeatures.td │ │ │ │ ├── SystemZFrameLowering.cpp │ │ │ │ ├── SystemZFrameLowering.h │ │ │ │ ├── SystemZHazardRecognizer.cpp │ │ │ │ ├── SystemZHazardRecognizer.h │ │ │ │ ├── SystemZISelDAGToDAG.cpp │ │ │ │ ├── SystemZISelLowering.cpp │ │ │ │ ├── SystemZISelLowering.h │ │ │ │ ├── SystemZInstrBuilder.h │ │ │ │ ├── SystemZInstrDFP.td │ │ │ │ ├── SystemZInstrFP.td │ │ │ │ ├── SystemZInstrFormats.td │ │ │ │ ├── SystemZInstrHFP.td │ │ │ │ ├── SystemZInstrInfo.cpp │ │ │ │ ├── SystemZInstrInfo.h │ │ │ │ ├── SystemZInstrInfo.td │ │ │ │ ├── SystemZInstrSystem.td │ │ │ │ ├── SystemZInstrVector.td │ │ │ │ ├── SystemZLDCleanup.cpp │ │ │ │ ├── SystemZLongBranch.cpp │ │ │ │ ├── SystemZMCInstLower.cpp │ │ │ │ ├── SystemZMCInstLower.h │ │ │ │ ├── SystemZMachineFunctionInfo.cpp │ │ │ │ ├── SystemZMachineFunctionInfo.h │ │ │ │ ├── SystemZMachineScheduler.cpp │ │ │ │ ├── SystemZMachineScheduler.h │ │ │ │ ├── SystemZOperands.td │ │ │ │ ├── SystemZOperators.td │ │ │ │ ├── SystemZPatterns.td │ │ │ │ ├── SystemZProcessors.td │ │ │ │ ├── SystemZRegisterInfo.cpp │ │ │ │ ├── SystemZRegisterInfo.h │ │ │ │ ├── SystemZRegisterInfo.td │ │ │ │ ├── SystemZSchedule.td │ │ │ │ ├── SystemZScheduleZ13.td │ │ │ │ ├── SystemZScheduleZ14.td │ │ │ │ ├── SystemZScheduleZ196.td │ │ │ │ ├── SystemZScheduleZEC12.td │ │ │ │ ├── SystemZSelectionDAGInfo.cpp │ │ │ │ ├── SystemZSelectionDAGInfo.h │ │ │ │ ├── SystemZShortenInst.cpp │ │ │ │ ├── SystemZSubtarget.cpp │ │ │ │ ├── SystemZSubtarget.h │ │ │ │ ├── SystemZTDC.cpp │ │ │ │ ├── SystemZTargetMachine.cpp │ │ │ │ ├── SystemZTargetMachine.h │ │ │ │ ├── SystemZTargetTransformInfo.cpp │ │ │ │ ├── SystemZTargetTransformInfo.h │ │ │ │ └── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── SystemZTargetInfo.cpp │ │ │ ├── Target.cpp │ │ │ ├── TargetIntrinsicInfo.cpp │ │ │ ├── TargetLoweringObjectFile.cpp │ │ │ ├── TargetMachine.cpp │ │ │ ├── TargetMachineC.cpp │ │ │ ├── WebAssembly │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── WebAssemblyDisassembler.cpp │ │ │ │ ├── InstPrinter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── WebAssemblyInstPrinter.cpp │ │ │ │ │ └── WebAssemblyInstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ ├── WebAssemblyAsmBackend.cpp │ │ │ │ │ ├── WebAssemblyELFObjectWriter.cpp │ │ │ │ │ ├── WebAssemblyFixupKinds.h │ │ │ │ │ ├── WebAssemblyMCAsmInfo.cpp │ │ │ │ │ ├── WebAssemblyMCAsmInfo.h │ │ │ │ │ ├── WebAssemblyMCCodeEmitter.cpp │ │ │ │ │ ├── WebAssemblyMCTargetDesc.cpp │ │ │ │ │ ├── WebAssemblyMCTargetDesc.h │ │ │ │ │ ├── WebAssemblyTargetStreamer.cpp │ │ │ │ │ ├── WebAssemblyTargetStreamer.h │ │ │ │ │ └── WebAssemblyWasmObjectWriter.cpp │ │ │ │ ├── README.txt │ │ │ │ ├── TargetInfo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── LLVMBuild.txt │ │ │ │ │ └── WebAssemblyTargetInfo.cpp │ │ │ │ ├── WebAssembly.h │ │ │ │ ├── WebAssembly.td │ │ │ │ ├── WebAssemblyArgumentMove.cpp │ │ │ │ ├── WebAssemblyAsmPrinter.cpp │ │ │ │ ├── WebAssemblyAsmPrinter.h │ │ │ │ ├── WebAssemblyCFGSort.cpp │ │ │ │ ├── WebAssemblyCFGStackify.cpp │ │ │ │ ├── WebAssemblyCallIndirectFixup.cpp │ │ │ │ ├── WebAssemblyExplicitLocals.cpp │ │ │ │ ├── WebAssemblyFastISel.cpp │ │ │ │ ├── WebAssemblyFixFunctionBitcasts.cpp │ │ │ │ ├── WebAssemblyFixIrreducibleControlFlow.cpp │ │ │ │ ├── WebAssemblyFrameLowering.cpp │ │ │ │ ├── WebAssemblyFrameLowering.h │ │ │ │ ├── WebAssemblyISD.def │ │ │ │ ├── WebAssemblyISelDAGToDAG.cpp │ │ │ │ ├── WebAssemblyISelLowering.cpp │ │ │ │ ├── WebAssemblyISelLowering.h │ │ │ │ ├── WebAssemblyInstrAtomics.td │ │ │ │ ├── WebAssemblyInstrCall.td │ │ │ │ ├── WebAssemblyInstrControl.td │ │ │ │ ├── WebAssemblyInstrConv.td │ │ │ │ ├── WebAssemblyInstrFloat.td │ │ │ │ ├── WebAssemblyInstrFormats.td │ │ │ │ ├── WebAssemblyInstrInfo.cpp │ │ │ │ ├── WebAssemblyInstrInfo.h │ │ │ │ ├── WebAssemblyInstrInfo.td │ │ │ │ ├── WebAssemblyInstrInteger.td │ │ │ │ ├── WebAssemblyInstrMemory.td │ │ │ │ ├── WebAssemblyInstrSIMD.td │ │ │ │ ├── WebAssemblyLowerBrUnless.cpp │ │ │ │ ├── WebAssemblyLowerEmscriptenEHSjLj.cpp │ │ │ │ ├── WebAssemblyLowerGlobalDtors.cpp │ │ │ │ ├── WebAssemblyMCInstLower.cpp │ │ │ │ ├── WebAssemblyMCInstLower.h │ │ │ │ ├── WebAssemblyMachineFunctionInfo.cpp │ │ │ │ ├── WebAssemblyMachineFunctionInfo.h │ │ │ │ ├── WebAssemblyOptimizeLiveIntervals.cpp │ │ │ │ ├── WebAssemblyOptimizeReturned.cpp │ │ │ │ ├── WebAssemblyPeephole.cpp │ │ │ │ ├── WebAssemblyPrepareForLiveIntervals.cpp │ │ │ │ ├── WebAssemblyRegColoring.cpp │ │ │ │ ├── WebAssemblyRegNumbering.cpp │ │ │ │ ├── WebAssemblyRegStackify.cpp │ │ │ │ ├── WebAssemblyRegisterInfo.cpp │ │ │ │ ├── WebAssemblyRegisterInfo.h │ │ │ │ ├── WebAssemblyRegisterInfo.td │ │ │ │ ├── WebAssemblyReplacePhysRegs.cpp │ │ │ │ ├── WebAssemblyRuntimeLibcallSignatures.cpp │ │ │ │ ├── WebAssemblyRuntimeLibcallSignatures.h │ │ │ │ ├── WebAssemblySelectionDAGInfo.cpp │ │ │ │ ├── WebAssemblySelectionDAGInfo.h │ │ │ │ ├── WebAssemblySetP2AlignOperands.cpp │ │ │ │ ├── WebAssemblyStoreResults.cpp │ │ │ │ ├── WebAssemblySubtarget.cpp │ │ │ │ ├── WebAssemblySubtarget.h │ │ │ │ ├── WebAssemblyTargetMachine.cpp │ │ │ │ ├── WebAssemblyTargetMachine.h │ │ │ │ ├── WebAssemblyTargetObjectFile.cpp │ │ │ │ ├── WebAssemblyTargetObjectFile.h │ │ │ │ ├── WebAssemblyTargetTransformInfo.cpp │ │ │ │ ├── WebAssemblyTargetTransformInfo.h │ │ │ │ ├── WebAssemblyUtilities.cpp │ │ │ │ ├── WebAssemblyUtilities.h │ │ │ │ └── known_gcc_test_failures.txt │ │ │ └── XCore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Disassembler │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ └── XCoreDisassembler.cpp │ │ │ │ ├── InstPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── XCoreInstPrinter.cpp │ │ │ │ └── XCoreInstPrinter.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MCTargetDesc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── XCoreMCAsmInfo.cpp │ │ │ │ ├── XCoreMCAsmInfo.h │ │ │ │ ├── XCoreMCTargetDesc.cpp │ │ │ │ └── XCoreMCTargetDesc.h │ │ │ │ ├── README.txt │ │ │ │ ├── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ └── XCoreTargetInfo.cpp │ │ │ │ ├── XCore.h │ │ │ │ ├── XCore.td │ │ │ │ ├── XCoreAsmPrinter.cpp │ │ │ │ ├── XCoreCallingConv.td │ │ │ │ ├── XCoreFrameLowering.cpp │ │ │ │ ├── XCoreFrameLowering.h │ │ │ │ ├── XCoreFrameToArgsOffsetElim.cpp │ │ │ │ ├── XCoreISelDAGToDAG.cpp │ │ │ │ ├── XCoreISelLowering.cpp │ │ │ │ ├── XCoreISelLowering.h │ │ │ │ ├── XCoreInstrFormats.td │ │ │ │ ├── XCoreInstrInfo.cpp │ │ │ │ ├── XCoreInstrInfo.h │ │ │ │ ├── XCoreInstrInfo.td │ │ │ │ ├── XCoreLowerThreadLocal.cpp │ │ │ │ ├── XCoreMCInstLower.cpp │ │ │ │ ├── XCoreMCInstLower.h │ │ │ │ ├── XCoreMachineFunctionInfo.cpp │ │ │ │ ├── XCoreMachineFunctionInfo.h │ │ │ │ ├── XCoreRegisterInfo.cpp │ │ │ │ ├── XCoreRegisterInfo.h │ │ │ │ ├── XCoreRegisterInfo.td │ │ │ │ ├── XCoreSelectionDAGInfo.cpp │ │ │ │ ├── XCoreSelectionDAGInfo.h │ │ │ │ ├── XCoreSubtarget.cpp │ │ │ │ ├── XCoreSubtarget.h │ │ │ │ ├── XCoreTargetMachine.cpp │ │ │ │ ├── XCoreTargetMachine.h │ │ │ │ ├── XCoreTargetObjectFile.cpp │ │ │ │ ├── XCoreTargetObjectFile.h │ │ │ │ ├── XCoreTargetStreamer.h │ │ │ │ └── XCoreTargetTransformInfo.h │ │ ├── Testing │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── Support │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Error.cpp │ │ │ │ └── LLVMBuild.txt │ │ ├── ToolDrivers │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── llvm-dlltool │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DlltoolDriver.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ └── Options.td │ │ │ └── llvm-lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── LibDriver.cpp │ │ │ │ └── Options.td │ │ ├── Transforms │ │ │ ├── CMakeLists.txt │ │ │ ├── Coroutines │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CoroCleanup.cpp │ │ │ │ ├── CoroEarly.cpp │ │ │ │ ├── CoroElide.cpp │ │ │ │ ├── CoroFrame.cpp │ │ │ │ ├── CoroInstr.h │ │ │ │ ├── CoroInternal.h │ │ │ │ ├── CoroSplit.cpp │ │ │ │ ├── Coroutines.cpp │ │ │ │ └── LLVMBuild.txt │ │ │ ├── Hello │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Hello.cpp │ │ │ │ └── Hello.exports │ │ │ ├── IPO │ │ │ │ ├── AlwaysInliner.cpp │ │ │ │ ├── ArgumentPromotion.cpp │ │ │ │ ├── BarrierNoopPass.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CalledValuePropagation.cpp │ │ │ │ ├── ConstantMerge.cpp │ │ │ │ ├── CrossDSOCFI.cpp │ │ │ │ ├── DeadArgumentElimination.cpp │ │ │ │ ├── ElimAvailExtern.cpp │ │ │ │ ├── ExtractGV.cpp │ │ │ │ ├── ForceFunctionAttrs.cpp │ │ │ │ ├── FunctionAttrs.cpp │ │ │ │ ├── FunctionImport.cpp │ │ │ │ ├── GlobalDCE.cpp │ │ │ │ ├── GlobalOpt.cpp │ │ │ │ ├── GlobalSplit.cpp │ │ │ │ ├── IPConstantPropagation.cpp │ │ │ │ ├── IPO.cpp │ │ │ │ ├── InferFunctionAttrs.cpp │ │ │ │ ├── InlineSimple.cpp │ │ │ │ ├── Inliner.cpp │ │ │ │ ├── Internalize.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── LoopExtractor.cpp │ │ │ │ ├── LowerTypeTests.cpp │ │ │ │ ├── MergeFunctions.cpp │ │ │ │ ├── PartialInlining.cpp │ │ │ │ ├── PassManagerBuilder.cpp │ │ │ │ ├── PruneEH.cpp │ │ │ │ ├── SampleProfile.cpp │ │ │ │ ├── StripDeadPrototypes.cpp │ │ │ │ ├── StripSymbols.cpp │ │ │ │ ├── ThinLTOBitcodeWriter.cpp │ │ │ │ └── WholeProgramDevirt.cpp │ │ │ ├── InstCombine │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── InstCombineAddSub.cpp │ │ │ │ ├── InstCombineAndOrXor.cpp │ │ │ │ ├── InstCombineCalls.cpp │ │ │ │ ├── InstCombineCasts.cpp │ │ │ │ ├── InstCombineCompares.cpp │ │ │ │ ├── InstCombineInternal.h │ │ │ │ ├── InstCombineLoadStoreAlloca.cpp │ │ │ │ ├── InstCombineMulDivRem.cpp │ │ │ │ ├── InstCombinePHI.cpp │ │ │ │ ├── InstCombineSelect.cpp │ │ │ │ ├── InstCombineShifts.cpp │ │ │ │ ├── InstCombineSimplifyDemanded.cpp │ │ │ │ ├── InstCombineVectorOps.cpp │ │ │ │ ├── InstructionCombining.cpp │ │ │ │ └── LLVMBuild.txt │ │ │ ├── Instrumentation │ │ │ │ ├── AddressSanitizer.cpp │ │ │ │ ├── BoundsChecking.cpp │ │ │ │ ├── CFGMST.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DataFlowSanitizer.cpp │ │ │ │ ├── EfficiencySanitizer.cpp │ │ │ │ ├── GCOVProfiling.cpp │ │ │ │ ├── HWAddressSanitizer.cpp │ │ │ │ ├── IndirectCallPromotion.cpp │ │ │ │ ├── InstrProfiling.cpp │ │ │ │ ├── Instrumentation.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── MaximumSpanningTree.h │ │ │ │ ├── MemorySanitizer.cpp │ │ │ │ ├── PGOInstrumentation.cpp │ │ │ │ ├── PGOMemOPSizeOpt.cpp │ │ │ │ ├── SanitizerCoverage.cpp │ │ │ │ └── ThreadSanitizer.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── ObjCARC │ │ │ │ ├── ARCRuntimeEntryPoints.h │ │ │ │ ├── BlotMapVector.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DependencyAnalysis.cpp │ │ │ │ ├── DependencyAnalysis.h │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── ObjCARC.cpp │ │ │ │ ├── ObjCARC.h │ │ │ │ ├── ObjCARCAPElim.cpp │ │ │ │ ├── ObjCARCContract.cpp │ │ │ │ ├── ObjCARCExpand.cpp │ │ │ │ ├── ObjCARCOpts.cpp │ │ │ │ ├── ProvenanceAnalysis.cpp │ │ │ │ ├── ProvenanceAnalysis.h │ │ │ │ ├── ProvenanceAnalysisEvaluator.cpp │ │ │ │ ├── PtrState.cpp │ │ │ │ └── PtrState.h │ │ │ ├── Scalar │ │ │ │ ├── ADCE.cpp │ │ │ │ ├── AlignmentFromAssumptions.cpp │ │ │ │ ├── BDCE.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CallSiteSplitting.cpp │ │ │ │ ├── ConstantHoisting.cpp │ │ │ │ ├── ConstantProp.cpp │ │ │ │ ├── CorrelatedValuePropagation.cpp │ │ │ │ ├── DCE.cpp │ │ │ │ ├── DeadStoreElimination.cpp │ │ │ │ ├── DivRemPairs.cpp │ │ │ │ ├── EarlyCSE.cpp │ │ │ │ ├── FlattenCFGPass.cpp │ │ │ │ ├── Float2Int.cpp │ │ │ │ ├── GVN.cpp │ │ │ │ ├── GVNHoist.cpp │ │ │ │ ├── GVNSink.cpp │ │ │ │ ├── GuardWidening.cpp │ │ │ │ ├── IVUsersPrinter.cpp │ │ │ │ ├── IndVarSimplify.cpp │ │ │ │ ├── InductiveRangeCheckElimination.cpp │ │ │ │ ├── InferAddressSpaces.cpp │ │ │ │ ├── JumpThreading.cpp │ │ │ │ ├── LICM.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── LoopAccessAnalysisPrinter.cpp │ │ │ │ ├── LoopDataPrefetch.cpp │ │ │ │ ├── LoopDeletion.cpp │ │ │ │ ├── LoopDistribute.cpp │ │ │ │ ├── LoopIdiomRecognize.cpp │ │ │ │ ├── LoopInstSimplify.cpp │ │ │ │ ├── LoopInterchange.cpp │ │ │ │ ├── LoopLoadElimination.cpp │ │ │ │ ├── LoopPassManager.cpp │ │ │ │ ├── LoopPredication.cpp │ │ │ │ ├── LoopRerollPass.cpp │ │ │ │ ├── LoopRotation.cpp │ │ │ │ ├── LoopSimplifyCFG.cpp │ │ │ │ ├── LoopSink.cpp │ │ │ │ ├── LoopStrengthReduce.cpp │ │ │ │ ├── LoopUnrollPass.cpp │ │ │ │ ├── LoopUnswitch.cpp │ │ │ │ ├── LoopVersioningLICM.cpp │ │ │ │ ├── LowerAtomic.cpp │ │ │ │ ├── LowerExpectIntrinsic.cpp │ │ │ │ ├── LowerGuardIntrinsic.cpp │ │ │ │ ├── MemCpyOptimizer.cpp │ │ │ │ ├── MergeICmps.cpp │ │ │ │ ├── MergedLoadStoreMotion.cpp │ │ │ │ ├── NaryReassociate.cpp │ │ │ │ ├── NewGVN.cpp │ │ │ │ ├── PartiallyInlineLibCalls.cpp │ │ │ │ ├── PlaceSafepoints.cpp │ │ │ │ ├── Reassociate.cpp │ │ │ │ ├── Reg2Mem.cpp │ │ │ │ ├── RewriteStatepointsForGC.cpp │ │ │ │ ├── SCCP.cpp │ │ │ │ ├── SROA.cpp │ │ │ │ ├── Scalar.cpp │ │ │ │ ├── Scalarizer.cpp │ │ │ │ ├── SeparateConstOffsetFromGEP.cpp │ │ │ │ ├── SimpleLoopUnswitch.cpp │ │ │ │ ├── SimplifyCFGPass.cpp │ │ │ │ ├── Sink.cpp │ │ │ │ ├── SpeculateAroundPHIs.cpp │ │ │ │ ├── SpeculativeExecution.cpp │ │ │ │ ├── StraightLineStrengthReduce.cpp │ │ │ │ ├── StructurizeCFG.cpp │ │ │ │ └── TailRecursionElimination.cpp │ │ │ ├── Utils │ │ │ │ ├── ASanStackFrameLayout.cpp │ │ │ │ ├── AddDiscriminators.cpp │ │ │ │ ├── BasicBlockUtils.cpp │ │ │ │ ├── BreakCriticalEdges.cpp │ │ │ │ ├── BuildLibCalls.cpp │ │ │ │ ├── BypassSlowDivision.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CallPromotionUtils.cpp │ │ │ │ ├── CloneFunction.cpp │ │ │ │ ├── CloneModule.cpp │ │ │ │ ├── CodeExtractor.cpp │ │ │ │ ├── CtorUtils.cpp │ │ │ │ ├── DemoteRegToStack.cpp │ │ │ │ ├── EntryExitInstrumenter.cpp │ │ │ │ ├── EscapeEnumerator.cpp │ │ │ │ ├── Evaluator.cpp │ │ │ │ ├── FlattenCFG.cpp │ │ │ │ ├── FunctionComparator.cpp │ │ │ │ ├── FunctionImportUtils.cpp │ │ │ │ ├── GlobalStatus.cpp │ │ │ │ ├── ImportedFunctionsInliningStatistics.cpp │ │ │ │ ├── InlineFunction.cpp │ │ │ │ ├── InstructionNamer.cpp │ │ │ │ ├── IntegerDivision.cpp │ │ │ │ ├── LCSSA.cpp │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── LibCallsShrinkWrap.cpp │ │ │ │ ├── Local.cpp │ │ │ │ ├── LoopSimplify.cpp │ │ │ │ ├── LoopUnroll.cpp │ │ │ │ ├── LoopUnrollPeel.cpp │ │ │ │ ├── LoopUnrollRuntime.cpp │ │ │ │ ├── LoopUtils.cpp │ │ │ │ ├── LoopVersioning.cpp │ │ │ │ ├── LowerInvoke.cpp │ │ │ │ ├── LowerMemIntrinsics.cpp │ │ │ │ ├── LowerSwitch.cpp │ │ │ │ ├── Mem2Reg.cpp │ │ │ │ ├── MetaRenamer.cpp │ │ │ │ ├── ModuleUtils.cpp │ │ │ │ ├── NameAnonGlobals.cpp │ │ │ │ ├── OrderedInstructions.cpp │ │ │ │ ├── PredicateInfo.cpp │ │ │ │ ├── PromoteMemoryToRegister.cpp │ │ │ │ ├── SSAUpdater.cpp │ │ │ │ ├── SanitizerStats.cpp │ │ │ │ ├── SimplifyCFG.cpp │ │ │ │ ├── SimplifyIndVar.cpp │ │ │ │ ├── SimplifyInstructions.cpp │ │ │ │ ├── SimplifyLibCalls.cpp │ │ │ │ ├── SplitModule.cpp │ │ │ │ ├── StripGCRelocates.cpp │ │ │ │ ├── StripNonLineTableDebugInfo.cpp │ │ │ │ ├── SymbolRewriter.cpp │ │ │ │ ├── UnifyFunctionExitNodes.cpp │ │ │ │ ├── Utils.cpp │ │ │ │ ├── VNCoercion.cpp │ │ │ │ └── ValueMapper.cpp │ │ │ └── Vectorize │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LLVMBuild.txt │ │ │ │ ├── LoadStoreVectorizer.cpp │ │ │ │ ├── LoopVectorize.cpp │ │ │ │ ├── SLPVectorizer.cpp │ │ │ │ ├── VPlan.cpp │ │ │ │ ├── VPlan.h │ │ │ │ ├── VPlanBuilder.h │ │ │ │ ├── VPlanValue.h │ │ │ │ └── Vectorize.cpp │ │ ├── WindowsManifest │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── WindowsManifestMerger.cpp │ │ └── XRay │ │ │ ├── CMakeLists.txt │ │ │ ├── InstrumentationMap.cpp │ │ │ └── Trace.cpp │ ├── llvm.spec.in │ ├── projects │ │ ├── CMakeLists.txt │ │ └── LLVMBuild.txt │ ├── resources │ │ └── windows_version_resource.rc │ ├── runtimes │ │ ├── CMakeLists.txt │ │ └── Components.cmake.in │ ├── test │ │ ├── .clang-format │ │ ├── Analysis │ │ │ ├── AliasSet │ │ │ │ ├── intrinsics.ll │ │ │ │ ├── memtransfer.ll │ │ │ │ ├── saturation.ll │ │ │ │ └── unknown-inst-tracking.ll │ │ │ ├── AssumptionCache │ │ │ │ └── basic.ll │ │ │ ├── BasicAA │ │ │ │ ├── 2003-02-26-AccessSizeTest.ll │ │ │ │ ├── 2003-03-04-GEPCrash.ll │ │ │ │ ├── 2003-04-22-GEPProblem.ll │ │ │ │ ├── 2003-04-25-GEPCrash.ll │ │ │ │ ├── 2003-05-21-GEP-Problem.ll │ │ │ │ ├── 2003-06-01-AliasCrash.ll │ │ │ │ ├── 2003-07-03-BasicAACrash.ll │ │ │ │ ├── 2003-09-19-LocalArgument.ll │ │ │ │ ├── 2003-11-04-SimpleCases.ll │ │ │ │ ├── 2003-12-11-ConstExprGEP.ll │ │ │ │ ├── 2004-07-28-MustAliasbug.ll │ │ │ │ ├── 2006-03-03-BadArraySubscript.ll │ │ │ │ ├── 2006-11-03-BasicAAVectorCrash.ll │ │ │ │ ├── 2007-01-13-BasePointerBadNoAlias.ll │ │ │ │ ├── 2007-08-01-NoAliasAndCalls.ll │ │ │ │ ├── 2007-08-01-NoAliasAndGEP.ll │ │ │ │ ├── 2007-08-05-GetOverloadedModRef.ll │ │ │ │ ├── 2007-10-24-ArgumentsGlobals.ll │ │ │ │ ├── 2007-11-05-SizeCrash.ll │ │ │ │ ├── 2007-12-08-OutOfBoundsCrash.ll │ │ │ │ ├── 2008-04-15-Byval.ll │ │ │ │ ├── 2008-06-02-GEPTailCrash.ll │ │ │ │ ├── 2008-11-23-NoaliasRet.ll │ │ │ │ ├── 2009-03-04-GEPNoalias.ll │ │ │ │ ├── 2009-10-13-AtomicModRef.ll │ │ │ │ ├── 2009-10-13-GEP-BaseNoAlias.ll │ │ │ │ ├── 2010-09-15-GEP-SignedArithmetic.ll │ │ │ │ ├── 2014-03-18-Maxlookup-reached.ll │ │ │ │ ├── aligned-overread.ll │ │ │ │ ├── args-rets-allocas-loads.ll │ │ │ │ ├── assume.ll │ │ │ │ ├── bug.23540.ll │ │ │ │ ├── bug.23626.ll │ │ │ │ ├── byval.ll │ │ │ │ ├── call-attrs.ll │ │ │ │ ├── cas.ll │ │ │ │ ├── constant-over-index.ll │ │ │ │ ├── cs-cs-arm.ll │ │ │ │ ├── cs-cs.ll │ │ │ │ ├── dag.ll │ │ │ │ ├── empty.ll │ │ │ │ ├── fallback-mayalias.ll │ │ │ │ ├── featuretest.ll │ │ │ │ ├── full-store-partial-alias.ll │ │ │ │ ├── gcsetest.ll │ │ │ │ ├── gep-alias.ll │ │ │ │ ├── gep-and-alias.ll │ │ │ │ ├── getmodrefinfo-cs-cs.ll │ │ │ │ ├── global-size.ll │ │ │ │ ├── guards.ll │ │ │ │ ├── intrinsics-arm.ll │ │ │ │ ├── intrinsics.ll │ │ │ │ ├── invalidation.ll │ │ │ │ ├── invariant_load.ll │ │ │ │ ├── memset_pattern.ll │ │ │ │ ├── modref.ll │ │ │ │ ├── must-and-partial.ll │ │ │ │ ├── negoffset.ll │ │ │ │ ├── no-escape-call.ll │ │ │ │ ├── noalias-bugs.ll │ │ │ │ ├── noalias-geps.ll │ │ │ │ ├── noalias-param.ll │ │ │ │ ├── noalias-wraparound-bug.ll │ │ │ │ ├── nocapture.ll │ │ │ │ ├── phi-aa.ll │ │ │ │ ├── phi-and-select.ll │ │ │ │ ├── phi-loop.ll │ │ │ │ ├── phi-spec-order.ll │ │ │ │ ├── phi-speculation.ll │ │ │ │ ├── pr18573.ll │ │ │ │ ├── pr31761.ll │ │ │ │ ├── pure-const-dce.ll │ │ │ │ ├── q.bad.ll │ │ │ │ ├── returned.ll │ │ │ │ ├── sequential-gep.ll │ │ │ │ ├── store-promote.ll │ │ │ │ ├── struct-geps.ll │ │ │ │ ├── tailcall-modref.ll │ │ │ │ ├── underlying-value.ll │ │ │ │ ├── unreachable-block.ll │ │ │ │ └── zext.ll │ │ │ ├── BlockFrequencyInfo │ │ │ │ ├── bad_input.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── double_backedge.ll │ │ │ │ ├── double_exit.ll │ │ │ │ ├── extremely-likely-loop-successor.ll │ │ │ │ ├── irreducible.ll │ │ │ │ ├── irreducible_loop_crash.ll │ │ │ │ ├── irreducible_pgo.ll │ │ │ │ ├── loop_with_branch.ll │ │ │ │ ├── loops_with_profile_info.ll │ │ │ │ ├── nested_loop_with_branches.ll │ │ │ │ └── redundant_edges.ll │ │ │ ├── BranchProbabilityInfo │ │ │ │ ├── basic.ll │ │ │ │ ├── deopt-intrinsic.ll │ │ │ │ ├── libfunc_call.ll │ │ │ │ ├── loop.ll │ │ │ │ ├── noreturn.ll │ │ │ │ ├── pr18705.ll │ │ │ │ └── pr22718.ll │ │ │ ├── CFLAliasAnalysis │ │ │ │ ├── Andersen │ │ │ │ │ ├── assign.ll │ │ │ │ │ ├── assign2.ll │ │ │ │ │ ├── attrs-below.ll │ │ │ │ │ ├── attrs.ll │ │ │ │ │ ├── basic-interproc.ll │ │ │ │ │ ├── cycle.ll │ │ │ │ │ ├── interproc-arg-deref-escape.ll │ │ │ │ │ ├── interproc-arg-escape.ll │ │ │ │ │ ├── interproc-ret-arg.ll │ │ │ │ │ ├── interproc-ret-deref-arg-multilevel.ll │ │ │ │ │ ├── interproc-ret-deref-arg.ll │ │ │ │ │ ├── interproc-ret-escape.ll │ │ │ │ │ ├── interproc-ret-ref-arg-multilevel.ll │ │ │ │ │ ├── interproc-ret-ref-arg.ll │ │ │ │ │ ├── interproc-ret-unknown.ll │ │ │ │ │ ├── interproc-store-arg-multilevel.ll │ │ │ │ │ ├── interproc-store-arg-unknown.ll │ │ │ │ │ ├── interproc-store-arg.ll │ │ │ │ │ ├── memalias.ll │ │ │ │ │ └── struct.ll │ │ │ │ └── Steensgaard │ │ │ │ │ ├── arguments-globals.ll │ │ │ │ │ ├── arguments.ll │ │ │ │ │ ├── asm-global-bugfix.ll │ │ │ │ │ ├── attr-escape.ll │ │ │ │ │ ├── basic-interproc.ll │ │ │ │ │ ├── branch-alias.ll │ │ │ │ │ ├── const-expr-gep.ll │ │ │ │ │ ├── constant-over-index.ll │ │ │ │ │ ├── empty.ll │ │ │ │ │ ├── full-store-partial-alias.ll │ │ │ │ │ ├── gep-index-no-alias.ll │ │ │ │ │ ├── gep-signed-arithmetic.ll │ │ │ │ │ ├── interproc-arg-deref-escape.ll │ │ │ │ │ ├── interproc-arg-escape.ll │ │ │ │ │ ├── interproc-ret-arg.ll │ │ │ │ │ ├── interproc-ret-deref-arg-multilevel.ll │ │ │ │ │ ├── interproc-ret-deref-arg.ll │ │ │ │ │ ├── interproc-ret-escape.ll │ │ │ │ │ ├── interproc-ret-ref-arg-multilevel.ll │ │ │ │ │ ├── interproc-ret-ref-arg.ll │ │ │ │ │ ├── interproc-ret-unknown.ll │ │ │ │ │ ├── interproc-store-arg-multilevel.ll │ │ │ │ │ ├── interproc-store-arg-unknown.ll │ │ │ │ │ ├── interproc-store-arg.ll │ │ │ │ │ ├── malloc-and-free.ll │ │ │ │ │ ├── multilevel-combine.ll │ │ │ │ │ ├── multilevel.ll │ │ │ │ │ ├── must-and-partial.ll │ │ │ │ │ ├── opaque-call-alias.ll │ │ │ │ │ ├── phi-and-select.ll │ │ │ │ │ ├── pr27213.ll │ │ │ │ │ ├── simple.ll │ │ │ │ │ ├── stratified-attrs-indexing.ll │ │ │ │ │ └── va.ll │ │ │ ├── CallGraph │ │ │ │ ├── 2008-09-09-DirectCall.ll │ │ │ │ ├── 2008-09-09-UsedByGlobal.ll │ │ │ │ ├── do-nothing-intrinsic.ll │ │ │ │ ├── no-intrinsics.ll │ │ │ │ └── non-leaf-intrinsics.ll │ │ │ ├── ConstantFolding │ │ │ │ ├── cast-vector.ll │ │ │ │ ├── gep-constanfolding-error.ll │ │ │ │ ├── gep.ll │ │ │ │ ├── timeout.ll │ │ │ │ └── vectorgep-crash.ll │ │ │ ├── CostModel │ │ │ │ ├── AArch64 │ │ │ │ │ ├── bswap.ll │ │ │ │ │ ├── free-widening-casts.ll │ │ │ │ │ ├── gep.ll │ │ │ │ │ ├── kryo.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── select.ll │ │ │ │ │ └── store.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── add-sub.ll │ │ │ │ │ ├── addrspacecast.ll │ │ │ │ │ ├── bit-ops.ll │ │ │ │ │ ├── br.ll │ │ │ │ │ ├── extractelement.ll │ │ │ │ │ ├── fabs.ll │ │ │ │ │ ├── fadd.ll │ │ │ │ │ ├── fdiv.ll │ │ │ │ │ ├── fmul.ll │ │ │ │ │ ├── fsub.ll │ │ │ │ │ ├── insertelement.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── mul.ll │ │ │ │ │ ├── shifts.ll │ │ │ │ │ └── shufflevector.ll │ │ │ │ ├── ARM │ │ │ │ │ ├── cast.ll │ │ │ │ │ ├── divrem.ll │ │ │ │ │ ├── gep.ll │ │ │ │ │ ├── insertelement.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── select.ll │ │ │ │ │ └── shuffle.ll │ │ │ │ ├── PowerPC │ │ │ │ │ ├── cmp-expanded.ll │ │ │ │ │ ├── ext.ll │ │ │ │ │ ├── insert_extract.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── load_store.ll │ │ │ │ │ ├── popcnt.ll │ │ │ │ │ ├── unal-vec-ldst.ll │ │ │ │ │ ├── unaligned_ld_st.ll │ │ │ │ │ └── vsr_load_32_64.ll │ │ │ │ ├── SystemZ │ │ │ │ │ ├── cmp-ext.ll │ │ │ │ │ ├── cmpsel.ll │ │ │ │ │ ├── div-pow2.ll │ │ │ │ │ ├── ext-load.ll │ │ │ │ │ ├── fp-arith.ll │ │ │ │ │ ├── fp-cast.ll │ │ │ │ │ ├── int-arith.ll │ │ │ │ │ ├── int-cast.ll │ │ │ │ │ ├── intrinsic-cost-crash.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── load_store.ll │ │ │ │ │ ├── logical.ll │ │ │ │ │ ├── memop-folding-int-arith.ll │ │ │ │ │ ├── scalar-cmp-cmp-log-sel.ll │ │ │ │ │ ├── shuffle.ll │ │ │ │ │ └── vectorinstrs.ll │ │ │ │ └── no_info.ll │ │ │ ├── Delinearization │ │ │ │ ├── a.ll │ │ │ │ ├── constant_functions_multi_dim.ll │ │ │ │ ├── divide_by_one.ll │ │ │ │ ├── gcd_multiply_expr.ll │ │ │ │ ├── himeno_1.ll │ │ │ │ ├── himeno_2.ll │ │ │ │ ├── iv_times_constant_in_subscript.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── multidim_ivs_and_integer_offsets_3d.ll │ │ │ │ ├── multidim_ivs_and_integer_offsets_nts_3d.ll │ │ │ │ ├── multidim_ivs_and_parameteric_offsets_3d.ll │ │ │ │ ├── multidim_only_ivs_2d.ll │ │ │ │ ├── multidim_only_ivs_2d_nested.ll │ │ │ │ ├── multidim_only_ivs_3d.ll │ │ │ │ ├── multidim_only_ivs_3d_cast.ll │ │ │ │ ├── multidim_two_accesses_different_delinearization.ll │ │ │ │ ├── parameter_addrec_product.ll │ │ │ │ ├── terms_with_identity_factor.ll │ │ │ │ ├── type_mismatch.ll │ │ │ │ └── undef.ll │ │ │ ├── DemandedBits │ │ │ │ ├── basic.ll │ │ │ │ └── intrinsics.ll │ │ │ ├── DependenceAnalysis │ │ │ │ ├── Banerjee.ll │ │ │ │ ├── BasePtrBug.ll │ │ │ │ ├── Constraints.ll │ │ │ │ ├── Coupled.ll │ │ │ │ ├── ExactRDIV.ll │ │ │ │ ├── ExactSIV.ll │ │ │ │ ├── GCD.ll │ │ │ │ ├── Invariant.ll │ │ │ │ ├── MIVCheckConst.ll │ │ │ │ ├── NonAffineExpr.ll │ │ │ │ ├── NonCanonicalizedSubscript.ll │ │ │ │ ├── PR21585.ll │ │ │ │ ├── Preliminary.ll │ │ │ │ ├── Propagating.ll │ │ │ │ ├── Separability.ll │ │ │ │ ├── StrongSIV.ll │ │ │ │ ├── SymbolicRDIV.ll │ │ │ │ ├── SymbolicSIV.ll │ │ │ │ ├── UsefulGEP.ll │ │ │ │ ├── WeakCrossingSIV.ll │ │ │ │ ├── WeakZeroDstSIV.ll │ │ │ │ ├── WeakZeroSrcSIV.ll │ │ │ │ └── ZIV.ll │ │ │ ├── DivergenceAnalysis │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── atomics.ll │ │ │ │ │ ├── intrinsics.ll │ │ │ │ │ ├── kernel-args.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── llvm.amdgcn.buffer.atomic.ll │ │ │ │ │ ├── llvm.amdgcn.image.atomic.ll │ │ │ │ │ ├── no-return-blocks.ll │ │ │ │ │ ├── phi-undef.ll │ │ │ │ │ ├── unreachable-loop-block.ll │ │ │ │ │ └── workitem-intrinsics.ll │ │ │ │ └── NVPTX │ │ │ │ │ ├── diverge.ll │ │ │ │ │ └── lit.local.cfg │ │ │ ├── DominanceFrontier │ │ │ │ └── new_pm_test.ll │ │ │ ├── Dominators │ │ │ │ ├── 2006-10-02-BreakCritEdges.ll │ │ │ │ ├── 2007-01-14-BreakCritEdges.ll │ │ │ │ ├── 2007-07-11-SplitBlock.ll │ │ │ │ ├── 2007-07-12-SplitBlock.ll │ │ │ │ ├── basic.ll │ │ │ │ └── invoke.ll │ │ │ ├── GlobalsModRef │ │ │ │ ├── 2008-09-03-ReadGlobals.ll │ │ │ │ ├── aliastest.ll │ │ │ │ ├── atomic-instrs.ll │ │ │ │ ├── chaining-analysis.ll │ │ │ │ ├── comdat-ipo.ll │ │ │ │ ├── dead-uses.ll │ │ │ │ ├── func-memattributes.ll │ │ │ │ ├── global-used-by-global.ll │ │ │ │ ├── inaccessiblememonly.ll │ │ │ │ ├── indirect-global.ll │ │ │ │ ├── memset-escape.ll │ │ │ │ ├── modreftest.ll │ │ │ │ ├── no-escape.ll │ │ │ │ ├── nonescaping-noalias.ll │ │ │ │ ├── pr12351.ll │ │ │ │ ├── pr25309.ll │ │ │ │ ├── purecse.ll │ │ │ │ ├── volatile-instrs.ll │ │ │ │ └── weak-interposition.ll │ │ │ ├── IVUsers │ │ │ │ └── quadradic-exit-value.ll │ │ │ ├── LazyCallGraph │ │ │ │ ├── basic.ll │ │ │ │ └── non-leaf-intrinsics.ll │ │ │ ├── LazyValueAnalysis │ │ │ │ ├── invalidation.ll │ │ │ │ ├── lvi-after-jumpthreading.ll │ │ │ │ └── lvi-for-ashr.ll │ │ │ ├── Lint │ │ │ │ ├── address-spaces.ll │ │ │ │ ├── check-zero-divide.ll │ │ │ │ ├── cppeh-catch-intrinsics-clean.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── noalias-byval.ll │ │ │ │ ├── noop-cast-expr-no-pointer.ll │ │ │ │ └── tail-call-byval.ll │ │ │ ├── LoopAccessAnalysis │ │ │ │ ├── backward-dep-different-types.ll │ │ │ │ ├── forward-loop-carried.ll │ │ │ │ ├── forward-loop-independent.ll │ │ │ │ ├── independent-interleaved.ll │ │ │ │ ├── interleave-innermost.ll │ │ │ │ ├── memcheck-for-loop-invariant.ll │ │ │ │ ├── memcheck-off-by-one-error.ll │ │ │ │ ├── memcheck-wrapping-pointers.ll │ │ │ │ ├── multiple-strides-rt-memory-checks.ll │ │ │ │ ├── non-wrapping-pointer.ll │ │ │ │ ├── nullptr.ll │ │ │ │ ├── number-of-memchecks.ll │ │ │ │ ├── pointer-with-unknown-bounds.ll │ │ │ │ ├── pr31098.ll │ │ │ │ ├── resort-to-memchecks-only.ll │ │ │ │ ├── reverse-memcheck-bounds.ll │ │ │ │ ├── safe-no-checks.ll │ │ │ │ ├── safe-with-dep-distance.ll │ │ │ │ ├── store-to-invariant-check1.ll │ │ │ │ ├── store-to-invariant-check2.ll │ │ │ │ ├── store-to-invariant-check3.ll │ │ │ │ ├── stride-access-dependence.ll │ │ │ │ ├── underlying-objects-1.ll │ │ │ │ ├── underlying-objects-2.ll │ │ │ │ ├── unsafe-and-rt-checks.ll │ │ │ │ └── wrapping-pointer-versioning.ll │ │ │ ├── LoopInfo │ │ │ │ └── 2003-05-15-NestingProblem.ll │ │ │ ├── MemoryDependenceAnalysis │ │ │ │ ├── invalidation.ll │ │ │ │ ├── memdep-block-scan-limit.ll │ │ │ │ └── memdep_requires_dominator_tree.ll │ │ │ ├── MemorySSA │ │ │ │ ├── assume.ll │ │ │ │ ├── atomic-clobber.ll │ │ │ │ ├── basicaa-memcpy.ll │ │ │ │ ├── constant-memory.ll │ │ │ │ ├── cyclicphi.ll │ │ │ │ ├── forward-unreachable.ll │ │ │ │ ├── function-clobber.ll │ │ │ │ ├── function-mem-attrs.ll │ │ │ │ ├── invariant-groups.ll │ │ │ │ ├── lifetime-simple.ll │ │ │ │ ├── load-invariant.ll │ │ │ │ ├── many-dom-backedge.ll │ │ │ │ ├── many-doms.ll │ │ │ │ ├── multi-edges.ll │ │ │ │ ├── multiple-backedges-hal.ll │ │ │ │ ├── multiple-locations.ll │ │ │ │ ├── no-disconnected.ll │ │ │ │ ├── optimize-use.ll │ │ │ │ ├── phi-translation.ll │ │ │ │ ├── pr28880.ll │ │ │ │ ├── ptr-const-mem.ll │ │ │ │ └── volatile-clobber.ll │ │ │ ├── PostDominators │ │ │ │ ├── infinite-loop.ll │ │ │ │ ├── infinite-loop2.ll │ │ │ │ ├── infinite-loop3.ll │ │ │ │ ├── pr1098.ll │ │ │ │ ├── pr24415.ll │ │ │ │ ├── pr6047_a.ll │ │ │ │ ├── pr6047_b.ll │ │ │ │ ├── pr6047_c.ll │ │ │ │ └── pr6047_d.ll │ │ │ ├── ProfileSummary │ │ │ │ └── basic.ll │ │ │ ├── RegionInfo │ │ │ │ ├── 20100809_bb_not_in_domtree.ll │ │ │ │ ├── bad_node_traversal.ll │ │ │ │ ├── block_sort.ll │ │ │ │ ├── cond_loop.ll │ │ │ │ ├── condition_complicated.ll │ │ │ │ ├── condition_complicated_2.ll │ │ │ │ ├── condition_forward_edge.ll │ │ │ │ ├── condition_same_exit.ll │ │ │ │ ├── condition_simple.ll │ │ │ │ ├── exit_in_condition.ll │ │ │ │ ├── infinite_loop.ll │ │ │ │ ├── infinite_loop_2.ll │ │ │ │ ├── infinite_loop_3.ll │ │ │ │ ├── infinite_loop_4.ll │ │ │ │ ├── infinite_loop_5_a.ll │ │ │ │ ├── infinite_loop_5_b.ll │ │ │ │ ├── infinite_loop_5_c.ll │ │ │ │ ├── loop_with_condition.ll │ │ │ │ ├── loops_1.ll │ │ │ │ ├── loops_2.ll │ │ │ │ ├── mix_1.ll │ │ │ │ ├── multiple_exiting_edge.ll │ │ │ │ ├── nested_loops.ll │ │ │ │ ├── next.ll │ │ │ │ ├── outgoing_edge.ll │ │ │ │ ├── outgoing_edge_1.ll │ │ │ │ ├── paper.ll │ │ │ │ ├── two_loops_same_header.ll │ │ │ │ └── unreachable_bb.ll │ │ │ ├── ScalarEvolution │ │ │ │ ├── 2007-07-15-NegativeStride.ll │ │ │ │ ├── 2007-08-06-MisinterpretBranch.ll │ │ │ │ ├── 2007-08-06-Unsigned.ll │ │ │ │ ├── 2007-09-27-LargeStepping.ll │ │ │ │ ├── 2007-11-14-SignedAddRec.ll │ │ │ │ ├── 2007-11-18-OrInstruction.ll │ │ │ │ ├── 2008-02-11-ReversedCondition.ll │ │ │ │ ├── 2008-02-12-SMAXTripCount.ll │ │ │ │ ├── 2008-02-15-UMax.ll │ │ │ │ ├── 2008-05-25-NegativeStepToZero.ll │ │ │ │ ├── 2008-06-12-BinomialInt64.ll │ │ │ │ ├── 2008-07-12-UnneededSelect1.ll │ │ │ │ ├── 2008-07-12-UnneededSelect2.ll │ │ │ │ ├── 2008-07-19-InfiniteLoop.ll │ │ │ │ ├── 2008-07-19-WrappingIV.ll │ │ │ │ ├── 2008-07-29-SGTTripCount.ll │ │ │ │ ├── 2008-07-29-SMinExpr.ll │ │ │ │ ├── 2008-08-04-IVOverflow.ll │ │ │ │ ├── 2008-08-04-LongAddRec.ll │ │ │ │ ├── 2008-11-02-QuadraticCrash.ll │ │ │ │ ├── 2008-11-15-CubicOOM.ll │ │ │ │ ├── 2008-11-18-LessThanOrEqual.ll │ │ │ │ ├── 2008-11-18-Stride1.ll │ │ │ │ ├── 2008-11-18-Stride2.ll │ │ │ │ ├── 2008-12-08-FiniteSGE.ll │ │ │ │ ├── 2008-12-11-SMaxOverflow.ll │ │ │ │ ├── 2008-12-14-StrideAndSigned.ll │ │ │ │ ├── 2008-12-15-DontUseSDiv.ll │ │ │ │ ├── 2009-01-02-SignedNegativeStride.ll │ │ │ │ ├── 2009-04-22-TruncCast.ll │ │ │ │ ├── 2009-05-09-PointerEdgeCount.ll │ │ │ │ ├── 2009-07-04-GroupConstantsWidthMismatch.ll │ │ │ │ ├── 2010-09-03-RequiredTransitive.ll │ │ │ │ ├── 2011-03-09-ExactNoMaxBECount.ll │ │ │ │ ├── 2011-04-26-FoldAddRec.ll │ │ │ │ ├── 2011-10-04-ConstEvolve.ll │ │ │ │ ├── 2012-03-26-LoadConstant.ll │ │ │ │ ├── 2012-05-18-LoopPredRecurse.ll │ │ │ │ ├── 2012-05-29-MulAddRec.ll │ │ │ │ ├── SolveQuadraticEquation.ll │ │ │ │ ├── ZeroStep.ll │ │ │ │ ├── and-xor.ll │ │ │ │ ├── avoid-assume-hang.ll │ │ │ │ ├── avoid-infinite-recursion-0.ll │ │ │ │ ├── avoid-infinite-recursion-1.ll │ │ │ │ ├── avoid-smax-0.ll │ │ │ │ ├── avoid-smax-1.ll │ │ │ │ ├── cache_loop_exit_limit.ll │ │ │ │ ├── constant_condition.ll │ │ │ │ ├── different-loops-recs.ll │ │ │ │ ├── div-overflow.ll │ │ │ │ ├── do-loop.ll │ │ │ │ ├── exhaustive-trip-counts.ll │ │ │ │ ├── expander-replace-congruent-ivs.ll │ │ │ │ ├── exponential-behavior.ll │ │ │ │ ├── ext-antecedent.ll │ │ │ │ ├── flags-from-poison-dbg.ll │ │ │ │ ├── flags-from-poison.ll │ │ │ │ ├── flattened-0.ll │ │ │ │ ├── fold.ll │ │ │ │ ├── guards.ll │ │ │ │ ├── how-far-to-zero.ll │ │ │ │ ├── implied-via-addition.ll │ │ │ │ ├── implied-via-division.ll │ │ │ │ ├── incorrect-nsw.ll │ │ │ │ ├── increasing-or-decreasing-iv.ll │ │ │ │ ├── infer-prestart-no-wrap.ll │ │ │ │ ├── infer-via-ranges.ll │ │ │ │ ├── invalidation.ll │ │ │ │ ├── latch-dominating-conditions.ll │ │ │ │ ├── limit-depth.ll │ │ │ │ ├── load-with-range-metadata.ll │ │ │ │ ├── load.ll │ │ │ │ ├── max-addops-inline.ll │ │ │ │ ├── max-addrec-size.ll │ │ │ │ ├── max-be-count-not-constant.ll │ │ │ │ ├── max-mulops-inline.ll │ │ │ │ ├── max-trip-count-address-space.ll │ │ │ │ ├── max-trip-count.ll │ │ │ │ ├── min-max-exprs.ll │ │ │ │ ├── no-wrap-add-exprs.ll │ │ │ │ ├── no-wrap-unknown-becount.ll │ │ │ │ ├── non-IV-phi.ll │ │ │ │ ├── nowrap-preinc-limits.ll │ │ │ │ ├── nsw-offset-assume.ll │ │ │ │ ├── nsw-offset.ll │ │ │ │ ├── nsw.ll │ │ │ │ ├── nw-sub-is-not-nw-add.ll │ │ │ │ ├── overflow-intrinsics.ll │ │ │ │ ├── pointer-sign-bits.ll │ │ │ │ ├── pr18606-min-zeros.ll │ │ │ │ ├── pr18606.ll │ │ │ │ ├── pr22179.ll │ │ │ │ ├── pr22641.ll │ │ │ │ ├── pr22674.ll │ │ │ │ ├── pr22856.ll │ │ │ │ ├── pr24757.ll │ │ │ │ ├── pr25369.ll │ │ │ │ ├── pr27315.ll │ │ │ │ ├── pr28705.ll │ │ │ │ ├── pr34538.ll │ │ │ │ ├── pr3909.ll │ │ │ │ ├── predicated-trip-count.ll │ │ │ │ ├── range-signedness.ll │ │ │ │ ├── returned.ll │ │ │ │ ├── scev-aa.ll │ │ │ │ ├── scev-canonical-mode.ll │ │ │ │ ├── scev-dispositions.ll │ │ │ │ ├── scev-expander-existing-value-offset.ll │ │ │ │ ├── scev-expander-incorrect-nowrap.ll │ │ │ │ ├── scev-expander-reuse-gep.ll │ │ │ │ ├── scev-expander-reuse-unroll.ll │ │ │ │ ├── scev-expander-reuse-vect.ll │ │ │ │ ├── scev-invalid.ll │ │ │ │ ├── scev-prestart-nowrap.ll │ │ │ │ ├── sext-inreg.ll │ │ │ │ ├── sext-iv-0.ll │ │ │ │ ├── sext-iv-1.ll │ │ │ │ ├── sext-iv-2.ll │ │ │ │ ├── sext-mul.ll │ │ │ │ ├── sext-to-zext.ll │ │ │ │ ├── sext-zero.ll │ │ │ │ ├── shift-op.ll │ │ │ │ ├── sle.ll │ │ │ │ ├── smax-br-phi-idioms.ll │ │ │ │ ├── smax.ll │ │ │ │ ├── trip-count-pow2.ll │ │ │ │ ├── trip-count-switch.ll │ │ │ │ ├── trip-count-unknown-stride.ll │ │ │ │ ├── trip-count.ll │ │ │ │ ├── trip-count10.ll │ │ │ │ ├── trip-count11.ll │ │ │ │ ├── trip-count12.ll │ │ │ │ ├── trip-count13.ll │ │ │ │ ├── trip-count14.ll │ │ │ │ ├── trip-count2.ll │ │ │ │ ├── trip-count3.ll │ │ │ │ ├── trip-count4.ll │ │ │ │ ├── trip-count5.ll │ │ │ │ ├── trip-count6.ll │ │ │ │ ├── trip-count7.ll │ │ │ │ ├── trip-count8.ll │ │ │ │ ├── trip-count9.ll │ │ │ │ ├── tripmultiple_calculation.ll │ │ │ │ ├── truncate.ll │ │ │ │ ├── undefined.ll │ │ │ │ ├── unreachable-code.ll │ │ │ │ ├── unsimplified-loop.ll │ │ │ │ ├── urem-0.ll │ │ │ │ ├── zext-signed-addrec.ll │ │ │ │ └── zext-wrap.ll │ │ │ ├── ScopedNoAliasAA │ │ │ │ ├── basic-domains.ll │ │ │ │ ├── basic.ll │ │ │ │ └── basic2.ll │ │ │ ├── TypeBasedAliasAnalysis │ │ │ │ ├── PR17620.ll │ │ │ │ ├── aliastest.ll │ │ │ │ ├── argument-promotion.ll │ │ │ │ ├── cyclic.ll │ │ │ │ ├── dse.ll │ │ │ │ ├── dynamic-indices.ll │ │ │ │ ├── functionattrs.ll │ │ │ │ ├── gvn-nonlocal-type-mismatch.ll │ │ │ │ ├── intrinsics.ll │ │ │ │ ├── licm.ll │ │ │ │ ├── memcpyopt.ll │ │ │ │ ├── placement-tbaa.ll │ │ │ │ ├── precedence.ll │ │ │ │ ├── sink.ll │ │ │ │ └── tbaa-path.ll │ │ │ ├── ValueTracking │ │ │ │ ├── assume.ll │ │ │ │ ├── deref-bitcast-of-gep.ll │ │ │ │ ├── dereferenceable-and-aligned.ll │ │ │ │ ├── get-pointer-base-with-const-off.ll │ │ │ │ ├── known-bits-from-range-md.ll │ │ │ │ ├── known-non-equal.ll │ │ │ │ ├── known-nonnull-at.ll │ │ │ │ ├── known-power-of-two.ll │ │ │ │ ├── known-signbit-shift.ll │ │ │ │ ├── knownnonzero-shift.ll │ │ │ │ ├── knownzero-addrspacecast.ll │ │ │ │ ├── knownzero-shift.ll │ │ │ │ ├── memory-dereferenceable.ll │ │ │ │ ├── monotonic-phi.ll │ │ │ │ ├── pr23011.ll │ │ │ │ ├── select-pattern.ll │ │ │ │ └── signbits-extract-elt.ll │ │ │ └── alias-analysis-uses.ll │ │ ├── Assembler │ │ │ ├── 2002-03-08-NameCollision.ll │ │ │ ├── 2002-03-08-NameCollision2.ll │ │ │ ├── 2002-04-07-HexFloatConstants.ll │ │ │ ├── 2002-04-07-InfConstant.ll │ │ │ ├── 2002-04-29-NameBinding.ll │ │ │ ├── 2002-05-02-InvalidForwardRef.ll │ │ │ ├── 2002-07-14-OpaqueType.ll │ │ │ ├── 2002-07-25-QuoteInString.ll │ │ │ ├── 2002-07-25-ReturnPtrFunction.ll │ │ │ ├── 2002-07-31-SlashInString.ll │ │ │ ├── 2002-08-15-CastAmbiguity.ll │ │ │ ├── 2002-08-15-ConstantExprProblem.ll │ │ │ ├── 2002-08-15-UnresolvedGlobalReference.ll │ │ │ ├── 2002-08-16-ConstExprInlined.ll │ │ │ ├── 2002-08-19-BytecodeReader.ll │ │ │ ├── 2002-08-22-DominanceProblem.ll │ │ │ ├── 2002-10-08-LargeArrayPerformance.ll │ │ │ ├── 2002-10-13-ConstantEncodingProblem.ll │ │ │ ├── 2002-12-15-GlobalResolve.ll │ │ │ ├── 2003-01-30-UnsignedString.ll │ │ │ ├── 2003-04-15-ConstantInitAssertion.ll │ │ │ ├── 2003-04-25-UnresolvedGlobalReference.ll │ │ │ ├── 2003-05-03-BytecodeReaderProblem.ll │ │ │ ├── 2003-05-12-MinIntProblem.ll │ │ │ ├── 2003-05-15-AssemblerProblem.ll │ │ │ ├── 2003-05-15-SwitchBug.ll │ │ │ ├── 2003-05-21-ConstantShiftExpr.ll │ │ │ ├── 2003-05-21-EmptyStructTest.ll │ │ │ ├── 2003-05-21-MalformedShiftCrash.ll │ │ │ ├── 2003-05-21-MalformedStructCrash.ll │ │ │ ├── 2003-08-20-ConstantExprGEP-Fold.ll │ │ │ ├── 2003-08-21-ConstantExprCast-Fold.ll │ │ │ ├── 2003-11-05-ConstantExprShift.ll │ │ │ ├── 2003-11-11-ImplicitRename.ll │ │ │ ├── 2003-11-12-ConstantExprCast.ll │ │ │ ├── 2003-11-24-SymbolTableCrash.ll │ │ │ ├── 2004-01-11-getelementptrfolding.ll │ │ │ ├── 2004-01-20-MaxLongLong.ll │ │ │ ├── 2004-02-01-NegativeZero.ll │ │ │ ├── 2004-02-27-SelfUseAssertError.ll │ │ │ ├── 2004-03-07-FunctionAddressAlignment.ll │ │ │ ├── 2004-03-30-UnclosedFunctionCrash.ll │ │ │ ├── 2004-04-04-GetElementPtrIndexTypes.ll │ │ │ ├── 2004-06-07-VerifierBug.ll │ │ │ ├── 2004-10-22-BCWriterUndefBug.ll │ │ │ ├── 2004-11-28-InvalidTypeCrash.ll │ │ │ ├── 2005-01-03-FPConstantDisassembly.ll │ │ │ ├── 2005-01-31-CallingAggregateFunction.ll │ │ │ ├── 2005-05-05-OpaqueUndefValues.ll │ │ │ ├── 2005-12-21-ZeroInitVector.ll │ │ │ ├── 2006-09-28-CrashOnInvalid.ll │ │ │ ├── 2006-12-09-Cast-To-Bool.ll │ │ │ ├── 2007-01-02-Undefined-Arg-Type.ll │ │ │ ├── 2007-01-05-Cmp-ConstExpr.ll │ │ │ ├── 2007-01-16-CrashOnBadCast.ll │ │ │ ├── 2007-01-16-CrashOnBadCast2.ll │ │ │ ├── 2007-03-18-InvalidNumberedVar.ll │ │ │ ├── 2007-03-19-NegValue.ll │ │ │ ├── 2007-04-20-AlignedLoad.ll │ │ │ ├── 2007-04-20-AlignedStore.ll │ │ │ ├── 2007-04-25-AssemblerFoldExternWeak.ll │ │ │ ├── 2007-05-21-Escape.ll │ │ │ ├── 2007-07-19-ParamAttrAmbiguity.ll │ │ │ ├── 2007-08-06-AliasInvalid.ll │ │ │ ├── 2007-09-10-AliasFwdRef.ll │ │ │ ├── 2007-09-29-GC.ll │ │ │ ├── 2007-11-26-AttributeOverload.ll │ │ │ ├── 2007-12-11-AddressSpaces.ll │ │ │ ├── 2008-01-11-VarargAttrs.ll │ │ │ ├── 2008-02-18-IntPointerCrash.ll │ │ │ ├── 2008-07-10-APInt.ll │ │ │ ├── 2008-09-02-FunctionNotes.ll │ │ │ ├── 2008-09-02-FunctionNotes2.ll │ │ │ ├── 2008-09-29-RetAttr.ll │ │ │ ├── 2008-10-14-QuoteInName.ll │ │ │ ├── 2009-02-01-UnnamedForwardRef.ll │ │ │ ├── 2009-02-28-CastOpc.ll │ │ │ ├── 2009-02-28-StripOpaqueName.ll │ │ │ ├── 2009-03-24-ZextConstantExpr.ll │ │ │ ├── 2009-07-24-ZeroArgGEP.ll │ │ │ ├── 2010-02-05-FunctionLocalMetadataBecomesNull.ll │ │ │ ├── ConstantExprFold.ll │ │ │ ├── ConstantExprFoldCast.ll │ │ │ ├── ConstantExprFoldSelect.ll │ │ │ ├── ConstantExprNoFold.ll │ │ │ ├── DIGlobalVariableExpression.ll │ │ │ ├── DIMacroFile.ll │ │ │ ├── MultipleReturnValueType.ll │ │ │ ├── addrspacecast-alias.ll │ │ │ ├── aggregate-constant-values.ll │ │ │ ├── aggregate-return-single-value.ll │ │ │ ├── alias-redefinition.ll │ │ │ ├── alias-use-list-order.ll │ │ │ ├── align-inst-alloca.ll │ │ │ ├── align-inst-load.ll │ │ │ ├── align-inst-store.ll │ │ │ ├── align-inst.ll │ │ │ ├── alignstack.ll │ │ │ ├── alloca-addrspace-elems.ll │ │ │ ├── alloca-addrspace-parse-error-0.ll │ │ │ ├── alloca-addrspace-parse-error-1.ll │ │ │ ├── alloca-addrspace0.ll │ │ │ ├── alloca-invalid-type-2.ll │ │ │ ├── alloca-invalid-type.ll │ │ │ ├── alloca-size-one.ll │ │ │ ├── anon-functions.ll │ │ │ ├── atomic.ll │ │ │ ├── attribute-builtin.ll │ │ │ ├── auto_upgrade_intrinsics.ll │ │ │ ├── auto_upgrade_nvvm_intrinsics.ll │ │ │ ├── autoupgrade-thread-pointer.ll │ │ │ ├── bcwrap.ll │ │ │ ├── call-invalid-1.ll │ │ │ ├── comment.ll │ │ │ ├── datalayout-alloca-addrspace-mismatch-0.ll │ │ │ ├── datalayout-alloca-addrspace-mismatch-1.ll │ │ │ ├── datalayout-alloca-addrspace-mismatch-2.ll │ │ │ ├── datalayout-alloca-addrspace.ll │ │ │ ├── debug-info.ll │ │ │ ├── dicompileunit.ll │ │ │ ├── dicompositetype-members.ll │ │ │ ├── diexpression.ll │ │ │ ├── difile-escaped-chars.ll │ │ │ ├── diglobalvariable.ll │ │ │ ├── diimportedentity.ll │ │ │ ├── dilexicalblock.ll │ │ │ ├── dilocalvariable-arg-large.ll │ │ │ ├── dilocalvariable.ll │ │ │ ├── dilocation.ll │ │ │ ├── dimodule.ll │ │ │ ├── dinamespace.ll │ │ │ ├── diobjcproperty.ll │ │ │ ├── distinct-mdnode.ll │ │ │ ├── disubprogram.ll │ │ │ ├── disubrange-empty-array.ll │ │ │ ├── disubroutinetype.ll │ │ │ ├── ditemplateparameter.ll │ │ │ ├── ditype-large-values.ll │ │ │ ├── dllimport-dsolocal-diag.ll │ │ │ ├── drop-debug-info.ll │ │ │ ├── externally-initialized.ll │ │ │ ├── extractvalue-invalid-idx.ll │ │ │ ├── extractvalue-no-idx.ll │ │ │ ├── fast-math-flags.ll │ │ │ ├── flags.ll │ │ │ ├── generic-debug-node.ll │ │ │ ├── getInt.ll │ │ │ ├── getelementptr.ll │ │ │ ├── getelementptr_invalid_ptr.ll │ │ │ ├── getelementptr_struct.ll │ │ │ ├── getelementptr_vec_ce.ll │ │ │ ├── getelementptr_vec_ce2.ll │ │ │ ├── getelementptr_vec_idx1.ll │ │ │ ├── getelementptr_vec_idx2.ll │ │ │ ├── getelementptr_vec_idx3.ll │ │ │ ├── getelementptr_vec_idx4.ll │ │ │ ├── getelementptr_vec_struct.ll │ │ │ ├── global-addrspace-forwardref.ll │ │ │ ├── globalvariable-attributes.ll │ │ │ ├── gv-invalid-type.ll │ │ │ ├── half-constprop.ll │ │ │ ├── half-conv.ll │ │ │ ├── half.ll │ │ │ ├── huge-array.ll │ │ │ ├── ifunc-asm.ll │ │ │ ├── ifunc-dsolocal-daig.ll │ │ │ ├── ifunc-use-list-order.ll │ │ │ ├── inalloca.ll │ │ │ ├── incorrect-tdep-attrs-parsing.ll │ │ │ ├── inline-asm-clobber.ll │ │ │ ├── insertextractvalue.ll │ │ │ ├── insertvalue-invalid-idx.ll │ │ │ ├── insertvalue-invalid-type-1.ll │ │ │ ├── insertvalue-invalid-type.ll │ │ │ ├── internal-hidden-alias.ll │ │ │ ├── internal-hidden-function.ll │ │ │ ├── internal-hidden-variable.ll │ │ │ ├── internal-protected-alias.ll │ │ │ ├── internal-protected-function.ll │ │ │ ├── internal-protected-variable.ll │ │ │ ├── invalid-alias-mismatched-explicit-type.ll │ │ │ ├── invalid-attrgrp.ll │ │ │ ├── invalid-comdat.ll │ │ │ ├── invalid-comdat2.ll │ │ │ ├── invalid-datalayout-alloca-addrspace.ll │ │ │ ├── invalid-datalayout1.ll │ │ │ ├── invalid-datalayout10.ll │ │ │ ├── invalid-datalayout11.ll │ │ │ ├── invalid-datalayout12.ll │ │ │ ├── invalid-datalayout13.ll │ │ │ ├── invalid-datalayout14.ll │ │ │ ├── invalid-datalayout15.ll │ │ │ ├── invalid-datalayout16.ll │ │ │ ├── invalid-datalayout17.ll │ │ │ ├── invalid-datalayout18.ll │ │ │ ├── invalid-datalayout19.ll │ │ │ ├── invalid-datalayout2.ll │ │ │ ├── invalid-datalayout20.ll │ │ │ ├── invalid-datalayout21.ll │ │ │ ├── invalid-datalayout22.ll │ │ │ ├── invalid-datalayout23.ll │ │ │ ├── invalid-datalayout24.ll │ │ │ ├── invalid-datalayout3.ll │ │ │ ├── invalid-datalayout4.ll │ │ │ ├── invalid-datalayout5.ll │ │ │ ├── invalid-datalayout6.ll │ │ │ ├── invalid-datalayout7.ll │ │ │ ├── invalid-datalayout8.ll │ │ │ ├── invalid-datalayout9.ll │ │ │ ├── invalid-debug-info-version.ll │ │ │ ├── invalid-dicompileunit-emissionkind-bad.ll │ │ │ ├── invalid-dicompileunit-language-bad.ll │ │ │ ├── invalid-dicompileunit-language-overflow.ll │ │ │ ├── invalid-dicompileunit-missing-language.ll │ │ │ ├── invalid-dicompileunit-null-file.ll │ │ │ ├── invalid-dicompileunit-uniqued.ll │ │ │ ├── invalid-dicompositetype-missing-tag.ll │ │ │ ├── invalid-diderivedtype-missing-basetype.ll │ │ │ ├── invalid-diderivedtype-missing-tag.ll │ │ │ ├── invalid-dienumerator-missing-name.ll │ │ │ ├── invalid-dienumerator-missing-value.ll │ │ │ ├── invalid-diexpression-large.ll │ │ │ ├── invalid-diexpression-verify.ll │ │ │ ├── invalid-difile-missing-directory.ll │ │ │ ├── invalid-difile-missing-filename.ll │ │ │ ├── invalid-diglobalvariable-empty-name.ll │ │ │ ├── invalid-diglobalvariable-missing-name.ll │ │ │ ├── invalid-diimportedentity-missing-scope.ll │ │ │ ├── invalid-diimportedentity-missing-tag.ll │ │ │ ├── invalid-dilexicalblock-missing-scope.ll │ │ │ ├── invalid-dilexicalblock-null-scope.ll │ │ │ ├── invalid-dilexicalblockfile-missing-discriminator.ll │ │ │ ├── invalid-dilexicalblockfile-missing-scope.ll │ │ │ ├── invalid-dilexicalblockfile-null-scope.ll │ │ │ ├── invalid-dilocalvariable-arg-large.ll │ │ │ ├── invalid-dilocalvariable-arg-negative.ll │ │ │ ├── invalid-dilocalvariable-missing-scope.ll │ │ │ ├── invalid-dilocalvariable-null-scope.ll │ │ │ ├── invalid-dilocation-field-bad.ll │ │ │ ├── invalid-dilocation-field-twice.ll │ │ │ ├── invalid-dilocation-missing-scope-2.ll │ │ │ ├── invalid-dilocation-missing-scope.ll │ │ │ ├── invalid-dilocation-null-scope.ll │ │ │ ├── invalid-dilocation-overflow-column.ll │ │ │ ├── invalid-dilocation-overflow-line.ll │ │ │ ├── invalid-dinamespace-missing-namespace.ll │ │ │ ├── invalid-disubprogram-uniqued-definition.ll │ │ │ ├── invalid-disubrange-count-large.ll │ │ │ ├── invalid-disubrange-count-missing.ll │ │ │ ├── invalid-disubrange-count-negative.ll │ │ │ ├── invalid-disubrange-lowerBound-max.ll │ │ │ ├── invalid-disubrange-lowerBound-min.ll │ │ │ ├── invalid-disubroutinetype-missing-types.ll │ │ │ ├── invalid-ditemplatetypeparameter-missing-type.ll │ │ │ ├── invalid-ditemplatevalueparameter-missing-value.ll │ │ │ ├── invalid-fp80hex.ll │ │ │ ├── invalid-fwdref1.ll │ │ │ ├── invalid-fwdref2.ll │ │ │ ├── invalid-generic-debug-node-tag-bad.ll │ │ │ ├── invalid-generic-debug-node-tag-missing.ll │ │ │ ├── invalid-generic-debug-node-tag-overflow.ll │ │ │ ├── invalid-generic-debug-node-tag-wrong-type.ll │ │ │ ├── invalid-gep-mismatched-explicit-type.ll │ │ │ ├── invalid-gep-missing-explicit-type.ll │ │ │ ├── invalid-hexint.ll │ │ │ ├── invalid-inline-constraint.ll │ │ │ ├── invalid-inttype.ll │ │ │ ├── invalid-label.ll │ │ │ ├── invalid-landingpad.ll │ │ │ ├── invalid-load-mismatched-explicit-type.ll │ │ │ ├── invalid-load-missing-explicit-type.ll │ │ │ ├── invalid-mdnode-badref.ll │ │ │ ├── invalid-mdnode-vector.ll │ │ │ ├── invalid-mdnode-vector2.ll │ │ │ ├── invalid-metadata-attachment-has-type.ll │ │ │ ├── invalid-metadata-function-local-attachments.ll │ │ │ ├── invalid-metadata-function-local-complex-1.ll │ │ │ ├── invalid-metadata-function-local-complex-2.ll │ │ │ ├── invalid-metadata-function-local-complex-3.ll │ │ │ ├── invalid-metadata-has-type.ll │ │ │ ├── invalid-name.ll │ │ │ ├── invalid-name2.ll │ │ │ ├── invalid-safestack-param.ll │ │ │ ├── invalid-safestack-return.ll │ │ │ ├── invalid-specialized-mdnode.ll │ │ │ ├── invalid-untyped-metadata.ll │ │ │ ├── invalid-uselistorder-function-between-blocks.ll │ │ │ ├── invalid-uselistorder-function-missing-named.ll │ │ │ ├── invalid-uselistorder-function-missing-numbered.ll │ │ │ ├── invalid-uselistorder-global-missing.ll │ │ │ ├── invalid-uselistorder-indexes-duplicated.ll │ │ │ ├── invalid-uselistorder-indexes-empty.ll │ │ │ ├── invalid-uselistorder-indexes-one.ll │ │ │ ├── invalid-uselistorder-indexes-ordered.ll │ │ │ ├── invalid-uselistorder-indexes-range.ll │ │ │ ├── invalid-uselistorder-indexes-toofew.ll │ │ │ ├── invalid-uselistorder-indexes-toomany.ll │ │ │ ├── invalid-uselistorder-type.ll │ │ │ ├── invalid-uselistorder_bb-missing-bb.ll │ │ │ ├── invalid-uselistorder_bb-missing-body.ll │ │ │ ├── invalid-uselistorder_bb-missing-func.ll │ │ │ ├── invalid-uselistorder_bb-not-bb.ll │ │ │ ├── invalid-uselistorder_bb-not-func.ll │ │ │ ├── invalid-uselistorder_bb-numbered.ll │ │ │ ├── invalid_cast.ll │ │ │ ├── invalid_cast2.ll │ │ │ ├── invalid_cast3.ll │ │ │ ├── invalid_cast4.ll │ │ │ ├── large-comdat.ll │ │ │ ├── local-unnamed-addr.ll │ │ │ ├── max-inttype.ll │ │ │ ├── metadata-decl.ll │ │ │ ├── metadata-function-local.ll │ │ │ ├── metadata-null-operands.ll │ │ │ ├── metadata.ll │ │ │ ├── missing-tbaa.ll │ │ │ ├── musttail-invalid-1.ll │ │ │ ├── musttail-invalid-2.ll │ │ │ ├── musttail.ll │ │ │ ├── named-metadata.ll │ │ │ ├── no-mdstring-upgrades.ll │ │ │ ├── numbered-values.ll │ │ │ ├── private-hidden-alias.ll │ │ │ ├── private-hidden-function.ll │ │ │ ├── private-hidden-variable.ll │ │ │ ├── private-protected-alias.ll │ │ │ ├── private-protected-function.ll │ │ │ ├── private-protected-variable.ll │ │ │ ├── return-column.s │ │ │ ├── select.ll │ │ │ ├── short-hexpair.ll │ │ │ ├── source-filename-backslash.ll │ │ │ ├── source-filename.ll │ │ │ ├── tls-models.ll │ │ │ ├── token.ll │ │ │ ├── unnamed-addr.ll │ │ │ ├── unnamed-alias.ll │ │ │ ├── unnamed-comdat.ll │ │ │ ├── unnamed.ll │ │ │ ├── unsized-recursive-type.ll │ │ │ ├── uselistorder.ll │ │ │ ├── uselistorder_bb.ll │ │ │ ├── vbool-cmp.ll │ │ │ ├── vector-cmp.ll │ │ │ ├── vector-select.ll │ │ │ ├── vector-shift.ll │ │ │ └── x86mmx.ll │ │ ├── Bindings │ │ │ ├── Go │ │ │ │ ├── go.test │ │ │ │ └── lit.local.cfg │ │ │ ├── OCaml │ │ │ │ ├── analysis.ml │ │ │ │ ├── bitreader.ml │ │ │ │ ├── bitwriter.ml │ │ │ │ ├── core.ml │ │ │ │ ├── diagnostic_handler.ml │ │ │ │ ├── executionengine.ml │ │ │ │ ├── ext_exc.ml │ │ │ │ ├── ipo.ml │ │ │ │ ├── irreader.ml │ │ │ │ ├── linker.ml │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── passmgr_builder.ml │ │ │ │ ├── scalar_opts.ml │ │ │ │ ├── target.ml │ │ │ │ ├── transform_utils.ml │ │ │ │ └── vectorize.ml │ │ │ └── llvm-c │ │ │ │ ├── ARM │ │ │ │ ├── disassemble.test │ │ │ │ └── lit.local.cfg │ │ │ │ ├── Inputs │ │ │ │ └── invalid.ll.bc │ │ │ │ ├── add_named_metadata_operand.ll │ │ │ │ ├── atomics.ll │ │ │ │ ├── calc.test │ │ │ │ ├── callsite_attributes.ll │ │ │ │ ├── debug_info.ll │ │ │ │ ├── echo.ll │ │ │ │ ├── empty.ll │ │ │ │ ├── function_attributes.ll │ │ │ │ ├── functions.ll │ │ │ │ ├── globals.ll │ │ │ │ ├── invalid-bitcode.test │ │ │ │ ├── invoke.ll │ │ │ │ ├── memops.ll │ │ │ │ ├── objectfile.ll │ │ │ │ └── set_metadata.ll │ │ ├── Bitcode │ │ │ ├── 2006-12-11-Cast-ConstExpr.ll │ │ │ ├── 2009-06-11-FirstClassAggregateConstant.ll │ │ │ ├── DICompileUnit-no-DWOId.ll │ │ │ ├── DICompileUnit-no-DWOId.ll.bc │ │ │ ├── DIExpression-4.0.ll │ │ │ ├── DIExpression-4.0.ll.bc │ │ │ ├── DIExpression-aggresult.ll │ │ │ ├── DIExpression-aggresult.ll.bc │ │ │ ├── DIExpression-deref.ll │ │ │ ├── DIExpression-deref.ll.bc │ │ │ ├── DIExpression-minus-upgrade.ll │ │ │ ├── DIExpression-minus-upgrade.ll.bc │ │ │ ├── DIGlobalVariableExpression.ll │ │ │ ├── DIGlobalVariableExpression.ll.bc │ │ │ ├── DIGlobalVariableExpression2.ll │ │ │ ├── DIGlobalVariableExpression2.ll.bc │ │ │ ├── DILocalVariable-explicit-tags.ll │ │ │ ├── DILocalVariable-explicit-tags.ll.bc │ │ │ ├── DINamespace.ll │ │ │ ├── DINamespace.ll.bc │ │ │ ├── DISubprogram-distinct-definitions.ll │ │ │ ├── DISubprogram-distinct-definitions.ll.bc │ │ │ ├── Inputs │ │ │ │ ├── PR23310.bc │ │ │ │ ├── invalid-GCTable-overflow.bc │ │ │ │ ├── invalid-abbrev-fixed-size-too-big.bc │ │ │ │ ├── invalid-abbrev-no-operands.bc │ │ │ │ ├── invalid-abbrev-vbr-size-too-big.bc │ │ │ │ ├── invalid-abbrev.bc │ │ │ │ ├── invalid-alias-type-mismatch.bc │ │ │ │ ├── invalid-align.bc │ │ │ │ ├── invalid-array-element-type.bc │ │ │ │ ├── invalid-array-op-not-2nd-to-last.bc │ │ │ │ ├── invalid-array-operand-encoding.bc │ │ │ │ ├── invalid-array-type.bc │ │ │ │ ├── invalid-bad-abbrev-number.bc │ │ │ │ ├── invalid-bitwidth.bc │ │ │ │ ├── invalid-call-mismatched-explicit-type.bc │ │ │ │ ├── invalid-call-non-function-explicit-type.bc │ │ │ │ ├── invalid-cast.bc │ │ │ │ ├── invalid-code-len-width.bc │ │ │ │ ├── invalid-empty.bc │ │ │ │ ├── invalid-extract-0-indices.bc │ │ │ │ ├── invalid-extractval-array-idx.bc │ │ │ │ ├── invalid-extractval-struct-idx.bc │ │ │ │ ├── invalid-extractval-too-many-idxs.bc │ │ │ │ ├── invalid-fp-shift.bc │ │ │ │ ├── invalid-function-argument-type.bc │ │ │ │ ├── invalid-function-comdat-id.bc │ │ │ │ ├── invalid-fwdref-type-mismatch-2.bc │ │ │ │ ├── invalid-fwdref-type-mismatch.bc │ │ │ │ ├── invalid-gep-mismatched-explicit-type.bc │ │ │ │ ├── invalid-gep-no-operands.bc │ │ │ │ ├── invalid-gep-operator-mismatched-explicit-type.bc │ │ │ │ ├── invalid-global-var-comdat-id.bc │ │ │ │ ├── invalid-insert-0-indices.bc │ │ │ │ ├── invalid-inserted-value-type-mismatch.bc │ │ │ │ ├── invalid-insertval-array-idx.bc │ │ │ │ ├── invalid-insertval-struct-idx.bc │ │ │ │ ├── invalid-insertval-too-many-idxs.bc │ │ │ │ ├── invalid-invoke-mismatched-explicit-type.bc │ │ │ │ ├── invalid-invoke-non-function-explicit-type.bc │ │ │ │ ├── invalid-load-mismatched-explicit-type.bc │ │ │ │ ├── invalid-load-pointer-type.bc │ │ │ │ ├── invalid-load-ptr-type.bc │ │ │ │ ├── invalid-metadata-not-followed-named-node.bc │ │ │ │ ├── invalid-name-with-0-byte.bc │ │ │ │ ├── invalid-no-function-block.bc │ │ │ │ ├── invalid-no-proper-module.bc │ │ │ │ ├── invalid-non-vector-extractelement.bc │ │ │ │ ├── invalid-non-vector-insertelement.bc │ │ │ │ ├── invalid-non-vector-shufflevector.bc │ │ │ │ ├── invalid-nonpointer-atomicrmw.bc │ │ │ │ ├── invalid-nonpointer-storeatomic.bc │ │ │ │ ├── invalid-pointer-element-type.bc │ │ │ │ ├── invalid-pr20485.bc │ │ │ │ ├── invalid-too-big-fwdref.bc │ │ │ │ ├── invalid-type-table-forward-ref.bc │ │ │ │ ├── invalid-unexpected-eof.bc │ │ │ │ ├── invalid-vector-element-type.bc │ │ │ │ ├── invalid-vector-length.bc │ │ │ │ ├── invalid-void-constant.bc │ │ │ │ ├── module-hash-strtab1.ll │ │ │ │ ├── module-hash-strtab2.ll │ │ │ │ ├── module_hash.ll │ │ │ │ ├── multi-module.ll │ │ │ │ ├── padding-garbage.bc │ │ │ │ ├── padding.bc │ │ │ │ ├── source-filename.bc │ │ │ │ ├── thinlto-alias.ll │ │ │ │ ├── thinlto-function-summary-callgraph-combined.1.bc │ │ │ │ ├── thinlto-function-summary-callgraph-pgo-combined.1.bc │ │ │ │ ├── thinlto-function-summary-callgraph-pgo.1.bc │ │ │ │ ├── thinlto-function-summary-callgraph-profile-summary.ll │ │ │ │ ├── thinlto-function-summary-callgraph-sample-profile-summary.ll │ │ │ │ ├── thinlto-function-summary-callgraph.1.bc │ │ │ │ └── thinlto-function-summary-callgraph.ll │ │ │ ├── PR23310.test │ │ │ ├── aggregateInstructions.3.2.ll │ │ │ ├── aggregateInstructions.3.2.ll.bc │ │ │ ├── anon-functions.ll │ │ │ ├── arm32_neon_vcnt_upgrade.ll │ │ │ ├── atomic-no-syncscope.ll │ │ │ ├── atomic-no-syncscope.ll.bc │ │ │ ├── atomic.ll │ │ │ ├── attributes-3.3.ll │ │ │ ├── attributes-3.3.ll.bc │ │ │ ├── attributes.ll │ │ │ ├── auto_upgrade_intrinsics.bc │ │ │ ├── avr-calling-conventions.ll │ │ │ ├── avr-calling-conventions.ll.bc │ │ │ ├── binaryFloatInstructions.3.2.ll │ │ │ ├── binaryFloatInstructions.3.2.ll.bc │ │ │ ├── binaryIntInstructions.3.2.ll │ │ │ ├── binaryIntInstructions.3.2.ll.bc │ │ │ ├── bitcode-wrapper-header-armv7m.ll │ │ │ ├── bitcode-wrapper-header-x86_64.ll │ │ │ ├── bitwiseInstructions.3.2.ll │ │ │ ├── bitwiseInstructions.3.2.ll.bc │ │ │ ├── blockaddress.ll │ │ │ ├── calling-conventions.3.2.ll │ │ │ ├── calling-conventions.3.2.ll.bc │ │ │ ├── case-ranges-3.3.ll │ │ │ ├── case-ranges-3.3.ll.bc │ │ │ ├── cmpxchg-upgrade.ll │ │ │ ├── cmpxchg-upgrade.ll.bc │ │ │ ├── cmpxchg.3.6.ll │ │ │ ├── cmpxchg.3.6.ll.bc │ │ │ ├── compatibility-3.6.ll │ │ │ ├── compatibility-3.6.ll.bc │ │ │ ├── compatibility-3.7.ll │ │ │ ├── compatibility-3.7.ll.bc │ │ │ ├── compatibility-3.8.ll │ │ │ ├── compatibility-3.8.ll.bc │ │ │ ├── compatibility-3.9.ll │ │ │ ├── compatibility-3.9.ll.bc │ │ │ ├── compatibility-4.0.ll │ │ │ ├── compatibility-4.0.ll.bc │ │ │ ├── compatibility-5.0.ll │ │ │ ├── compatibility-5.0.ll.bc │ │ │ ├── compatibility.ll │ │ │ ├── constantsTest.3.2.ll │ │ │ ├── constantsTest.3.2.ll.bc │ │ │ ├── conversionInstructions.3.2.ll │ │ │ ├── conversionInstructions.3.2.ll.bc │ │ │ ├── debug-loc-again.ll │ │ │ ├── dicompileunit-gnu-pubnames.ll │ │ │ ├── diglobalvariable-3.8.ll │ │ │ ├── diglobalvariable-3.8.ll.bc │ │ │ ├── dilocalvariable-3.9.ll │ │ │ ├── dilocalvariable-3.9.ll.bc │ │ │ ├── dityperefs-3.8.ll │ │ │ ├── dityperefs-3.8.ll.bc │ │ │ ├── drop-debug-info.3.5.ll │ │ │ ├── drop-debug-info.3.5.ll.bc │ │ │ ├── dso_location.ll │ │ │ ├── extractelement.ll │ │ │ ├── fcmp-fast.ll │ │ │ ├── flags.ll │ │ │ ├── function-encoding-rel-operands.ll │ │ │ ├── function-local-metadata.3.5.ll │ │ │ ├── function-local-metadata.3.5.ll.bc │ │ │ ├── global-variables.3.2.ll │ │ │ ├── global-variables.3.2.ll.bc │ │ │ ├── globalvariable-attributes.ll │ │ │ ├── highLevelStructure.3.2.ll │ │ │ ├── highLevelStructure.3.2.ll.bc │ │ │ ├── identification.ll │ │ │ ├── inalloca.ll │ │ │ ├── invalid-weak-external.ll │ │ │ ├── invalid.ll │ │ │ ├── invalid.ll.bc │ │ │ ├── invalid.test │ │ │ ├── linkage-types-3.2.ll │ │ │ ├── linkage-types-3.2.ll.bc │ │ │ ├── local-linkage-default-visibility.3.4.ll │ │ │ ├── local-linkage-default-visibility.3.4.ll.bc │ │ │ ├── mdnodes-distinct-in-post-order.ll │ │ │ ├── mdnodes-distinct-nodes-break-cycles.ll │ │ │ ├── mdnodes-distinct-nodes-first.ll │ │ │ ├── mdnodes-in-post-order.ll │ │ │ ├── mdstring-high-bits.ll │ │ │ ├── memInstructions.3.2.ll │ │ │ ├── memInstructions.3.2.ll.bc │ │ │ ├── metadata-2.ll │ │ │ ├── metadata-function-blocks.ll │ │ │ ├── metadata-only-empty-string.ll │ │ │ ├── metadata-strings.ll │ │ │ ├── metadata.3.5.ll │ │ │ ├── metadata.3.5.ll.bc │ │ │ ├── metadata.ll │ │ │ ├── miscInstructions.3.2.ll │ │ │ ├── miscInstructions.3.2.ll.bc │ │ │ ├── module-hash-strtab.ll │ │ │ ├── module_hash.ll │ │ │ ├── multi-module.ll │ │ │ ├── null-type.ll │ │ │ ├── null-type.ll.bc │ │ │ ├── old-aliases.ll │ │ │ ├── old-aliases.ll.bc │ │ │ ├── operand-bundles-bc-analyzer.ll │ │ │ ├── operand-bundles.ll │ │ │ ├── padding.test │ │ │ ├── pr18704.ll │ │ │ ├── pr18704.ll.bc │ │ │ ├── ptest-new.ll │ │ │ ├── ptest-old.ll │ │ │ ├── select.ll │ │ │ ├── shuffle.ll │ │ │ ├── source-filename.test │ │ │ ├── ssse3_palignr.ll │ │ │ ├── standardCIntrinsic.3.2.ll │ │ │ ├── standardCIntrinsic.3.2.ll.bc │ │ │ ├── summary_version.ll │ │ │ ├── tailcall.ll │ │ │ ├── terminatorInstructions.3.2.ll │ │ │ ├── terminatorInstructions.3.2.ll.bc │ │ │ ├── thinlto-alias.ll │ │ │ ├── thinlto-alias2.ll │ │ │ ├── thinlto-asm-noimport.ll │ │ │ ├── thinlto-empty-summary-section.ll │ │ │ ├── thinlto-function-summary-callgraph-cast.ll │ │ │ ├── thinlto-function-summary-callgraph-pgo.ll │ │ │ ├── thinlto-function-summary-callgraph-profile-summary.ll │ │ │ ├── thinlto-function-summary-callgraph-sample-profile-summary.ll │ │ │ ├── thinlto-function-summary-callgraph.ll │ │ │ ├── thinlto-function-summary-functionattrs.ll │ │ │ ├── thinlto-function-summary-originalnames.ll │ │ │ ├── thinlto-function-summary-refgraph.ll │ │ │ ├── thinlto-function-summary.ll │ │ │ ├── thinlto-summary-globalvar.ll │ │ │ ├── thinlto-summary-linkage-types.ll │ │ │ ├── thinlto-summary-local-5.0.ll │ │ │ ├── thinlto-summary-local-5.0.ll.bc │ │ │ ├── thinlto-summary-section.ll │ │ │ ├── thinlto-type-tests.ll │ │ │ ├── thinlto-type-vcalls.ll │ │ │ ├── thinlto-unused-type-tests.ll │ │ │ ├── upgrade-dbg-value.ll │ │ │ ├── upgrade-dbg-value.ll.bc │ │ │ ├── upgrade-debug-info-for-profiling.ll │ │ │ ├── upgrade-debug-info-for-profiling.ll.bc │ │ │ ├── upgrade-global-ctors.ll │ │ │ ├── upgrade-global-ctors.ll.bc │ │ │ ├── upgrade-importedentity.ll │ │ │ ├── upgrade-importedentity.ll.bc │ │ │ ├── upgrade-linker-options.ll │ │ │ ├── upgrade-loop-metadata.ll │ │ │ ├── upgrade-loop-metadata.ll.bc │ │ │ ├── upgrade-module-flag.ll │ │ │ ├── upgrade-pointer-address-space.ll │ │ │ ├── upgrade-pointer-address-space.ll.bc │ │ │ ├── upgrade-section-name.ll │ │ │ ├── upgrade-subprogram-this.ll │ │ │ ├── upgrade-subprogram-this.ll.bc │ │ │ ├── upgrade-subprogram.ll │ │ │ ├── upgrade-subprogram.ll.bc │ │ │ ├── upgrade-tbaa.ll │ │ │ ├── use-list-order.ll │ │ │ ├── use-list-order2.ll │ │ │ ├── variableArgumentIntrinsic.3.2.ll │ │ │ ├── variableArgumentIntrinsic.3.2.ll.bc │ │ │ ├── vectorInstructions.3.2.ll │ │ │ ├── vectorInstructions.3.2.ll.bc │ │ │ ├── visibility-styles.3.2.ll │ │ │ ├── visibility-styles.3.2.ll.bc │ │ │ ├── vst-forward-declaration.ll │ │ │ ├── weak-cmpxchg-upgrade.ll │ │ │ ├── weak-cmpxchg-upgrade.ll.bc │ │ │ ├── weak-macho-3.5.ll │ │ │ └── weak-macho-3.5.ll.bc │ │ ├── BugPoint │ │ │ ├── compile-custom.ll │ │ │ ├── compile-custom.ll.py │ │ │ ├── crash-narrowfunctiontest.ll │ │ │ ├── invalid-debuginfo.ll │ │ │ ├── metadata.ll │ │ │ ├── named-md.ll │ │ │ ├── remove_arguments_test.ll │ │ │ ├── replace-funcs-with-null.ll │ │ │ └── unsymbolized.ll │ │ ├── CMakeLists.txt │ │ ├── CodeGen │ │ │ ├── AArch64 │ │ │ │ ├── 128bit_load_store.ll │ │ │ │ ├── GlobalISel │ │ │ │ │ ├── arm64-callingconv-ios.ll │ │ │ │ │ ├── arm64-callingconv.ll │ │ │ │ │ ├── arm64-fallback.ll │ │ │ │ │ ├── arm64-irtranslator-stackprotect.ll │ │ │ │ │ ├── arm64-irtranslator.ll │ │ │ │ │ ├── arm64-regbankselect.mir │ │ │ │ │ ├── call-translator-ios.ll │ │ │ │ │ ├── call-translator.ll │ │ │ │ │ ├── combine-anyext-crash.mir │ │ │ │ │ ├── debug-insts.ll │ │ │ │ │ ├── dynamic-alloca.ll │ │ │ │ │ ├── fallback-nofastisel.ll │ │ │ │ │ ├── fp128-legalize-crash-pr35690.mir │ │ │ │ │ ├── fp16-copy-gpr.mir │ │ │ │ │ ├── gisel-abort.ll │ │ │ │ │ ├── gisel-commandline-option.ll │ │ │ │ │ ├── gisel-fail-intermediate-legalizer.ll │ │ │ │ │ ├── inline-asm.ll │ │ │ │ │ ├── irtranslator-bitcast.ll │ │ │ │ │ ├── irtranslator-exceptions.ll │ │ │ │ │ ├── irtranslator-volatile-load-pr36018.ll │ │ │ │ │ ├── legalize-add.mir │ │ │ │ │ ├── legalize-and.mir │ │ │ │ │ ├── legalize-atomicrmw.mir │ │ │ │ │ ├── legalize-cmp.mir │ │ │ │ │ ├── legalize-cmpxchg-with-success.mir │ │ │ │ │ ├── legalize-cmpxchg.mir │ │ │ │ │ ├── legalize-combines.mir │ │ │ │ │ ├── legalize-constant.mir │ │ │ │ │ ├── legalize-div.mir │ │ │ │ │ ├── legalize-exceptions.ll │ │ │ │ │ ├── legalize-ext.mir │ │ │ │ │ ├── legalize-extracts.mir │ │ │ │ │ ├── legalize-fcmp.mir │ │ │ │ │ ├── legalize-fneg.mir │ │ │ │ │ ├── legalize-fptoi.mir │ │ │ │ │ ├── legalize-gep.mir │ │ │ │ │ ├── legalize-ignore-non-generic.mir │ │ │ │ │ ├── legalize-inserts.mir │ │ │ │ │ ├── legalize-itofp.mir │ │ │ │ │ ├── legalize-load-store.mir │ │ │ │ │ ├── legalize-merge-values.mir │ │ │ │ │ ├── legalize-mul.mir │ │ │ │ │ ├── legalize-nonpowerof2eltsvec.mir │ │ │ │ │ ├── legalize-or.mir │ │ │ │ │ ├── legalize-phi.mir │ │ │ │ │ ├── legalize-pow.mir │ │ │ │ │ ├── legalize-property.mir │ │ │ │ │ ├── legalize-rem.mir │ │ │ │ │ ├── legalize-shift.mir │ │ │ │ │ ├── legalize-simple.mir │ │ │ │ │ ├── legalize-sub.mir │ │ │ │ │ ├── legalize-undef.mir │ │ │ │ │ ├── legalize-unmerge-values.mir │ │ │ │ │ ├── legalize-vaarg.mir │ │ │ │ │ ├── legalize-xor.mir │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── localizer-in-O0-pipeline.mir │ │ │ │ │ ├── localizer.mir │ │ │ │ │ ├── no-regclass.mir │ │ │ │ │ ├── reg-bank-128bit.mir │ │ │ │ │ ├── regbankselect-dbg-value.mir │ │ │ │ │ ├── regbankselect-default.mir │ │ │ │ │ ├── regbankselect-reg_sequence.mir │ │ │ │ │ ├── select-atomicrmw.mir │ │ │ │ │ ├── select-binop.mir │ │ │ │ │ ├── select-bitcast-bigendian.mir │ │ │ │ │ ├── select-bitcast.mir │ │ │ │ │ ├── select-br.mir │ │ │ │ │ ├── select-bswap.mir │ │ │ │ │ ├── select-cbz.mir │ │ │ │ │ ├── select-cmpxchg.mir │ │ │ │ │ ├── select-constant.mir │ │ │ │ │ ├── select-dbg-value.mir │ │ │ │ │ ├── select-fma.mir │ │ │ │ │ ├── select-fp-casts.mir │ │ │ │ │ ├── select-gv-cmodel-large.mir │ │ │ │ │ ├── select-imm.mir │ │ │ │ │ ├── select-implicit-def.mir │ │ │ │ │ ├── select-insert-extract.mir │ │ │ │ │ ├── select-int-ext.mir │ │ │ │ │ ├── select-int-ptr-casts.mir │ │ │ │ │ ├── select-intrinsic-aarch64-hint.mir │ │ │ │ │ ├── select-intrinsic-aarch64-sdiv.mir │ │ │ │ │ ├── select-intrinsic-crypto-aesmc.mir │ │ │ │ │ ├── select-load.mir │ │ │ │ │ ├── select-muladd.mir │ │ │ │ │ ├── select-neon-vcvtfxu2fp.mir │ │ │ │ │ ├── select-phi.mir │ │ │ │ │ ├── select-pr32733.mir │ │ │ │ │ ├── select-property.mir │ │ │ │ │ ├── select-store.mir │ │ │ │ │ ├── select-trunc.mir │ │ │ │ │ ├── select-xor.mir │ │ │ │ │ ├── select.mir │ │ │ │ │ ├── translate-gep.ll │ │ │ │ │ ├── unknown-intrinsic.ll │ │ │ │ │ ├── varargs-ios-translator.ll │ │ │ │ │ ├── vastart.ll │ │ │ │ │ ├── verify-regbankselected.mir │ │ │ │ │ └── verify-selected.mir │ │ │ │ ├── PBQP-chain.ll │ │ │ │ ├── PBQP-coalesce-benefit.ll │ │ │ │ ├── PBQP-csr.ll │ │ │ │ ├── PBQP.ll │ │ │ │ ├── Redundantstore.ll │ │ │ │ ├── a57-csel.ll │ │ │ │ ├── aarch-multipart.ll │ │ │ │ ├── aarch64-2014-08-11-MachineCombinerCrash.ll │ │ │ │ ├── aarch64-2014-12-02-combine-soften.ll │ │ │ │ ├── aarch64-DAGCombine-findBetterNeighborChains-crash.ll │ │ │ │ ├── aarch64-a57-fp-load-balancing.ll │ │ │ │ ├── aarch64-address-type-promotion-assertion.ll │ │ │ │ ├── aarch64-address-type-promotion.ll │ │ │ │ ├── aarch64-addv.ll │ │ │ │ ├── aarch64-be-bv.ll │ │ │ │ ├── aarch64-codegen-prepare-atp.ll │ │ │ │ ├── aarch64-combine-fmul-fsub.mir │ │ │ │ ├── aarch64-dynamic-stack-layout.ll │ │ │ │ ├── aarch64-fix-cortex-a53-835769.ll │ │ │ │ ├── aarch64-fold-lslfast.ll │ │ │ │ ├── aarch64-gep-opt.ll │ │ │ │ ├── aarch64-loop-gep-opt.ll │ │ │ │ ├── aarch64-minmaxv.ll │ │ │ │ ├── aarch64-named-reg-w18.ll │ │ │ │ ├── aarch64-named-reg-x18.ll │ │ │ │ ├── aarch64-neon-v1i1-setcc.ll │ │ │ │ ├── aarch64-smax-constantfold.ll │ │ │ │ ├── aarch64-smull.ll │ │ │ │ ├── aarch64-stp-cluster.ll │ │ │ │ ├── aarch64-tbz.ll │ │ │ │ ├── aarch64-tryBitfieldInsertOpFromOr-crash.ll │ │ │ │ ├── aarch64-vcvtfp2fxs-combine.ll │ │ │ │ ├── aarch64-wide-shuffle.ll │ │ │ │ ├── aarch64_f16_be.ll │ │ │ │ ├── aarch64_tree_tests.ll │ │ │ │ ├── aarch64_win64cc_vararg.ll │ │ │ │ ├── adc.ll │ │ │ │ ├── addcarry-crash.ll │ │ │ │ ├── addsub-shifted.ll │ │ │ │ ├── addsub.ll │ │ │ │ ├── addsub_ext.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── analyze-branch.ll │ │ │ │ ├── analyzecmp.ll │ │ │ │ ├── and-mask-removal.ll │ │ │ │ ├── and-sink.ll │ │ │ │ ├── andandshift.ll │ │ │ │ ├── argument-blocks.ll │ │ │ │ ├── arm64-2011-03-09-CPSRSpill.ll │ │ │ │ ├── arm64-2011-03-17-AsmPrinterCrash.ll │ │ │ │ ├── arm64-2011-03-21-Unaligned-Frame-Index.ll │ │ │ │ ├── arm64-2011-04-21-CPSRBug.ll │ │ │ │ ├── arm64-2011-10-18-LdStOptBug.ll │ │ │ │ ├── arm64-2012-01-11-ComparisonDAGCrash.ll │ │ │ │ ├── arm64-2012-05-07-DAGCombineVectorExtract.ll │ │ │ │ ├── arm64-2012-05-07-MemcpyAlignBug.ll │ │ │ │ ├── arm64-2012-05-09-LOADgot-bug.ll │ │ │ │ ├── arm64-2012-05-22-LdStOptBug.ll │ │ │ │ ├── arm64-2012-06-06-FPToUI.ll │ │ │ │ ├── arm64-2012-07-11-InstrEmitterBug.ll │ │ │ │ ├── arm64-2013-01-13-ffast-fcmp.ll │ │ │ │ ├── arm64-2013-01-23-frem-crash.ll │ │ │ │ ├── arm64-2013-01-23-sext-crash.ll │ │ │ │ ├── arm64-2013-02-12-shufv8i8.ll │ │ │ │ ├── arm64-AdvSIMD-Scalar.ll │ │ │ │ ├── arm64-AnInfiniteLoopInDAGCombine.ll │ │ │ │ ├── arm64-EXT-undef-mask.ll │ │ │ │ ├── arm64-aapcs-be.ll │ │ │ │ ├── arm64-aapcs.ll │ │ │ │ ├── arm64-abi-varargs.ll │ │ │ │ ├── arm64-abi.ll │ │ │ │ ├── arm64-abi_align.ll │ │ │ │ ├── arm64-addp.ll │ │ │ │ ├── arm64-addr-mode-folding.ll │ │ │ │ ├── arm64-addr-type-promotion.ll │ │ │ │ ├── arm64-addrmode.ll │ │ │ │ ├── arm64-alloc-no-stack-realign.ll │ │ │ │ ├── arm64-alloca-frame-pointer-offset.ll │ │ │ │ ├── arm64-andCmpBrToTBZ.ll │ │ │ │ ├── arm64-ands-bad-peephole.ll │ │ │ │ ├── arm64-anyregcc-crash.ll │ │ │ │ ├── arm64-anyregcc.ll │ │ │ │ ├── arm64-arith-saturating.ll │ │ │ │ ├── arm64-arith.ll │ │ │ │ ├── arm64-arm64-dead-def-elimination-flag.ll │ │ │ │ ├── arm64-atomic-128.ll │ │ │ │ ├── arm64-atomic.ll │ │ │ │ ├── arm64-basic-pic.ll │ │ │ │ ├── arm64-bcc.ll │ │ │ │ ├── arm64-big-endian-bitconverts.ll │ │ │ │ ├── arm64-big-endian-eh.ll │ │ │ │ ├── arm64-big-endian-varargs.ll │ │ │ │ ├── arm64-big-endian-vector-callee.ll │ │ │ │ ├── arm64-big-endian-vector-caller.ll │ │ │ │ ├── arm64-big-imm-offsets.ll │ │ │ │ ├── arm64-big-stack.ll │ │ │ │ ├── arm64-bitfield-extract.ll │ │ │ │ ├── arm64-blockaddress.ll │ │ │ │ ├── arm64-build-vector.ll │ │ │ │ ├── arm64-builtins-linux.ll │ │ │ │ ├── arm64-call-tailcalls.ll │ │ │ │ ├── arm64-cast-opt.ll │ │ │ │ ├── arm64-ccmp-heuristics.ll │ │ │ │ ├── arm64-ccmp.ll │ │ │ │ ├── arm64-clrsb.ll │ │ │ │ ├── arm64-coalesce-ext.ll │ │ │ │ ├── arm64-coalescing-MOVi32imm.ll │ │ │ │ ├── arm64-code-model-large-abs.ll │ │ │ │ ├── arm64-codegen-prepare-extload.ll │ │ │ │ ├── arm64-collect-loh-garbage-crash.ll │ │ │ │ ├── arm64-collect-loh-str.ll │ │ │ │ ├── arm64-collect-loh.ll │ │ │ │ ├── arm64-complex-copy-noneon.ll │ │ │ │ ├── arm64-complex-ret.ll │ │ │ │ ├── arm64-const-addr.ll │ │ │ │ ├── arm64-convert-v4f64.ll │ │ │ │ ├── arm64-copy-tuple.ll │ │ │ │ ├── arm64-crc32.ll │ │ │ │ ├── arm64-crypto.ll │ │ │ │ ├── arm64-cse.ll │ │ │ │ ├── arm64-csel.ll │ │ │ │ ├── arm64-csldst-mmo.ll │ │ │ │ ├── arm64-cvt.ll │ │ │ │ ├── arm64-dagcombiner-convergence.ll │ │ │ │ ├── arm64-dagcombiner-dead-indexed-load.ll │ │ │ │ ├── arm64-dagcombiner-load-slicing.ll │ │ │ │ ├── arm64-dead-def-frame-index.ll │ │ │ │ ├── arm64-dead-register-def-bug.ll │ │ │ │ ├── arm64-detect-vec-redux.ll │ │ │ │ ├── arm64-dup.ll │ │ │ │ ├── arm64-early-ifcvt.ll │ │ │ │ ├── arm64-elf-calls.ll │ │ │ │ ├── arm64-elf-constpool.ll │ │ │ │ ├── arm64-elf-globals.ll │ │ │ │ ├── arm64-ext.ll │ │ │ │ ├── arm64-extend-int-to-fp.ll │ │ │ │ ├── arm64-extend.ll │ │ │ │ ├── arm64-extern-weak.ll │ │ │ │ ├── arm64-extload-knownzero.ll │ │ │ │ ├── arm64-extract.ll │ │ │ │ ├── arm64-extract_subvector.ll │ │ │ │ ├── arm64-fast-isel-addr-offset.ll │ │ │ │ ├── arm64-fast-isel-alloca.ll │ │ │ │ ├── arm64-fast-isel-br.ll │ │ │ │ ├── arm64-fast-isel-call.ll │ │ │ │ ├── arm64-fast-isel-conversion-fallback.ll │ │ │ │ ├── arm64-fast-isel-conversion.ll │ │ │ │ ├── arm64-fast-isel-fcmp.ll │ │ │ │ ├── arm64-fast-isel-gv.ll │ │ │ │ ├── arm64-fast-isel-icmp.ll │ │ │ │ ├── arm64-fast-isel-indirectbr.ll │ │ │ │ ├── arm64-fast-isel-intrinsic.ll │ │ │ │ ├── arm64-fast-isel-materialize.ll │ │ │ │ ├── arm64-fast-isel-noconvert.ll │ │ │ │ ├── arm64-fast-isel-rem.ll │ │ │ │ ├── arm64-fast-isel-ret.ll │ │ │ │ ├── arm64-fast-isel-store.ll │ │ │ │ ├── arm64-fast-isel.ll │ │ │ │ ├── arm64-fastcc-tailcall.ll │ │ │ │ ├── arm64-fastisel-gep-promote-before-add.ll │ │ │ │ ├── arm64-fcmp-opt.ll │ │ │ │ ├── arm64-fcopysign.ll │ │ │ │ ├── arm64-fixed-point-scalar-cvt-dagcombine.ll │ │ │ │ ├── arm64-fma-combine-with-fpfusion.ll │ │ │ │ ├── arm64-fma-combines.ll │ │ │ │ ├── arm64-fmadd.ll │ │ │ │ ├── arm64-fmax-safe.ll │ │ │ │ ├── arm64-fmax.ll │ │ │ │ ├── arm64-fminv.ll │ │ │ │ ├── arm64-fml-combines.ll │ │ │ │ ├── arm64-fmuladd.ll │ │ │ │ ├── arm64-fold-address.ll │ │ │ │ ├── arm64-fold-lsl.ll │ │ │ │ ├── arm64-fp-contract-zero.ll │ │ │ │ ├── arm64-fp-imm.ll │ │ │ │ ├── arm64-fp.ll │ │ │ │ ├── arm64-fp128-folding.ll │ │ │ │ ├── arm64-fp128.ll │ │ │ │ ├── arm64-frame-index.ll │ │ │ │ ├── arm64-global-address.ll │ │ │ │ ├── arm64-hello.ll │ │ │ │ ├── arm64-i16-subreg-extract.ll │ │ │ │ ├── arm64-icmp-opt.ll │ │ │ │ ├── arm64-illegal-float-ops.ll │ │ │ │ ├── arm64-indexed-memory.ll │ │ │ │ ├── arm64-indexed-vector-ldst-2.ll │ │ │ │ ├── arm64-indexed-vector-ldst.ll │ │ │ │ ├── arm64-inline-asm-error-I.ll │ │ │ │ ├── arm64-inline-asm-error-J.ll │ │ │ │ ├── arm64-inline-asm-error-K.ll │ │ │ │ ├── arm64-inline-asm-error-L.ll │ │ │ │ ├── arm64-inline-asm-error-M.ll │ │ │ │ ├── arm64-inline-asm-error-N.ll │ │ │ │ ├── arm64-inline-asm-zero-reg-error.ll │ │ │ │ ├── arm64-inline-asm.ll │ │ │ │ ├── arm64-join-reserved.ll │ │ │ │ ├── arm64-jumptable.ll │ │ │ │ ├── arm64-large-frame.ll │ │ │ │ ├── arm64-ld-from-st.ll │ │ │ │ ├── arm64-ld1.ll │ │ │ │ ├── arm64-ldp-aa.ll │ │ │ │ ├── arm64-ldp-cluster.ll │ │ │ │ ├── arm64-ldp.ll │ │ │ │ ├── arm64-ldst-unscaled-pre-post.mir │ │ │ │ ├── arm64-ldur.ll │ │ │ │ ├── arm64-ldxr-stxr.ll │ │ │ │ ├── arm64-leaf.ll │ │ │ │ ├── arm64-long-shift.ll │ │ │ │ ├── arm64-memcpy-inline.ll │ │ │ │ ├── arm64-memset-inline.ll │ │ │ │ ├── arm64-memset-to-bzero.ll │ │ │ │ ├── arm64-misaligned-memcpy-inline.ll │ │ │ │ ├── arm64-misched-basic-A53.ll │ │ │ │ ├── arm64-misched-basic-A57.ll │ │ │ │ ├── arm64-misched-forwarding-A53.ll │ │ │ │ ├── arm64-misched-memdep-bug.ll │ │ │ │ ├── arm64-misched-multimmo.ll │ │ │ │ ├── arm64-movi.ll │ │ │ │ ├── arm64-mul.ll │ │ │ │ ├── arm64-named-reg-alloc.ll │ │ │ │ ├── arm64-named-reg-notareg.ll │ │ │ │ ├── arm64-narrow-st-merge.ll │ │ │ │ ├── arm64-neg.ll │ │ │ │ ├── arm64-neon-2velem-high.ll │ │ │ │ ├── arm64-neon-2velem.ll │ │ │ │ ├── arm64-neon-3vdiff.ll │ │ │ │ ├── arm64-neon-aba-abd.ll │ │ │ │ ├── arm64-neon-across.ll │ │ │ │ ├── arm64-neon-add-pairwise.ll │ │ │ │ ├── arm64-neon-add-sub.ll │ │ │ │ ├── arm64-neon-compare-instructions.ll │ │ │ │ ├── arm64-neon-copy.ll │ │ │ │ ├── arm64-neon-copyPhysReg-tuple.ll │ │ │ │ ├── arm64-neon-mul-div.ll │ │ │ │ ├── arm64-neon-scalar-by-elem-mul.ll │ │ │ │ ├── arm64-neon-select_cc.ll │ │ │ │ ├── arm64-neon-simd-ldst-one.ll │ │ │ │ ├── arm64-neon-simd-shift.ll │ │ │ │ ├── arm64-neon-simd-vget.ll │ │ │ │ ├── arm64-neon-v1i1-setcc.ll │ │ │ │ ├── arm64-neon-v8.1a.ll │ │ │ │ ├── arm64-neon-vector-list-spill.ll │ │ │ │ ├── arm64-nvcast.ll │ │ │ │ ├── arm64-opt-remarks-lazy-bfi.ll │ │ │ │ ├── arm64-patchpoint-scratch-regs.ll │ │ │ │ ├── arm64-patchpoint-webkit_jscc.ll │ │ │ │ ├── arm64-patchpoint.ll │ │ │ │ ├── arm64-pic-local-symbol.ll │ │ │ │ ├── arm64-platform-reg.ll │ │ │ │ ├── arm64-popcnt.ll │ │ │ │ ├── arm64-prefetch.ll │ │ │ │ ├── arm64-promote-const.ll │ │ │ │ ├── arm64-redzone.ll │ │ │ │ ├── arm64-reg-copy-noneon.ll │ │ │ │ ├── arm64-register-offset-addressing.ll │ │ │ │ ├── arm64-register-pairing.ll │ │ │ │ ├── arm64-regress-f128csel-flags.ll │ │ │ │ ├── arm64-regress-interphase-shift.ll │ │ │ │ ├── arm64-regress-opt-cmp.mir │ │ │ │ ├── arm64-return-vector.ll │ │ │ │ ├── arm64-returnaddr.ll │ │ │ │ ├── arm64-rev.ll │ │ │ │ ├── arm64-rounding.ll │ │ │ │ ├── arm64-scaled_iv.ll │ │ │ │ ├── arm64-scvt.ll │ │ │ │ ├── arm64-setcc-int-to-fp-combine.ll │ │ │ │ ├── arm64-shifted-sext.ll │ │ │ │ ├── arm64-shrink-v1i64.ll │ │ │ │ ├── arm64-shrink-wrapping.ll │ │ │ │ ├── arm64-simd-scalar-to-vector.ll │ │ │ │ ├── arm64-simplest-elf.ll │ │ │ │ ├── arm64-sincos.ll │ │ │ │ ├── arm64-sitofp-combine-chains.ll │ │ │ │ ├── arm64-sli-sri-opt.ll │ │ │ │ ├── arm64-smaxv.ll │ │ │ │ ├── arm64-sminv.ll │ │ │ │ ├── arm64-spill-lr.ll │ │ │ │ ├── arm64-spill-remarks-treshold-hotness.ll │ │ │ │ ├── arm64-spill-remarks.ll │ │ │ │ ├── arm64-spill.ll │ │ │ │ ├── arm64-sqshl-uqshl-i64Contant.ll │ │ │ │ ├── arm64-st1.ll │ │ │ │ ├── arm64-stack-no-frame.ll │ │ │ │ ├── arm64-stackmap-nops.ll │ │ │ │ ├── arm64-stackmap.ll │ │ │ │ ├── arm64-stackpointer.ll │ │ │ │ ├── arm64-stacksave.ll │ │ │ │ ├── arm64-storebytesmerge.ll │ │ │ │ ├── arm64-stp-aa.ll │ │ │ │ ├── arm64-stp.ll │ │ │ │ ├── arm64-strict-align.ll │ │ │ │ ├── arm64-stur.ll │ │ │ │ ├── arm64-subsections.ll │ │ │ │ ├── arm64-subvector-extend.ll │ │ │ │ ├── arm64-summary-remarks.ll │ │ │ │ ├── arm64-swizzle-tbl-i16-layout.ll │ │ │ │ ├── arm64-tbl.ll │ │ │ │ ├── arm64-this-return.ll │ │ │ │ ├── arm64-tls-darwin.ll │ │ │ │ ├── arm64-tls-dynamic-together.ll │ │ │ │ ├── arm64-tls-dynamics.ll │ │ │ │ ├── arm64-tls-execs.ll │ │ │ │ ├── arm64-trap.ll │ │ │ │ ├── arm64-triv-disjoint-mem-access.ll │ │ │ │ ├── arm64-trn.ll │ │ │ │ ├── arm64-trunc-store.ll │ │ │ │ ├── arm64-umaxv.ll │ │ │ │ ├── arm64-uminv.ll │ │ │ │ ├── arm64-umov.ll │ │ │ │ ├── arm64-unaligned_ldst.ll │ │ │ │ ├── arm64-uzp.ll │ │ │ │ ├── arm64-vaargs.ll │ │ │ │ ├── arm64-vabs.ll │ │ │ │ ├── arm64-vadd.ll │ │ │ │ ├── arm64-vaddlv.ll │ │ │ │ ├── arm64-vaddv.ll │ │ │ │ ├── arm64-variadic-aapcs.ll │ │ │ │ ├── arm64-vbitwise.ll │ │ │ │ ├── arm64-vclz.ll │ │ │ │ ├── arm64-vcmp.ll │ │ │ │ ├── arm64-vcnt.ll │ │ │ │ ├── arm64-vcombine.ll │ │ │ │ ├── arm64-vcvt.ll │ │ │ │ ├── arm64-vcvt_f.ll │ │ │ │ ├── arm64-vcvt_f32_su32.ll │ │ │ │ ├── arm64-vcvt_n.ll │ │ │ │ ├── arm64-vcvt_su32_f32.ll │ │ │ │ ├── arm64-vcvtxd_f32_f64.ll │ │ │ │ ├── arm64-vecCmpBr.ll │ │ │ │ ├── arm64-vecFold.ll │ │ │ │ ├── arm64-vector-ext.ll │ │ │ │ ├── arm64-vector-imm.ll │ │ │ │ ├── arm64-vector-insertion.ll │ │ │ │ ├── arm64-vector-ldst.ll │ │ │ │ ├── arm64-vext.ll │ │ │ │ ├── arm64-vext_reverse.ll │ │ │ │ ├── arm64-vfloatintrinsics.ll │ │ │ │ ├── arm64-vhadd.ll │ │ │ │ ├── arm64-vhsub.ll │ │ │ │ ├── arm64-virtual_base.ll │ │ │ │ ├── arm64-vmax.ll │ │ │ │ ├── arm64-vminmaxnm.ll │ │ │ │ ├── arm64-vmovn.ll │ │ │ │ ├── arm64-vmul.ll │ │ │ │ ├── arm64-volatile.ll │ │ │ │ ├── arm64-vpopcnt.ll │ │ │ │ ├── arm64-vqadd.ll │ │ │ │ ├── arm64-vqsub.ll │ │ │ │ ├── arm64-vselect.ll │ │ │ │ ├── arm64-vsetcc_fp.ll │ │ │ │ ├── arm64-vshift.ll │ │ │ │ ├── arm64-vshr.ll │ │ │ │ ├── arm64-vshuffle.ll │ │ │ │ ├── arm64-vsqrt.ll │ │ │ │ ├── arm64-vsra.ll │ │ │ │ ├── arm64-vsub.ll │ │ │ │ ├── arm64-weak-reference.ll │ │ │ │ ├── arm64-xaluo.ll │ │ │ │ ├── arm64-zero-cycle-regmov.ll │ │ │ │ ├── arm64-zero-cycle-zeroing.ll │ │ │ │ ├── arm64-zeroreg.ll │ │ │ │ ├── arm64-zext.ll │ │ │ │ ├── arm64-zextload-unscaled.ll │ │ │ │ ├── arm64-zip.ll │ │ │ │ ├── asm-large-immediate.ll │ │ │ │ ├── asm-print-comments.ll │ │ │ │ ├── assertion-rc-mismatch.ll │ │ │ │ ├── atomic-ops-lse.ll │ │ │ │ ├── atomic-ops-not-barriers.ll │ │ │ │ ├── atomic-ops.ll │ │ │ │ ├── basic-pic.ll │ │ │ │ ├── bics.ll │ │ │ │ ├── bitcast-v2i8.ll │ │ │ │ ├── bitcast.ll │ │ │ │ ├── bitfield-extract.ll │ │ │ │ ├── bitfield-insert-0.ll │ │ │ │ ├── bitfield-insert.ll │ │ │ │ ├── bitfield.ll │ │ │ │ ├── bitreverse.ll │ │ │ │ ├── blockaddress.ll │ │ │ │ ├── bool-loads.ll │ │ │ │ ├── br-cond-not-merge.ll │ │ │ │ ├── br-to-eh-lpad.ll │ │ │ │ ├── br-undef-cond.ll │ │ │ │ ├── branch-folder-merge-mmos.ll │ │ │ │ ├── branch-relax-alignment.ll │ │ │ │ ├── branch-relax-asm.ll │ │ │ │ ├── branch-relax-bcc.ll │ │ │ │ ├── branch-relax-cbz.ll │ │ │ │ ├── breg.ll │ │ │ │ ├── bswap-known-bits.ll │ │ │ │ ├── callee-save.ll │ │ │ │ ├── ccmp-successor-probs.mir │ │ │ │ ├── cfi_restore.mir │ │ │ │ ├── chkstk.ll │ │ │ │ ├── cmp-const-max.ll │ │ │ │ ├── cmp-frameindex.ll │ │ │ │ ├── cmpwithshort.ll │ │ │ │ ├── cmpxchg-O0.ll │ │ │ │ ├── cmpxchg-idioms.ll │ │ │ │ ├── code-model-large-abs.ll │ │ │ │ ├── combine-and-like.ll │ │ │ │ ├── combine-comparisons-by-cse.ll │ │ │ │ ├── compare-branch.ll │ │ │ │ ├── compiler-ident.ll │ │ │ │ ├── complex-copy-noneon.ll │ │ │ │ ├── complex-fp-to-int.ll │ │ │ │ ├── complex-int-to-fp.ll │ │ │ │ ├── concat_vector-scalar-combine.ll │ │ │ │ ├── concat_vector-truncate-combine.ll │ │ │ │ ├── concat_vector-truncated-scalar-combine.ll │ │ │ │ ├── cond-br-tuning.ll │ │ │ │ ├── cond-sel-value-prop.ll │ │ │ │ ├── cond-sel.ll │ │ │ │ ├── cpus.ll │ │ │ │ ├── csel-zero-float.ll │ │ │ │ ├── cxx-tlscc.ll │ │ │ │ ├── dag-combine-invaraints.ll │ │ │ │ ├── dag-combine-mul-shl.ll │ │ │ │ ├── dag-combine-select.ll │ │ │ │ ├── dag-numsignbits.ll │ │ │ │ ├── directcond.ll │ │ │ │ ├── div_minsize.ll │ │ │ │ ├── divrem.ll │ │ │ │ ├── dllexport.ll │ │ │ │ ├── dllimport.ll │ │ │ │ ├── dont-take-over-the-world.ll │ │ │ │ ├── dp-3source.ll │ │ │ │ ├── dp1.ll │ │ │ │ ├── dp2.ll │ │ │ │ ├── dwarf-cfi.ll │ │ │ │ ├── eliminate-trunc.ll │ │ │ │ ├── emutls.ll │ │ │ │ ├── emutls_generic.ll │ │ │ │ ├── eon.ll │ │ │ │ ├── extern-weak.ll │ │ │ │ ├── extract.ll │ │ │ │ ├── f16-convert.ll │ │ │ │ ├── f16-imm.ll │ │ │ │ ├── f16-instructions.ll │ │ │ │ ├── fadd-combines.ll │ │ │ │ ├── falkor-hwpf-fix.ll │ │ │ │ ├── falkor-hwpf-fix.mir │ │ │ │ ├── falkor-hwpf.ll │ │ │ │ ├── fast-isel-address-extends.ll │ │ │ │ ├── fast-isel-addressing-modes.ll │ │ │ │ ├── fast-isel-assume.ll │ │ │ │ ├── fast-isel-atomic.ll │ │ │ │ ├── fast-isel-branch-cond-mask.ll │ │ │ │ ├── fast-isel-branch-cond-split.ll │ │ │ │ ├── fast-isel-branch_weights.ll │ │ │ │ ├── fast-isel-call-return.ll │ │ │ │ ├── fast-isel-cbz.ll │ │ │ │ ├── fast-isel-cmp-branch.ll │ │ │ │ ├── fast-isel-cmp-vec.ll │ │ │ │ ├── fast-isel-cmpxchg.ll │ │ │ │ ├── fast-isel-folded-shift.ll │ │ │ │ ├── fast-isel-folding.ll │ │ │ │ ├── fast-isel-gep.ll │ │ │ │ ├── fast-isel-int-ext.ll │ │ │ │ ├── fast-isel-int-ext2.ll │ │ │ │ ├── fast-isel-int-ext3.ll │ │ │ │ ├── fast-isel-int-ext4.ll │ │ │ │ ├── fast-isel-int-ext5.ll │ │ │ │ ├── fast-isel-intrinsic.ll │ │ │ │ ├── fast-isel-logic-op.ll │ │ │ │ ├── fast-isel-memcpy.ll │ │ │ │ ├── fast-isel-mul.ll │ │ │ │ ├── fast-isel-runtime-libcall.ll │ │ │ │ ├── fast-isel-sdiv.ll │ │ │ │ ├── fast-isel-select.ll │ │ │ │ ├── fast-isel-shift.ll │ │ │ │ ├── fast-isel-sp-adjust.ll │ │ │ │ ├── fast-isel-sqrt.ll │ │ │ │ ├── fast-isel-switch-phi.ll │ │ │ │ ├── fast-isel-tail-call.ll │ │ │ │ ├── fast-isel-tbz.ll │ │ │ │ ├── fast-isel-trunc.ll │ │ │ │ ├── fast-isel-vector-arithmetic.ll │ │ │ │ ├── fast-isel-vret.ll │ │ │ │ ├── fast-regalloc-empty-bb-with-liveins.mir │ │ │ │ ├── fastcc-reserved.ll │ │ │ │ ├── fastcc.ll │ │ │ │ ├── fcmp.ll │ │ │ │ ├── fcopysign.ll │ │ │ │ ├── fcsel-zero.ll │ │ │ │ ├── fcvt-fixed.ll │ │ │ │ ├── fcvt-int.ll │ │ │ │ ├── fcvt_combine.ll │ │ │ │ ├── fdiv-combine.ll │ │ │ │ ├── fdiv_combine.ll │ │ │ │ ├── fence-singlethread.ll │ │ │ │ ├── flags-multiuse.ll │ │ │ │ ├── floatdp_1source.ll │ │ │ │ ├── floatdp_2source.ll │ │ │ │ ├── fold-constants.ll │ │ │ │ ├── fp-cond-sel.ll │ │ │ │ ├── fp-dp3.ll │ │ │ │ ├── fp128-folding.ll │ │ │ │ ├── fp16-v16-instructions.ll │ │ │ │ ├── fp16-v4-instructions.ll │ │ │ │ ├── fp16-v8-instructions.ll │ │ │ │ ├── fp16-vector-bitcast.ll │ │ │ │ ├── fp16-vector-load-store.ll │ │ │ │ ├── fp16-vector-nvcast.ll │ │ │ │ ├── fp16-vector-shuffle.ll │ │ │ │ ├── fpconv-vector-op-scalarize.ll │ │ │ │ ├── fpimm.ll │ │ │ │ ├── fptouint-i8-zext.ll │ │ │ │ ├── frameaddr.ll │ │ │ │ ├── free-zext.ll │ │ │ │ ├── func-argpassing.ll │ │ │ │ ├── func-calls.ll │ │ │ │ ├── funcptr_cast.ll │ │ │ │ ├── function-subtarget-features.ll │ │ │ │ ├── gep-nullptr.ll │ │ │ │ ├── ghc-cc.ll │ │ │ │ ├── global-alignment.ll │ │ │ │ ├── global-merge-1.ll │ │ │ │ ├── global-merge-2.ll │ │ │ │ ├── global-merge-3.ll │ │ │ │ ├── global-merge-4.ll │ │ │ │ ├── global-merge-group-by-use.ll │ │ │ │ ├── global-merge-ignore-single-use-minsize.ll │ │ │ │ ├── global-merge-ignore-single-use.ll │ │ │ │ ├── global-merge.ll │ │ │ │ ├── got-abuse.ll │ │ │ │ ├── half.ll │ │ │ │ ├── hints.ll │ │ │ │ ├── i1-contents.ll │ │ │ │ ├── i128-align.ll │ │ │ │ ├── i128-fast-isel-fallback.ll │ │ │ │ ├── ifcvt-select.ll │ │ │ │ ├── illegal-float-ops.ll │ │ │ │ ├── implicit-sret.ll │ │ │ │ ├── init-array.ll │ │ │ │ ├── inline-asm-constraints-badI.ll │ │ │ │ ├── inline-asm-constraints-badK.ll │ │ │ │ ├── inline-asm-constraints-badK2.ll │ │ │ │ ├── inline-asm-constraints-badL.ll │ │ │ │ ├── inline-asm-globaladdress.ll │ │ │ │ ├── inlineasm-X-allocation.ll │ │ │ │ ├── inlineasm-X-constraint.ll │ │ │ │ ├── inlineasm-ldr-pseudo.ll │ │ │ │ ├── intrinsics-memory-barrier.ll │ │ │ │ ├── jump-table.ll │ │ │ │ ├── large-consts.ll │ │ │ │ ├── large_shift.ll │ │ │ │ ├── ldp-stp-scaled-unscaled-pairs.ll │ │ │ │ ├── ldst-opt-aa.mir │ │ │ │ ├── ldst-opt-zr-clobber.mir │ │ │ │ ├── ldst-opt.ll │ │ │ │ ├── ldst-opt.mir │ │ │ │ ├── ldst-paired-aliasing.ll │ │ │ │ ├── ldst-regoffset.ll │ │ │ │ ├── ldst-unscaledimm.ll │ │ │ │ ├── ldst-unsignedimm.ll │ │ │ │ ├── ldst-zero.ll │ │ │ │ ├── legalize-bug-bogus-cpu.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── literal_pools_float.ll │ │ │ │ ├── live-interval-analysis.mir │ │ │ │ ├── load-combine-big-endian.ll │ │ │ │ ├── load-combine.ll │ │ │ │ ├── local_vars.ll │ │ │ │ ├── logical-imm.ll │ │ │ │ ├── logical_shifted_reg.ll │ │ │ │ ├── loh.mir │ │ │ │ ├── loop-micro-op-buffer-size-t99.ll │ │ │ │ ├── loopvectorize_pr33804_double.ll │ │ │ │ ├── lower-range-metadata-func-call.ll │ │ │ │ ├── machine-combiner-madd.ll │ │ │ │ ├── machine-combiner.ll │ │ │ │ ├── machine-combiner.mir │ │ │ │ ├── machine-copy-prop.ll │ │ │ │ ├── machine-copy-remove.ll │ │ │ │ ├── machine-copy-remove.mir │ │ │ │ ├── machine-dead-copy.mir │ │ │ │ ├── machine-outliner-remarks.ll │ │ │ │ ├── machine-outliner.ll │ │ │ │ ├── machine-outliner.mir │ │ │ │ ├── machine-scheduler.mir │ │ │ │ ├── machine-sink-kill-flags.ll │ │ │ │ ├── machine-sink-zr.mir │ │ │ │ ├── machine-zero-copy-remove.mir │ │ │ │ ├── machine_cse.ll │ │ │ │ ├── machine_cse_impdef_killflags.ll │ │ │ │ ├── macho-global-symbols.ll │ │ │ │ ├── madd-combiner.ll │ │ │ │ ├── madd-lohi.ll │ │ │ │ ├── mature-mc-support.ll │ │ │ │ ├── max-jump-table.ll │ │ │ │ ├── memcpy-f128.ll │ │ │ │ ├── merge-store-dependency.ll │ │ │ │ ├── merge-store.ll │ │ │ │ ├── mergestores_noimplicitfloat.ll │ │ │ │ ├── min-jump-table.ll │ │ │ │ ├── minmax-of-minmax.ll │ │ │ │ ├── minmax.ll │ │ │ │ ├── misched-fusion-aes.ll │ │ │ │ ├── misched-fusion-lit.ll │ │ │ │ ├── misched-fusion.ll │ │ │ │ ├── misched-stp.ll │ │ │ │ ├── movimm-wzr.mir │ │ │ │ ├── movw-consts.ll │ │ │ │ ├── movw-shift-encoding.ll │ │ │ │ ├── mul-lohi.ll │ │ │ │ ├── mul_pow2.ll │ │ │ │ ├── neg-imm.ll │ │ │ │ ├── neon-bitcast.ll │ │ │ │ ├── neon-bitwise-instructions.ll │ │ │ │ ├── neon-compare-instructions.ll │ │ │ │ ├── neon-diagnostics.ll │ │ │ │ ├── neon-extract.ll │ │ │ │ ├── neon-fma-FMF.ll │ │ │ │ ├── neon-fma.ll │ │ │ │ ├── neon-fpround_f128.ll │ │ │ │ ├── neon-idiv.ll │ │ │ │ ├── neon-inline-asm-16-bit-fp.ll │ │ │ │ ├── neon-mla-mls.ll │ │ │ │ ├── neon-mov.ll │ │ │ │ ├── neon-or-combine.ll │ │ │ │ ├── neon-perm.ll │ │ │ │ ├── neon-scalar-by-elem-fma.ll │ │ │ │ ├── neon-scalar-copy.ll │ │ │ │ ├── neon-shift-left-long.ll │ │ │ │ ├── neon-truncStore-extLoad.ll │ │ │ │ ├── nest-register.ll │ │ │ │ ├── no-fp-asm-clobbers-crash.ll │ │ │ │ ├── no-quad-ldp-stp.ll │ │ │ │ ├── nonlazybind.ll │ │ │ │ ├── nontemporal.ll │ │ │ │ ├── nzcv-save.ll │ │ │ │ ├── optimize-cond-branch.ll │ │ │ │ ├── optimize-imm.ll │ │ │ │ ├── or-combine.ll │ │ │ │ ├── paired-load.ll │ │ │ │ ├── phi-dbg.ll │ │ │ │ ├── pic-eh-stubs.ll │ │ │ │ ├── pie.ll │ │ │ │ ├── postra-mi-sched.ll │ │ │ │ ├── pr27816.ll │ │ │ │ ├── pr33172.ll │ │ │ │ ├── preferred-alignment.ll │ │ │ │ ├── preferred-function-alignment.ll │ │ │ │ ├── prefixdata.ll │ │ │ │ ├── preserve_mostcc.ll │ │ │ │ ├── print-mrs-system-register.ll │ │ │ │ ├── prologue-epilogue-remarks.mir │ │ │ │ ├── ragreedy-csr.ll │ │ │ │ ├── rbit.ll │ │ │ │ ├── readcyclecounter.ll │ │ │ │ ├── recp-fastmath.ll │ │ │ │ ├── redundant-copy-elim-empty-mbb.ll │ │ │ │ ├── reg-scavenge-frame.mir │ │ │ │ ├── regcoal-physreg.mir │ │ │ │ ├── regress-bitcast-formals.ll │ │ │ │ ├── regress-f128csel-flags.ll │ │ │ │ ├── regress-fp128-livein.ll │ │ │ │ ├── regress-tail-livereg.ll │ │ │ │ ├── regress-tblgen-chains.ll │ │ │ │ ├── regress-w29-reserved-with-fp.ll │ │ │ │ ├── rem_crash.ll │ │ │ │ ├── remat-float0.ll │ │ │ │ ├── remat.ll │ │ │ │ ├── returnaddr.ll │ │ │ │ ├── rm_redundant_cmp.ll │ │ │ │ ├── rotate.ll │ │ │ │ ├── round-conv.ll │ │ │ │ ├── sched-past-vector-ldst.ll │ │ │ │ ├── scheduledag-constreg.mir │ │ │ │ ├── sdivpow2.ll │ │ │ │ ├── selectcc-to-shiftand.ll │ │ │ │ ├── selectiondag-order.ll │ │ │ │ ├── setcc-takes-i32.ll │ │ │ │ ├── setcc-type-mismatch.ll │ │ │ │ ├── shrink-wrap.ll │ │ │ │ ├── sibling-call.ll │ │ │ │ ├── simple-macho.ll │ │ │ │ ├── sincos-expansion.ll │ │ │ │ ├── sincospow-vector-expansion.ll │ │ │ │ ├── sitofp-fixed-legal.ll │ │ │ │ ├── special-reg.ll │ │ │ │ ├── spill-fold.ll │ │ │ │ ├── spill-undef.mir │ │ │ │ ├── sqrt-fastmath.ll │ │ │ │ ├── stack-guard-remat-bitcast.ll │ │ │ │ ├── stack-protector-target.ll │ │ │ │ ├── stack_guard_remat.ll │ │ │ │ ├── stackmap-frame-setup.ll │ │ │ │ ├── stackmap-liveness.ll │ │ │ │ ├── store_merge_pair_offset.ll │ │ │ │ ├── strqro.ll │ │ │ │ ├── subs-to-sub-opt.ll │ │ │ │ ├── swift-error.ll │ │ │ │ ├── swift-return.ll │ │ │ │ ├── swiftcc.ll │ │ │ │ ├── swifterror.ll │ │ │ │ ├── swiftself-scavenger.ll │ │ │ │ ├── swiftself.ll │ │ │ │ ├── tail-call.ll │ │ │ │ ├── tailcall-ccmismatch.ll │ │ │ │ ├── tailcall-explicit-sret.ll │ │ │ │ ├── tailcall-fastisel.ll │ │ │ │ ├── tailcall-implicit-sret.ll │ │ │ │ ├── tailcall-mem-intrinsics.ll │ │ │ │ ├── tailcall-string-rvo.ll │ │ │ │ ├── tailcall_misched_graph.ll │ │ │ │ ├── tailmerging_in_mbp.ll │ │ │ │ ├── tbi.ll │ │ │ │ ├── tbz-tbnz.ll │ │ │ │ ├── trunc-v1i64.ll │ │ │ │ ├── tst-br.ll │ │ │ │ ├── vcvt-oversize.ll │ │ │ │ ├── vector-fcopysign.ll │ │ │ │ ├── vector_merge_dep_check.ll │ │ │ │ ├── win64_vararg.ll │ │ │ │ ├── xbfiz.ll │ │ │ │ ├── xray-attribute-instrumentation.ll │ │ │ │ ├── xray-tail-call-sled.ll │ │ │ │ └── zero-reg.ll │ │ │ ├── AMDGPU │ │ │ │ ├── 32-bit-local-address-space.ll │ │ │ │ ├── GlobalISel │ │ │ │ │ ├── amdgpu-irtranslator.ll │ │ │ │ │ ├── inst-select-load-flat.mir │ │ │ │ │ ├── inst-select-load-smrd.mir │ │ │ │ │ ├── inst-select-store-flat.mir │ │ │ │ │ ├── irtranslator-amdgpu_vs.ll │ │ │ │ │ ├── legalize-add.mir │ │ │ │ │ ├── legalize-and.mir │ │ │ │ │ ├── legalize-bitcast.mir │ │ │ │ │ ├── legalize-constant.mir │ │ │ │ │ ├── legalize-fadd.mir │ │ │ │ │ ├── legalize-fmul.mir │ │ │ │ │ ├── legalize-icmp.mir │ │ │ │ │ ├── legalize-or.mir │ │ │ │ │ ├── legalize-select.mir │ │ │ │ │ ├── legalize-shl.mir │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── regbankselect.mir │ │ │ │ │ ├── shader-epilogs.ll │ │ │ │ │ └── smrd.ll │ │ │ │ ├── InlineAsmCrash.ll │ │ │ │ ├── README │ │ │ │ ├── add-debug.ll │ │ │ │ ├── add.i16.ll │ │ │ │ ├── add.ll │ │ │ │ ├── add.v2i16.ll │ │ │ │ ├── add_i128.ll │ │ │ │ ├── add_i64.ll │ │ │ │ ├── addrspacecast-captured.ll │ │ │ │ ├── addrspacecast-constantexpr.ll │ │ │ │ ├── addrspacecast.ll │ │ │ │ ├── adjust-writemask-invalid-copy.ll │ │ │ │ ├── alignbit-pat.ll │ │ │ │ ├── always-uniform.ll │ │ │ │ ├── amdgcn.bitcast.ll │ │ │ │ ├── amdgcn.private-memory.ll │ │ │ │ ├── amdgpu-alias-analysis.ll │ │ │ │ ├── amdgpu-codegenprepare-fdiv.ll │ │ │ │ ├── amdgpu-codegenprepare-i16-to-i32.ll │ │ │ │ ├── amdgpu-inline.ll │ │ │ │ ├── amdgpu-shader-calling-convention.ll │ │ │ │ ├── amdgpu.private-memory.ll │ │ │ │ ├── amdgpu.work-item-intrinsics.deprecated.ll │ │ │ │ ├── amdpal-cs.ll │ │ │ │ ├── amdpal-es.ll │ │ │ │ ├── amdpal-gs.ll │ │ │ │ ├── amdpal-hs.ll │ │ │ │ ├── amdpal-ls.ll │ │ │ │ ├── amdpal-ps.ll │ │ │ │ ├── amdpal-psenable.ll │ │ │ │ ├── amdpal-vs.ll │ │ │ │ ├── amdpal.ll │ │ │ │ ├── and-gcn.ll │ │ │ │ ├── and.ll │ │ │ │ ├── annotate-kernel-features-hsa-call.ll │ │ │ │ ├── annotate-kernel-features-hsa.ll │ │ │ │ ├── annotate-kernel-features.ll │ │ │ │ ├── anonymous-gv.ll │ │ │ │ ├── any_extend_vector_inreg.ll │ │ │ │ ├── anyext.ll │ │ │ │ ├── array-ptr-calc-i32.ll │ │ │ │ ├── array-ptr-calc-i64.ll │ │ │ │ ├── ashr.v2i16.ll │ │ │ │ ├── atomic_cmp_swap_local.ll │ │ │ │ ├── atomic_load_add.ll │ │ │ │ ├── atomic_load_sub.ll │ │ │ │ ├── attr-amdgpu-flat-work-group-size.ll │ │ │ │ ├── attr-amdgpu-num-sgpr.ll │ │ │ │ ├── attr-amdgpu-num-vgpr.ll │ │ │ │ ├── attr-amdgpu-waves-per-eu.ll │ │ │ │ ├── attr-unparseable.ll │ │ │ │ ├── barrier-elimination.ll │ │ │ │ ├── basic-branch.ll │ │ │ │ ├── basic-call-return.ll │ │ │ │ ├── basic-loop.ll │ │ │ │ ├── bfe-combine.ll │ │ │ │ ├── bfe-patterns.ll │ │ │ │ ├── bfe_uint.ll │ │ │ │ ├── bfi_int.ll │ │ │ │ ├── bfm.ll │ │ │ │ ├── big_alu.ll │ │ │ │ ├── bitcast-vector-extract.ll │ │ │ │ ├── bitreverse-inline-immediates.ll │ │ │ │ ├── bitreverse.ll │ │ │ │ ├── br_cc.f16.ll │ │ │ │ ├── branch-condition-and.ll │ │ │ │ ├── branch-relax-bundle.ll │ │ │ │ ├── branch-relax-spill.ll │ │ │ │ ├── branch-relaxation.ll │ │ │ │ ├── branch-uniformity.ll │ │ │ │ ├── break-smem-soft-clauses.mir │ │ │ │ ├── break-vmem-soft-clauses.mir │ │ │ │ ├── bswap.ll │ │ │ │ ├── bug-vopc-commute.ll │ │ │ │ ├── build_vector.ll │ │ │ │ ├── byval-frame-setup.ll │ │ │ │ ├── call-argument-types.ll │ │ │ │ ├── call-encoding.ll │ │ │ │ ├── call-graph-register-usage.ll │ │ │ │ ├── call-preserved-registers.ll │ │ │ │ ├── call-return-types.ll │ │ │ │ ├── call_fs.ll │ │ │ │ ├── callee-frame-setup.ll │ │ │ │ ├── callee-special-input-sgprs.ll │ │ │ │ ├── callee-special-input-vgprs.ll │ │ │ │ ├── calling-conventions.ll │ │ │ │ ├── captured-frame-index.ll │ │ │ │ ├── cayman-loop-bug.ll │ │ │ │ ├── cf-loop-on-constant.ll │ │ │ │ ├── cf-stack-bug.ll │ │ │ │ ├── cf_end.ll │ │ │ │ ├── cgp-addressing-modes-flat.ll │ │ │ │ ├── cgp-addressing-modes.ll │ │ │ │ ├── cgp-bitfield-extract.ll │ │ │ │ ├── clamp-modifier.ll │ │ │ │ ├── clamp-omod-special-case.mir │ │ │ │ ├── clamp.ll │ │ │ │ ├── cluster-flat-loads-postra.mir │ │ │ │ ├── cluster-flat-loads.mir │ │ │ │ ├── cndmask-no-def-vcc.ll │ │ │ │ ├── coalescer-subrange-crash.ll │ │ │ │ ├── coalescer-subreg-join.mir │ │ │ │ ├── coalescer_distribute.ll │ │ │ │ ├── coalescer_remat.ll │ │ │ │ ├── codegen-prepare-addrmode-sext.ll │ │ │ │ ├── collapse-endcf.ll │ │ │ │ ├── combine-and-sext-bool.ll │ │ │ │ ├── combine-cond-add-sub.ll │ │ │ │ ├── combine-ftrunc.ll │ │ │ │ ├── combine_vloads.ll │ │ │ │ ├── commute-compares.ll │ │ │ │ ├── commute-shifts.ll │ │ │ │ ├── commute_modifiers.ll │ │ │ │ ├── complex-folding.ll │ │ │ │ ├── concat_vectors.ll │ │ │ │ ├── constant-fold-imm-immreg.mir │ │ │ │ ├── constant-fold-mi-operands.ll │ │ │ │ ├── control-flow-fastregalloc.ll │ │ │ │ ├── control-flow-optnone.ll │ │ │ │ ├── convergent-inlineasm.ll │ │ │ │ ├── copy-illegal-type.ll │ │ │ │ ├── copy-to-reg.ll │ │ │ │ ├── ctlz.ll │ │ │ │ ├── ctlz_zero_undef.ll │ │ │ │ ├── ctpop.ll │ │ │ │ ├── ctpop64.ll │ │ │ │ ├── cttz_zero_undef.ll │ │ │ │ ├── cube.ll │ │ │ │ ├── cvt_f32_ubyte.ll │ │ │ │ ├── cvt_flr_i32_f32.ll │ │ │ │ ├── cvt_rpi_i32_f32.ll │ │ │ │ ├── dagcomb-shuffle-vecextend-non2.ll │ │ │ │ ├── dagcombine-reassociate-bug.ll │ │ │ │ ├── dagcombiner-bug-illegal-vec4-int-to-fp.ll │ │ │ │ ├── dead_copy.mir │ │ │ │ ├── debug-value.ll │ │ │ │ ├── debug.ll │ │ │ │ ├── debugger-emit-prologue.ll │ │ │ │ ├── debugger-insert-nops.ll │ │ │ │ ├── debugger-reserve-regs.ll │ │ │ │ ├── default-fp-mode.ll │ │ │ │ ├── detect-dead-lanes.mir │ │ │ │ ├── disconnected-predset-break-bug.ll │ │ │ │ ├── drop-mem-operand-move-smrd.ll │ │ │ │ ├── ds-combine-large-stride.ll │ │ │ │ ├── ds-negative-offset-addressing-mode-loop.ll │ │ │ │ ├── ds-sub-offset.ll │ │ │ │ ├── ds_read2.ll │ │ │ │ ├── ds_read2_offset_order.ll │ │ │ │ ├── ds_read2_superreg.ll │ │ │ │ ├── ds_read2st64.ll │ │ │ │ ├── ds_write2.ll │ │ │ │ ├── ds_write2st64.ll │ │ │ │ ├── dynamic_stackalloc.ll │ │ │ │ ├── early-if-convert-cost.ll │ │ │ │ ├── early-if-convert.ll │ │ │ │ ├── early-inline-alias.ll │ │ │ │ ├── early-inline.ll │ │ │ │ ├── elf-header.ll │ │ │ │ ├── elf-notes.ll │ │ │ │ ├── elf.ll │ │ │ │ ├── elf.r600.ll │ │ │ │ ├── else.ll │ │ │ │ ├── empty-function.ll │ │ │ │ ├── enable-no-signed-zeros-fp-math.ll │ │ │ │ ├── endcf-loop-header.ll │ │ │ │ ├── endpgm-dce.mir │ │ │ │ ├── enqueue-kernel.ll │ │ │ │ ├── env-amdgiz.ll │ │ │ │ ├── env-amdgizcl.ll │ │ │ │ ├── exceed-max-sgprs.ll │ │ │ │ ├── extend-bit-ops-i16.ll │ │ │ │ ├── extload-align.ll │ │ │ │ ├── extload-private.ll │ │ │ │ ├── extload.ll │ │ │ │ ├── extract-vector-elt-build-vector-combine.ll │ │ │ │ ├── extract_vector_elt-f16.ll │ │ │ │ ├── extract_vector_elt-f64.ll │ │ │ │ ├── extract_vector_elt-i16.ll │ │ │ │ ├── extract_vector_elt-i64.ll │ │ │ │ ├── extract_vector_elt-i8.ll │ │ │ │ ├── extractelt-to-trunc.ll │ │ │ │ ├── fabs.f16.ll │ │ │ │ ├── fabs.f64.ll │ │ │ │ ├── fabs.ll │ │ │ │ ├── fadd-fma-fmul-combine.ll │ │ │ │ ├── fadd.f16.ll │ │ │ │ ├── fadd.ll │ │ │ │ ├── fadd64.ll │ │ │ │ ├── fcanonicalize-elimination.ll │ │ │ │ ├── fcanonicalize.f16.ll │ │ │ │ ├── fcanonicalize.ll │ │ │ │ ├── fceil.ll │ │ │ │ ├── fceil64.ll │ │ │ │ ├── fcmp-cnd.ll │ │ │ │ ├── fcmp-cnde-int-args.ll │ │ │ │ ├── fcmp.f16.ll │ │ │ │ ├── fcmp.ll │ │ │ │ ├── fcmp64.ll │ │ │ │ ├── fconst64.ll │ │ │ │ ├── fcopysign.f16.ll │ │ │ │ ├── fcopysign.f32.ll │ │ │ │ ├── fcopysign.f64.ll │ │ │ │ ├── fdiv.f16.ll │ │ │ │ ├── fdiv.f64.ll │ │ │ │ ├── fdiv.ll │ │ │ │ ├── fence-amdgiz.ll │ │ │ │ ├── fence-barrier.ll │ │ │ │ ├── fetch-limits.r600.ll │ │ │ │ ├── fetch-limits.r700+.ll │ │ │ │ ├── ffloor.f64.ll │ │ │ │ ├── ffloor.ll │ │ │ │ ├── fix-vgpr-copies.mir │ │ │ │ ├── fix-wwm-liveness.mir │ │ │ │ ├── flat-address-space.ll │ │ │ │ ├── flat-for-global-subtarget-feature.ll │ │ │ │ ├── flat-load-clustering.mir │ │ │ │ ├── flat-scratch-reg.ll │ │ │ │ ├── flat_atomics.ll │ │ │ │ ├── flat_atomics_i64.ll │ │ │ │ ├── floor.ll │ │ │ │ ├── fma-combine.ll │ │ │ │ ├── fma.f64.ll │ │ │ │ ├── fma.ll │ │ │ │ ├── fmad.ll │ │ │ │ ├── fmax.ll │ │ │ │ ├── fmax3.f64.ll │ │ │ │ ├── fmax3.ll │ │ │ │ ├── fmax_legacy.f64.ll │ │ │ │ ├── fmax_legacy.ll │ │ │ │ ├── fmaxnum.f64.ll │ │ │ │ ├── fmaxnum.ll │ │ │ │ ├── fmed3.ll │ │ │ │ ├── fmin.ll │ │ │ │ ├── fmin3.ll │ │ │ │ ├── fmin_fmax_legacy.amdgcn.ll │ │ │ │ ├── fmin_legacy.f64.ll │ │ │ │ ├── fmin_legacy.ll │ │ │ │ ├── fminnum.f64.ll │ │ │ │ ├── fminnum.ll │ │ │ │ ├── fmul-2-combine-multi-use.ll │ │ │ │ ├── fmul.f16.ll │ │ │ │ ├── fmul.ll │ │ │ │ ├── fmul64.ll │ │ │ │ ├── fmuladd.f16.ll │ │ │ │ ├── fmuladd.f32.ll │ │ │ │ ├── fmuladd.f64.ll │ │ │ │ ├── fmuladd.v2f16.ll │ │ │ │ ├── fnearbyint.ll │ │ │ │ ├── fneg-combines.ll │ │ │ │ ├── fneg-fabs.f16.ll │ │ │ │ ├── fneg-fabs.f64.ll │ │ │ │ ├── fneg-fabs.ll │ │ │ │ ├── fneg.f16.ll │ │ │ │ ├── fneg.f64.ll │ │ │ │ ├── fneg.ll │ │ │ │ ├── fold-cndmask.mir │ │ │ │ ├── fold-fmul-to-neg-abs.ll │ │ │ │ ├── fold-immediate-output-mods.mir │ │ │ │ ├── fold-operands-order.mir │ │ │ │ ├── fp-classify.ll │ │ │ │ ├── fp16_to_fp32.ll │ │ │ │ ├── fp16_to_fp64.ll │ │ │ │ ├── fp32_to_fp16.ll │ │ │ │ ├── fp_to_sint.f64.ll │ │ │ │ ├── fp_to_sint.ll │ │ │ │ ├── fp_to_uint.f64.ll │ │ │ │ ├── fp_to_uint.ll │ │ │ │ ├── fpext-free.ll │ │ │ │ ├── fpext.f16.ll │ │ │ │ ├── fpext.ll │ │ │ │ ├── fptosi.f16.ll │ │ │ │ ├── fptoui.f16.ll │ │ │ │ ├── fptrunc.f16.ll │ │ │ │ ├── fptrunc.ll │ │ │ │ ├── fract.f64.ll │ │ │ │ ├── fract.ll │ │ │ │ ├── frame-index-amdgiz.ll │ │ │ │ ├── frame-index-elimination.ll │ │ │ │ ├── frem.ll │ │ │ │ ├── fsqrt.f64.ll │ │ │ │ ├── fsqrt.ll │ │ │ │ ├── fsub.f16.ll │ │ │ │ ├── fsub.ll │ │ │ │ ├── fsub64.ll │ │ │ │ ├── ftrunc.f64.ll │ │ │ │ ├── ftrunc.ll │ │ │ │ ├── function-args.ll │ │ │ │ ├── function-returns.ll │ │ │ │ ├── gep-address-space.ll │ │ │ │ ├── global-constant.ll │ │ │ │ ├── global-directive.ll │ │ │ │ ├── global-extload-i16.ll │ │ │ │ ├── global-smrd-unknown.ll │ │ │ │ ├── global-variable-relocs.ll │ │ │ │ ├── global_atomics.ll │ │ │ │ ├── global_atomics_i64.ll │ │ │ │ ├── global_smrd.ll │ │ │ │ ├── global_smrd_cfg.ll │ │ │ │ ├── gv-const-addrspace.ll │ │ │ │ ├── gv-offset-folding.ll │ │ │ │ ├── half.ll │ │ │ │ ├── hazard-inlineasm.mir │ │ │ │ ├── hazard.mir │ │ │ │ ├── hoist-cond.ll │ │ │ │ ├── hsa-default-device.ll │ │ │ │ ├── hsa-fp-mode.ll │ │ │ │ ├── hsa-func-align.ll │ │ │ │ ├── hsa-func.ll │ │ │ │ ├── hsa-globals.ll │ │ │ │ ├── hsa-group-segment.ll │ │ │ │ ├── hsa-metadata-deduce-ro-arg.ll │ │ │ │ ├── hsa-metadata-enqueu-kernel.ll │ │ │ │ ├── hsa-metadata-from-llvm-ir-full.ll │ │ │ │ ├── hsa-metadata-images.ll │ │ │ │ ├── hsa-metadata-invalid-ocl-version-1.ll │ │ │ │ ├── hsa-metadata-invalid-ocl-version-2.ll │ │ │ │ ├── hsa-metadata-invalid-ocl-version-3.ll │ │ │ │ ├── hsa-metadata-kernel-code-props.ll │ │ │ │ ├── hsa-metadata-kernel-debug-props.ll │ │ │ │ ├── hsa-note-no-func.ll │ │ │ │ ├── hsa.ll │ │ │ │ ├── huge-private-buffer.ll │ │ │ │ ├── i1-copy-implicit-def.ll │ │ │ │ ├── i1-copy-phi.ll │ │ │ │ ├── i8-to-double-to-float.ll │ │ │ │ ├── icmp-select-sete-reverse-args.ll │ │ │ │ ├── icmp.i16.ll │ │ │ │ ├── icmp64.ll │ │ │ │ ├── illegal-sgpr-to-vgpr-copy.ll │ │ │ │ ├── image-attributes.ll │ │ │ │ ├── image-resource-id.ll │ │ │ │ ├── imm.ll │ │ │ │ ├── imm16.ll │ │ │ │ ├── immv216.ll │ │ │ │ ├── indirect-addressing-si-noopt.ll │ │ │ │ ├── indirect-addressing-si.ll │ │ │ │ ├── indirect-private-64.ll │ │ │ │ ├── infer-addrpace-pipeline.ll │ │ │ │ ├── infinite-loop-evergreen.ll │ │ │ │ ├── infinite-loop.ll │ │ │ │ ├── inline-asm.ll │ │ │ │ ├── inline-attr.ll │ │ │ │ ├── inline-calls.ll │ │ │ │ ├── inline-constraints.ll │ │ │ │ ├── inlineasm-16.ll │ │ │ │ ├── inlineasm-illegal-type.ll │ │ │ │ ├── inlineasm-packed.ll │ │ │ │ ├── input-mods.ll │ │ │ │ ├── insert-skips-kill-uncond.mir │ │ │ │ ├── insert-waits-callee.mir │ │ │ │ ├── insert-waits-exp.mir │ │ │ │ ├── insert_subreg.ll │ │ │ │ ├── insert_vector_elt.ll │ │ │ │ ├── insert_vector_elt.v2i16.ll │ │ │ │ ├── inserted-wait-states.mir │ │ │ │ ├── internalize.ll │ │ │ │ ├── invalid-addrspacecast.ll │ │ │ │ ├── invariant-load-no-alias-store.ll │ │ │ │ ├── invert-br-undef-vcc.mir │ │ │ │ ├── ipra.ll │ │ │ │ ├── jump-address.ll │ │ │ │ ├── kcache-fold.ll │ │ │ │ ├── kernarg-stack-alignment.ll │ │ │ │ ├── kernel-args.ll │ │ │ │ ├── knownbits-recursion.ll │ │ │ │ ├── large-alloca-compute.ll │ │ │ │ ├── large-alloca-graphics.ll │ │ │ │ ├── large-constant-initializer.ll │ │ │ │ ├── large-work-group-promote-alloca.ll │ │ │ │ ├── lds-alignment.ll │ │ │ │ ├── lds-initializer.ll │ │ │ │ ├── lds-m0-init-in-loop.ll │ │ │ │ ├── lds-oqap-crash.ll │ │ │ │ ├── lds-output-queue.ll │ │ │ │ ├── lds-size.ll │ │ │ │ ├── lds-zero-initializer.ll │ │ │ │ ├── legalizedag-bug-expand-setcc.ll │ │ │ │ ├── limit-coalesce.mir │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── literals.ll │ │ │ │ ├── liveness.mir │ │ │ │ ├── llvm.AMDGPU.kill.ll │ │ │ │ ├── llvm.SI.load.dword.ll │ │ │ │ ├── llvm.SI.tbuffer.store.ll │ │ │ │ ├── llvm.amdgcn.alignb.ll │ │ │ │ ├── llvm.amdgcn.atomic.dec.ll │ │ │ │ ├── llvm.amdgcn.atomic.inc.ll │ │ │ │ ├── llvm.amdgcn.buffer.atomic.ll │ │ │ │ ├── llvm.amdgcn.buffer.load.format.ll │ │ │ │ ├── llvm.amdgcn.buffer.load.ll │ │ │ │ ├── llvm.amdgcn.buffer.store.format.ll │ │ │ │ ├── llvm.amdgcn.buffer.store.ll │ │ │ │ ├── llvm.amdgcn.buffer.wbinvl1.ll │ │ │ │ ├── llvm.amdgcn.buffer.wbinvl1.sc.ll │ │ │ │ ├── llvm.amdgcn.buffer.wbinvl1.vol.ll │ │ │ │ ├── llvm.amdgcn.class.f16.ll │ │ │ │ ├── llvm.amdgcn.class.ll │ │ │ │ ├── llvm.amdgcn.cos.f16.ll │ │ │ │ ├── llvm.amdgcn.cos.ll │ │ │ │ ├── llvm.amdgcn.cubeid.ll │ │ │ │ ├── llvm.amdgcn.cubema.ll │ │ │ │ ├── llvm.amdgcn.cubesc.ll │ │ │ │ ├── llvm.amdgcn.cubetc.ll │ │ │ │ ├── llvm.amdgcn.cvt.pk.i16.ll │ │ │ │ ├── llvm.amdgcn.cvt.pk.u16.ll │ │ │ │ ├── llvm.amdgcn.cvt.pknorm.i16.ll │ │ │ │ ├── llvm.amdgcn.cvt.pknorm.u16.ll │ │ │ │ ├── llvm.amdgcn.cvt.pkrtz.ll │ │ │ │ ├── llvm.amdgcn.dispatch.id.ll │ │ │ │ ├── llvm.amdgcn.dispatch.ptr.ll │ │ │ │ ├── llvm.amdgcn.div.fixup.f16.ll │ │ │ │ ├── llvm.amdgcn.div.fixup.ll │ │ │ │ ├── llvm.amdgcn.div.fmas.ll │ │ │ │ ├── llvm.amdgcn.div.scale.ll │ │ │ │ ├── llvm.amdgcn.ds.bpermute.ll │ │ │ │ ├── llvm.amdgcn.ds.permute.ll │ │ │ │ ├── llvm.amdgcn.ds.swizzle.ll │ │ │ │ ├── llvm.amdgcn.exp.compr.ll │ │ │ │ ├── llvm.amdgcn.exp.ll │ │ │ │ ├── llvm.amdgcn.fcmp.ll │ │ │ │ ├── llvm.amdgcn.fdiv.fast.ll │ │ │ │ ├── llvm.amdgcn.fmed3.f16.ll │ │ │ │ ├── llvm.amdgcn.fmed3.ll │ │ │ │ ├── llvm.amdgcn.fmul.legacy.ll │ │ │ │ ├── llvm.amdgcn.fract.f16.ll │ │ │ │ ├── llvm.amdgcn.fract.ll │ │ │ │ ├── llvm.amdgcn.frexp.exp.f16.ll │ │ │ │ ├── llvm.amdgcn.frexp.exp.ll │ │ │ │ ├── llvm.amdgcn.frexp.mant.f16.ll │ │ │ │ ├── llvm.amdgcn.frexp.mant.ll │ │ │ │ ├── llvm.amdgcn.groupstaticsize.ll │ │ │ │ ├── llvm.amdgcn.icmp.ll │ │ │ │ ├── llvm.amdgcn.image.atomic.ll │ │ │ │ ├── llvm.amdgcn.image.gather4.ll │ │ │ │ ├── llvm.amdgcn.image.getlod.ll │ │ │ │ ├── llvm.amdgcn.image.ll │ │ │ │ ├── llvm.amdgcn.image.sample.ll │ │ │ │ ├── llvm.amdgcn.image.sample.o.ll │ │ │ │ ├── llvm.amdgcn.implicit.buffer.ptr.hsa.ll │ │ │ │ ├── llvm.amdgcn.implicit.buffer.ptr.ll │ │ │ │ ├── llvm.amdgcn.implicitarg.ptr.ll │ │ │ │ ├── llvm.amdgcn.init.exec.ll │ │ │ │ ├── llvm.amdgcn.interp.ll │ │ │ │ ├── llvm.amdgcn.kernarg.segment.ptr.ll │ │ │ │ ├── llvm.amdgcn.kill.ll │ │ │ │ ├── llvm.amdgcn.ldexp.f16.ll │ │ │ │ ├── llvm.amdgcn.ldexp.ll │ │ │ │ ├── llvm.amdgcn.lerp.ll │ │ │ │ ├── llvm.amdgcn.log.clamp.ll │ │ │ │ ├── llvm.amdgcn.mbcnt.ll │ │ │ │ ├── llvm.amdgcn.mov.dpp.ll │ │ │ │ ├── llvm.amdgcn.mqsad.pk.u16.u8.ll │ │ │ │ ├── llvm.amdgcn.mqsad.u32.u8.ll │ │ │ │ ├── llvm.amdgcn.msad.u8.ll │ │ │ │ ├── llvm.amdgcn.ps.live.ll │ │ │ │ ├── llvm.amdgcn.qsad.pk.u16.u8.ll │ │ │ │ ├── llvm.amdgcn.queue.ptr.ll │ │ │ │ ├── llvm.amdgcn.rcp.f16.ll │ │ │ │ ├── llvm.amdgcn.rcp.legacy.ll │ │ │ │ ├── llvm.amdgcn.rcp.ll │ │ │ │ ├── llvm.amdgcn.readfirstlane.ll │ │ │ │ ├── llvm.amdgcn.readlane.ll │ │ │ │ ├── llvm.amdgcn.rsq.clamp.ll │ │ │ │ ├── llvm.amdgcn.rsq.f16.ll │ │ │ │ ├── llvm.amdgcn.rsq.legacy.ll │ │ │ │ ├── llvm.amdgcn.rsq.ll │ │ │ │ ├── llvm.amdgcn.s.barrier.ll │ │ │ │ ├── llvm.amdgcn.s.dcache.inv.ll │ │ │ │ ├── llvm.amdgcn.s.dcache.inv.vol.ll │ │ │ │ ├── llvm.amdgcn.s.dcache.wb.ll │ │ │ │ ├── llvm.amdgcn.s.dcache.wb.vol.ll │ │ │ │ ├── llvm.amdgcn.s.decperflevel.ll │ │ │ │ ├── llvm.amdgcn.s.getpc.ll │ │ │ │ ├── llvm.amdgcn.s.getreg.ll │ │ │ │ ├── llvm.amdgcn.s.incperflevel.ll │ │ │ │ ├── llvm.amdgcn.s.memrealtime.ll │ │ │ │ ├── llvm.amdgcn.s.memtime.ll │ │ │ │ ├── llvm.amdgcn.s.sleep.ll │ │ │ │ ├── llvm.amdgcn.s.waitcnt.ll │ │ │ │ ├── llvm.amdgcn.sad.hi.u8.ll │ │ │ │ ├── llvm.amdgcn.sad.u16.ll │ │ │ │ ├── llvm.amdgcn.sad.u8.ll │ │ │ │ ├── llvm.amdgcn.sbfe.ll │ │ │ │ ├── llvm.amdgcn.sendmsg.ll │ │ │ │ ├── llvm.amdgcn.set.inactive.ll │ │ │ │ ├── llvm.amdgcn.sffbh.ll │ │ │ │ ├── llvm.amdgcn.sin.f16.ll │ │ │ │ ├── llvm.amdgcn.sin.ll │ │ │ │ ├── llvm.amdgcn.tbuffer.load.ll │ │ │ │ ├── llvm.amdgcn.tbuffer.store.ll │ │ │ │ ├── llvm.amdgcn.trig.preop.ll │ │ │ │ ├── llvm.amdgcn.ubfe.ll │ │ │ │ ├── llvm.amdgcn.unreachable.ll │ │ │ │ ├── llvm.amdgcn.update.dpp.ll │ │ │ │ ├── llvm.amdgcn.wave.barrier.ll │ │ │ │ ├── llvm.amdgcn.workgroup.id.ll │ │ │ │ ├── llvm.amdgcn.workitem.id.ll │ │ │ │ ├── llvm.amdgcn.wqm.vote.ll │ │ │ │ ├── llvm.amdgpu.kilp.ll │ │ │ │ ├── llvm.ceil.f16.ll │ │ │ │ ├── llvm.cos.f16.ll │ │ │ │ ├── llvm.cos.ll │ │ │ │ ├── llvm.dbg.value.ll │ │ │ │ ├── llvm.exp2.f16.ll │ │ │ │ ├── llvm.exp2.ll │ │ │ │ ├── llvm.floor.f16.ll │ │ │ │ ├── llvm.fma.f16.ll │ │ │ │ ├── llvm.fmuladd.f16.ll │ │ │ │ ├── llvm.log.f16.ll │ │ │ │ ├── llvm.log.ll │ │ │ │ ├── llvm.log10.f16.ll │ │ │ │ ├── llvm.log10.ll │ │ │ │ ├── llvm.log2.f16.ll │ │ │ │ ├── llvm.log2.ll │ │ │ │ ├── llvm.maxnum.f16.ll │ │ │ │ ├── llvm.memcpy.ll │ │ │ │ ├── llvm.minnum.f16.ll │ │ │ │ ├── llvm.pow.ll │ │ │ │ ├── llvm.r600.cube.ll │ │ │ │ ├── llvm.r600.dot4.ll │ │ │ │ ├── llvm.r600.group.barrier.ll │ │ │ │ ├── llvm.r600.read.local.size.ll │ │ │ │ ├── llvm.r600.recipsqrt.clamped.ll │ │ │ │ ├── llvm.r600.recipsqrt.ieee.ll │ │ │ │ ├── llvm.r600.tex.ll │ │ │ │ ├── llvm.rint.f16.ll │ │ │ │ ├── llvm.rint.f64.ll │ │ │ │ ├── llvm.rint.ll │ │ │ │ ├── llvm.round.f64.ll │ │ │ │ ├── llvm.round.ll │ │ │ │ ├── llvm.sin.f16.ll │ │ │ │ ├── llvm.sin.ll │ │ │ │ ├── llvm.sqrt.f16.ll │ │ │ │ ├── llvm.trunc.f16.ll │ │ │ │ ├── load-constant-f64.ll │ │ │ │ ├── load-constant-i1.ll │ │ │ │ ├── load-constant-i16.ll │ │ │ │ ├── load-constant-i32.ll │ │ │ │ ├── load-constant-i64.ll │ │ │ │ ├── load-constant-i8.ll │ │ │ │ ├── load-global-f32.ll │ │ │ │ ├── load-global-f64.ll │ │ │ │ ├── load-global-i1.ll │ │ │ │ ├── load-global-i16.ll │ │ │ │ ├── load-global-i32.ll │ │ │ │ ├── load-global-i64.ll │ │ │ │ ├── load-global-i8.ll │ │ │ │ ├── load-hi16.ll │ │ │ │ ├── load-input-fold.ll │ │ │ │ ├── load-lo16.ll │ │ │ │ ├── load-local-f32.ll │ │ │ │ ├── load-local-f64.ll │ │ │ │ ├── load-local-i1.ll │ │ │ │ ├── load-local-i16.ll │ │ │ │ ├── load-local-i32.ll │ │ │ │ ├── load-local-i64.ll │ │ │ │ ├── load-local-i8.ll │ │ │ │ ├── load-private-double16-amdgiz.ll │ │ │ │ ├── load-weird-sizes.ll │ │ │ │ ├── local-64.ll │ │ │ │ ├── local-atomics.ll │ │ │ │ ├── local-atomics64.ll │ │ │ │ ├── local-memory.amdgcn.ll │ │ │ │ ├── local-memory.ll │ │ │ │ ├── local-memory.r600.ll │ │ │ │ ├── local-stack-slot-offset.ll │ │ │ │ ├── loop-address.ll │ │ │ │ ├── loop-idiom.ll │ │ │ │ ├── loop_break.ll │ │ │ │ ├── lower-mem-intrinsics.ll │ │ │ │ ├── lower-range-metadata-intrinsic-call.ll │ │ │ │ ├── lshl64-to-32.ll │ │ │ │ ├── lshr.v2i16.ll │ │ │ │ ├── macro-fusion-cluster-vcc-uses.mir │ │ │ │ ├── mad-combine.ll │ │ │ │ ├── mad-mix-hi.ll │ │ │ │ ├── mad-mix-lo.ll │ │ │ │ ├── mad-mix.ll │ │ │ │ ├── mad24-get-global-id.ll │ │ │ │ ├── mad_64_32.ll │ │ │ │ ├── mad_int24.ll │ │ │ │ ├── mad_uint24.ll │ │ │ │ ├── madak.ll │ │ │ │ ├── madmk.ll │ │ │ │ ├── max-literals.ll │ │ │ │ ├── max.i16.ll │ │ │ │ ├── max.ll │ │ │ │ ├── max3.ll │ │ │ │ ├── mem-builtins.ll │ │ │ │ ├── memory-legalizer-atomic-cmpxchg.ll │ │ │ │ ├── memory-legalizer-atomic-fence.ll │ │ │ │ ├── memory-legalizer-atomic-rmw.ll │ │ │ │ ├── memory-legalizer-invalid-syncscope.ll │ │ │ │ ├── memory-legalizer-load.ll │ │ │ │ ├── memory-legalizer-store-infinite-loop.ll │ │ │ │ ├── memory-legalizer-store.ll │ │ │ │ ├── merge-load-store.mir │ │ │ │ ├── merge-m0.mir │ │ │ │ ├── merge-store-crash.ll │ │ │ │ ├── merge-store-usedef.ll │ │ │ │ ├── merge-stores.ll │ │ │ │ ├── mesa_regression.ll │ │ │ │ ├── min.ll │ │ │ │ ├── min3.ll │ │ │ │ ├── misched-killflags.mir │ │ │ │ ├── missing-store.ll │ │ │ │ ├── move-addr64-rsrc-dead-subreg-writes.ll │ │ │ │ ├── move-to-valu-atomicrmw.ll │ │ │ │ ├── move-to-valu-worklist.ll │ │ │ │ ├── movreld-bug.ll │ │ │ │ ├── movrels-bug.mir │ │ │ │ ├── mubuf-offset-private.ll │ │ │ │ ├── mubuf-shader-vgpr.ll │ │ │ │ ├── mubuf.ll │ │ │ │ ├── mul.ll │ │ │ │ ├── mul_int24.ll │ │ │ │ ├── mul_uint24-amdgcn.ll │ │ │ │ ├── mul_uint24-r600.ll │ │ │ │ ├── multi-divergent-exit-region.ll │ │ │ │ ├── multilevel-break.ll │ │ │ │ ├── nested-calls.ll │ │ │ │ ├── nested-loop-conditions.ll │ │ │ │ ├── no-hsa-graphics-shaders.ll │ │ │ │ ├── no-initializer-constant-addrspace.ll │ │ │ │ ├── no-shrink-extloads.ll │ │ │ │ ├── nop-data.ll │ │ │ │ ├── not-scalarize-volatile-load.ll │ │ │ │ ├── nullptr.ll │ │ │ │ ├── omod.ll │ │ │ │ ├── opencl-image-metadata.ll │ │ │ │ ├── operand-folding.ll │ │ │ │ ├── operand-spacing.ll │ │ │ │ ├── opt-sgpr-to-vgpr-copy.mir │ │ │ │ ├── optimize-if-exec-masking.mir │ │ │ │ ├── or.ll │ │ │ │ ├── over-max-lds-size.ll │ │ │ │ ├── pack.v2f16.ll │ │ │ │ ├── pack.v2i16.ll │ │ │ │ ├── packed-op-sel.ll │ │ │ │ ├── packetizer.ll │ │ │ │ ├── parallelandifcollapse.ll │ │ │ │ ├── parallelorifcollapse.ll │ │ │ │ ├── partial-sgpr-to-vgpr-spills.ll │ │ │ │ ├── partially-dead-super-register-immediate.ll │ │ │ │ ├── predicate-dp4.ll │ │ │ │ ├── predicates.ll │ │ │ │ ├── private-access-no-objects.ll │ │ │ │ ├── private-element-size.ll │ │ │ │ ├── private-memory-atomics.ll │ │ │ │ ├── private-memory-r600.ll │ │ │ │ ├── promote-alloca-addrspacecast.ll │ │ │ │ ├── promote-alloca-array-aggregate.ll │ │ │ │ ├── promote-alloca-array-allocation.ll │ │ │ │ ├── promote-alloca-bitcast-function.ll │ │ │ │ ├── promote-alloca-calling-conv.ll │ │ │ │ ├── promote-alloca-globals.ll │ │ │ │ ├── promote-alloca-invariant-markers.ll │ │ │ │ ├── promote-alloca-lifetime.ll │ │ │ │ ├── promote-alloca-mem-intrinsics.ll │ │ │ │ ├── promote-alloca-no-opts.ll │ │ │ │ ├── promote-alloca-padding-size-estimate.ll │ │ │ │ ├── promote-alloca-stored-pointer-value.ll │ │ │ │ ├── promote-alloca-to-lds-icmp.ll │ │ │ │ ├── promote-alloca-to-lds-phi.ll │ │ │ │ ├── promote-alloca-to-lds-select.ll │ │ │ │ ├── promote-alloca-unhandled-intrinsic.ll │ │ │ │ ├── promote-alloca-volatile.ll │ │ │ │ ├── pv-packing.ll │ │ │ │ ├── pv.ll │ │ │ │ ├── r600-constant-array-fixup.ll │ │ │ │ ├── r600-encoding.ll │ │ │ │ ├── r600-export-fix.ll │ │ │ │ ├── r600-infinite-loop-bug-while-reorganizing-vector.ll │ │ │ │ ├── r600-legalize-umax-bug.ll │ │ │ │ ├── r600.alu-limits.ll │ │ │ │ ├── r600.amdgpu-alias-analysis.ll │ │ │ │ ├── r600.bitcast.ll │ │ │ │ ├── r600.global_atomics.ll │ │ │ │ ├── r600.private-memory.ll │ │ │ │ ├── r600.work-item-intrinsics.ll │ │ │ │ ├── r600cfg.ll │ │ │ │ ├── rcp-pattern.ll │ │ │ │ ├── read-register-invalid-subtarget.ll │ │ │ │ ├── read-register-invalid-type-i32.ll │ │ │ │ ├── read-register-invalid-type-i64.ll │ │ │ │ ├── read_register.ll │ │ │ │ ├── readcyclecounter.ll │ │ │ │ ├── readlane_exec0.mir │ │ │ │ ├── reduce-load-width-alignment.ll │ │ │ │ ├── reduce-saveexec.mir │ │ │ │ ├── reduce-store-width-alignment.ll │ │ │ │ ├── reg-coalescer-sched-crash.ll │ │ │ │ ├── regcoal-subrange-join.mir │ │ │ │ ├── regcoalesce-dbg.mir │ │ │ │ ├── regcoalesce-prune.mir │ │ │ │ ├── register-count-comments.ll │ │ │ │ ├── rename-disconnected-bug.ll │ │ │ │ ├── rename-independent-subregs-mac-operands.mir │ │ │ │ ├── rename-independent-subregs.mir │ │ │ │ ├── reorder-stores.ll │ │ │ │ ├── ret.ll │ │ │ │ ├── ret_jump.ll │ │ │ │ ├── rewrite-out-arguments-address-space.ll │ │ │ │ ├── rewrite-out-arguments.ll │ │ │ │ ├── rotl.i64.ll │ │ │ │ ├── rotl.ll │ │ │ │ ├── rotr.i64.ll │ │ │ │ ├── rotr.ll │ │ │ │ ├── rsq.ll │ │ │ │ ├── rv7x0_count3.ll │ │ │ │ ├── s_addk_i32.ll │ │ │ │ ├── s_movk_i32.ll │ │ │ │ ├── s_mulk_i32.ll │ │ │ │ ├── sad.ll │ │ │ │ ├── saddo.ll │ │ │ │ ├── salu-to-valu.ll │ │ │ │ ├── sampler-resource-id.ll │ │ │ │ ├── scalar-store-cache-flush.mir │ │ │ │ ├── scalar_to_vector.ll │ │ │ │ ├── sched-crash-dbg-value.mir │ │ │ │ ├── schedule-fs-loop-nested-if.ll │ │ │ │ ├── schedule-fs-loop-nested.ll │ │ │ │ ├── schedule-fs-loop.ll │ │ │ │ ├── schedule-global-loads.ll │ │ │ │ ├── schedule-if-2.ll │ │ │ │ ├── schedule-if.ll │ │ │ │ ├── schedule-ilp.ll │ │ │ │ ├── schedule-kernel-arg-loads.ll │ │ │ │ ├── schedule-regpressure-limit.ll │ │ │ │ ├── schedule-regpressure-limit2.ll │ │ │ │ ├── schedule-regpressure.mir │ │ │ │ ├── schedule-vs-if-nested-loop-failure.ll │ │ │ │ ├── schedule-vs-if-nested-loop.ll │ │ │ │ ├── scheduler-subrange-crash.ll │ │ │ │ ├── scratch-buffer.ll │ │ │ │ ├── scratch-simple.ll │ │ │ │ ├── sdiv.ll │ │ │ │ ├── sdivrem24.ll │ │ │ │ ├── sdivrem64.ll │ │ │ │ ├── sdwa-gfx9.mir │ │ │ │ ├── sdwa-peephole-instr.mir │ │ │ │ ├── sdwa-peephole.ll │ │ │ │ ├── sdwa-preserve.mir │ │ │ │ ├── sdwa-scalar-ops.mir │ │ │ │ ├── sdwa-vop2-64bit.mir │ │ │ │ ├── select-fabs-fneg-extract-legacy.ll │ │ │ │ ├── select-fabs-fneg-extract.ll │ │ │ │ ├── select-i1.ll │ │ │ │ ├── select-opt.ll │ │ │ │ ├── select-vectors.ll │ │ │ │ ├── select.f16.ll │ │ │ │ ├── select.ll │ │ │ │ ├── select64.ll │ │ │ │ ├── selectcc-cnd.ll │ │ │ │ ├── selectcc-cnde-int.ll │ │ │ │ ├── selectcc-icmp-select-float.ll │ │ │ │ ├── selectcc-opt.ll │ │ │ │ ├── selectcc.ll │ │ │ │ ├── selected-stack-object.ll │ │ │ │ ├── sendmsg-m0-hazard.mir │ │ │ │ ├── set-dx10.ll │ │ │ │ ├── setcc-equivalent.ll │ │ │ │ ├── setcc-fneg-constant.ll │ │ │ │ ├── setcc-opt.ll │ │ │ │ ├── setcc-sext.ll │ │ │ │ ├── setcc.ll │ │ │ │ ├── setcc64.ll │ │ │ │ ├── seto.ll │ │ │ │ ├── setuo.ll │ │ │ │ ├── sext-eliminate.ll │ │ │ │ ├── sext-in-reg-failure-r600.ll │ │ │ │ ├── sext-in-reg.ll │ │ │ │ ├── sgpr-control-flow.ll │ │ │ │ ├── sgpr-copy-duplicate-operand.ll │ │ │ │ ├── sgpr-copy.ll │ │ │ │ ├── sgprcopies.ll │ │ │ │ ├── shared-op-cycle.ll │ │ │ │ ├── shift-and-i128-ubfe.ll │ │ │ │ ├── shift-and-i64-ubfe.ll │ │ │ │ ├── shift-i64-opts.ll │ │ │ │ ├── shl-add-to-add-shl.ll │ │ │ │ ├── shl.ll │ │ │ │ ├── shl.v2i16.ll │ │ │ │ ├── shl_add_constant.ll │ │ │ │ ├── shl_add_ptr.ll │ │ │ │ ├── shrink-add-sub-constant.ll │ │ │ │ ├── shrink-carry.mir │ │ │ │ ├── shrink-vop3-carry-out.mir │ │ │ │ ├── si-annotate-cf-noloop.ll │ │ │ │ ├── si-annotate-cf-unreachable.ll │ │ │ │ ├── si-annotate-cf.ll │ │ │ │ ├── si-annotate-cfg-loop-assert.ll │ │ │ │ ├── si-fix-sgpr-copies.mir │ │ │ │ ├── si-instr-info-correct-implicit-operands.ll │ │ │ │ ├── si-lod-bias.ll │ │ │ │ ├── si-lower-control-flow-kill.ll │ │ │ │ ├── si-lower-control-flow-unreachable-block.ll │ │ │ │ ├── si-scheduler.ll │ │ │ │ ├── si-sgpr-spill.ll │ │ │ │ ├── si-spill-cf.ll │ │ │ │ ├── si-spill-sgpr-stack.ll │ │ │ │ ├── si-triv-disjoint-mem-access.ll │ │ │ │ ├── si-vector-hang.ll │ │ │ │ ├── sibling-call.ll │ │ │ │ ├── sign_extend.ll │ │ │ │ ├── simplify-libcalls.ll │ │ │ │ ├── simplifydemandedbits-recursion.ll │ │ │ │ ├── sint_to_fp.f64.ll │ │ │ │ ├── sint_to_fp.i64.ll │ │ │ │ ├── sint_to_fp.ll │ │ │ │ ├── sitofp.f16.ll │ │ │ │ ├── skip-if-dead.ll │ │ │ │ ├── smed3.ll │ │ │ │ ├── sminmax.ll │ │ │ │ ├── sminmax.v2i16.ll │ │ │ │ ├── smrd-vccz-bug.ll │ │ │ │ ├── smrd.ll │ │ │ │ ├── sopk-compares.ll │ │ │ │ ├── spill-alloc-sgpr-init-bug.ll │ │ │ │ ├── spill-cfg-position.ll │ │ │ │ ├── spill-empty-live-interval.mir │ │ │ │ ├── spill-m0.ll │ │ │ │ ├── spill-scavenge-offset.ll │ │ │ │ ├── spill-to-smem-m0.ll │ │ │ │ ├── spill-wide-sgpr.ll │ │ │ │ ├── split-scalar-i64-add.ll │ │ │ │ ├── split-smrd.ll │ │ │ │ ├── split-vector-memoperand-offsets.ll │ │ │ │ ├── splitkit.mir │ │ │ │ ├── sra.ll │ │ │ │ ├── srem.ll │ │ │ │ ├── srl.ll │ │ │ │ ├── ssubo.ll │ │ │ │ ├── stack-size-overflow.ll │ │ │ │ ├── stack-slot-color-sgpr-vgpr-spills.mir │ │ │ │ ├── store-barrier.ll │ │ │ │ ├── store-global.ll │ │ │ │ ├── store-hi16.ll │ │ │ │ ├── store-local.ll │ │ │ │ ├── store-private.ll │ │ │ │ ├── store-v3i64.ll │ │ │ │ ├── store-vector-ptrs.ll │ │ │ │ ├── store-weird-sizes.ll │ │ │ │ ├── store_typed.ll │ │ │ │ ├── stress-calls.ll │ │ │ │ ├── structurize.ll │ │ │ │ ├── structurize1.ll │ │ │ │ ├── sub.i16.ll │ │ │ │ ├── sub.ll │ │ │ │ ├── sub.v2i16.ll │ │ │ │ ├── subreg-coalescer-crash.ll │ │ │ │ ├── subreg-coalescer-undef-use.ll │ │ │ │ ├── subreg-eliminate-dead.ll │ │ │ │ ├── subreg-intervals.mir │ │ │ │ ├── subreg_interference.mir │ │ │ │ ├── swizzle-export.ll │ │ │ │ ├── syncscopes.ll │ │ │ │ ├── tail-call-cgp.ll │ │ │ │ ├── target-cpu.ll │ │ │ │ ├── tex-clause-antidep.ll │ │ │ │ ├── texture-input-merge.ll │ │ │ │ ├── trap.ll │ │ │ │ ├── trunc-bitcast-vector.ll │ │ │ │ ├── trunc-cmp-constant.ll │ │ │ │ ├── trunc-store-f64-to-f16.ll │ │ │ │ ├── trunc-store-i1.ll │ │ │ │ ├── trunc-store.ll │ │ │ │ ├── trunc-vector-store-assertion-failure.ll │ │ │ │ ├── trunc.ll │ │ │ │ ├── tti-unroll-prefs.ll │ │ │ │ ├── twoaddr-mad.mir │ │ │ │ ├── uaddo.ll │ │ │ │ ├── udiv.ll │ │ │ │ ├── udivrem.ll │ │ │ │ ├── udivrem24.ll │ │ │ │ ├── udivrem64.ll │ │ │ │ ├── uint_to_fp.f64.ll │ │ │ │ ├── uint_to_fp.i64.ll │ │ │ │ ├── uint_to_fp.ll │ │ │ │ ├── uitofp.f16.ll │ │ │ │ ├── umed3.ll │ │ │ │ ├── unaligned-load-store.ll │ │ │ │ ├── undefined-physreg-sgpr-spill.mir │ │ │ │ ├── undefined-subreg-liverange.ll │ │ │ │ ├── unhandled-loop-condition-assertion.ll │ │ │ │ ├── uniform-PHI.ll │ │ │ │ ├── uniform-branch-intrinsic-cond.ll │ │ │ │ ├── uniform-cfg.ll │ │ │ │ ├── uniform-crash.ll │ │ │ │ ├── uniform-loop-inside-nonuniform.ll │ │ │ │ ├── unify-metadata.ll │ │ │ │ ├── unigine-liveness-crash.ll │ │ │ │ ├── unknown-processor.ll │ │ │ │ ├── unroll.ll │ │ │ │ ├── unsupported-calls.ll │ │ │ │ ├── unsupported-cc.ll │ │ │ │ ├── urem.ll │ │ │ │ ├── use-sgpr-multiple-times.ll │ │ │ │ ├── usubo.ll │ │ │ │ ├── v1i64-kernel-arg.ll │ │ │ │ ├── v_cndmask.ll │ │ │ │ ├── v_cvt_pk_u8_f32.ll │ │ │ │ ├── v_mac.ll │ │ │ │ ├── v_mac_f16.ll │ │ │ │ ├── v_madak_f16.ll │ │ │ │ ├── valu-i1.ll │ │ │ │ ├── vccz-corrupt-bug-workaround.mir │ │ │ │ ├── vector-alloca.ll │ │ │ │ ├── vector-extract-insert.ll │ │ │ │ ├── vectorize-global-local.ll │ │ │ │ ├── vertex-fetch-encoding.ll │ │ │ │ ├── vgpr-spill-emergency-stack-slot-compute.ll │ │ │ │ ├── vgpr-spill-emergency-stack-slot.ll │ │ │ │ ├── vi-removed-intrinsics.ll │ │ │ │ ├── vop-shrink-frame-index.mir │ │ │ │ ├── vop-shrink-non-ssa.mir │ │ │ │ ├── vop-shrink.ll │ │ │ │ ├── vselect.ll │ │ │ │ ├── vselect64.ll │ │ │ │ ├── vtx-fetch-branch.ll │ │ │ │ ├── vtx-schedule.ll │ │ │ │ ├── wait.ll │ │ │ │ ├── waitcnt-flat.ll │ │ │ │ ├── waitcnt-looptest.ll │ │ │ │ ├── waitcnt-permute.mir │ │ │ │ ├── waitcnt.mir │ │ │ │ ├── widen-vselect-and-mask.ll │ │ │ │ ├── widen_extending_scalar_loads.ll │ │ │ │ ├── wqm.ll │ │ │ │ ├── wqm.mir │ │ │ │ ├── write-register-vgpr-into-sgpr.ll │ │ │ │ ├── write_register.ll │ │ │ │ ├── wrong-transalu-pos-fix.ll │ │ │ │ ├── xfail.r600.bitcast.ll │ │ │ │ ├── xnor.ll │ │ │ │ ├── xor.ll │ │ │ │ ├── zero_extend.ll │ │ │ │ ├── zext-i64-bit-operand.ll │ │ │ │ └── zext-lid.ll │ │ │ ├── ARC │ │ │ │ ├── alu.ll │ │ │ │ ├── brcc.ll │ │ │ │ ├── call.ll │ │ │ │ ├── ldst.ll │ │ │ │ └── lit.local.cfg │ │ │ ├── ARM │ │ │ │ ├── 2006-11-10-CycleInDAG.ll │ │ │ │ ├── 2007-01-19-InfiniteLoop.ll │ │ │ │ ├── 2007-03-07-CombinerCrash.ll │ │ │ │ ├── 2007-03-13-InstrSched.ll │ │ │ │ ├── 2007-03-21-JoinIntervalsCrash.ll │ │ │ │ ├── 2007-03-27-RegScavengerAssert.ll │ │ │ │ ├── 2007-03-30-RegScavengerAssert.ll │ │ │ │ ├── 2007-04-02-RegScavengerAssert.ll │ │ │ │ ├── 2007-04-03-PEIBug.ll │ │ │ │ ├── 2007-04-03-UndefinedSymbol.ll │ │ │ │ ├── 2007-04-30-CombinerCrash.ll │ │ │ │ ├── 2007-05-03-BadPostIndexedLd.ll │ │ │ │ ├── 2007-05-07-tailmerge-1.ll │ │ │ │ ├── 2007-05-09-tailmerge-2.ll │ │ │ │ ├── 2007-05-14-InlineAsmCstCrash.ll │ │ │ │ ├── 2007-05-14-RegScavengerAssert.ll │ │ │ │ ├── 2007-05-22-tailmerge-3.ll │ │ │ │ ├── 2007-05-23-BadPreIndexedStore.ll │ │ │ │ ├── 2007-08-15-ReuseBug.ll │ │ │ │ ├── 2008-02-04-LocalRegAllocBug.ll │ │ │ │ ├── 2008-02-29-RegAllocLocal.ll │ │ │ │ ├── 2008-03-05-SxtInRegBug.ll │ │ │ │ ├── 2008-03-07-RegScavengerAssert.ll │ │ │ │ ├── 2008-04-04-ScavengerAssert.ll │ │ │ │ ├── 2008-04-10-ScavengerAssert.ll │ │ │ │ ├── 2008-04-11-PHIofImpDef.ll │ │ │ │ ├── 2008-05-19-LiveIntervalsBug.ll │ │ │ │ ├── 2008-05-19-ScavengerAssert.ll │ │ │ │ ├── 2008-07-17-Fdiv.ll │ │ │ │ ├── 2008-07-24-CodeGenPrepCrash.ll │ │ │ │ ├── 2008-08-07-AsmPrintBug.ll │ │ │ │ ├── 2008-09-17-CoalescerBug.ll │ │ │ │ ├── 2008-11-18-ScavengerAssert.ll │ │ │ │ ├── 2009-02-16-SpillerBug.ll │ │ │ │ ├── 2009-02-22-SoftenFloatVaArg.ll │ │ │ │ ├── 2009-02-27-SpillerBug.ll │ │ │ │ ├── 2009-03-07-SpillerBug.ll │ │ │ │ ├── 2009-03-09-AddrModeBug.ll │ │ │ │ ├── 2009-04-06-AsmModifier.ll │ │ │ │ ├── 2009-04-08-AggregateAddr.ll │ │ │ │ ├── 2009-04-08-FREM.ll │ │ │ │ ├── 2009-04-08-FloatUndef.ll │ │ │ │ ├── 2009-04-09-RegScavengerAsm.ll │ │ │ │ ├── 2009-05-05-DAGCombineBug.ll │ │ │ │ ├── 2009-05-07-RegAllocLocal.ll │ │ │ │ ├── 2009-05-11-CodePlacementCrash.ll │ │ │ │ ├── 2009-05-18-InlineAsmMem.ll │ │ │ │ ├── 2009-06-02-ISelCrash.ll │ │ │ │ ├── 2009-06-04-MissingLiveIn.ll │ │ │ │ ├── 2009-06-15-RegScavengerAssert.ll │ │ │ │ ├── 2009-06-19-RegScavengerAssert.ll │ │ │ │ ├── 2009-06-22-CoalescerBug.ll │ │ │ │ ├── 2009-06-30-RegScavengerAssert.ll │ │ │ │ ├── 2009-06-30-RegScavengerAssert2.ll │ │ │ │ ├── 2009-06-30-RegScavengerAssert3.ll │ │ │ │ ├── 2009-06-30-RegScavengerAssert4.ll │ │ │ │ ├── 2009-06-30-RegScavengerAssert5.ll │ │ │ │ ├── 2009-07-01-CommuteBug.ll │ │ │ │ ├── 2009-07-09-asm-p-constraint.ll │ │ │ │ ├── 2009-07-18-RewriterBug.ll │ │ │ │ ├── 2009-07-22-ScavengerAssert.ll │ │ │ │ ├── 2009-07-22-SchedulerAssert.ll │ │ │ │ ├── 2009-07-29-VFP3Registers.ll │ │ │ │ ├── 2009-08-02-RegScavengerAssert-Neon.ll │ │ │ │ ├── 2009-08-04-RegScavengerAssert-2.ll │ │ │ │ ├── 2009-08-04-RegScavengerAssert.ll │ │ │ │ ├── 2009-08-15-RegScavenger-EarlyClobber.ll │ │ │ │ ├── 2009-08-15-RegScavengerAssert.ll │ │ │ │ ├── 2009-08-21-PostRAKill.ll │ │ │ │ ├── 2009-08-21-PostRAKill2.ll │ │ │ │ ├── 2009-08-21-PostRAKill3.ll │ │ │ │ ├── 2009-08-26-ScalarToVector.ll │ │ │ │ ├── 2009-08-27-ScalarToVector.ll │ │ │ │ ├── 2009-08-29-ExtractEltf32.ll │ │ │ │ ├── 2009-08-29-TooLongSplat.ll │ │ │ │ ├── 2009-08-31-LSDA-Name.ll │ │ │ │ ├── 2009-08-31-TwoRegShuffle.ll │ │ │ │ ├── 2009-09-09-AllOnes.ll │ │ │ │ ├── 2009-09-09-fpcmp-ole.ll │ │ │ │ ├── 2009-09-10-postdec.ll │ │ │ │ ├── 2009-09-13-InvalidSubreg.ll │ │ │ │ ├── 2009-09-13-InvalidSuperReg.ll │ │ │ │ ├── 2009-09-20-LiveIntervalsBug.ll │ │ │ │ ├── 2009-09-21-LiveVariablesBug.ll │ │ │ │ ├── 2009-09-22-LiveVariablesBug.ll │ │ │ │ ├── 2009-09-23-LiveVariablesBug.ll │ │ │ │ ├── 2009-09-24-spill-align.ll │ │ │ │ ├── 2009-09-27-CoalescerBug.ll │ │ │ │ ├── 2009-09-28-LdStOptiBug.ll │ │ │ │ ├── 2009-10-02-NEONSubregsBug.ll │ │ │ │ ├── 2009-10-16-Scope.ll │ │ │ │ ├── 2009-10-27-double-align.ll │ │ │ │ ├── 2009-10-30.ll │ │ │ │ ├── 2009-11-01-NeonMoves.ll │ │ │ │ ├── 2009-11-02-NegativeLane.ll │ │ │ │ ├── 2009-11-07-SubRegAsmPrinting.ll │ │ │ │ ├── 2009-11-13-CoalescerCrash.ll │ │ │ │ ├── 2009-11-13-ScavengerAssert.ll │ │ │ │ ├── 2009-11-13-ScavengerAssert2.ll │ │ │ │ ├── 2009-11-13-VRRewriterCrash.ll │ │ │ │ ├── 2009-11-30-LiveVariablesBug.ll │ │ │ │ ├── 2009-12-02-vtrn-undef.ll │ │ │ │ ├── 2010-03-04-eabi-fp-spill.ll │ │ │ │ ├── 2010-03-04-stm-undef-addr.ll │ │ │ │ ├── 2010-03-18-ldm-rtrn.ll │ │ │ │ ├── 2010-04-09-NeonSelect.ll │ │ │ │ ├── 2010-04-13-v2f64SplitArg.ll │ │ │ │ ├── 2010-04-14-SplitVector.ll │ │ │ │ ├── 2010-04-15-ScavengerDebugValue.ll │ │ │ │ ├── 2010-05-14-IllegalType.ll │ │ │ │ ├── 2010-05-17-FastAllocCrash.ll │ │ │ │ ├── 2010-05-18-LocalAllocCrash.ll │ │ │ │ ├── 2010-05-18-PostIndexBug.ll │ │ │ │ ├── 2010-05-19-Shuffles.ll │ │ │ │ ├── 2010-05-20-NEONSpillCrash.ll │ │ │ │ ├── 2010-05-21-BuildVector.ll │ │ │ │ ├── 2010-06-11-vmovdrr-bitcast.ll │ │ │ │ ├── 2010-06-21-LdStMultipleBug.ll │ │ │ │ ├── 2010-06-21-nondarwin-tc.ll │ │ │ │ ├── 2010-06-25-Thumb2ITInvalidIterator.ll │ │ │ │ ├── 2010-06-29-PartialRedefFastAlloc.ll │ │ │ │ ├── 2010-06-29-SubregImpDefs.ll │ │ │ │ ├── 2010-07-26-GlobalMerge.ll │ │ │ │ ├── 2010-08-04-EHCrash.ll │ │ │ │ ├── 2010-08-04-StackVariable.ll │ │ │ │ ├── 2010-09-21-OptCmpBug.ll │ │ │ │ ├── 2010-10-25-ifcvt-ldm.ll │ │ │ │ ├── 2010-11-15-SpillEarlyClobber.ll │ │ │ │ ├── 2010-11-29-PrologueBug.ll │ │ │ │ ├── 2010-12-07-PEIBug.ll │ │ │ │ ├── 2010-12-08-tpsoft.ll │ │ │ │ ├── 2010-12-15-elf-lcomm.ll │ │ │ │ ├── 2010-12-17-LocalStackSlotCrash.ll │ │ │ │ ├── 2011-01-19-MergedGlobalDbg.ll │ │ │ │ ├── 2011-02-04-AntidepMultidef.ll │ │ │ │ ├── 2011-02-07-AntidepClobber.ll │ │ │ │ ├── 2011-03-10-DAGCombineCrash.ll │ │ │ │ ├── 2011-03-15-LdStMultipleBug.ll │ │ │ │ ├── 2011-03-23-PeepholeBug.ll │ │ │ │ ├── 2011-04-07-schediv.ll │ │ │ │ ├── 2011-04-11-MachineLICMBug.ll │ │ │ │ ├── 2011-04-12-AlignBug.ll │ │ │ │ ├── 2011-04-12-FastRegAlloc.ll │ │ │ │ ├── 2011-04-15-AndVFlagPeepholeBug.ll │ │ │ │ ├── 2011-04-15-RegisterCmpPeephole.ll │ │ │ │ ├── 2011-04-26-SchedTweak.ll │ │ │ │ ├── 2011-04-27-IfCvtBug.ll │ │ │ │ ├── 2011-05-04-MultipleLandingPadSuccs.ll │ │ │ │ ├── 2011-06-09-TailCallByVal.ll │ │ │ │ ├── 2011-06-16-TailCallByVal.ll │ │ │ │ ├── 2011-06-29-MergeGlobalsAlign.ll │ │ │ │ ├── 2011-07-10-GlobalMergeBug.ll │ │ │ │ ├── 2011-08-02-MergedGlobalDbg.ll │ │ │ │ ├── 2011-08-12-vmovqqqq-pseudo.ll │ │ │ │ ├── 2011-08-25-ldmia_ret.ll │ │ │ │ ├── 2011-08-29-SchedCycle.ll │ │ │ │ ├── 2011-08-29-ldr_pre_imm.ll │ │ │ │ ├── 2011-09-09-OddVectorDivision.ll │ │ │ │ ├── 2011-09-19-cpsr.ll │ │ │ │ ├── 2011-09-28-CMovCombineBug.ll │ │ │ │ ├── 2011-10-26-ExpandUnalignedLoadCrash.ll │ │ │ │ ├── 2011-10-26-memset-inline.ll │ │ │ │ ├── 2011-10-26-memset-with-neon.ll │ │ │ │ ├── 2011-11-07-PromoteVectorLoadStore.ll │ │ │ │ ├── 2011-11-09-BitcastVectorDouble.ll │ │ │ │ ├── 2011-11-09-IllegalVectorFPIntConvert.ll │ │ │ │ ├── 2011-11-14-EarlyClobber.ll │ │ │ │ ├── 2011-11-28-DAGCombineBug.ll │ │ │ │ ├── 2011-11-29-128bitArithmetics.ll │ │ │ │ ├── 2011-11-30-MergeAlignment.ll │ │ │ │ ├── 2011-12-14-machine-sink.ll │ │ │ │ ├── 2011-12-19-sjlj-clobber.ll │ │ │ │ ├── 2012-01-23-PostRA-LICM.ll │ │ │ │ ├── 2012-01-24-RegSequenceLiveRange.ll │ │ │ │ ├── 2012-01-26-CoalescerBug.ll │ │ │ │ ├── 2012-01-26-CopyPropKills.ll │ │ │ │ ├── 2012-02-01-CoalescerBug.ll │ │ │ │ ├── 2012-03-05-FPSCR-bug.ll │ │ │ │ ├── 2012-03-13-DAGCombineBug.ll │ │ │ │ ├── 2012-03-26-FoldImmBug.ll │ │ │ │ ├── 2012-04-02-TwoAddrInstrCrash.ll │ │ │ │ ├── 2012-04-10-DAGCombine.ll │ │ │ │ ├── 2012-04-24-SplitEHCriticalEdge.ll │ │ │ │ ├── 2012-05-04-vmov.ll │ │ │ │ ├── 2012-05-10-PreferVMOVtoVDUP32.ll │ │ │ │ ├── 2012-05-29-TailDupBug.ll │ │ │ │ ├── 2012-06-12-SchedMemLatency.ll │ │ │ │ ├── 2012-08-04-DtripleSpillReload.ll │ │ │ │ ├── 2012-08-08-legalize-unaligned.ll │ │ │ │ ├── 2012-08-09-neon-extload.ll │ │ │ │ ├── 2012-08-13-bfi.ll │ │ │ │ ├── 2012-08-23-legalize-vmull.ll │ │ │ │ ├── 2012-08-27-CopyPhysRegCrash.ll │ │ │ │ ├── 2012-08-30-select.ll │ │ │ │ ├── 2012-09-18-ARMv4ISelBug.ll │ │ │ │ ├── 2012-09-25-InlineAsmScalarToVectorConv.ll │ │ │ │ ├── 2012-09-25-InlineAsmScalarToVectorConv2.ll │ │ │ │ ├── 2012-10-04-AAPCS-byval-align8.ll │ │ │ │ ├── 2012-10-04-FixedFrame-vs-byval.ll │ │ │ │ ├── 2012-10-04-LDRB_POST_IMM-Crash.ll │ │ │ │ ├── 2012-10-18-PR14099-ByvalFrameAddress.ll │ │ │ │ ├── 2012-11-14-subs_carry.ll │ │ │ │ ├── 2013-01-21-PR14992.ll │ │ │ │ ├── 2013-02-27-expand-vfma.ll │ │ │ │ ├── 2013-04-05-Small-ByVal-Structs-PR15293.ll │ │ │ │ ├── 2013-04-16-AAPCS-C4-vs-VFP.ll │ │ │ │ ├── 2013-04-16-AAPCS-C5-vs-VFP.ll │ │ │ │ ├── 2013-04-18-load-overlap-PR14824.ll │ │ │ │ ├── 2013-04-21-AAPCS-VA-C.1.cp.ll │ │ │ │ ├── 2013-05-02-AAPCS-ByVal-Structs-C4-C5-VFP.ll │ │ │ │ ├── 2013-05-02-AAPCS-ByVal-Structs-C4-C5-VFP2.ll │ │ │ │ ├── 2013-05-05-IfConvertBug.ll │ │ │ │ ├── 2013-05-07-ByteLoadSameAddress.ll │ │ │ │ ├── 2013-05-13-AAPCS-byval-padding.ll │ │ │ │ ├── 2013-05-13-AAPCS-byval-padding2.ll │ │ │ │ ├── 2013-05-13-DAGCombiner-undef-mask.ll │ │ │ │ ├── 2013-05-31-char-shift-crash.ll │ │ │ │ ├── 2013-06-03-ByVal-2Kbytes.ll │ │ │ │ ├── 2013-07-29-vector-or-combine.ll │ │ │ │ ├── 2013-10-11-select-stalls.ll │ │ │ │ ├── 2013-11-08-inline-asm-neon-array.ll │ │ │ │ ├── 2014-01-09-pseudo_expand_implicit_reg.ll │ │ │ │ ├── 2014-02-05-vfp-regs-after-stack.ll │ │ │ │ ├── 2014-02-21-byval-reg-split-alignment.ll │ │ │ │ ├── 2014-05-14-DwarfEHCrash.ll │ │ │ │ ├── 2014-07-18-earlyclobber-str-post.ll │ │ │ │ ├── 2014-08-04-muls-it.ll │ │ │ │ ├── 2015-01-21-thumbv4t-ldstr-opt.ll │ │ │ │ ├── 2016-05-01-RegScavengerAssert.ll │ │ │ │ ├── 2016-08-24-ARM-LDST-dbginfo-bug.ll │ │ │ │ ├── ARMLoadStoreDBG.mir │ │ │ │ ├── DbgValueOtherTargets.test │ │ │ │ ├── GlobalISel │ │ │ │ │ ├── arm-call-lowering.ll │ │ │ │ │ ├── arm-instruction-select-cmp.mir │ │ │ │ │ ├── arm-instruction-select-combos.mir │ │ │ │ │ ├── arm-instruction-select.mir │ │ │ │ │ ├── arm-irtranslator.ll │ │ │ │ │ ├── arm-isel-divmod.ll │ │ │ │ │ ├── arm-isel-fp.ll │ │ │ │ │ ├── arm-isel-globals-pic.ll │ │ │ │ │ ├── arm-isel-globals-ropi-rwpi.ll │ │ │ │ │ ├── arm-isel-globals-static.ll │ │ │ │ │ ├── arm-isel.ll │ │ │ │ │ ├── arm-legalize-divmod.mir │ │ │ │ │ ├── arm-legalize-fp.mir │ │ │ │ │ ├── arm-legalizer.mir │ │ │ │ │ ├── arm-param-lowering.ll │ │ │ │ │ ├── arm-regbankselect.mir │ │ │ │ │ ├── arm-select-globals-pic.mir │ │ │ │ │ ├── arm-select-globals-ropi-rwpi.mir │ │ │ │ │ ├── arm-select-globals-static.mir │ │ │ │ │ ├── arm-unsupported.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── pr35375.ll │ │ │ │ ├── MachO-subtypes.ll │ │ │ │ ├── MergeConsecutiveStores.ll │ │ │ │ ├── PR15053.ll │ │ │ │ ├── Windows │ │ │ │ │ ├── aapcs.ll │ │ │ │ │ ├── alloca.ll │ │ │ │ │ ├── builtin_longjmp.ll │ │ │ │ │ ├── chkstk-movw-movt-isel.ll │ │ │ │ │ ├── chkstk.ll │ │ │ │ │ ├── dbzchk.ll │ │ │ │ │ ├── division-range.ll │ │ │ │ │ ├── division.ll │ │ │ │ │ ├── dllexport.ll │ │ │ │ │ ├── dllimport.ll │ │ │ │ │ ├── frame-register.ll │ │ │ │ │ ├── global-minsize.ll │ │ │ │ │ ├── hard-float.ll │ │ │ │ │ ├── if-cvt-bundle.ll │ │ │ │ │ ├── libcalls.ll │ │ │ │ │ ├── long-calls.ll │ │ │ │ │ ├── mangling.ll │ │ │ │ │ ├── memset.ll │ │ │ │ │ ├── mov32t-bundling.ll │ │ │ │ │ ├── movw-movt-relocations.ll │ │ │ │ │ ├── no-aeabi.ll │ │ │ │ │ ├── no-eabi.ll │ │ │ │ │ ├── no-ehabi.ll │ │ │ │ │ ├── no-frame-register.ll │ │ │ │ │ ├── pic.ll │ │ │ │ │ ├── powi.ll │ │ │ │ │ ├── read-only-data.ll │ │ │ │ │ ├── stack-probe-non-default.ll │ │ │ │ │ ├── structors.ll │ │ │ │ │ ├── tls.ll │ │ │ │ │ ├── trivial-gnu-object.ll │ │ │ │ │ ├── vla-cpsr.ll │ │ │ │ │ ├── vla.ll │ │ │ │ │ └── wineh-basic.ll │ │ │ │ ├── a15-SD-dep.ll │ │ │ │ ├── a15-mla.ll │ │ │ │ ├── a15-partial-update.ll │ │ │ │ ├── a15.ll │ │ │ │ ├── aapcs-hfa-code.ll │ │ │ │ ├── aapcs-hfa.ll │ │ │ │ ├── acle-intrinsics-v5.ll │ │ │ │ ├── acle-intrinsics.ll │ │ │ │ ├── addrmode.ll │ │ │ │ ├── addrspacecast.ll │ │ │ │ ├── addsubcarry-promotion.ll │ │ │ │ ├── adv-copy-opt.ll │ │ │ │ ├── aeabi-read-tp.ll │ │ │ │ ├── aggregate-padding.ll │ │ │ │ ├── alias_store.ll │ │ │ │ ├── aliases.ll │ │ │ │ ├── align-sp-adjustment.ll │ │ │ │ ├── align.ll │ │ │ │ ├── alloc-no-stack-realign.ll │ │ │ │ ├── alloca-align.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── and-cmpz.ll │ │ │ │ ├── and-load-combine.ll │ │ │ │ ├── apcs-vfp.ll │ │ │ │ ├── arg-copy-elide.ll │ │ │ │ ├── argaddr.ll │ │ │ │ ├── arguments-nosplit-double.ll │ │ │ │ ├── arguments-nosplit-i64.ll │ │ │ │ ├── arguments.ll │ │ │ │ ├── arguments2.ll │ │ │ │ ├── arguments3.ll │ │ │ │ ├── arguments4.ll │ │ │ │ ├── arguments5.ll │ │ │ │ ├── arguments6.ll │ │ │ │ ├── arguments7.ll │ │ │ │ ├── arguments8.ll │ │ │ │ ├── arguments_f64_backfill.ll │ │ │ │ ├── arm-abi-attr.ll │ │ │ │ ├── arm-and-tst-peephole.ll │ │ │ │ ├── arm-asm.ll │ │ │ │ ├── arm-eabi.ll │ │ │ │ ├── arm-frame-lowering-no-terminator.ll │ │ │ │ ├── arm-frameaddr.ll │ │ │ │ ├── arm-insert-subvector.ll │ │ │ │ ├── arm-macho-tail.ll │ │ │ │ ├── arm-modifier.ll │ │ │ │ ├── arm-negative-stride.ll │ │ │ │ ├── arm-position-independence-jump-table.ll │ │ │ │ ├── arm-position-independence.ll │ │ │ │ ├── arm-returnaddr.ll │ │ │ │ ├── arm-shrink-wrapping-linux.ll │ │ │ │ ├── arm-shrink-wrapping.ll │ │ │ │ ├── arm-storebytesmerge.ll │ │ │ │ ├── arm-ttype-target2.ll │ │ │ │ ├── arm32-round-conv.ll │ │ │ │ ├── arm32-rounding.ll │ │ │ │ ├── armv4.ll │ │ │ │ ├── atomic-64bit.ll │ │ │ │ ├── atomic-cmp.ll │ │ │ │ ├── atomic-cmpxchg.ll │ │ │ │ ├── atomic-load-store.ll │ │ │ │ ├── atomic-op.ll │ │ │ │ ├── atomic-ops-v8.ll │ │ │ │ ├── atomicrmw_minmax.ll │ │ │ │ ├── available_externally.ll │ │ │ │ ├── avoid-cpsr-rmw.ll │ │ │ │ ├── bfc.ll │ │ │ │ ├── bfi.ll │ │ │ │ ├── bfx.ll │ │ │ │ ├── bic.ll │ │ │ │ ├── bicZext.ll │ │ │ │ ├── big-endian-eh-unwind.ll │ │ │ │ ├── big-endian-neon-bitconv.ll │ │ │ │ ├── big-endian-neon-extend.ll │ │ │ │ ├── big-endian-neon-trunc-store.ll │ │ │ │ ├── big-endian-ret-f64.ll │ │ │ │ ├── big-endian-vector-callee.ll │ │ │ │ ├── big-endian-vector-caller.ll │ │ │ │ ├── bit-reverse-to-rbit.ll │ │ │ │ ├── bits.ll │ │ │ │ ├── bool-ext-inc.ll │ │ │ │ ├── bswap-inline-asm.ll │ │ │ │ ├── bswap16.ll │ │ │ │ ├── build-attributes-encoding.s │ │ │ │ ├── build-attributes-fn-attr0.ll │ │ │ │ ├── build-attributes-fn-attr1.ll │ │ │ │ ├── build-attributes-fn-attr2.ll │ │ │ │ ├── build-attributes-fn-attr3.ll │ │ │ │ ├── build-attributes-fn-attr4.ll │ │ │ │ ├── build-attributes-fn-attr5.ll │ │ │ │ ├── build-attributes-fn-attr6.ll │ │ │ │ ├── build-attributes-optimization-minsize.ll │ │ │ │ ├── build-attributes-optimization-mixed.ll │ │ │ │ ├── build-attributes-optimization-optnone.ll │ │ │ │ ├── build-attributes-optimization-optsize.ll │ │ │ │ ├── build-attributes-optimization.ll │ │ │ │ ├── build-attributes.ll │ │ │ │ ├── bx_fold.ll │ │ │ │ ├── byval-align.ll │ │ │ │ ├── byval_load_align.ll │ │ │ │ ├── cache-intrinsic.ll │ │ │ │ ├── call-noret-minsize.ll │ │ │ │ ├── call-noret.ll │ │ │ │ ├── call-tc.ll │ │ │ │ ├── call.ll │ │ │ │ ├── call_nolink.ll │ │ │ │ ├── carry.ll │ │ │ │ ├── cdp.ll │ │ │ │ ├── cdp2.ll │ │ │ │ ├── cfi-alignment.ll │ │ │ │ ├── clang-section.ll │ │ │ │ ├── clz.ll │ │ │ │ ├── cmn.ll │ │ │ │ ├── cmp.ll │ │ │ │ ├── cmp1-peephole-thumb.mir │ │ │ │ ├── cmp2-peephole-thumb.mir │ │ │ │ ├── cmpxchg-O0-be.ll │ │ │ │ ├── cmpxchg-O0.ll │ │ │ │ ├── cmpxchg-idioms.ll │ │ │ │ ├── cmpxchg-weak.ll │ │ │ │ ├── coalesce-dbgvalue.ll │ │ │ │ ├── coalesce-subregs.ll │ │ │ │ ├── code-placement.ll │ │ │ │ ├── combine-movc-sub.ll │ │ │ │ ├── combine-vmovdrr.ll │ │ │ │ ├── commute-movcc.ll │ │ │ │ ├── compare-call.ll │ │ │ │ ├── constant-island-crash.ll │ │ │ │ ├── constant-islands-cfg.mir │ │ │ │ ├── constant-islands.ll │ │ │ │ ├── constantfp.ll │ │ │ │ ├── constantpool-align.ll │ │ │ │ ├── constantpool-promote-dbg.ll │ │ │ │ ├── constantpool-promote-duplicate.ll │ │ │ │ ├── constantpool-promote-ldrh.ll │ │ │ │ ├── constantpool-promote.ll │ │ │ │ ├── constants.ll │ │ │ │ ├── copy-cpsr.ll │ │ │ │ ├── copy-paired-reg.ll │ │ │ │ ├── cortex-a57-misched-alu.ll │ │ │ │ ├── cortex-a57-misched-basic.ll │ │ │ │ ├── cortex-a57-misched-ldm-wrback.ll │ │ │ │ ├── cortex-a57-misched-ldm.ll │ │ │ │ ├── cortex-a57-misched-stm-wrback.ll │ │ │ │ ├── cortex-a57-misched-stm.ll │ │ │ │ ├── cortex-a57-misched-vadd.ll │ │ │ │ ├── cortex-a57-misched-vfma.ll │ │ │ │ ├── cortex-a57-misched-vldm-wrback.ll │ │ │ │ ├── cortex-a57-misched-vldm.ll │ │ │ │ ├── cortex-a57-misched-vstm-wrback.ll │ │ │ │ ├── cortex-a57-misched-vstm.ll │ │ │ │ ├── cortex-a57-misched-vsub.ll │ │ │ │ ├── cortexr52-misched-basic.ll │ │ │ │ ├── crash-O0.ll │ │ │ │ ├── crash-greedy-v6.ll │ │ │ │ ├── crash-greedy.ll │ │ │ │ ├── crash-on-pow2-shufflevector.ll │ │ │ │ ├── crash-shufflevector.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── crc32.ll │ │ │ │ ├── cse-call.ll │ │ │ │ ├── cse-flags.ll │ │ │ │ ├── cse-ldrlit.ll │ │ │ │ ├── cse-libcalls.ll │ │ │ │ ├── ctor_order.ll │ │ │ │ ├── ctors_dtors.ll │ │ │ │ ├── cttz.ll │ │ │ │ ├── cttz_vector.ll │ │ │ │ ├── cxx-tlscc.ll │ │ │ │ ├── dag-combine-ldst.ll │ │ │ │ ├── dagcombine-anyexttozeroext.ll │ │ │ │ ├── dagcombine-concatvector.ll │ │ │ │ ├── darwin-eabi.ll │ │ │ │ ├── darwin-tls-preserved.ll │ │ │ │ ├── darwin-tls.ll │ │ │ │ ├── data-in-code-annotations.ll │ │ │ │ ├── dbg-range-extension.mir │ │ │ │ ├── dbg.ll │ │ │ │ ├── debug-frame-large-stack.ll │ │ │ │ ├── debug-frame-no-debug.ll │ │ │ │ ├── debug-frame-vararg.ll │ │ │ │ ├── debug-frame.ll │ │ │ │ ├── debug-info-arg.ll │ │ │ │ ├── debug-info-blocks.ll │ │ │ │ ├── debug-info-branch-folding.ll │ │ │ │ ├── debug-info-d16-reg.ll │ │ │ │ ├── debug-info-no-frame.ll │ │ │ │ ├── debug-info-qreg.ll │ │ │ │ ├── debug-info-s16-reg.ll │ │ │ │ ├── debug-info-sreg2.ll │ │ │ │ ├── debug-segmented-stacks.ll │ │ │ │ ├── debugtrap.ll │ │ │ │ ├── default-float-abi.ll │ │ │ │ ├── default-reloc.ll │ │ │ │ ├── deprecated-asm.s │ │ │ │ ├── deps-fix.ll │ │ │ │ ├── disable-fp-elim.ll │ │ │ │ ├── disable-tail-calls.ll │ │ │ │ ├── div.ll │ │ │ │ ├── divmod-eabi.ll │ │ │ │ ├── divmod-hwdiv.ll │ │ │ │ ├── divmod.ll │ │ │ │ ├── domain-conv-vmovs.ll │ │ │ │ ├── dwarf-eh.ll │ │ │ │ ├── dwarf-unwind.ll │ │ │ │ ├── dyn-stackalloc.ll │ │ │ │ ├── early-cfi-sections.ll │ │ │ │ ├── eh-dispcont.ll │ │ │ │ ├── eh-resume-darwin.ll │ │ │ │ ├── ehabi-filters.ll │ │ │ │ ├── ehabi-handlerdata-nounwind.ll │ │ │ │ ├── ehabi-handlerdata.ll │ │ │ │ ├── ehabi-no-landingpad.ll │ │ │ │ ├── ehabi-unwind.ll │ │ │ │ ├── ehabi.ll │ │ │ │ ├── elf-lcomm-align.ll │ │ │ │ ├── emit-big-cst.ll │ │ │ │ ├── emutls.ll │ │ │ │ ├── emutls1.ll │ │ │ │ ├── emutls_generic.ll │ │ │ │ ├── execute-only-big-stack-frame.ll │ │ │ │ ├── execute-only-section.ll │ │ │ │ ├── execute-only.ll │ │ │ │ ├── expand-pseudos.mir │ │ │ │ ├── extload-knownzero.ll │ │ │ │ ├── extloadi1.ll │ │ │ │ ├── fabs-neon.ll │ │ │ │ ├── fabs-to-bfc.ll │ │ │ │ ├── fabss.ll │ │ │ │ ├── fadds.ll │ │ │ │ ├── fast-isel-GEP-coalesce.ll │ │ │ │ ├── fast-isel-align.ll │ │ │ │ ├── fast-isel-binary.ll │ │ │ │ ├── fast-isel-br-const.ll │ │ │ │ ├── fast-isel-br-phi.ll │ │ │ │ ├── fast-isel-call-multi-reg-return.ll │ │ │ │ ├── fast-isel-call.ll │ │ │ │ ├── fast-isel-cmp-imm.ll │ │ │ │ ├── fast-isel-conversion.ll │ │ │ │ ├── fast-isel-crash.ll │ │ │ │ ├── fast-isel-crash2.ll │ │ │ │ ├── fast-isel-deadcode.ll │ │ │ │ ├── fast-isel-ext.ll │ │ │ │ ├── fast-isel-fold.ll │ │ │ │ ├── fast-isel-frameaddr.ll │ │ │ │ ├── fast-isel-icmp.ll │ │ │ │ ├── fast-isel-indirectbr.ll │ │ │ │ ├── fast-isel-inline-asm.ll │ │ │ │ ├── fast-isel-intrinsic.ll │ │ │ │ ├── fast-isel-ldr-str-arm.ll │ │ │ │ ├── fast-isel-ldr-str-thumb-neg-index.ll │ │ │ │ ├── fast-isel-ldrh-strh-arm.ll │ │ │ │ ├── fast-isel-load-store-verify.ll │ │ │ │ ├── fast-isel-mvn.ll │ │ │ │ ├── fast-isel-pic.ll │ │ │ │ ├── fast-isel-pie.ll │ │ │ │ ├── fast-isel-pred.ll │ │ │ │ ├── fast-isel-redefinition.ll │ │ │ │ ├── fast-isel-remat-same-constant.ll │ │ │ │ ├── fast-isel-ret.ll │ │ │ │ ├── fast-isel-select.ll │ │ │ │ ├── fast-isel-shift-materialize.ll │ │ │ │ ├── fast-isel-shifter.ll │ │ │ │ ├── fast-isel-static.ll │ │ │ │ ├── fast-isel-update-valuemap-for-extract.ll │ │ │ │ ├── fast-isel-vaddd.ll │ │ │ │ ├── fast-isel-vararg.ll │ │ │ │ ├── fast-isel.ll │ │ │ │ ├── fast-tail-call.ll │ │ │ │ ├── fastcc-vfp.ll │ │ │ │ ├── fastisel-gep-promote-before-add.ll │ │ │ │ ├── fastisel-thumb-litpool.ll │ │ │ │ ├── fcopysign.ll │ │ │ │ ├── fdivs.ll │ │ │ │ ├── fence-singlethread.ll │ │ │ │ ├── fixunsdfdi.ll │ │ │ │ ├── flag-crash.ll │ │ │ │ ├── float-helpers.s │ │ │ │ ├── floorf.ll │ │ │ │ ├── fmacs.ll │ │ │ │ ├── fmdrr-fmrrd.ll │ │ │ │ ├── fmscs.ll │ │ │ │ ├── fmuls.ll │ │ │ │ ├── fnattr-trap.ll │ │ │ │ ├── fnegs.ll │ │ │ │ ├── fnmacs.ll │ │ │ │ ├── fnmscs.ll │ │ │ │ ├── fnmul.ll │ │ │ │ ├── fnmuls.ll │ │ │ │ ├── fold-const.ll │ │ │ │ ├── fold-stack-adjust.ll │ │ │ │ ├── formal.ll │ │ │ │ ├── fp-arg-shuffle.ll │ │ │ │ ├── fp-fast.ll │ │ │ │ ├── fp-only-sp.ll │ │ │ │ ├── fp.ll │ │ │ │ ├── fp16-args.ll │ │ │ │ ├── fp16-promote.ll │ │ │ │ ├── fp16-v3.ll │ │ │ │ ├── fp16.ll │ │ │ │ ├── fp_convert.ll │ │ │ │ ├── fparith.ll │ │ │ │ ├── fpcmp-f64-neon-opt.ll │ │ │ │ ├── fpcmp-opt.ll │ │ │ │ ├── fpcmp.ll │ │ │ │ ├── fpcmp_ueq.ll │ │ │ │ ├── fpconsts.ll │ │ │ │ ├── fpconv.ll │ │ │ │ ├── fpmem.ll │ │ │ │ ├── fpoffset_overflow.mir │ │ │ │ ├── fpow.ll │ │ │ │ ├── fpowi.ll │ │ │ │ ├── fpscr-intrinsics.ll │ │ │ │ ├── fptoint.ll │ │ │ │ ├── frame-register.ll │ │ │ │ ├── fsubs.ll │ │ │ │ ├── func-argpassing-endian.ll │ │ │ │ ├── fusedMAC.ll │ │ │ │ ├── gep-optimization.ll │ │ │ │ ├── ghc-tcreturn-lowered.ll │ │ │ │ ├── global-merge-1.ll │ │ │ │ ├── global-merge-addrspace.ll │ │ │ │ ├── global-merge-dllexport.ll │ │ │ │ ├── global-merge-external.ll │ │ │ │ ├── global-merge.ll │ │ │ │ ├── globals.ll │ │ │ │ ├── gpr-paired-spill-thumbinst.ll │ │ │ │ ├── gpr-paired-spill.ll │ │ │ │ ├── gv-stubs-crash.ll │ │ │ │ ├── half.ll │ │ │ │ ├── hardfloat_neon.ll │ │ │ │ ├── hello.ll │ │ │ │ ├── hfa-in-contiguous-registers.ll │ │ │ │ ├── hidden-vis-2.ll │ │ │ │ ├── hidden-vis-3.ll │ │ │ │ ├── hidden-vis.ll │ │ │ │ ├── hints.ll │ │ │ │ ├── i1.ll │ │ │ │ ├── iabs.ll │ │ │ │ ├── ifconv-kills.ll │ │ │ │ ├── ifconv-regmask.ll │ │ │ │ ├── ifcvt-branch-weight-bug.ll │ │ │ │ ├── ifcvt-branch-weight.ll │ │ │ │ ├── ifcvt-callback.ll │ │ │ │ ├── ifcvt-dead-def.ll │ │ │ │ ├── ifcvt-iter-indbr.ll │ │ │ │ ├── ifcvt-regmask-noreturn.ll │ │ │ │ ├── ifcvt1.ll │ │ │ │ ├── ifcvt10.ll │ │ │ │ ├── ifcvt11.ll │ │ │ │ ├── ifcvt12.ll │ │ │ │ ├── ifcvt2.ll │ │ │ │ ├── ifcvt3.ll │ │ │ │ ├── ifcvt4.ll │ │ │ │ ├── ifcvt5.ll │ │ │ │ ├── ifcvt6.ll │ │ │ │ ├── ifcvt7.ll │ │ │ │ ├── ifcvt8.ll │ │ │ │ ├── ifcvt9.ll │ │ │ │ ├── illegal-bitfield-loadstore.ll │ │ │ │ ├── illegal-vector-bitcast.ll │ │ │ │ ├── imm-peephole-arm.mir │ │ │ │ ├── imm-peephole-thumb.mir │ │ │ │ ├── imm.ll │ │ │ │ ├── immcost.ll │ │ │ │ ├── indirect-hidden.ll │ │ │ │ ├── indirect-reg-input.ll │ │ │ │ ├── indirectbr-2.ll │ │ │ │ ├── indirectbr-3.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── inline-diagnostics.ll │ │ │ │ ├── inlineasm-64bit.ll │ │ │ │ ├── inlineasm-X-allocation.ll │ │ │ │ ├── inlineasm-X-constraint.ll │ │ │ │ ├── inlineasm-global.ll │ │ │ │ ├── inlineasm-imm-arm.ll │ │ │ │ ├── inlineasm-imm-thumb.ll │ │ │ │ ├── inlineasm-imm-thumb2.ll │ │ │ │ ├── inlineasm-ldr-pseudo.ll │ │ │ │ ├── inlineasm-switch-mode-oneway-from-arm.ll │ │ │ │ ├── inlineasm-switch-mode-oneway-from-thumb.ll │ │ │ │ ├── inlineasm-switch-mode.ll │ │ │ │ ├── inlineasm.ll │ │ │ │ ├── inlineasm2.ll │ │ │ │ ├── inlineasm3.ll │ │ │ │ ├── inlineasm4.ll │ │ │ │ ├── insn-sched1.ll │ │ │ │ ├── int-to-fp.ll │ │ │ │ ├── integer_insertelement.ll │ │ │ │ ├── interrupt-attr.ll │ │ │ │ ├── interval-update-remat.ll │ │ │ │ ├── interwork.ll │ │ │ │ ├── intrinsics-coprocessor.ll │ │ │ │ ├── intrinsics-crypto.ll │ │ │ │ ├── intrinsics-memory-barrier.ll │ │ │ │ ├── intrinsics-overflow.ll │ │ │ │ ├── intrinsics-v8.ll │ │ │ │ ├── invalid-target.ll │ │ │ │ ├── invalidated-save-point.ll │ │ │ │ ├── invoke-donothing-assert.ll │ │ │ │ ├── isel-v8i32-crash.ll │ │ │ │ ├── ispositive.ll │ │ │ │ ├── jump-table-islands-split.ll │ │ │ │ ├── jump-table-islands.ll │ │ │ │ ├── jump-table-tbh.ll │ │ │ │ ├── jumptable-label.ll │ │ │ │ ├── krait-cpu-div-attribute.ll │ │ │ │ ├── large-stack.ll │ │ │ │ ├── ldaex-stlex.ll │ │ │ │ ├── ldc2l.ll │ │ │ │ ├── ldm-base-writeback.ll │ │ │ │ ├── ldm-stm-base-materialization.ll │ │ │ │ ├── ldm-stm-i256.ll │ │ │ │ ├── ldm.ll │ │ │ │ ├── ldr.ll │ │ │ │ ├── ldr_ext.ll │ │ │ │ ├── ldr_frame.ll │ │ │ │ ├── ldr_post.ll │ │ │ │ ├── ldr_pre.ll │ │ │ │ ├── ldrd-memoper.ll │ │ │ │ ├── ldrd.ll │ │ │ │ ├── ldst-f32-2-i32.ll │ │ │ │ ├── ldstrex-m.ll │ │ │ │ ├── ldstrex.ll │ │ │ │ ├── legalize-unaligned-load.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── litpool-licm.ll │ │ │ │ ├── load-address-masked.ll │ │ │ │ ├── load-arm.ll │ │ │ │ ├── load-combine-big-endian.ll │ │ │ │ ├── load-combine.ll │ │ │ │ ├── load-global.ll │ │ │ │ ├── load-global2.ll │ │ │ │ ├── load-store-flags.ll │ │ │ │ ├── load.ll │ │ │ │ ├── load_i1_select.ll │ │ │ │ ├── load_store_multiple.ll │ │ │ │ ├── load_store_opt_kill.mir │ │ │ │ ├── local-call.ll │ │ │ │ ├── log2_not_readnone.ll │ │ │ │ ├── long-setcc.ll │ │ │ │ ├── long.ll │ │ │ │ ├── longMAC.ll │ │ │ │ ├── long_shift.ll │ │ │ │ ├── loopvectorize_pr33804.ll │ │ │ │ ├── lowerMUL-newload.ll │ │ │ │ ├── lsr-code-insertion.ll │ │ │ │ ├── lsr-icmp-imm.ll │ │ │ │ ├── lsr-scale-addr-mode.ll │ │ │ │ ├── lsr-unfolded-offset.ll │ │ │ │ ├── machine-copyprop.mir │ │ │ │ ├── machine-cse-cmp.ll │ │ │ │ ├── machine-licm.ll │ │ │ │ ├── macho-extern-hidden.ll │ │ │ │ ├── macho-frame-offset.ll │ │ │ │ ├── mature-mc-support.ll │ │ │ │ ├── mem.ll │ │ │ │ ├── memcpy-inline.ll │ │ │ │ ├── memcpy-ldm-stm.ll │ │ │ │ ├── memcpy-no-inline.ll │ │ │ │ ├── memfunc.ll │ │ │ │ ├── memset-inline.ll │ │ │ │ ├── metadata-default.ll │ │ │ │ ├── metadata-short-enums.ll │ │ │ │ ├── metadata-short-wchar.ll │ │ │ │ ├── minmax.ll │ │ │ │ ├── minsize-call-cse.ll │ │ │ │ ├── minsize-imms.ll │ │ │ │ ├── minsize-litpools.ll │ │ │ │ ├── misched-copy-arm.ll │ │ │ │ ├── misched-fp-basic.ll │ │ │ │ ├── misched-fusion-aes.ll │ │ │ │ ├── misched-int-basic-thumb2.mir │ │ │ │ ├── misched-int-basic.mir │ │ │ │ ├── mls.ll │ │ │ │ ├── movcc-double.ll │ │ │ │ ├── movt-movw-global.ll │ │ │ │ ├── movt.ll │ │ │ │ ├── msr-it-block.ll │ │ │ │ ├── mul.ll │ │ │ │ ├── mul_const.ll │ │ │ │ ├── mulhi.ll │ │ │ │ ├── mult-alt-generic-arm.ll │ │ │ │ ├── mvn.ll │ │ │ │ ├── named-reg-alloc.ll │ │ │ │ ├── named-reg-notareg.ll │ │ │ │ ├── negate-i1.ll │ │ │ │ ├── negative-offset.ll │ │ │ │ ├── neon-fma.ll │ │ │ │ ├── neon-spfp.ll │ │ │ │ ├── neon-v8.1a.ll │ │ │ │ ├── neon_arith1.ll │ │ │ │ ├── neon_cmp.ll │ │ │ │ ├── neon_div.ll │ │ │ │ ├── neon_fpconv.ll │ │ │ │ ├── neon_ld1.ll │ │ │ │ ├── neon_ld2.ll │ │ │ │ ├── neon_minmax.ll │ │ │ │ ├── neon_shift.ll │ │ │ │ ├── neon_spill.ll │ │ │ │ ├── neon_vabs.ll │ │ │ │ ├── neon_vshl_minint.ll │ │ │ │ ├── nest-register.ll │ │ │ │ ├── no-arm-mode.ll │ │ │ │ ├── no-cfi.ll │ │ │ │ ├── no-cmov2bfi.ll │ │ │ │ ├── no-fpscr-liveness.ll │ │ │ │ ├── no-fpu.ll │ │ │ │ ├── no-tail-call.ll │ │ │ │ ├── no_redundant_trunc_for_cmp.ll │ │ │ │ ├── none-macho-v4t.ll │ │ │ │ ├── none-macho.ll │ │ │ │ ├── noopt-dmb-v7.ll │ │ │ │ ├── nop_concat_vectors.ll │ │ │ │ ├── noreturn.ll │ │ │ │ ├── null-streamer.ll │ │ │ │ ├── opt-shuff-tstore.ll │ │ │ │ ├── optimize-dmbs-v7.ll │ │ │ │ ├── optselect-regclass.ll │ │ │ │ ├── out-of-registers.ll │ │ │ │ ├── pack.ll │ │ │ │ ├── peephole-bitcast.ll │ │ │ │ ├── peephole-phi.mir │ │ │ │ ├── pei-swiftself.mir │ │ │ │ ├── phi.ll │ │ │ │ ├── pic.ll │ │ │ │ ├── pie.ll │ │ │ │ ├── plt-relative-reloc.ll │ │ │ │ ├── popcnt.ll │ │ │ │ ├── pr13249.ll │ │ │ │ ├── pr18364-movw.ll │ │ │ │ ├── pr25317.ll │ │ │ │ ├── pr25838.ll │ │ │ │ ├── pr26669.ll │ │ │ │ ├── pr32545.ll │ │ │ │ ├── pr32578.ll │ │ │ │ ├── pr34045-2.ll │ │ │ │ ├── pr34045.ll │ │ │ │ ├── pr3502.ll │ │ │ │ ├── pr35103.ll │ │ │ │ ├── preferred-align.ll │ │ │ │ ├── prefetch.ll │ │ │ │ ├── prera-ldst-aliasing.mir │ │ │ │ ├── prera-ldst-insertpt.mir │ │ │ │ ├── print-memb-operand.ll │ │ │ │ ├── private.ll │ │ │ │ ├── rbit.ll │ │ │ │ ├── readcyclecounter.ll │ │ │ │ ├── readtp.ll │ │ │ │ ├── reg_sequence.ll │ │ │ │ ├── regpair_hint_phys.ll │ │ │ │ ├── rem_crash.ll │ │ │ │ ├── ret0.ll │ │ │ │ ├── ret_arg1.ll │ │ │ │ ├── ret_arg2.ll │ │ │ │ ├── ret_arg3.ll │ │ │ │ ├── ret_arg4.ll │ │ │ │ ├── ret_arg5.ll │ │ │ │ ├── ret_f32_arg2.ll │ │ │ │ ├── ret_f32_arg5.ll │ │ │ │ ├── ret_f64_arg2.ll │ │ │ │ ├── ret_f64_arg_reg_split.ll │ │ │ │ ├── ret_f64_arg_split.ll │ │ │ │ ├── ret_f64_arg_stack.ll │ │ │ │ ├── ret_i128_arg2.ll │ │ │ │ ├── ret_i64_arg2.ll │ │ │ │ ├── ret_i64_arg3.ll │ │ │ │ ├── ret_i64_arg_split.ll │ │ │ │ ├── ret_sret_vector.ll │ │ │ │ ├── ret_void.ll │ │ │ │ ├── returned-ext.ll │ │ │ │ ├── returned-trunc-tail-calls.ll │ │ │ │ ├── rev.ll │ │ │ │ ├── ror.ll │ │ │ │ ├── rotate.ll │ │ │ │ ├── saxpy10-a9.ll │ │ │ │ ├── sbfx.ll │ │ │ │ ├── scavenging.mir │ │ │ │ ├── sched-it-debug-nodes.mir │ │ │ │ ├── section-name.ll │ │ │ │ ├── section.ll │ │ │ │ ├── segmented-stacks-dynamic.ll │ │ │ │ ├── segmented-stacks.ll │ │ │ │ ├── select-imm.ll │ │ │ │ ├── select-undef.ll │ │ │ │ ├── select.ll │ │ │ │ ├── select_const.ll │ │ │ │ ├── select_xform.ll │ │ │ │ ├── setcc-logic.ll │ │ │ │ ├── setcc-type-mismatch.ll │ │ │ │ ├── setjmp_longjmp.ll │ │ │ │ ├── shift-combine.ll │ │ │ │ ├── shift-i64.ll │ │ │ │ ├── shifter_operand.ll │ │ │ │ ├── shuffle.ll │ │ │ │ ├── sincos.ll │ │ │ │ ├── single-issue-r52.mir │ │ │ │ ├── sjlj-prepare-critical-edge.ll │ │ │ │ ├── sjljeh-swifterror.ll │ │ │ │ ├── sjljehprepare-lower-empty-struct.ll │ │ │ │ ├── smml.ll │ │ │ │ ├── smul.ll │ │ │ │ ├── softfp-fabs-fneg.ll │ │ │ │ ├── space-directive.ll │ │ │ │ ├── special-reg-acore.ll │ │ │ │ ├── special-reg-mcore.ll │ │ │ │ ├── special-reg-v8m-base.ll │ │ │ │ ├── special-reg-v8m-main.ll │ │ │ │ ├── special-reg.ll │ │ │ │ ├── spill-q.ll │ │ │ │ ├── splitkit.ll │ │ │ │ ├── ssat-lower.ll │ │ │ │ ├── ssat-upper.ll │ │ │ │ ├── ssat-v4t.ll │ │ │ │ ├── ssat.ll │ │ │ │ ├── ssp-data-layout.ll │ │ │ │ ├── stack-alignment.ll │ │ │ │ ├── stack-frame.ll │ │ │ │ ├── stack-protector-bmovpcb_call.ll │ │ │ │ ├── stack_guard_remat.ll │ │ │ │ ├── stackpointer.ll │ │ │ │ ├── static-addr-hoisting.ll │ │ │ │ ├── stc2.ll │ │ │ │ ├── stm.ll │ │ │ │ ├── str_post.ll │ │ │ │ ├── str_pre-2.ll │ │ │ │ ├── str_pre.ll │ │ │ │ ├── str_trunc.ll │ │ │ │ ├── struct-byval-frame-index.ll │ │ │ │ ├── struct_byval.ll │ │ │ │ ├── struct_byval_arm_t1_t2.ll │ │ │ │ ├── su-addsub-overflow.ll │ │ │ │ ├── sub-cmp-peephole.ll │ │ │ │ ├── sub.ll │ │ │ │ ├── subreg-remat.ll │ │ │ │ ├── subtarget-features-long-calls.ll │ │ │ │ ├── subtarget-no-movt.ll │ │ │ │ ├── swift-atomics.ll │ │ │ │ ├── swift-ios.ll │ │ │ │ ├── swift-return.ll │ │ │ │ ├── swift-vldm.ll │ │ │ │ ├── swifterror.ll │ │ │ │ ├── swiftself.ll │ │ │ │ ├── switch-minsize.ll │ │ │ │ ├── sxt_rot.ll │ │ │ │ ├── t2-imm.ll │ │ │ │ ├── t2-shrink-ldrpost.ll │ │ │ │ ├── t2abs-killflags.ll │ │ │ │ ├── tail-call-builtin.ll │ │ │ │ ├── tail-call-float.ll │ │ │ │ ├── tail-call-weak.ll │ │ │ │ ├── tail-call.ll │ │ │ │ ├── tail-dup-bundle.mir │ │ │ │ ├── tail-dup-kill-flags.ll │ │ │ │ ├── tail-dup.ll │ │ │ │ ├── tail-merge-branch-weight.ll │ │ │ │ ├── tail-opts.ll │ │ │ │ ├── tailcall-mem-intrinsics.ll │ │ │ │ ├── taildup-branch-weight.ll │ │ │ │ ├── test-sharedidx.ll │ │ │ │ ├── this-return.ll │ │ │ │ ├── thread_pointer.ll │ │ │ │ ├── thumb-alignment.ll │ │ │ │ ├── thumb-big-stack.ll │ │ │ │ ├── thumb-litpool.ll │ │ │ │ ├── thumb-stub.ll │ │ │ │ ├── thumb1-div.ll │ │ │ │ ├── thumb1-ldst-opt.ll │ │ │ │ ├── thumb1-varalloc.ll │ │ │ │ ├── thumb1_return_sequence.ll │ │ │ │ ├── thumb2-it-block.ll │ │ │ │ ├── thumb2-size-opt.ll │ │ │ │ ├── thumb2-size-reduction-internal-flags.ll │ │ │ │ ├── thumb_indirect_calls.ll │ │ │ │ ├── tls-models.ll │ │ │ │ ├── tls1.ll │ │ │ │ ├── tls2.ll │ │ │ │ ├── tls3.ll │ │ │ │ ├── trap.ll │ │ │ │ ├── trunc_ldr.ll │ │ │ │ ├── truncstore-dag-combine.ll │ │ │ │ ├── tst_teq.ll │ │ │ │ ├── twoaddrinstr.ll │ │ │ │ ├── uint64tof64.ll │ │ │ │ ├── umulo-32.ll │ │ │ │ ├── unaligned_load_store.ll │ │ │ │ ├── unaligned_load_store_vector.ll │ │ │ │ ├── unaligned_load_store_vfp.ll │ │ │ │ ├── undef-sext.ll │ │ │ │ ├── undefined.ll │ │ │ │ ├── unfold-shifts.ll │ │ │ │ ├── unord.ll │ │ │ │ ├── unsafe-fsub.ll │ │ │ │ ├── unschedule-first-call.ll │ │ │ │ ├── unwind-init.ll │ │ │ │ ├── urem-opt-size.ll │ │ │ │ ├── usat-lower.ll │ │ │ │ ├── usat-upper.ll │ │ │ │ ├── usat-v4t.ll │ │ │ │ ├── usat.ll │ │ │ │ ├── uxt_rot.ll │ │ │ │ ├── uxtb.ll │ │ │ │ ├── v1-constant-fold.ll │ │ │ │ ├── v6-jumptable-clobber.mir │ │ │ │ ├── v6m-smul-with-overflow.ll │ │ │ │ ├── v6m-umul-with-overflow.ll │ │ │ │ ├── v7k-abi-align.ll │ │ │ │ ├── v7k-libcalls.ll │ │ │ │ ├── v7k-sincos.ll │ │ │ │ ├── v8m-tail-call.ll │ │ │ │ ├── v8m.base-jumptable_alignment.ll │ │ │ │ ├── va_arg.ll │ │ │ │ ├── vaba.ll │ │ │ │ ├── vabd.ll │ │ │ │ ├── vabs.ll │ │ │ │ ├── vadd.ll │ │ │ │ ├── vararg_no_start.ll │ │ │ │ ├── varargs-spill-stack-align-nacl.ll │ │ │ │ ├── vargs.ll │ │ │ │ ├── vargs_align.ll │ │ │ │ ├── vbits.ll │ │ │ │ ├── vbsl-constant.ll │ │ │ │ ├── vbsl.ll │ │ │ │ ├── vceq.ll │ │ │ │ ├── vcge.ll │ │ │ │ ├── vcgt.ll │ │ │ │ ├── vcmp-crash.ll │ │ │ │ ├── vcnt.ll │ │ │ │ ├── vcombine.ll │ │ │ │ ├── vcvt-cost.ll │ │ │ │ ├── vcvt-v8.ll │ │ │ │ ├── vcvt.ll │ │ │ │ ├── vcvt_combine.ll │ │ │ │ ├── vdiv_combine.ll │ │ │ │ ├── vdup.ll │ │ │ │ ├── vector-DAGCombine.ll │ │ │ │ ├── vector-extend-narrow.ll │ │ │ │ ├── vector-load.ll │ │ │ │ ├── vector-promotion.ll │ │ │ │ ├── vector-spilling.ll │ │ │ │ ├── vector-store.ll │ │ │ │ ├── vext.ll │ │ │ │ ├── vfcmp.ll │ │ │ │ ├── vfloatintrinsics.ll │ │ │ │ ├── vfp-libcalls.ll │ │ │ │ ├── vfp-reg-stride.ll │ │ │ │ ├── vfp-regs-dwarf.ll │ │ │ │ ├── vfp.ll │ │ │ │ ├── vget_lane.ll │ │ │ │ ├── vhadd.ll │ │ │ │ ├── vhsub.ll │ │ │ │ ├── vicmp-64.ll │ │ │ │ ├── vicmp.ll │ │ │ │ ├── virtregrewriter-subregliveness.mir │ │ │ │ ├── vld-vst-upgrade.ll │ │ │ │ ├── vld1.ll │ │ │ │ ├── vld2.ll │ │ │ │ ├── vld3.ll │ │ │ │ ├── vld4.ll │ │ │ │ ├── vlddup.ll │ │ │ │ ├── vldlane.ll │ │ │ │ ├── vldm-liveness.ll │ │ │ │ ├── vldm-liveness.mir │ │ │ │ ├── vldm-sched-a9.ll │ │ │ │ ├── vminmax.ll │ │ │ │ ├── vminmaxnm-safe.ll │ │ │ │ ├── vminmaxnm.ll │ │ │ │ ├── vmla.ll │ │ │ │ ├── vmls.ll │ │ │ │ ├── vmov.ll │ │ │ │ ├── vmul.ll │ │ │ │ ├── vneg.ll │ │ │ │ ├── vpadal.ll │ │ │ │ ├── vpadd.ll │ │ │ │ ├── vpminmax.ll │ │ │ │ ├── vqadd.ll │ │ │ │ ├── vqdmul.ll │ │ │ │ ├── vqshl.ll │ │ │ │ ├── vqshrn.ll │ │ │ │ ├── vqsub.ll │ │ │ │ ├── vrec.ll │ │ │ │ ├── vrev.ll │ │ │ │ ├── vsel.ll │ │ │ │ ├── vselect_imax.ll │ │ │ │ ├── vshift.ll │ │ │ │ ├── vshiftins.ll │ │ │ │ ├── vshl.ll │ │ │ │ ├── vshll.ll │ │ │ │ ├── vshrn.ll │ │ │ │ ├── vsra.ll │ │ │ │ ├── vst1.ll │ │ │ │ ├── vst2.ll │ │ │ │ ├── vst3.ll │ │ │ │ ├── vst4.ll │ │ │ │ ├── vstlane.ll │ │ │ │ ├── vsub.ll │ │ │ │ ├── vtbl.ll │ │ │ │ ├── vtrn.ll │ │ │ │ ├── vuzp.ll │ │ │ │ ├── vzip.ll │ │ │ │ ├── warn-stack.ll │ │ │ │ ├── weak.ll │ │ │ │ ├── weak2.ll │ │ │ │ ├── wide-compares.ll │ │ │ │ ├── widen-vmovs.ll │ │ │ │ ├── wrong-t2stmia-size-opt.ll │ │ │ │ ├── xray-armv6-attribute-instrumentation.ll │ │ │ │ ├── xray-armv7-attribute-instrumentation.ll │ │ │ │ ├── xray-tail-call-sled.ll │ │ │ │ ├── zero-cycle-zero.ll │ │ │ │ └── zextload_demandedbits.ll │ │ │ ├── AVR │ │ │ │ ├── PR31344.ll │ │ │ │ ├── PR31345.ll │ │ │ │ ├── add.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── and.ll │ │ │ │ ├── atomics │ │ │ │ │ ├── fence.ll │ │ │ │ │ ├── load-store-16-unexpected-register-bug.ll │ │ │ │ │ ├── load16.ll │ │ │ │ │ ├── load32.ll │ │ │ │ │ ├── load64.ll │ │ │ │ │ ├── load8.ll │ │ │ │ │ ├── store.ll │ │ │ │ │ ├── store16.ll │ │ │ │ │ └── swap.ll │ │ │ │ ├── branch-relaxation-long.ll │ │ │ │ ├── branch-relaxation.ll │ │ │ │ ├── brind.ll │ │ │ │ ├── call.ll │ │ │ │ ├── calling-conv │ │ │ │ │ └── c │ │ │ │ │ │ ├── basic.ll │ │ │ │ │ │ ├── return.ll │ │ │ │ │ │ └── stack.ll │ │ │ │ ├── clear-bss.ll │ │ │ │ ├── cmp.ll │ │ │ │ ├── com.ll │ │ │ │ ├── copy-data-to-ram.ll │ │ │ │ ├── ctlz.ll │ │ │ │ ├── ctpop.ll │ │ │ │ ├── cttz.ll │ │ │ │ ├── directmem.ll │ │ │ │ ├── div.ll │ │ │ │ ├── dynalloca.ll │ │ │ │ ├── eor.ll │ │ │ │ ├── expand-integer-failure.ll │ │ │ │ ├── features │ │ │ │ │ ├── avr-tiny.ll │ │ │ │ │ └── avr25.ll │ │ │ │ ├── frame.ll │ │ │ │ ├── frmidx-iterator-bug.ll │ │ │ │ ├── high-pressure-on-ptrregs.ll │ │ │ │ ├── icall-func-pointer-correct-addr-space.ll │ │ │ │ ├── impossible-reg-to-reg-copy.ll │ │ │ │ ├── inline-asm │ │ │ │ │ ├── inline-asm.ll │ │ │ │ │ └── inline-asm2.ll │ │ │ │ ├── integration │ │ │ │ │ └── blink.ll │ │ │ │ ├── interrupts.ll │ │ │ │ ├── intrinsics │ │ │ │ │ ├── read_register.ll │ │ │ │ │ └── stacksave-restore.ll │ │ │ │ ├── io.ll │ │ │ │ ├── issue-cannot-select-bswap.ll │ │ │ │ ├── large-return-size.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── load.ll │ │ │ │ ├── lower-formal-arguments-assertion.ll │ │ │ │ ├── mul.ll │ │ │ │ ├── neg.ll │ │ │ │ ├── no-print-operand-twice.ll │ │ │ │ ├── or.ll │ │ │ │ ├── progmem-extended.ll │ │ │ │ ├── progmem.ll │ │ │ │ ├── pseudo │ │ │ │ │ ├── ADCWRdRr.mir │ │ │ │ │ ├── ADDWRdRr.mir │ │ │ │ │ ├── ANDIWRdK.mir │ │ │ │ │ ├── ANDWRdRr.mir │ │ │ │ │ ├── ASRWRd.mir │ │ │ │ │ ├── COMWRd.mir │ │ │ │ │ ├── CPCWRdRr.mir │ │ │ │ │ ├── CPWRdRr.mir │ │ │ │ │ ├── EORWRdRr.mir │ │ │ │ │ ├── FRMIDX.mir │ │ │ │ │ ├── INWRdA.mir │ │ │ │ │ ├── LDDWRdPtrQ-same-src-dst.mir │ │ │ │ │ ├── LDDWRdPtrQ.mir │ │ │ │ │ ├── LDDWRdYQ.mir │ │ │ │ │ ├── LDIWRdK.mir │ │ │ │ │ ├── LDSWRdK.mir │ │ │ │ │ ├── LDWRdPtr-same-src-dst.mir │ │ │ │ │ ├── LDWRdPtr.mir │ │ │ │ │ ├── LDWRdPtrPd.mir │ │ │ │ │ ├── LDWRdPtrPi.mir │ │ │ │ │ ├── LSLWRd.mir │ │ │ │ │ ├── LSRWRd.mir │ │ │ │ │ ├── ORIWRdK.mir │ │ │ │ │ ├── ORWRdRr.mir │ │ │ │ │ ├── OUTWARr.mir │ │ │ │ │ ├── POPWRd.mir │ │ │ │ │ ├── PUSHWRr.mir │ │ │ │ │ ├── SBCIWRdK.mir │ │ │ │ │ ├── SBCWRdRr.mir │ │ │ │ │ ├── SEXT.mir │ │ │ │ │ ├── STDWPtrQRr.mir │ │ │ │ │ ├── STSWKRr.mir │ │ │ │ │ ├── STWPtrPdRr.mir │ │ │ │ │ ├── STWPtrPiRr.mir │ │ │ │ │ ├── STWPtrRr.mir │ │ │ │ │ ├── SUBIWRdK.mir │ │ │ │ │ ├── SUBWRdRr.mir │ │ │ │ │ └── ZEXT.mir │ │ │ │ ├── relax-mem │ │ │ │ │ └── STDWPtrQRr.mir │ │ │ │ ├── rem.ll │ │ │ │ ├── return.ll │ │ │ │ ├── rot.ll │ │ │ │ ├── runtime-trig.ll │ │ │ │ ├── select-must-add-unconditional-jump.ll │ │ │ │ ├── sext.ll │ │ │ │ ├── shift.ll │ │ │ │ ├── sign-extension.ll │ │ │ │ ├── smul-with-overflow.ll │ │ │ │ ├── std-ldd-immediate-overflow.ll │ │ │ │ ├── store-undef.ll │ │ │ │ ├── store.ll │ │ │ │ ├── sub.ll │ │ │ │ ├── trunc.ll │ │ │ │ ├── umul-with-overflow.ll │ │ │ │ ├── unaligned-atomic-loads.ll │ │ │ │ ├── varargs.ll │ │ │ │ ├── xor.ll │ │ │ │ └── zext.ll │ │ │ ├── BPF │ │ │ │ ├── alu8.ll │ │ │ │ ├── atomics.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── byval.ll │ │ │ │ ├── cc_args.ll │ │ │ │ ├── cc_args_be.ll │ │ │ │ ├── cc_ret.ll │ │ │ │ ├── cmp.ll │ │ │ │ ├── dwarfdump.ll │ │ │ │ ├── ex1.ll │ │ │ │ ├── fi_ri.ll │ │ │ │ ├── inline_asm.ll │ │ │ │ ├── intrinsics.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── load.ll │ │ │ │ ├── loops.ll │ │ │ │ ├── many_args1.ll │ │ │ │ ├── many_args2.ll │ │ │ │ ├── mem_offset.ll │ │ │ │ ├── mem_offset_be.ll │ │ │ │ ├── objdump_atomics.ll │ │ │ │ ├── objdump_cond_op.ll │ │ │ │ ├── objdump_cond_op_2.ll │ │ │ │ ├── objdump_imm_hex.ll │ │ │ │ ├── objdump_intrinsics.ll │ │ │ │ ├── objdump_trivial.ll │ │ │ │ ├── reloc.ll │ │ │ │ ├── remove_truncate_1.ll │ │ │ │ ├── remove_truncate_2.ll │ │ │ │ ├── remove_truncate_3.ll │ │ │ │ ├── rodata_1.ll │ │ │ │ ├── rodata_2.ll │ │ │ │ ├── rodata_3.ll │ │ │ │ ├── rodata_4.ll │ │ │ │ ├── sanity.ll │ │ │ │ ├── sdiv_error.ll │ │ │ │ ├── select_ri.ll │ │ │ │ ├── setcc.ll │ │ │ │ ├── shifts.ll │ │ │ │ ├── sockex2.ll │ │ │ │ ├── struct_ret1.ll │ │ │ │ ├── struct_ret2.ll │ │ │ │ ├── undef.ll │ │ │ │ ├── vararg1.ll │ │ │ │ ├── warn-call.ll │ │ │ │ └── warn-stack.ll │ │ │ ├── Generic │ │ │ │ ├── 2002-04-14-UnexpectedUnsignedType.ll │ │ │ │ ├── 2002-04-16-StackFrameSizeAlignment.ll │ │ │ │ ├── 2003-05-27-phifcmpd.ll │ │ │ │ ├── 2003-05-27-useboolinotherbb.ll │ │ │ │ ├── 2003-05-27-usefsubasbool.ll │ │ │ │ ├── 2003-05-28-ManyArgs.ll │ │ │ │ ├── 2003-05-30-BadFoldGEP.ll │ │ │ │ ├── 2003-05-30-BadPreselectPhi.ll │ │ │ │ ├── 2003-07-06-BadIntCmp.ll │ │ │ │ ├── 2003-07-07-BadLongConst.ll │ │ │ │ ├── 2003-07-08-BadCastToBool.ll │ │ │ │ ├── 2003-07-29-BadConstSbyte.ll │ │ │ │ ├── 2004-05-09-LiveVarPartialRegister.ll │ │ │ │ ├── 2005-01-18-SetUO-InfLoop.ll │ │ │ │ ├── 2005-04-09-GlobalInPHI.ll │ │ │ │ ├── 2005-10-18-ZeroSizeStackObject.ll │ │ │ │ ├── 2005-10-21-longlonggtu.ll │ │ │ │ ├── 2005-12-01-Crash.ll │ │ │ │ ├── 2005-12-12-ExpandSextInreg.ll │ │ │ │ ├── 2006-01-12-BadSetCCFold.ll │ │ │ │ ├── 2006-01-18-InvalidBranchOpcodeAssert.ll │ │ │ │ ├── 2006-02-12-InsertLibcall.ll │ │ │ │ ├── 2006-03-01-dagcombineinfloop.ll │ │ │ │ ├── 2006-04-26-SetCCAnd.ll │ │ │ │ ├── 2006-04-28-Sign-extend-bool.ll │ │ │ │ ├── 2006-05-06-GEP-Cast-Sink-Crash.ll │ │ │ │ ├── 2006-06-12-LowerSwitchCrash.ll │ │ │ │ ├── 2006-06-13-ComputeMaskedBitsCrash.ll │ │ │ │ ├── 2006-06-28-SimplifySetCCCrash.ll │ │ │ │ ├── 2006-07-03-schedulers.ll │ │ │ │ ├── 2006-08-30-CoalescerCrash.ll │ │ │ │ ├── 2006-09-02-LocalAllocCrash.ll │ │ │ │ ├── 2006-09-06-SwitchLowering.ll │ │ │ │ ├── 2006-10-27-CondFolding.ll │ │ │ │ ├── 2006-10-29-Crash.ll │ │ │ │ ├── 2006-11-20-DAGCombineCrash.ll │ │ │ │ ├── 2007-01-15-LoadSelectCycle.ll │ │ │ │ ├── 2007-02-25-invoke.ll │ │ │ │ ├── 2007-04-08-MultipleFrameIndices.ll │ │ │ │ ├── 2007-04-13-SwitchLowerBadPhi.ll │ │ │ │ ├── 2007-04-17-lsr-crash.ll │ │ │ │ ├── 2007-04-27-InlineAsm-X-Dest.ll │ │ │ │ ├── 2007-04-27-LargeMemObject.ll │ │ │ │ ├── 2007-04-30-LandingPadBranchFolding.ll │ │ │ │ ├── 2007-05-03-EHTypeInfo.ll │ │ │ │ ├── 2007-05-15-InfiniteRecursion.ll │ │ │ │ ├── 2007-12-17-InvokeAsm.ll │ │ │ │ ├── 2007-12-31-UnusedSelector.ll │ │ │ │ ├── 2008-01-25-dag-combine-mul.ll │ │ │ │ ├── 2008-01-30-LoadCrash.ll │ │ │ │ ├── 2008-02-04-Ctlz.ll │ │ │ │ ├── 2008-02-04-ExtractSubvector.ll │ │ │ │ ├── 2008-02-20-MatchingMem.ll │ │ │ │ ├── 2008-02-25-NegateZero.ll │ │ │ │ ├── 2008-02-26-NegatableCrash.ll │ │ │ │ ├── 2008-08-07-PtrToInt-SmallerInt.ll │ │ │ │ ├── 2009-03-17-LSR-APInt.ll │ │ │ │ ├── 2009-03-29-SoftFloatVectorExtract.ll │ │ │ │ ├── 2009-04-10-SinkCrash.ll │ │ │ │ ├── 2009-04-28-i128-cmp-crash.ll │ │ │ │ ├── 2009-11-16-BadKillsCrash.ll │ │ │ │ ├── 2010-07-27-DAGCombineCrash.ll │ │ │ │ ├── 2010-11-04-BigByval.ll │ │ │ │ ├── 2010-ZeroSizedArg.ll │ │ │ │ ├── 2011-01-06-BigNumberCrash.ll │ │ │ │ ├── 2011-07-07-ScheduleDAGCrash.ll │ │ │ │ ├── 2012-06-08-APIntCrash.ll │ │ │ │ ├── 2013-03-20-APFloatCrash.ll │ │ │ │ ├── 2014-02-05-OpaqueConstants.ll │ │ │ │ ├── APIntLoadStore.ll │ │ │ │ ├── APIntParam.ll │ │ │ │ ├── APIntSextParam.ll │ │ │ │ ├── APIntZextParam.ll │ │ │ │ ├── BasicInstrs.ll │ │ │ │ ├── ConstantExprLowering.ll │ │ │ │ ├── ForceStackAlign.ll │ │ │ │ ├── MachineBranchProb.ll │ │ │ │ ├── PBQP.ll │ │ │ │ ├── add-with-overflow-128.ll │ │ │ │ ├── add-with-overflow-24.ll │ │ │ │ ├── add-with-overflow.ll │ │ │ │ ├── addr-label.ll │ │ │ │ ├── annotate.ll │ │ │ │ ├── asm-large-immediate.ll │ │ │ │ ├── assume.ll │ │ │ │ ├── badCallArgLRLLVM.ll │ │ │ │ ├── badFoldGEP.ll │ │ │ │ ├── badarg6.ll │ │ │ │ ├── bool-to-double.ll │ │ │ │ ├── bswap.ll │ │ │ │ ├── builtin-expect.ll │ │ │ │ ├── call-ret0.ll │ │ │ │ ├── call-ret42.ll │ │ │ │ ├── call-void.ll │ │ │ │ ├── call2-ret0.ll │ │ │ │ ├── cast-fp.ll │ │ │ │ ├── cfi-sections.ll │ │ │ │ ├── constindices.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── dag-combine-crash.ll │ │ │ │ ├── dbg_value.ll │ │ │ │ ├── div-neg-power-2.ll │ │ │ │ ├── donothing.ll │ │ │ │ ├── dont-remove-empty-preheader.ll │ │ │ │ ├── edge-bundles-blockIDs.ll │ │ │ │ ├── empty-insertvalue.ll │ │ │ │ ├── empty-load-store.ll │ │ │ │ ├── empty-phi.ll │ │ │ │ ├── exception-handling.ll │ │ │ │ ├── expand-experimental-reductions.ll │ │ │ │ ├── externally_available.ll │ │ │ │ ├── fastcall.ll │ │ │ │ ├── fneg-fabs.ll │ │ │ │ ├── fp-to-int-invalid.ll │ │ │ │ ├── fp_to_int.ll │ │ │ │ ├── fpowi-promote.ll │ │ │ │ ├── fwdtwice.ll │ │ │ │ ├── global-ret0.ll │ │ │ │ ├── hello.ll │ │ │ │ ├── i128-addsub.ll │ │ │ │ ├── i128-arith.ll │ │ │ │ ├── icmp-illegal.ll │ │ │ │ ├── inline-asm-mem-clobber.ll │ │ │ │ ├── inline-asm-special-strings.ll │ │ │ │ ├── intrinsics.ll │ │ │ │ ├── invalid-memcpy.ll │ │ │ │ ├── isunord.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── llc-start-stop.ll │ │ │ │ ├── llvm-ct-intrinsics.ll │ │ │ │ ├── multiple-return-values-cross-block-with-invoke.ll │ │ │ │ ├── negintconst.ll │ │ │ │ ├── nested-select.ll │ │ │ │ ├── no-target.ll │ │ │ │ ├── opt-codegen-no-target-machine.ll │ │ │ │ ├── overflow.ll │ │ │ │ ├── overloaded-intrinsic-name.ll │ │ │ │ ├── pr12507.ll │ │ │ │ ├── pr24662.ll │ │ │ │ ├── pr2625.ll │ │ │ │ ├── pr3288.ll │ │ │ │ ├── pr33094.ll │ │ │ │ ├── print-add.ll │ │ │ │ ├── print-after.ll │ │ │ │ ├── print-arith-fp.ll │ │ │ │ ├── print-arith-int.ll │ │ │ │ ├── print-int.ll │ │ │ │ ├── print-machineinstrs.ll │ │ │ │ ├── print-mul-exp.ll │ │ │ │ ├── print-mul.ll │ │ │ │ ├── print-shift.ll │ │ │ │ ├── ptr-annotate.ll │ │ │ │ ├── ret0.ll │ │ │ │ ├── ret42.ll │ │ │ │ ├── select-cc.ll │ │ │ │ ├── select.ll │ │ │ │ ├── shift-int64.ll │ │ │ │ ├── stacksave-restore.ll │ │ │ │ ├── storetrunc-fp.ll │ │ │ │ ├── switch-lower-feature.ll │ │ │ │ ├── switch-lower.ll │ │ │ │ ├── trap.ll │ │ │ │ ├── undef-phi.ll │ │ │ │ ├── v-split.ll │ │ │ │ ├── vector-casts.ll │ │ │ │ ├── vector-constantexpr.ll │ │ │ │ ├── vector-identity-shuffle.ll │ │ │ │ ├── vector-redux.ll │ │ │ │ ├── vector.ll │ │ │ │ ├── zero-probability.mir │ │ │ │ └── zero-sized-array.ll │ │ │ ├── Hexagon │ │ │ │ ├── Atomics.ll │ │ │ │ ├── BranchPredict.ll │ │ │ │ ├── NVJumpCmp.ll │ │ │ │ ├── PR33749.ll │ │ │ │ ├── SUnit-boundary-prob.ll │ │ │ │ ├── absaddr-store.ll │ │ │ │ ├── absimm.ll │ │ │ │ ├── addaddi.ll │ │ │ │ ├── adde.ll │ │ │ │ ├── addh-sext-trunc.ll │ │ │ │ ├── addh-shifted.ll │ │ │ │ ├── addh.ll │ │ │ │ ├── addr-calc-opt.ll │ │ │ │ ├── addrmode-globoff.mir │ │ │ │ ├── addrmode-indoff.ll │ │ │ │ ├── addrmode-keepdeadphis.mir │ │ │ │ ├── addrmode-rr-to-io.mir │ │ │ │ ├── adjust-latency-stackST.ll │ │ │ │ ├── alu64.ll │ │ │ │ ├── always-ext.ll │ │ │ │ ├── anti-dep-partial.mir │ │ │ │ ├── args.ll │ │ │ │ ├── ashift-left-right.ll │ │ │ │ ├── autohvx │ │ │ │ │ ├── align-128b.ll │ │ │ │ │ ├── align-64b.ll │ │ │ │ │ ├── arith.ll │ │ │ │ │ ├── build-vector-i32-type.ll │ │ │ │ │ ├── concat-vectors-128b.ll │ │ │ │ │ ├── concat-vectors-64b.ll │ │ │ │ │ ├── contract-128b.ll │ │ │ │ │ ├── contract-64b.ll │ │ │ │ │ ├── deal-128b.ll │ │ │ │ │ ├── deal-64b.ll │ │ │ │ │ ├── delta-128b.ll │ │ │ │ │ ├── delta-64b.ll │ │ │ │ │ ├── delta2-64b.ll │ │ │ │ │ ├── extract-element.ll │ │ │ │ │ ├── isel-bool-vector.ll │ │ │ │ │ ├── isel-concat-vectors.ll │ │ │ │ │ ├── isel-select-const.ll │ │ │ │ │ ├── isel-vec-ext.ll │ │ │ │ │ ├── lower-insert-elt.ll │ │ │ │ │ ├── perfect-single.ll │ │ │ │ │ ├── reg-sequence.ll │ │ │ │ │ ├── shuff-128b.ll │ │ │ │ │ ├── shuff-64b.ll │ │ │ │ │ ├── shuff-combos-128b.ll │ │ │ │ │ ├── shuff-combos-64b.ll │ │ │ │ │ ├── shuff-single.ll │ │ │ │ │ ├── vector-compare-128b.ll │ │ │ │ │ ├── vector-compare-64b.ll │ │ │ │ │ ├── vext-128b.ll │ │ │ │ │ ├── vext-64b.ll │ │ │ │ │ └── vmux-order.ll │ │ │ │ ├── avoid-predspill-calleesaved.ll │ │ │ │ ├── avoid-predspill.ll │ │ │ │ ├── bank-conflict-load.mir │ │ │ │ ├── barrier-flag.ll │ │ │ │ ├── base-offset-addr.ll │ │ │ │ ├── base-offset-post.ll │ │ │ │ ├── bit-bitsplit-at.ll │ │ │ │ ├── bit-bitsplit-src.ll │ │ │ │ ├── bit-bitsplit.ll │ │ │ │ ├── bit-eval.ll │ │ │ │ ├── bit-ext-sat.ll │ │ │ │ ├── bit-extract-off.ll │ │ │ │ ├── bit-extract.ll │ │ │ │ ├── bit-extractu-half.ll │ │ │ │ ├── bit-gen-rseq.ll │ │ │ │ ├── bit-has.ll │ │ │ │ ├── bit-loop-rc-mismatch.ll │ │ │ │ ├── bit-loop.ll │ │ │ │ ├── bit-phi.ll │ │ │ │ ├── bit-rie.ll │ │ │ │ ├── bit-skip-byval.ll │ │ │ │ ├── bit-validate-reg.ll │ │ │ │ ├── bit-visit-flowq.ll │ │ │ │ ├── bitconvert-vector.ll │ │ │ │ ├── bitmanip.ll │ │ │ │ ├── block-addr.ll │ │ │ │ ├── block-ranges-nodef.ll │ │ │ │ ├── branch-folder-hoist-kills.mir │ │ │ │ ├── branch-non-mbb.ll │ │ │ │ ├── branchfolder-insert-impdef.mir │ │ │ │ ├── branchfolder-keep-impdef.ll │ │ │ │ ├── brev_ld.ll │ │ │ │ ├── brev_st.ll │ │ │ │ ├── bugAsmHWloop.ll │ │ │ │ ├── build-vector-shuffle.ll │ │ │ │ ├── build-vector-v4i8-zext.ll │ │ │ │ ├── builtin-expect.ll │ │ │ │ ├── builtin-prefetch-offset.ll │ │ │ │ ├── builtin-prefetch.ll │ │ │ │ ├── call-ret-i1.ll │ │ │ │ ├── calling-conv-2.ll │ │ │ │ ├── callr-dep-edge.ll │ │ │ │ ├── cext-check.ll │ │ │ │ ├── cext-opt-basic.mir │ │ │ │ ├── cext-opt-numops.mir │ │ │ │ ├── cext-opt-range-offset.mir │ │ │ │ ├── cext-valid-packet1.ll │ │ │ │ ├── cext-valid-packet2.ll │ │ │ │ ├── cext.ll │ │ │ │ ├── cexti16.ll │ │ │ │ ├── cfgopt-fall-through.ll │ │ │ │ ├── cfi-late.ll │ │ │ │ ├── cfi-offset.ll │ │ │ │ ├── checktabs.ll │ │ │ │ ├── circ-load-isel.ll │ │ │ │ ├── circ_ld.ll │ │ │ │ ├── circ_ldd_bug.ll │ │ │ │ ├── circ_ldw.ll │ │ │ │ ├── circ_st.ll │ │ │ │ ├── clr_set_toggle.ll │ │ │ │ ├── cmp-extend.ll │ │ │ │ ├── cmp-promote.ll │ │ │ │ ├── cmp-to-genreg.ll │ │ │ │ ├── cmp-to-predreg.ll │ │ │ │ ├── cmp.ll │ │ │ │ ├── cmp_pred.ll │ │ │ │ ├── cmp_pred2.ll │ │ │ │ ├── cmp_pred_reg.ll │ │ │ │ ├── cmpb-dec-imm.ll │ │ │ │ ├── cmpb-eq.ll │ │ │ │ ├── cmpb_pred.ll │ │ │ │ ├── cmph-gtu.ll │ │ │ │ ├── combine.ll │ │ │ │ ├── combine_ir.ll │ │ │ │ ├── common-gep-basic.ll │ │ │ │ ├── common-gep-icm.ll │ │ │ │ ├── common-gep-inbounds.ll │ │ │ │ ├── compound.ll │ │ │ │ ├── const-pool-tf.ll │ │ │ │ ├── const64.ll │ │ │ │ ├── constp-clb.ll │ │ │ │ ├── constp-combine-neg.ll │ │ │ │ ├── constp-ctb.ll │ │ │ │ ├── constp-extract.ll │ │ │ │ ├── constp-physreg.ll │ │ │ │ ├── constp-rewrite-branches.ll │ │ │ │ ├── constp-rseq.ll │ │ │ │ ├── constp-vsplat.ll │ │ │ │ ├── convert-to-dot-old.ll │ │ │ │ ├── convert_const_i1_to_i8.ll │ │ │ │ ├── convertdptoint.ll │ │ │ │ ├── convertdptoll.ll │ │ │ │ ├── convertsptoint.ll │ │ │ │ ├── convertsptoll.ll │ │ │ │ ├── copy-to-combine-dbg.ll │ │ │ │ ├── csr-func-usedef.ll │ │ │ │ ├── ctor.ll │ │ │ │ ├── dadd.ll │ │ │ │ ├── dead-store-stack.ll │ │ │ │ ├── dmul.ll │ │ │ │ ├── double.ll │ │ │ │ ├── doubleconvert-ieee-rnd-near.ll │ │ │ │ ├── dsub.ll │ │ │ │ ├── dualstore.ll │ │ │ │ ├── duplex-addi-global-imm.mir │ │ │ │ ├── duplex.ll │ │ │ │ ├── early-if-conversion-bug1.ll │ │ │ │ ├── early-if-debug.mir │ │ │ │ ├── early-if-merge-loop.ll │ │ │ │ ├── early-if-phi-i1.ll │ │ │ │ ├── early-if-spare.ll │ │ │ │ ├── early-if-vecpi.ll │ │ │ │ ├── early-if-vecpred.ll │ │ │ │ ├── early-if.ll │ │ │ │ ├── eh_return.ll │ │ │ │ ├── eliminate-pred-spill.ll │ │ │ │ ├── expand-condsets-basic.ll │ │ │ │ ├── expand-condsets-dead-bad.ll │ │ │ │ ├── expand-condsets-dead-pred.ll │ │ │ │ ├── expand-condsets-def-undef.mir │ │ │ │ ├── expand-condsets-extend.ll │ │ │ │ ├── expand-condsets-imm.mir │ │ │ │ ├── expand-condsets-impuse.mir │ │ │ │ ├── expand-condsets-pred-undef.ll │ │ │ │ ├── expand-condsets-rm-reg.mir │ │ │ │ ├── expand-condsets-rm-segment.ll │ │ │ │ ├── expand-condsets-same-inputs.mir │ │ │ │ ├── expand-condsets-undef.ll │ │ │ │ ├── expand-condsets-undef2.ll │ │ │ │ ├── expand-condsets-undefvni.ll │ │ │ │ ├── expand-vselect-kill.ll │ │ │ │ ├── expand-vstorerw-undef.ll │ │ │ │ ├── expand-vstorerw-undef2.ll │ │ │ │ ├── extload-combine.ll │ │ │ │ ├── extract-basic.ll │ │ │ │ ├── fadd.ll │ │ │ │ ├── fcmp.ll │ │ │ │ ├── find-loop-instr.ll │ │ │ │ ├── fixed-spill-mutable.ll │ │ │ │ ├── float-amode.ll │ │ │ │ ├── float.ll │ │ │ │ ├── floatconvert-ieee-rnd-near.ll │ │ │ │ ├── fminmax.ll │ │ │ │ ├── fmul.ll │ │ │ │ ├── fpelim-basic.ll │ │ │ │ ├── frame-offset-overflow.ll │ │ │ │ ├── fsel.ll │ │ │ │ ├── fsub.ll │ │ │ │ ├── fusedandshift.ll │ │ │ │ ├── gp-plus-offset-load.ll │ │ │ │ ├── gp-plus-offset-store.ll │ │ │ │ ├── gp-rel.ll │ │ │ │ ├── hasfp-crash1.ll │ │ │ │ ├── hasfp-crash2.ll │ │ │ │ ├── hexagon_vector_loop_carried_reuse.ll │ │ │ │ ├── hexagon_vector_loop_carried_reuse_constant.ll │ │ │ │ ├── hvx-nontemporal.ll │ │ │ │ ├── hwloop-cleanup.ll │ │ │ │ ├── hwloop-const.ll │ │ │ │ ├── hwloop-crit-edge.ll │ │ │ │ ├── hwloop-dbg.ll │ │ │ │ ├── hwloop-le.ll │ │ │ │ ├── hwloop-loop1.ll │ │ │ │ ├── hwloop-lt.ll │ │ │ │ ├── hwloop-lt1.ll │ │ │ │ ├── hwloop-missed.ll │ │ │ │ ├── hwloop-ne.ll │ │ │ │ ├── hwloop-noreturn-call.ll │ │ │ │ ├── hwloop-ph-deadcode.ll │ │ │ │ ├── hwloop-pos-ivbump1.ll │ │ │ │ ├── hwloop-preh.ll │ │ │ │ ├── hwloop-preheader.ll │ │ │ │ ├── hwloop-range.ll │ │ │ │ ├── hwloop-recursion.ll │ │ │ │ ├── hwloop-redef-imm.mir │ │ │ │ ├── hwloop-wrap.ll │ │ │ │ ├── hwloop-wrap2.ll │ │ │ │ ├── hwloop1.ll │ │ │ │ ├── hwloop2.ll │ │ │ │ ├── hwloop3.ll │ │ │ │ ├── hwloop4.ll │ │ │ │ ├── hwloop5.ll │ │ │ │ ├── i16_VarArg.ll │ │ │ │ ├── i1_VarArg.ll │ │ │ │ ├── i8_VarArg.ll │ │ │ │ ├── idxload-with-zero-offset.ll │ │ │ │ ├── ifcvt-common-kill.mir │ │ │ │ ├── ifcvt-diamond-bad.ll │ │ │ │ ├── ifcvt-diamond-bug-2016-08-26.ll │ │ │ │ ├── ifcvt-edge-weight.ll │ │ │ │ ├── ifcvt-impuse-livein.mir │ │ │ │ ├── ifcvt-live-subreg.mir │ │ │ │ ├── ifcvt-simple-bprob.ll │ │ │ │ ├── indirect-br.ll │ │ │ │ ├── inline-asm-a.ll │ │ │ │ ├── inline-asm-bad-constraint.ll │ │ │ │ ├── inline-asm-hexagon.ll │ │ │ │ ├── inline-asm-i1.ll │ │ │ │ ├── inline-asm-qv.ll │ │ │ │ ├── inline-asm-vecpred128.ll │ │ │ │ ├── insert-basic.ll │ │ │ │ ├── insert4.ll │ │ │ │ ├── intrinsics │ │ │ │ │ ├── alu32_alu.ll │ │ │ │ │ ├── alu32_perm.ll │ │ │ │ │ ├── atomic_store.ll │ │ │ │ │ ├── byte-store-double.ll │ │ │ │ │ ├── byte-store.ll │ │ │ │ │ ├── cr.ll │ │ │ │ │ ├── llsc_bundling.ll │ │ │ │ │ ├── system_user.ll │ │ │ │ │ ├── v65-gather-double.ll │ │ │ │ │ ├── v65-gather.ll │ │ │ │ │ ├── v65-scatter-double.ll │ │ │ │ │ ├── v65-scatter-gather.ll │ │ │ │ │ ├── v65-scatter.ll │ │ │ │ │ ├── v65.ll │ │ │ │ │ ├── xtype_alu.ll │ │ │ │ │ ├── xtype_bit.ll │ │ │ │ │ ├── xtype_complex.ll │ │ │ │ │ ├── xtype_fp.ll │ │ │ │ │ ├── xtype_mpy.ll │ │ │ │ │ ├── xtype_perm.ll │ │ │ │ │ ├── xtype_pred.ll │ │ │ │ │ └── xtype_shift.ll │ │ │ │ ├── invalid-dotnew-attempt.mir │ │ │ │ ├── is-legal-void.ll │ │ │ │ ├── isel-combine-half.ll │ │ │ │ ├── isel-exti1.ll │ │ │ │ ├── isel-i1arg-crash.ll │ │ │ │ ├── isel-op-zext-i1.ll │ │ │ │ ├── isel-prefer.ll │ │ │ │ ├── jt-in-text.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── livephysregs-add-pristines.mir │ │ │ │ ├── livephysregs-lane-masks.mir │ │ │ │ ├── livephysregs-lane-masks2.mir │ │ │ │ ├── loadi1-G0.ll │ │ │ │ ├── loadi1-v4-G0.ll │ │ │ │ ├── loadi1-v4.ll │ │ │ │ ├── loadi1.ll │ │ │ │ ├── long-calls.ll │ │ │ │ ├── loop-idiom │ │ │ │ │ ├── hexagon-memmove1.ll │ │ │ │ │ ├── hexagon-memmove2.ll │ │ │ │ │ ├── lcssa.ll │ │ │ │ │ ├── memmove-rt-check.ll │ │ │ │ │ ├── nullptr-crash.ll │ │ │ │ │ ├── pmpy-infinite-loop.ll │ │ │ │ │ ├── pmpy-long-loop.ll │ │ │ │ │ ├── pmpy-mod.ll │ │ │ │ │ ├── pmpy-shiftconv-fail.ll │ │ │ │ │ └── pmpy.ll │ │ │ │ ├── loop-prefetch.ll │ │ │ │ ├── lower-extract-subvector.ll │ │ │ │ ├── macint.ll │ │ │ │ ├── maxd.ll │ │ │ │ ├── maxh.ll │ │ │ │ ├── maxud.ll │ │ │ │ ├── maxuw.ll │ │ │ │ ├── maxw.ll │ │ │ │ ├── mem-fi-add.ll │ │ │ │ ├── memcpy-likely-aligned.ll │ │ │ │ ├── memops-stack.ll │ │ │ │ ├── memops.ll │ │ │ │ ├── memops1.ll │ │ │ │ ├── memops2.ll │ │ │ │ ├── memops3.ll │ │ │ │ ├── mind.ll │ │ │ │ ├── minu-zext-16.ll │ │ │ │ ├── minu-zext-8.ll │ │ │ │ ├── minud.ll │ │ │ │ ├── minuw.ll │ │ │ │ ├── minw.ll │ │ │ │ ├── misaligned-access.ll │ │ │ │ ├── misaligned_double_vector_store_not_fast.ll │ │ │ │ ├── misched-top-rptracker-sync.ll │ │ │ │ ├── mpy.ll │ │ │ │ ├── mul64-sext.ll │ │ │ │ ├── mulh.ll │ │ │ │ ├── mulhs.ll │ │ │ │ ├── multi-cycle.ll │ │ │ │ ├── mux-basic.ll │ │ │ │ ├── mux-kill1.mir │ │ │ │ ├── mux-kill2.mir │ │ │ │ ├── mux-kill3.mir │ │ │ │ ├── mux-undef.ll │ │ │ │ ├── newify-crash.ll │ │ │ │ ├── newvalueSameReg.ll │ │ │ │ ├── newvaluejump-c4.mir │ │ │ │ ├── newvaluejump-kill.ll │ │ │ │ ├── newvaluejump-kill2.mir │ │ │ │ ├── newvaluejump-solo.mir │ │ │ │ ├── newvaluejump.ll │ │ │ │ ├── newvaluejump2.ll │ │ │ │ ├── newvaluejump3.ll │ │ │ │ ├── newvaluestore.ll │ │ │ │ ├── opt-addr-mode.ll │ │ │ │ ├── opt-fabs.ll │ │ │ │ ├── opt-fneg.ll │ │ │ │ ├── opt-spill-volatile.ll │ │ │ │ ├── packetize-cfi-location.ll │ │ │ │ ├── packetize-load-store-aliasing.mir │ │ │ │ ├── packetize-nvj-no-prune.mir │ │ │ │ ├── packetize-return-arg.ll │ │ │ │ ├── packetize-tailcall-arg.ll │ │ │ │ ├── packetize_cond_inst.ll │ │ │ │ ├── peephole-kill-flags.ll │ │ │ │ ├── peephole-op-swap.ll │ │ │ │ ├── pic-jumptables.ll │ │ │ │ ├── pic-local.ll │ │ │ │ ├── pic-regusage.ll │ │ │ │ ├── pic-simple.ll │ │ │ │ ├── pic-static.ll │ │ │ │ ├── plt-rel.ll │ │ │ │ ├── post-inc-aa-metadata.ll │ │ │ │ ├── post-ra-kill-update.mir │ │ │ │ ├── postinc-baseoffset.mir │ │ │ │ ├── postinc-load.ll │ │ │ │ ├── postinc-offset.ll │ │ │ │ ├── postinc-store.ll │ │ │ │ ├── pred-absolute-store.ll │ │ │ │ ├── pred-gp.ll │ │ │ │ ├── pred-instrs.ll │ │ │ │ ├── predicate-copy.ll │ │ │ │ ├── predicate-logical.ll │ │ │ │ ├── predicate-rcmp.ll │ │ │ │ ├── propagate-vcombine.ll │ │ │ │ ├── rdf-copy-undef2.ll │ │ │ │ ├── rdf-copy.ll │ │ │ │ ├── rdf-cover-use.ll │ │ │ │ ├── rdf-dead-loop.ll │ │ │ │ ├── rdf-def-mask.ll │ │ │ │ ├── rdf-ehlabel-live.mir │ │ │ │ ├── rdf-extra-livein.ll │ │ │ │ ├── rdf-filter-defs.ll │ │ │ │ ├── rdf-ignore-undef.ll │ │ │ │ ├── rdf-inline-asm-fixed.ll │ │ │ │ ├── rdf-inline-asm.ll │ │ │ │ ├── rdf-multiple-phis-up.ll │ │ │ │ ├── rdf-phi-shadows.ll │ │ │ │ ├── rdf-phi-up.ll │ │ │ │ ├── rdf-reset-kills.ll │ │ │ │ ├── readcyclecounter.ll │ │ │ │ ├── reg-scavengebug-3.ll │ │ │ │ ├── reg-scavenger-valid-slot.ll │ │ │ │ ├── regalloc-bad-undef.mir │ │ │ │ ├── regalloc-block-overlap.ll │ │ │ │ ├── regalloc-liveout-undef.mir │ │ │ │ ├── relax.ll │ │ │ │ ├── remove-endloop.ll │ │ │ │ ├── remove_lsr.ll │ │ │ │ ├── restore-single-reg.ll │ │ │ │ ├── ret-struct-by-val.ll │ │ │ │ ├── runtime-stkchk.ll │ │ │ │ ├── sdata-array.ll │ │ │ │ ├── sdata-basic.ll │ │ │ │ ├── sdr-basic.ll │ │ │ │ ├── sdr-shr32.ll │ │ │ │ ├── section_7275.ll │ │ │ │ ├── select-instr-align.ll │ │ │ │ ├── sf-min-max.ll │ │ │ │ ├── sffms.ll │ │ │ │ ├── shrink-frame-basic.ll │ │ │ │ ├── signed_immediates.ll │ │ │ │ ├── simple_addend.ll │ │ │ │ ├── simpletailcall.ll │ │ │ │ ├── split-const32-const64.ll │ │ │ │ ├── stack-align-reset.ll │ │ │ │ ├── stack-align1.ll │ │ │ │ ├── stack-align2.ll │ │ │ │ ├── stack-alloca1.ll │ │ │ │ ├── stack-alloca2.ll │ │ │ │ ├── static.ll │ │ │ │ ├── store-imm-amode.ll │ │ │ │ ├── store-imm-large-stack.ll │ │ │ │ ├── store-imm-stack-object.ll │ │ │ │ ├── store-shift.ll │ │ │ │ ├── store-widen-aliased-load.ll │ │ │ │ ├── store-widen-negv.ll │ │ │ │ ├── store-widen-negv2.ll │ │ │ │ ├── store-widen.ll │ │ │ │ ├── storerd-io-over-rr.ll │ │ │ │ ├── storerinewabs.ll │ │ │ │ ├── struct_args.ll │ │ │ │ ├── struct_args_large.ll │ │ │ │ ├── sube.ll │ │ │ │ ├── subi-asl.ll │ │ │ │ ├── switch-lut-explicit-section.ll │ │ │ │ ├── switch-lut-function-section.ll │ │ │ │ ├── switch-lut-multiple-functions.ll │ │ │ │ ├── switch-lut-text-section.ll │ │ │ │ ├── swp-const-tc.ll │ │ │ │ ├── swp-dag-phi.ll │ │ │ │ ├── swp-epilog-phi10.ll │ │ │ │ ├── swp-epilog-reuse-1.ll │ │ │ │ ├── swp-epilog-reuse.ll │ │ │ │ ├── swp-matmul-bitext.ll │ │ │ │ ├── swp-max.ll │ │ │ │ ├── swp-multi-loops.ll │ │ │ │ ├── swp-order-copies.ll │ │ │ │ ├── swp-prolog-phi4.ll │ │ │ │ ├── swp-stages4.ll │ │ │ │ ├── swp-stages5.ll │ │ │ │ ├── swp-vect-dotprod.ll │ │ │ │ ├── swp-vmult.ll │ │ │ │ ├── swp-vsum.ll │ │ │ │ ├── tail-call-mem-intrinsics.ll │ │ │ │ ├── tail-call-trunc.ll │ │ │ │ ├── tail-dup-subreg-abort.ll │ │ │ │ ├── tail-dup-subreg-map.ll │ │ │ │ ├── tailcall_fastcc_ccc.ll │ │ │ │ ├── target-flag-ext.mir │ │ │ │ ├── tfr-to-combine.ll │ │ │ │ ├── tls_pic.ll │ │ │ │ ├── tls_static.ll │ │ │ │ ├── trap-unreachable.ll │ │ │ │ ├── two-crash.ll │ │ │ │ ├── undo-dag-shift.ll │ │ │ │ ├── union-1.ll │ │ │ │ ├── unreachable-mbb-phi-subreg.mir │ │ │ │ ├── usr-ovf-dep.ll │ │ │ │ ├── v60-cur.ll │ │ │ │ ├── v60-vsel1.ll │ │ │ │ ├── v60Intrins.ll │ │ │ │ ├── v60Vasr.ll │ │ │ │ ├── v60small.ll │ │ │ │ ├── v6vec-vprint.ll │ │ │ │ ├── vaddh.ll │ │ │ │ ├── validate-offset.ll │ │ │ │ ├── vassign-to-combine.ll │ │ │ │ ├── vdmpy-halide-test.ll │ │ │ │ ├── vec-pred-spill1.ll │ │ │ │ ├── vec-vararg-align.ll │ │ │ │ ├── vect │ │ │ │ │ ├── vect-anyextend.ll │ │ │ │ │ ├── vect-apint-truncate.ll │ │ │ │ │ ├── vect-bad-bitcast.ll │ │ │ │ │ ├── vect-bitcast-1.ll │ │ │ │ │ ├── vect-bitcast.ll │ │ │ │ │ ├── vect-cst-v4i32.ll │ │ │ │ │ ├── vect-cst-v4i8.ll │ │ │ │ │ ├── vect-cst.ll │ │ │ │ │ ├── vect-extract-i1-debug.ll │ │ │ │ │ ├── vect-extract-i1.ll │ │ │ │ │ ├── vect-extract.ll │ │ │ │ │ ├── vect-fma.ll │ │ │ │ │ ├── vect-illegal-type.ll │ │ │ │ │ ├── vect-infloop.ll │ │ │ │ │ ├── vect-insert-extract-elt.ll │ │ │ │ │ ├── vect-load-1.ll │ │ │ │ │ ├── vect-load-v4i16.ll │ │ │ │ │ ├── vect-load.ll │ │ │ │ │ ├── vect-mul-v2i16.ll │ │ │ │ │ ├── vect-mul-v2i32.ll │ │ │ │ │ ├── vect-mul-v4i16.ll │ │ │ │ │ ├── vect-mul-v4i8.ll │ │ │ │ │ ├── vect-mul-v8i8.ll │ │ │ │ │ ├── vect-no-tfrs-1.ll │ │ │ │ │ ├── vect-no-tfrs.ll │ │ │ │ │ ├── vect-shift-imm.ll │ │ │ │ │ ├── vect-shuffle.ll │ │ │ │ │ ├── vect-splat.ll │ │ │ │ │ ├── vect-store-v2i16.ll │ │ │ │ │ ├── vect-truncate.ll │ │ │ │ │ ├── vect-v4i16.ll │ │ │ │ │ ├── vect-vaddb-1.ll │ │ │ │ │ ├── vect-vaddb.ll │ │ │ │ │ ├── vect-vaddh-1.ll │ │ │ │ │ ├── vect-vaddh.ll │ │ │ │ │ ├── vect-vaddw.ll │ │ │ │ │ ├── vect-vaslw.ll │ │ │ │ │ ├── vect-vshifts.ll │ │ │ │ │ ├── vect-vsplatb.ll │ │ │ │ │ ├── vect-vsplath.ll │ │ │ │ │ ├── vect-vsubb-1.ll │ │ │ │ │ ├── vect-vsubb.ll │ │ │ │ │ ├── vect-vsubh-1.ll │ │ │ │ │ ├── vect-vsubh.ll │ │ │ │ │ ├── vect-vsubw.ll │ │ │ │ │ ├── vect-xor.ll │ │ │ │ │ └── vect-zeroextend.ll │ │ │ │ ├── vector-align.ll │ │ │ │ ├── vector-ext-load.ll │ │ │ │ ├── vload-postinc-sel.ll │ │ │ │ ├── vmpa-halide-test.ll │ │ │ │ ├── vpack_eo.ll │ │ │ │ ├── vselect-pseudo.ll │ │ │ │ ├── vsplat-isel.ll │ │ │ │ └── zextloadi1.ll │ │ │ ├── Inputs │ │ │ │ └── DbgValueOtherTargets.ll │ │ │ ├── Lanai │ │ │ │ ├── codemodel.ll │ │ │ │ ├── comparisons_i32.ll │ │ │ │ ├── comparisons_i64.ll │ │ │ │ ├── constant_multiply.ll │ │ │ │ ├── delay_filler.ll │ │ │ │ ├── i32.ll │ │ │ │ ├── lanai-misched-trivial-disjoint.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── lshift64.ll │ │ │ │ ├── masking_setccs.ll │ │ │ │ ├── mem_alu_combiner.ll │ │ │ │ ├── multiply.ll │ │ │ │ ├── peephole-compare.mir │ │ │ │ ├── rshift64.ll │ │ │ │ ├── select.ll │ │ │ │ ├── set_and_hi.ll │ │ │ │ ├── shift.ll │ │ │ │ ├── stack-frame.ll │ │ │ │ ├── sub-cmp-peephole.ll │ │ │ │ └── subword.ll │ │ │ ├── MIR │ │ │ │ ├── AArch64 │ │ │ │ │ ├── atomic-memoperands.mir │ │ │ │ │ ├── cfi.mir │ │ │ │ │ ├── expected-target-flag-name.mir │ │ │ │ │ ├── generic-virtual-registers-error.mir │ │ │ │ │ ├── generic-virtual-registers-with-regbank-error.mir │ │ │ │ │ ├── intrinsics.mir │ │ │ │ │ ├── invalid-target-flag-name.mir │ │ │ │ │ ├── invalid-target-memoperands.mir │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── multiple-lhs-operands.mir │ │ │ │ │ ├── register-operand-bank.mir │ │ │ │ │ ├── spill-fold.mir │ │ │ │ │ ├── stack-object-local-offset.mir │ │ │ │ │ ├── swp.mir │ │ │ │ │ ├── target-flags.mir │ │ │ │ │ └── target-memoperands.mir │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── expected-target-index-name.mir │ │ │ │ │ ├── fold-imm-f16-f32.mir │ │ │ │ │ ├── fold-multiple.mir │ │ │ │ │ ├── intrinsics.mir │ │ │ │ │ ├── invalid-target-index-operand.mir │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── memory-legalizer-atomic-insert-end.mir │ │ │ │ │ ├── memory-legalizer-multiple-mem-operands-atomics.mir │ │ │ │ │ ├── memory-legalizer-multiple-mem-operands-nontemporal-1.mir │ │ │ │ │ ├── memory-legalizer-multiple-mem-operands-nontemporal-2.mir │ │ │ │ │ ├── stack-id.mir │ │ │ │ │ ├── syncscopes.mir │ │ │ │ │ ├── target-flags.mir │ │ │ │ │ └── target-index-operands.mir │ │ │ │ ├── ARM │ │ │ │ │ ├── PR32721_ifcvt_triangle_unanalyzable.mir │ │ │ │ │ ├── bundled-instructions.mir │ │ │ │ │ ├── cfi-same-value.mir │ │ │ │ │ ├── expected-closing-brace.mir │ │ │ │ │ ├── extraneous-closing-brace-error.mir │ │ │ │ │ ├── ifcvt_canFallThroughTo.mir │ │ │ │ │ ├── ifcvt_diamond_unanalyzable.mir │ │ │ │ │ ├── ifcvt_forked_diamond_unanalyzable.mir │ │ │ │ │ ├── ifcvt_simple_bad_zero_prob_succ.mir │ │ │ │ │ ├── ifcvt_simple_unanalyzable.mir │ │ │ │ │ ├── ifcvt_triangleWoCvtToNextEdge.mir │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── nested-instruction-bundle-error.mir │ │ │ │ │ └── target-constant-pools-error.mir │ │ │ │ ├── Generic │ │ │ │ │ ├── basic-blocks.mir │ │ │ │ │ ├── expected-colon-after-basic-block.mir │ │ │ │ │ ├── expected-mbb-reference-for-successor-mbb.mir │ │ │ │ │ ├── frame-info.mir │ │ │ │ │ ├── global-isel-properties.mir │ │ │ │ │ ├── invalid-jump-table-kind.mir │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── llvm-ir-error-reported.mir │ │ │ │ │ ├── llvmIR.mir │ │ │ │ │ ├── llvmIRMissing.mir │ │ │ │ │ ├── machine-basic-block-ir-block-reference.mir │ │ │ │ │ ├── machine-basic-block-redefinition-error.mir │ │ │ │ │ ├── machine-basic-block-undefined-ir-block.mir │ │ │ │ │ ├── machine-basic-block-unknown-name.mir │ │ │ │ │ ├── machine-function-missing-body.mir │ │ │ │ │ ├── machine-function-missing-function.mir │ │ │ │ │ ├── machine-function-missing-name.mir │ │ │ │ │ ├── machine-function-redefinition-error.mir │ │ │ │ │ ├── machine-function.mir │ │ │ │ │ ├── multiRunPass.mir │ │ │ │ │ ├── register-info.mir │ │ │ │ │ └── runPass.mir │ │ │ │ ├── Hexagon │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── parse-lane-masks.mir │ │ │ │ │ └── target-flags.mir │ │ │ │ ├── Mips │ │ │ │ │ ├── expected-global-value-or-symbol-after-call-entry.mir │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── memory-operands.mir │ │ │ │ ├── NVPTX │ │ │ │ │ ├── expected-floating-point-literal.mir │ │ │ │ │ ├── floating-point-immediate-operands.mir │ │ │ │ │ ├── floating-point-invalid-type-error.mir │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── PowerPC │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── unordered-implicit-registers.mir │ │ │ │ └── README │ │ │ ├── MSP430 │ │ │ │ ├── 2009-05-10-CyclicDAG.ll │ │ │ │ ├── 2009-05-17-Rot.ll │ │ │ │ ├── 2009-05-17-Shift.ll │ │ │ │ ├── 2009-05-19-DoubleSplit.ll │ │ │ │ ├── 2009-08-25-DynamicStackAlloc.ll │ │ │ │ ├── 2009-09-18-AbsoluteAddr.ll │ │ │ │ ├── 2009-10-10-OrImpDef.ll │ │ │ │ ├── 2009-11-08-InvalidResNo.ll │ │ │ │ ├── 2009-11-20-NewNode.ll │ │ │ │ ├── 2009-12-21-FrameAddr.ll │ │ │ │ ├── 2009-12-22-InlineAsm.ll │ │ │ │ ├── 2010-05-01-CombinerAnd.ll │ │ │ │ ├── AddrMode-bis-rx.ll │ │ │ │ ├── AddrMode-bis-xr.ll │ │ │ │ ├── AddrMode-mov-rx.ll │ │ │ │ ├── AddrMode-mov-xr.ll │ │ │ │ ├── BranchSelector.ll │ │ │ │ ├── DbgValueOtherTargets.test │ │ │ │ ├── Inst16mi.ll │ │ │ │ ├── Inst16mm.ll │ │ │ │ ├── Inst16mr.ll │ │ │ │ ├── Inst16ri.ll │ │ │ │ ├── Inst16rm.ll │ │ │ │ ├── Inst16rr.ll │ │ │ │ ├── Inst8mi.ll │ │ │ │ ├── Inst8mm.ll │ │ │ │ ├── Inst8mr.ll │ │ │ │ ├── Inst8ri.ll │ │ │ │ ├── Inst8rm.ll │ │ │ │ ├── Inst8rr.ll │ │ │ │ ├── asm-clobbers.ll │ │ │ │ ├── bit.ll │ │ │ │ ├── byval.ll │ │ │ │ ├── cc_args.ll │ │ │ │ ├── cc_ret.ll │ │ │ │ ├── flt_rounds.ll │ │ │ │ ├── fp.ll │ │ │ │ ├── hwmult16.ll │ │ │ │ ├── hwmult32.ll │ │ │ │ ├── hwmultf5.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── indirectbr2.ll │ │ │ │ ├── inline-asm.ll │ │ │ │ ├── jumptable.ll │ │ │ │ ├── libcalls.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── memset.ll │ │ │ │ ├── misched-msp430.ll │ │ │ │ ├── mult-alt-generic-msp430.ll │ │ │ │ ├── postinc.ll │ │ │ │ ├── promote-i8-mul.ll │ │ │ │ ├── select-use-sr.ll │ │ │ │ ├── setcc.ll │ │ │ │ ├── shifts.ll │ │ │ │ ├── spill-to-stack.ll │ │ │ │ ├── struct-return.ll │ │ │ │ ├── struct_layout.ll │ │ │ │ ├── transient-stack-alignment.ll │ │ │ │ ├── umulo-16.ll │ │ │ │ └── vararg.ll │ │ │ ├── Mips │ │ │ │ ├── 2008-06-05-Carry.ll │ │ │ │ ├── 2008-07-03-SRet.ll │ │ │ │ ├── 2008-07-06-fadd64.ll │ │ │ │ ├── 2008-07-07-FPExtend.ll │ │ │ │ ├── 2008-07-07-Float2Int.ll │ │ │ │ ├── 2008-07-07-IntDoubleConvertions.ll │ │ │ │ ├── 2008-07-15-InternalConstant.ll │ │ │ │ ├── 2008-07-15-SmallSection.ll │ │ │ │ ├── 2008-07-16-SignExtInReg.ll │ │ │ │ ├── 2008-07-22-Cstpool.ll │ │ │ │ ├── 2008-07-23-fpcmp.ll │ │ │ │ ├── 2008-07-29-icmp.ll │ │ │ │ ├── 2008-07-31-fcopysign.ll │ │ │ │ ├── 2008-08-01-AsmInline.ll │ │ │ │ ├── 2008-08-03-ReturnDouble.ll │ │ │ │ ├── 2008-08-03-fabs64.ll │ │ │ │ ├── 2008-08-04-Bitconvert.ll │ │ │ │ ├── 2008-08-06-Alloca.ll │ │ │ │ ├── 2008-08-07-CC.ll │ │ │ │ ├── 2008-08-07-FPRound.ll │ │ │ │ ├── 2008-08-08-bswap.ll │ │ │ │ ├── 2008-08-08-ctlz.ll │ │ │ │ ├── 2008-10-13-LegalizerBug.ll │ │ │ │ ├── 2008-11-10-xint_to_fp.ll │ │ │ │ ├── 2009-11-16-CstPoolLoad.ll │ │ │ │ ├── 2010-07-20-Switch.ll │ │ │ │ ├── 2010-11-09-CountLeading.ll │ │ │ │ ├── 2010-11-09-Mul.ll │ │ │ │ ├── 2011-05-26-BranchKillsVreg.ll │ │ │ │ ├── 2012-12-12-ExpandMemcpy.ll │ │ │ │ ├── 2013-11-18-fp64-const0.ll │ │ │ │ ├── DbgValueOtherTargets.test │ │ │ │ ├── Fast-ISel │ │ │ │ │ ├── br1.ll │ │ │ │ │ ├── bswap1.ll │ │ │ │ │ ├── callabi.ll │ │ │ │ │ ├── check-disabled-mcpus.ll │ │ │ │ │ ├── constexpr-address.ll │ │ │ │ │ ├── div1.ll │ │ │ │ │ ├── double-arg.ll │ │ │ │ │ ├── fast-isel-softfloat-lower-args.ll │ │ │ │ │ ├── fastalloca.ll │ │ │ │ │ ├── fastcc-miss.ll │ │ │ │ │ ├── fpcmpa.ll │ │ │ │ │ ├── fpext.ll │ │ │ │ │ ├── fpintconv.ll │ │ │ │ │ ├── fptrunc.ll │ │ │ │ │ ├── icmpa.ll │ │ │ │ │ ├── loadstore2.ll │ │ │ │ │ ├── loadstoreconv.ll │ │ │ │ │ ├── loadstrconst.ll │ │ │ │ │ ├── logopm.ll │ │ │ │ │ ├── memtest1.ll │ │ │ │ │ ├── mul1.ll │ │ │ │ │ ├── nullvoid.ll │ │ │ │ │ ├── overflt.ll │ │ │ │ │ ├── rem1.ll │ │ │ │ │ ├── retabi.ll │ │ │ │ │ ├── sel1.ll │ │ │ │ │ ├── shftopm.ll │ │ │ │ │ ├── shift.ll │ │ │ │ │ ├── simplestore.ll │ │ │ │ │ ├── simplestorefp1.ll │ │ │ │ │ ├── simplestorei.ll │ │ │ │ │ └── stackloadstore.ll │ │ │ │ ├── abicalls.ll │ │ │ │ ├── abiflags-xx.ll │ │ │ │ ├── abiflags32.ll │ │ │ │ ├── addc.ll │ │ │ │ ├── addi.ll │ │ │ │ ├── addressing-mode.ll │ │ │ │ ├── adjust-callstack-sp.ll │ │ │ │ ├── align16.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── alloca16.ll │ │ │ │ ├── analyzebranch.ll │ │ │ │ ├── and1.ll │ │ │ │ ├── asm-large-immediate.ll │ │ │ │ ├── assertzext-trunc.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── atomicCmpSwapPW.ll │ │ │ │ ├── atomicops.ll │ │ │ │ ├── beqzc.ll │ │ │ │ ├── beqzc1.ll │ │ │ │ ├── biggot.ll │ │ │ │ ├── blez_bgez.ll │ │ │ │ ├── blockaddr.ll │ │ │ │ ├── br-jmp.ll │ │ │ │ ├── brconeq.ll │ │ │ │ ├── brconeqk.ll │ │ │ │ ├── brconeqz.ll │ │ │ │ ├── brconge.ll │ │ │ │ ├── brcongt.ll │ │ │ │ ├── brconle.ll │ │ │ │ ├── brconlt.ll │ │ │ │ ├── brconne.ll │ │ │ │ ├── brconnek.ll │ │ │ │ ├── brconnez.ll │ │ │ │ ├── brdelayslot.ll │ │ │ │ ├── brind-tailcall.ll │ │ │ │ ├── brind.ll │ │ │ │ ├── brsize3.ll │ │ │ │ ├── brsize3a.ll │ │ │ │ ├── brundef.ll │ │ │ │ ├── bswap.ll │ │ │ │ ├── buildpairextractelementf64.ll │ │ │ │ ├── cache-intrinsic.ll │ │ │ │ ├── call-optimization.ll │ │ │ │ ├── cconv │ │ │ │ │ ├── arguments-float.ll │ │ │ │ │ ├── arguments-fp128.ll │ │ │ │ │ ├── arguments-hard-float-varargs.ll │ │ │ │ │ ├── arguments-hard-float.ll │ │ │ │ │ ├── arguments-hard-fp128.ll │ │ │ │ │ ├── arguments-small-structures-bigger-than-32bits.ll │ │ │ │ │ ├── arguments-struct.ll │ │ │ │ │ ├── arguments-varargs-small-structs-byte.ll │ │ │ │ │ ├── arguments-varargs-small-structs-combinations.ll │ │ │ │ │ ├── arguments-varargs-small-structs-multiple-args.ll │ │ │ │ │ ├── arguments-varargs.ll │ │ │ │ │ ├── arguments.ll │ │ │ │ │ ├── callee-saved-float.ll │ │ │ │ │ ├── callee-saved-fpxx.ll │ │ │ │ │ ├── callee-saved-fpxx1.ll │ │ │ │ │ ├── callee-saved.ll │ │ │ │ │ ├── memory-layout.ll │ │ │ │ │ ├── pr33883.ll │ │ │ │ │ ├── reserved-space.ll │ │ │ │ │ ├── return-float.ll │ │ │ │ │ ├── return-hard-float.ll │ │ │ │ │ ├── return-hard-fp128.ll │ │ │ │ │ ├── return-hard-struct-f128.ll │ │ │ │ │ ├── return-struct.ll │ │ │ │ │ ├── return.ll │ │ │ │ │ ├── roundl-call.ll │ │ │ │ │ ├── stack-alignment.ll │ │ │ │ │ └── vector.ll │ │ │ │ ├── cfi_offset.ll │ │ │ │ ├── check-adde-redundant-moves.ll │ │ │ │ ├── check-noat.ll │ │ │ │ ├── ci2.ll │ │ │ │ ├── cins.ll │ │ │ │ ├── cmov.ll │ │ │ │ ├── cmplarge.ll │ │ │ │ ├── compactbranches │ │ │ │ │ ├── beqc-bnec-register-constraint.ll │ │ │ │ │ ├── compact-branch-implicit-def.mir │ │ │ │ │ ├── compact-branch-policy.ll │ │ │ │ │ ├── compact-branches-64.ll │ │ │ │ │ ├── compact-branches.ll │ │ │ │ │ ├── empty-block.mir │ │ │ │ │ ├── no-beqzc-bnezc.ll │ │ │ │ │ └── unsafe-in-forbidden-slot.ll │ │ │ │ ├── const-mult.ll │ │ │ │ ├── const1.ll │ │ │ │ ├── const4a.ll │ │ │ │ ├── const6.ll │ │ │ │ ├── const6a.ll │ │ │ │ ├── constantfp0.ll │ │ │ │ ├── constraint-c-err.ll │ │ │ │ ├── constraint-c.ll │ │ │ │ ├── countleading.ll │ │ │ │ ├── cprestore.ll │ │ │ │ ├── cstmaterialization │ │ │ │ │ ├── constMaterialization.ll │ │ │ │ │ └── stack.ll │ │ │ │ ├── ctlz-v.ll │ │ │ │ ├── ctlz.ll │ │ │ │ ├── cttz-v.ll │ │ │ │ ├── dagcombine-store-gep-chain-slow.ll │ │ │ │ ├── dagcombine_crash.ll │ │ │ │ ├── delay-slot-fill-forward.ll │ │ │ │ ├── delay-slot-kill.ll │ │ │ │ ├── dext.ll │ │ │ │ ├── dins.ll │ │ │ │ ├── disable-tail-merge.ll │ │ │ │ ├── div.ll │ │ │ │ ├── div_rem.ll │ │ │ │ ├── divrem.ll │ │ │ │ ├── divu.ll │ │ │ │ ├── divu_remu.ll │ │ │ │ ├── double2int.ll │ │ │ │ ├── dsp-patterns-cmp-vselect.ll │ │ │ │ ├── dsp-patterns.ll │ │ │ │ ├── dsp-r1.ll │ │ │ │ ├── dsp-r2.ll │ │ │ │ ├── dsp-spill-reload.ll │ │ │ │ ├── dsp-vec-load-store.ll │ │ │ │ ├── dynamic-stack-realignment.ll │ │ │ │ ├── eh-dwarf-cfa.ll │ │ │ │ ├── eh-return32.ll │ │ │ │ ├── eh-return64.ll │ │ │ │ ├── eh.ll │ │ │ │ ├── ehframe-indirect.ll │ │ │ │ ├── elf_eflags.ll │ │ │ │ ├── emergency-spill-slot-near-fp.ll │ │ │ │ ├── emit-big-cst.ll │ │ │ │ ├── emutls_generic.ll │ │ │ │ ├── ex2.ll │ │ │ │ ├── extins.ll │ │ │ │ ├── f16abs.ll │ │ │ │ ├── fabs.ll │ │ │ │ ├── fastcc.ll │ │ │ │ ├── fcmp.ll │ │ │ │ ├── fcopysign-f32-f64.ll │ │ │ │ ├── fcopysign.ll │ │ │ │ ├── fixdfsf.ll │ │ │ │ ├── fmadd1.ll │ │ │ │ ├── fneg.ll │ │ │ │ ├── fp-indexed-ls.ll │ │ │ │ ├── fp-spill-reload.ll │ │ │ │ ├── fp16-promote.ll │ │ │ │ ├── fp16instrinsmc.ll │ │ │ │ ├── fp16mix.ll │ │ │ │ ├── fp16static.ll │ │ │ │ ├── fp64a.ll │ │ │ │ ├── fpbr.ll │ │ │ │ ├── fpneeded.ll │ │ │ │ ├── fpnotneeded.ll │ │ │ │ ├── fpxx.ll │ │ │ │ ├── frame-address.ll │ │ │ │ ├── frem.ll │ │ │ │ ├── global-address.ll │ │ │ │ ├── global-pointer-reg.ll │ │ │ │ ├── gpopt-explict-section.ll │ │ │ │ ├── gpreg-lazy-binding.ll │ │ │ │ ├── gprestore.ll │ │ │ │ ├── helloworld.ll │ │ │ │ ├── hf16_1.ll │ │ │ │ ├── hf16call32.ll │ │ │ │ ├── hf16call32_body.ll │ │ │ │ ├── hf1_body.ll │ │ │ │ ├── hfptrcall.ll │ │ │ │ ├── i32k.ll │ │ │ │ ├── i64arg.ll │ │ │ │ ├── imm.ll │ │ │ │ ├── indirectcall.ll │ │ │ │ ├── init-array.ll │ │ │ │ ├── inlineasm-assembler-directives.ll │ │ │ │ ├── inlineasm-cnstrnt-bad-I-1.ll │ │ │ │ ├── inlineasm-cnstrnt-bad-J.ll │ │ │ │ ├── inlineasm-cnstrnt-bad-K.ll │ │ │ │ ├── inlineasm-cnstrnt-bad-L.ll │ │ │ │ ├── inlineasm-cnstrnt-bad-N.ll │ │ │ │ ├── inlineasm-cnstrnt-bad-O.ll │ │ │ │ ├── inlineasm-cnstrnt-bad-P.ll │ │ │ │ ├── inlineasm-cnstrnt-reg.ll │ │ │ │ ├── inlineasm-cnstrnt-reg64.ll │ │ │ │ ├── inlineasm-constraint_ZC_2.ll │ │ │ │ ├── inlineasm-operand-code.ll │ │ │ │ ├── inlineasm64.ll │ │ │ │ ├── inlineasm_constraint.ll │ │ │ │ ├── inlineasm_constraint_R.ll │ │ │ │ ├── inlineasm_constraint_ZC.ll │ │ │ │ ├── inlineasm_constraint_m.ll │ │ │ │ ├── inlineasmmemop.ll │ │ │ │ ├── insn-zero-size-bb.ll │ │ │ │ ├── instverify │ │ │ │ │ ├── dext-pos.mir │ │ │ │ │ ├── dext-size.mir │ │ │ │ │ ├── dextm-pos-size.mir │ │ │ │ │ ├── dextm-pos.mir │ │ │ │ │ ├── dextm-size.mir │ │ │ │ │ ├── dextu-pos-size.mir │ │ │ │ │ ├── dextu-pos.mir │ │ │ │ │ ├── dextu-size-valid.mir │ │ │ │ │ ├── dextu-size.mir │ │ │ │ │ ├── dins-pos-size.mir │ │ │ │ │ ├── dins-pos.mir │ │ │ │ │ ├── dins-size.mir │ │ │ │ │ ├── dinsm-pos-size.mir │ │ │ │ │ ├── dinsm-pos.mir │ │ │ │ │ ├── dinsm-size.mir │ │ │ │ │ ├── dinsu-pos-size.mir │ │ │ │ │ ├── dinsu-pos.mir │ │ │ │ │ ├── dinsu-size.mir │ │ │ │ │ ├── ext-pos-size.mir │ │ │ │ │ ├── ext-pos.mir │ │ │ │ │ ├── ext-size.mir │ │ │ │ │ ├── ins-pos-size.mir │ │ │ │ │ ├── ins-pos.mir │ │ │ │ │ └── ins-size.mir │ │ │ │ ├── int-to-float-conversion.ll │ │ │ │ ├── internalfunc.ll │ │ │ │ ├── interrupt-attr-64-error.ll │ │ │ │ ├── interrupt-attr-args-error.ll │ │ │ │ ├── interrupt-attr-error.ll │ │ │ │ ├── interrupt-attr.ll │ │ │ │ ├── jtstat.ll │ │ │ │ ├── jumptable_labels.ll │ │ │ │ ├── l3mc.ll │ │ │ │ ├── largeimm1.ll │ │ │ │ ├── largeimmprinting.ll │ │ │ │ ├── lazy-binding.ll │ │ │ │ ├── lb1.ll │ │ │ │ ├── lbu1.ll │ │ │ │ ├── lcb2.ll │ │ │ │ ├── lcb3c.ll │ │ │ │ ├── lcb4a.ll │ │ │ │ ├── lcb5.ll │ │ │ │ ├── lh1.ll │ │ │ │ ├── lhu1.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── llcarry.ll │ │ │ │ ├── llvm-ir │ │ │ │ │ ├── add.ll │ │ │ │ │ ├── addrspacecast.ll │ │ │ │ │ ├── and.ll │ │ │ │ │ ├── ashr.ll │ │ │ │ │ ├── atomicrmx.ll │ │ │ │ │ ├── call.ll │ │ │ │ │ ├── extractelement.ll │ │ │ │ │ ├── indirectbr.ll │ │ │ │ │ ├── lh_lhu.ll │ │ │ │ │ ├── load-atomic.ll │ │ │ │ │ ├── lshr.ll │ │ │ │ │ ├── mul.ll │ │ │ │ │ ├── not.ll │ │ │ │ │ ├── or.ll │ │ │ │ │ ├── ret.ll │ │ │ │ │ ├── sdiv.ll │ │ │ │ │ ├── select-dbl.ll │ │ │ │ │ ├── select-flt.ll │ │ │ │ │ ├── select-int.ll │ │ │ │ │ ├── shl.ll │ │ │ │ │ ├── sqrt.ll │ │ │ │ │ ├── srem.ll │ │ │ │ │ ├── store-atomic.ll │ │ │ │ │ ├── sub.ll │ │ │ │ │ ├── udiv.ll │ │ │ │ │ ├── urem.ll │ │ │ │ │ └── xor.ll │ │ │ │ ├── load-store-left-right.ll │ │ │ │ ├── long-call-attr.ll │ │ │ │ ├── long-call-mcount.ll │ │ │ │ ├── long-calls.ll │ │ │ │ ├── longbranch.ll │ │ │ │ ├── longbranch │ │ │ │ │ └── compact-branches-long-branch.ll │ │ │ │ ├── lw16-base-reg.ll │ │ │ │ ├── machineverifier.ll │ │ │ │ ├── madd-msub.ll │ │ │ │ ├── mature-mc-support.ll │ │ │ │ ├── mbrsize4a.ll │ │ │ │ ├── memcpy.ll │ │ │ │ ├── micromips-addiu.ll │ │ │ │ ├── micromips-addu16.ll │ │ │ │ ├── micromips-and16.ll │ │ │ │ ├── micromips-andi.ll │ │ │ │ ├── micromips-ase-function-attribute.ll │ │ │ │ ├── micromips-atomic.ll │ │ │ │ ├── micromips-atomic1.ll │ │ │ │ ├── micromips-attr.ll │ │ │ │ ├── micromips-compact-branches.ll │ │ │ │ ├── micromips-compact-jump.ll │ │ │ │ ├── micromips-delay-slot-jr.ll │ │ │ │ ├── micromips-delay-slot.ll │ │ │ │ ├── micromips-directives.ll │ │ │ │ ├── micromips-gp-rc.ll │ │ │ │ ├── micromips-jal.ll │ │ │ │ ├── micromips-li.ll │ │ │ │ ├── micromips-load-effective-address.ll │ │ │ │ ├── micromips-lwc1-swc1.ll │ │ │ │ ├── micromips-not16.ll │ │ │ │ ├── micromips-or16.ll │ │ │ │ ├── micromips-rdhwr-directives.ll │ │ │ │ ├── micromips-shift.ll │ │ │ │ ├── micromips-sizereduction │ │ │ │ │ ├── micromips-addiur1sp-addiusp.ll │ │ │ │ │ ├── micromips-lbu16-lhu16-sb16-sh16.ll │ │ │ │ │ ├── micromips-lwsp-swsp.ll │ │ │ │ │ └── micromips-xor16.ll │ │ │ │ ├── micromips-subu16.ll │ │ │ │ ├── micromips-sw-lw-16.ll │ │ │ │ ├── micromips-xor16.ll │ │ │ │ ├── micromips64r6-unsupported.ll │ │ │ │ ├── mips-shf-gprel.s │ │ │ │ ├── mips16-hf-attr-2.ll │ │ │ │ ├── mips16-hf-attr.ll │ │ │ │ ├── mips16_32_1.ll │ │ │ │ ├── mips16_32_10.ll │ │ │ │ ├── mips16_32_3.ll │ │ │ │ ├── mips16_32_4.ll │ │ │ │ ├── mips16_32_5.ll │ │ │ │ ├── mips16_32_6.ll │ │ │ │ ├── mips16_32_7.ll │ │ │ │ ├── mips16_32_8.ll │ │ │ │ ├── mips16_32_9.ll │ │ │ │ ├── mips16_fpret.ll │ │ │ │ ├── mips16ex.ll │ │ │ │ ├── mips16fpe.ll │ │ │ │ ├── mips32r6 │ │ │ │ │ └── compatibility.ll │ │ │ │ ├── mips64-f128-call.ll │ │ │ │ ├── mips64-f128.ll │ │ │ │ ├── mips64-libcall.ll │ │ │ │ ├── mips64-sret.ll │ │ │ │ ├── mips64directive.ll │ │ │ │ ├── mips64ext.ll │ │ │ │ ├── mips64extins.ll │ │ │ │ ├── mips64fpimm0.ll │ │ │ │ ├── mips64fpldst.ll │ │ │ │ ├── mips64imm.ll │ │ │ │ ├── mips64instrs.ll │ │ │ │ ├── mips64intldst.ll │ │ │ │ ├── mips64lea.ll │ │ │ │ ├── mips64muldiv.ll │ │ │ │ ├── mips64r6 │ │ │ │ │ └── compatibility.ll │ │ │ │ ├── mips64shift.ll │ │ │ │ ├── mips64signextendsesf.ll │ │ │ │ ├── mips64sinttofpsf.ll │ │ │ │ ├── mipslopat.ll │ │ │ │ ├── mirparser │ │ │ │ │ ├── target-flags-pic-mxgot-tls.mir │ │ │ │ │ ├── target-flags-pic-o32.mir │ │ │ │ │ ├── target-flags-pic.mir │ │ │ │ │ └── target-flags-static-tls.mir │ │ │ │ ├── misha.ll │ │ │ │ ├── mno-ldc1-sdc1.ll │ │ │ │ ├── msa │ │ │ │ │ ├── 2r.ll │ │ │ │ │ ├── 2r_vector_scalar.ll │ │ │ │ │ ├── 2rf.ll │ │ │ │ │ ├── 2rf_exup.ll │ │ │ │ │ ├── 2rf_float_int.ll │ │ │ │ │ ├── 2rf_fq.ll │ │ │ │ │ ├── 2rf_int_float.ll │ │ │ │ │ ├── 2rf_tq.ll │ │ │ │ │ ├── 3r-a.ll │ │ │ │ │ ├── 3r-b.ll │ │ │ │ │ ├── 3r-c.ll │ │ │ │ │ ├── 3r-d.ll │ │ │ │ │ ├── 3r-i.ll │ │ │ │ │ ├── 3r-m.ll │ │ │ │ │ ├── 3r-p.ll │ │ │ │ │ ├── 3r-s.ll │ │ │ │ │ ├── 3r-v.ll │ │ │ │ │ ├── 3r_4r.ll │ │ │ │ │ ├── 3r_4r_widen.ll │ │ │ │ │ ├── 3r_splat.ll │ │ │ │ │ ├── 3rf.ll │ │ │ │ │ ├── 3rf_4rf.ll │ │ │ │ │ ├── 3rf_4rf_q.ll │ │ │ │ │ ├── 3rf_exdo.ll │ │ │ │ │ ├── 3rf_float_int.ll │ │ │ │ │ ├── 3rf_int_float.ll │ │ │ │ │ ├── 3rf_q.ll │ │ │ │ │ ├── arithmetic.ll │ │ │ │ │ ├── arithmetic_float.ll │ │ │ │ │ ├── basic_operations.ll │ │ │ │ │ ├── basic_operations_float.ll │ │ │ │ │ ├── bit.ll │ │ │ │ │ ├── bitcast.ll │ │ │ │ │ ├── bitwise.ll │ │ │ │ │ ├── bmzi_bmnzi.ll │ │ │ │ │ ├── compare.ll │ │ │ │ │ ├── compare_float.ll │ │ │ │ │ ├── elm_copy.ll │ │ │ │ │ ├── elm_cxcmsa.ll │ │ │ │ │ ├── elm_insv.ll │ │ │ │ │ ├── elm_move.ll │ │ │ │ │ ├── elm_shift_slide.ll │ │ │ │ │ ├── emergency-spill.mir │ │ │ │ │ ├── endian.ll │ │ │ │ │ ├── f16-llvm-ir.ll │ │ │ │ │ ├── fexuprl.ll │ │ │ │ │ ├── frameindex.ll │ │ │ │ │ ├── i10.ll │ │ │ │ │ ├── i5-a.ll │ │ │ │ │ ├── i5-b.ll │ │ │ │ │ ├── i5-c.ll │ │ │ │ │ ├── i5-m.ll │ │ │ │ │ ├── i5-s.ll │ │ │ │ │ ├── i5_ld_st.ll │ │ │ │ │ ├── i8.ll │ │ │ │ │ ├── immediates-bad.ll │ │ │ │ │ ├── immediates.ll │ │ │ │ │ ├── inline-asm.ll │ │ │ │ │ ├── llvm-stress-s1704963983.ll │ │ │ │ │ ├── llvm-stress-s1935737938.ll │ │ │ │ │ ├── llvm-stress-s2090927243-simplified.ll │ │ │ │ │ ├── llvm-stress-s2501752154-simplified.ll │ │ │ │ │ ├── llvm-stress-s2704903805.ll │ │ │ │ │ ├── llvm-stress-s3861334421.ll │ │ │ │ │ ├── llvm-stress-s3926023935.ll │ │ │ │ │ ├── llvm-stress-s3997499501.ll │ │ │ │ │ ├── llvm-stress-s449609655-simplified.ll │ │ │ │ │ ├── llvm-stress-s525530439.ll │ │ │ │ │ ├── llvm-stress-s997348632.ll │ │ │ │ │ ├── llvm-stress-sz1-s742806235.ll │ │ │ │ │ ├── msa-nooddspreg.ll │ │ │ │ │ ├── shift-dagcombine.ll │ │ │ │ │ ├── shift_constant_pool.ll │ │ │ │ │ ├── shift_no_and.ll │ │ │ │ │ ├── shuffle.ll │ │ │ │ │ ├── special.ll │ │ │ │ │ ├── spill.ll │ │ │ │ │ ├── vec.ll │ │ │ │ │ └── vecs10.ll │ │ │ │ ├── mul.ll │ │ │ │ ├── mulll.ll │ │ │ │ ├── mulull.ll │ │ │ │ ├── nacl-align.ll │ │ │ │ ├── nacl-branch-delay.ll │ │ │ │ ├── nacl-reserved-regs.ll │ │ │ │ ├── named-register-n32.ll │ │ │ │ ├── named-register-n64.ll │ │ │ │ ├── named-register-o32.ll │ │ │ │ ├── neg1.ll │ │ │ │ ├── nmadd.ll │ │ │ │ ├── no-odd-spreg-msa.ll │ │ │ │ ├── no-odd-spreg.ll │ │ │ │ ├── nomips16.ll │ │ │ │ ├── not1.ll │ │ │ │ ├── null-streamer.ll │ │ │ │ ├── null.ll │ │ │ │ ├── o32_cc.ll │ │ │ │ ├── o32_cc_byval.ll │ │ │ │ ├── o32_cc_vararg.ll │ │ │ │ ├── octeon.ll │ │ │ │ ├── octeon_popcnt.ll │ │ │ │ ├── optimize-fp-math.ll │ │ │ │ ├── optimize-pic-o0.ll │ │ │ │ ├── or1.ll │ │ │ │ ├── pbqp-reserved-physreg.ll │ │ │ │ ├── powif64_16.ll │ │ │ │ ├── pr33682.ll │ │ │ │ ├── pr33978.ll │ │ │ │ ├── pr34975.ll │ │ │ │ ├── pr35071.ll │ │ │ │ ├── pr36061.ll │ │ │ │ ├── prevent-hoisting.ll │ │ │ │ ├── private-addr.ll │ │ │ │ ├── private.ll │ │ │ │ ├── ra-allocatable.ll │ │ │ │ ├── rdhwr-directives.ll │ │ │ │ ├── rem.ll │ │ │ │ ├── remat-immed-load.ll │ │ │ │ ├── remu.ll │ │ │ │ ├── return-vector.ll │ │ │ │ ├── return_address.ll │ │ │ │ ├── rotate.ll │ │ │ │ ├── s2rem.ll │ │ │ │ ├── sb1.ll │ │ │ │ ├── sel1c.ll │ │ │ │ ├── sel2c.ll │ │ │ │ ├── selTBteqzCmpi.ll │ │ │ │ ├── selTBtnezCmpi.ll │ │ │ │ ├── selTBtnezSlti.ll │ │ │ │ ├── select.ll │ │ │ │ ├── selectcc.ll │ │ │ │ ├── selectiondag-optlevel.ll │ │ │ │ ├── seleq.ll │ │ │ │ ├── seleqk.ll │ │ │ │ ├── selgek.ll │ │ │ │ ├── selgt.ll │ │ │ │ ├── selle.ll │ │ │ │ ├── selltk.ll │ │ │ │ ├── selne.ll │ │ │ │ ├── selnek.ll │ │ │ │ ├── selpat.ll │ │ │ │ ├── setcc-se.ll │ │ │ │ ├── seteq.ll │ │ │ │ ├── seteqz.ll │ │ │ │ ├── setge.ll │ │ │ │ ├── setgek.ll │ │ │ │ ├── setle.ll │ │ │ │ ├── setlt.ll │ │ │ │ ├── setltk.ll │ │ │ │ ├── setne.ll │ │ │ │ ├── setuge.ll │ │ │ │ ├── setugt.ll │ │ │ │ ├── setule.ll │ │ │ │ ├── setult.ll │ │ │ │ ├── setultk.ll │ │ │ │ ├── sh1.ll │ │ │ │ ├── shift-parts.ll │ │ │ │ ├── simplebr.ll │ │ │ │ ├── sint-fp-store_pattern.ll │ │ │ │ ├── sitofp-selectcc-opt.ll │ │ │ │ ├── sll-micromips-r6-encoding.mir │ │ │ │ ├── sll1.ll │ │ │ │ ├── sll2.ll │ │ │ │ ├── slt.ll │ │ │ │ ├── small-section-reserve-gp.ll │ │ │ │ ├── spill-copy-acreg.ll │ │ │ │ ├── sr1.ll │ │ │ │ ├── sra1.ll │ │ │ │ ├── sra2.ll │ │ │ │ ├── srl1.ll │ │ │ │ ├── srl2.ll │ │ │ │ ├── stack-alignment.ll │ │ │ │ ├── stackcoloring.ll │ │ │ │ ├── stacksize.ll │ │ │ │ ├── start-asm-file.ll │ │ │ │ ├── stchar.ll │ │ │ │ ├── stldst.ll │ │ │ │ ├── sub1.ll │ │ │ │ ├── sub2.ll │ │ │ │ ├── swzero.ll │ │ │ │ ├── tail16.ll │ │ │ │ ├── tailcall │ │ │ │ │ ├── tail-call-arguments-clobber.ll │ │ │ │ │ ├── tailcall-wrong-isa.ll │ │ │ │ │ └── tailcall.ll │ │ │ │ ├── thread-pointer.ll │ │ │ │ ├── tls-alias.ll │ │ │ │ ├── tls-models.ll │ │ │ │ ├── tls.ll │ │ │ │ ├── tls16.ll │ │ │ │ ├── tls16_2.ll │ │ │ │ ├── tnaked.ll │ │ │ │ ├── trap.ll │ │ │ │ ├── trap1.ll │ │ │ │ ├── uitofp.ll │ │ │ │ ├── ul1.ll │ │ │ │ ├── unalignedload.ll │ │ │ │ ├── unsized-global.ll │ │ │ │ ├── v2i16tof32.ll │ │ │ │ ├── vector-load-store.ll │ │ │ │ ├── vector-setcc.ll │ │ │ │ ├── weak.ll │ │ │ │ ├── whitespace.ll │ │ │ │ ├── xor1.ll │ │ │ │ ├── xray-mips-attribute-instrumentation.ll │ │ │ │ ├── xray-section-group.ll │ │ │ │ └── zeroreg.ll │ │ │ ├── NVPTX │ │ │ │ ├── LoadStoreVectorizer.ll │ │ │ │ ├── MachineSink-call.ll │ │ │ │ ├── MachineSink-convergent.ll │ │ │ │ ├── TailDuplication-convergent.ll │ │ │ │ ├── access-non-generic.ll │ │ │ │ ├── add-128bit.ll │ │ │ │ ├── addrspacecast-gvar.ll │ │ │ │ ├── addrspacecast.ll │ │ │ │ ├── aggr-param.ll │ │ │ │ ├── aggregate-return.ll │ │ │ │ ├── alias.ll │ │ │ │ ├── annotations.ll │ │ │ │ ├── arg-lowering.ll │ │ │ │ ├── arithmetic-fp-sm20.ll │ │ │ │ ├── arithmetic-int.ll │ │ │ │ ├── atomics-sm60.ll │ │ │ │ ├── atomics-with-scope.ll │ │ │ │ ├── atomics.ll │ │ │ │ ├── barrier.ll │ │ │ │ ├── bfe.ll │ │ │ │ ├── branch-fold.ll │ │ │ │ ├── bug17709.ll │ │ │ │ ├── bug21465.ll │ │ │ │ ├── bug22246.ll │ │ │ │ ├── bug22322.ll │ │ │ │ ├── bug26185-2.ll │ │ │ │ ├── bug26185.ll │ │ │ │ ├── bypass-div.ll │ │ │ │ ├── call-with-alloca-buffer.ll │ │ │ │ ├── callchain.ll │ │ │ │ ├── calling-conv.ll │ │ │ │ ├── combine-min-max.ll │ │ │ │ ├── compare-int.ll │ │ │ │ ├── constant-vectors.ll │ │ │ │ ├── convergent-mir-call.ll │ │ │ │ ├── convert-fp.ll │ │ │ │ ├── convert-int-sm20.ll │ │ │ │ ├── ctlz.ll │ │ │ │ ├── ctpop.ll │ │ │ │ ├── cttz.ll │ │ │ │ ├── debug-file-loc.ll │ │ │ │ ├── disable-opt.ll │ │ │ │ ├── div-ri.ll │ │ │ │ ├── divrem-combine.ll │ │ │ │ ├── envreg.ll │ │ │ │ ├── extloadv.ll │ │ │ │ ├── f16-instructions.ll │ │ │ │ ├── f16x2-instructions.ll │ │ │ │ ├── fast-math.ll │ │ │ │ ├── fcos-no-fast-math.ll │ │ │ │ ├── fma-assoc.ll │ │ │ │ ├── fma-disable.ll │ │ │ │ ├── fma.ll │ │ │ │ ├── fns.ll │ │ │ │ ├── fp-contract.ll │ │ │ │ ├── fp-literals.ll │ │ │ │ ├── fp16.ll │ │ │ │ ├── fsin-no-fast-math.ll │ │ │ │ ├── function-align.ll │ │ │ │ ├── generic-to-nvvm-ir.ll │ │ │ │ ├── generic-to-nvvm.ll │ │ │ │ ├── global-addrspace.ll │ │ │ │ ├── global-ctor-empty.ll │ │ │ │ ├── global-ctor.ll │ │ │ │ ├── global-dtor.ll │ │ │ │ ├── global-ordering.ll │ │ │ │ ├── global-variable-big.ll │ │ │ │ ├── global-visibility.ll │ │ │ │ ├── globals_init.ll │ │ │ │ ├── globals_lowering.ll │ │ │ │ ├── gvar-init.ll │ │ │ │ ├── half.ll │ │ │ │ ├── i1-global.ll │ │ │ │ ├── i1-int-to-fp.ll │ │ │ │ ├── i1-param.ll │ │ │ │ ├── i128-global.ll │ │ │ │ ├── i128-param.ll │ │ │ │ ├── i128-retval.ll │ │ │ │ ├── i8-param.ll │ │ │ │ ├── idioms.ll │ │ │ │ ├── imad.ll │ │ │ │ ├── implicit-def.ll │ │ │ │ ├── inline-asm.ll │ │ │ │ ├── intrin-nocapture.ll │ │ │ │ ├── intrinsic-old.ll │ │ │ │ ├── intrinsics.ll │ │ │ │ ├── isspacep.ll │ │ │ │ ├── ld-addrspace.ll │ │ │ │ ├── ld-generic.ll │ │ │ │ ├── ld-st-addrrspace.py │ │ │ │ ├── ldg-invariant.ll │ │ │ │ ├── ldparam-v4.ll │ │ │ │ ├── ldu-i8.ll │ │ │ │ ├── ldu-ldg.ll │ │ │ │ ├── ldu-reg-plus-offset.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── load-sext-i1.ll │ │ │ │ ├── load-with-non-coherent-cache.ll │ │ │ │ ├── local-stack-frame.ll │ │ │ │ ├── loop-vectorize.ll │ │ │ │ ├── lower-aggr-copies.ll │ │ │ │ ├── lower-alloca.ll │ │ │ │ ├── lower-kernel-ptr-arg.ll │ │ │ │ ├── machine-sink.ll │ │ │ │ ├── managed.ll │ │ │ │ ├── match.ll │ │ │ │ ├── math-intrins.ll │ │ │ │ ├── minmax-negative.ll │ │ │ │ ├── misaligned-vector-ldst.ll │ │ │ │ ├── module-inline-asm.ll │ │ │ │ ├── mulwide.ll │ │ │ │ ├── named-barriers.ll │ │ │ │ ├── noduplicate-syncthreads.ll │ │ │ │ ├── nounroll.ll │ │ │ │ ├── nvcl-param-align.ll │ │ │ │ ├── nvvm-reflect-module-flag.ll │ │ │ │ ├── nvvm-reflect.ll │ │ │ │ ├── param-align.ll │ │ │ │ ├── param-load-store.ll │ │ │ │ ├── pr13291-i1-store.ll │ │ │ │ ├── pr16278.ll │ │ │ │ ├── pr17529.ll │ │ │ │ ├── refl1.ll │ │ │ │ ├── reg-copy.ll │ │ │ │ ├── reg-types.ll │ │ │ │ ├── rotate.ll │ │ │ │ ├── sched1.ll │ │ │ │ ├── sched2.ll │ │ │ │ ├── sext-in-reg.ll │ │ │ │ ├── sext-params.ll │ │ │ │ ├── shfl-sync.ll │ │ │ │ ├── shfl.ll │ │ │ │ ├── shift-parts.ll │ │ │ │ ├── simple-call.ll │ │ │ │ ├── sm-version-20.ll │ │ │ │ ├── sm-version-21.ll │ │ │ │ ├── sm-version-30.ll │ │ │ │ ├── sm-version-32.ll │ │ │ │ ├── sm-version-35.ll │ │ │ │ ├── sm-version-37.ll │ │ │ │ ├── sm-version-50.ll │ │ │ │ ├── sm-version-52.ll │ │ │ │ ├── sm-version-53.ll │ │ │ │ ├── sm-version-60.ll │ │ │ │ ├── sm-version-61.ll │ │ │ │ ├── sm-version-62.ll │ │ │ │ ├── sm-version-70.ll │ │ │ │ ├── speculative-execution-divergent-target.ll │ │ │ │ ├── sqrt-approx.ll │ │ │ │ ├── st-addrspace.ll │ │ │ │ ├── st-generic.ll │ │ │ │ ├── surf-read-cuda.ll │ │ │ │ ├── surf-read.ll │ │ │ │ ├── surf-write-cuda.ll │ │ │ │ ├── surf-write.ll │ │ │ │ ├── symbol-naming.ll │ │ │ │ ├── tex-read-cuda.ll │ │ │ │ ├── tex-read.ll │ │ │ │ ├── texsurf-queries.ll │ │ │ │ ├── tid-range.ll │ │ │ │ ├── tuple-literal.ll │ │ │ │ ├── vec-param-load.ll │ │ │ │ ├── vec8.ll │ │ │ │ ├── vector-args.ll │ │ │ │ ├── vector-call.ll │ │ │ │ ├── vector-compare.ll │ │ │ │ ├── vector-global.ll │ │ │ │ ├── vector-loads.ll │ │ │ │ ├── vector-select.ll │ │ │ │ ├── vector-stores.ll │ │ │ │ ├── vote.ll │ │ │ │ ├── weak-global.ll │ │ │ │ ├── weak-linkage.ll │ │ │ │ ├── wmma.py │ │ │ │ ├── zero-cs.ll │ │ │ │ └── zeroext-32bit.ll │ │ │ ├── Nios2 │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── proc_support.ll │ │ │ │ ├── ret_generated.ll │ │ │ │ └── target_support.ll │ │ │ ├── PowerPC │ │ │ │ ├── 2004-11-29-ShrCrash.ll │ │ │ │ ├── 2004-11-30-shift-crash.ll │ │ │ │ ├── 2004-11-30-shr-var-crash.ll │ │ │ │ ├── 2004-12-12-ZeroSizeCommon.ll │ │ │ │ ├── 2005-01-14-SetSelectCrash.ll │ │ │ │ ├── 2005-01-14-UndefLong.ll │ │ │ │ ├── 2005-08-12-rlwimi-crash.ll │ │ │ │ ├── 2005-09-02-LegalizeDuplicatesCalls.ll │ │ │ │ ├── 2005-10-08-ArithmeticRotate.ll │ │ │ │ ├── 2005-11-30-vastart-crash.ll │ │ │ │ ├── 2006-01-11-darwin-fp-argument.ll │ │ │ │ ├── 2006-01-20-ShiftPartsCrash.ll │ │ │ │ ├── 2006-04-01-FloatDoubleExtend.ll │ │ │ │ ├── 2006-04-05-splat-ish.ll │ │ │ │ ├── 2006-04-19-vmaddfp-crash.ll │ │ │ │ ├── 2006-05-12-rlwimi-crash.ll │ │ │ │ ├── 2006-07-07-ComputeMaskedBits.ll │ │ │ │ ├── 2006-07-19-stwbrx-crash.ll │ │ │ │ ├── 2006-08-11-RetVector.ll │ │ │ │ ├── 2006-08-15-SelectionCrash.ll │ │ │ │ ├── 2006-09-28-shift_64.ll │ │ │ │ ├── 2006-10-13-Miscompile.ll │ │ │ │ ├── 2006-10-17-brcc-miscompile.ll │ │ │ │ ├── 2006-10-17-ppc64-alloca.ll │ │ │ │ ├── 2006-11-10-DAGCombineMiscompile.ll │ │ │ │ ├── 2006-11-29-AltivecFPSplat.ll │ │ │ │ ├── 2006-12-07-LargeAlloca.ll │ │ │ │ ├── 2006-12-07-SelectCrash.ll │ │ │ │ ├── 2007-01-04-ArgExtension.ll │ │ │ │ ├── 2007-01-15-AsmDialect.ll │ │ │ │ ├── 2007-01-29-lbrx-asm.ll │ │ │ │ ├── 2007-01-31-InlineAsmAddrMode.ll │ │ │ │ ├── 2007-02-16-AlignPacked.ll │ │ │ │ ├── 2007-02-16-InlineAsmNConstraint.ll │ │ │ │ ├── 2007-02-23-lr-saved-twice.ll │ │ │ │ ├── 2007-03-24-cntlzd.ll │ │ │ │ ├── 2007-03-30-SpillerCrash.ll │ │ │ │ ├── 2007-04-24-InlineAsm-I-Modifier.ll │ │ │ │ ├── 2007-04-30-InlineAsmEarlyClobber.ll │ │ │ │ ├── 2007-05-03-InlineAsm-S-Constraint.ll │ │ │ │ ├── 2007-05-14-InlineAsmSelectCrash.ll │ │ │ │ ├── 2007-05-22-tailmerge-3.ll │ │ │ │ ├── 2007-05-30-dagcombine-miscomp.ll │ │ │ │ ├── 2007-06-28-BCCISelBug.ll │ │ │ │ ├── 2007-08-04-CoalescerAssert.ll │ │ │ │ ├── 2007-09-04-AltivecDST.ll │ │ │ │ ├── 2007-09-07-LoadStoreIdxForms.ll │ │ │ │ ├── 2007-09-08-unaligned.ll │ │ │ │ ├── 2007-09-11-RegCoalescerAssert.ll │ │ │ │ ├── 2007-09-12-LiveIntervalsAssert.ll │ │ │ │ ├── 2007-10-16-InlineAsmFrameOffset.ll │ │ │ │ ├── 2007-10-18-PtrArithmetic.ll │ │ │ │ ├── 2007-10-21-LocalRegAllocAssert.ll │ │ │ │ ├── 2007-10-21-LocalRegAllocAssert2.ll │ │ │ │ ├── 2007-11-04-CoalescerCrash.ll │ │ │ │ ├── 2007-11-16-landingpad-split.ll │ │ │ │ ├── 2007-11-19-VectorSplitting.ll │ │ │ │ ├── 2008-02-05-LiveIntervalsAssert.ll │ │ │ │ ├── 2008-02-09-LocalRegAllocAssert.ll │ │ │ │ ├── 2008-03-05-RegScavengerAssert.ll │ │ │ │ ├── 2008-03-17-RegScavengerCrash.ll │ │ │ │ ├── 2008-03-18-RegScavengerAssert.ll │ │ │ │ ├── 2008-03-24-AddressRegImm.ll │ │ │ │ ├── 2008-03-24-CoalescerBug.ll │ │ │ │ ├── 2008-03-26-CoalescerBug.ll │ │ │ │ ├── 2008-04-10-LiveIntervalCrash.ll │ │ │ │ ├── 2008-04-16-CoalescerBug.ll │ │ │ │ ├── 2008-04-23-CoalescerCrash.ll │ │ │ │ ├── 2008-05-01-ppc_fp128.ll │ │ │ │ ├── 2008-06-19-LegalizerCrash.ll │ │ │ │ ├── 2008-06-21-F128LoadStore.ll │ │ │ │ ├── 2008-06-23-LiveVariablesCrash.ll │ │ │ │ ├── 2008-07-10-SplatMiscompile.ll │ │ │ │ ├── 2008-07-15-Bswap.ll │ │ │ │ ├── 2008-07-15-Fabs.ll │ │ │ │ ├── 2008-07-15-SignExtendInreg.ll │ │ │ │ ├── 2008-07-17-Fneg.ll │ │ │ │ ├── 2008-07-24-PPC64-CCBug.ll │ │ │ │ ├── 2008-09-12-CoalescerBug.ll │ │ │ │ ├── 2008-10-17-AsmMatchingOperands.ll │ │ │ │ ├── 2008-10-28-UnprocessedNode.ll │ │ │ │ ├── 2008-10-28-f128-i32.ll │ │ │ │ ├── 2008-10-31-PPCF128Libcalls.ll │ │ │ │ ├── 2008-12-02-LegalizeTypeAssert.ll │ │ │ │ ├── 2009-01-16-DeclareISelBug.ll │ │ │ │ ├── 2009-03-17-LSRBug.ll │ │ │ │ ├── 2009-05-28-LegalizeBRCC.ll │ │ │ │ ├── 2009-07-16-InlineAsm-M-Operand.ll │ │ │ │ ├── 2009-08-17-inline-asm-addr-mode-breakage.ll │ │ │ │ ├── 2009-09-18-carrybit.ll │ │ │ │ ├── 2009-11-15-ProcImpDefsBug.ll │ │ │ │ ├── 2009-11-25-ImpDefBug.ll │ │ │ │ ├── 2010-02-04-EmptyGlobal.ll │ │ │ │ ├── 2010-02-12-saveCR.ll │ │ │ │ ├── 2010-03-09-indirect-call.ll │ │ │ │ ├── 2010-04-01-MachineCSEBug.ll │ │ │ │ ├── 2010-05-03-retaddr1.ll │ │ │ │ ├── 2010-10-11-Fast-Varargs.ll │ │ │ │ ├── 2010-12-18-PPCStackRefs.ll │ │ │ │ ├── 2011-12-05-NoSpillDupCR.ll │ │ │ │ ├── 2011-12-06-SpillAndRestoreCR.ll │ │ │ │ ├── 2011-12-08-DemandedBitsMiscompile.ll │ │ │ │ ├── 2012-09-16-TOC-entry-check.ll │ │ │ │ ├── 2012-10-11-dynalloc.ll │ │ │ │ ├── 2012-10-12-bitcast.ll │ │ │ │ ├── 2012-11-16-mischedcall.ll │ │ │ │ ├── 2013-05-15-preinc-fold.ll │ │ │ │ ├── 2013-07-01-PHIElimBug.ll │ │ │ │ ├── 2016-01-07-BranchWeightCrash.ll │ │ │ │ ├── 2016-04-16-ADD8TLS.ll │ │ │ │ ├── 2016-04-17-combine.ll │ │ │ │ ├── 2016-04-28-setjmp.ll │ │ │ │ ├── Atomics-64.ll │ │ │ │ ├── BoolRetToIntTest-2.ll │ │ │ │ ├── BoolRetToIntTest.ll │ │ │ │ ├── BreakableToken-reduced.ll │ │ │ │ ├── CompareEliminationSpillIssue.ll │ │ │ │ ├── DbgValueOtherTargets.test │ │ │ │ ├── Frames-alloca.ll │ │ │ │ ├── Frames-large.ll │ │ │ │ ├── Frames-leaf.ll │ │ │ │ ├── Frames-small.ll │ │ │ │ ├── LargeAbsoluteAddr.ll │ │ │ │ ├── MCSE-caller-preserved-reg.ll │ │ │ │ ├── MMO-flags-assertion.ll │ │ │ │ ├── MergeConsecutiveStores.ll │ │ │ │ ├── PR33636.ll │ │ │ │ ├── PR33671.ll │ │ │ │ ├── PR3488.ll │ │ │ │ ├── PR35812-neg-cmpxchg.ll │ │ │ │ ├── VSX-DForm-Scalars.ll │ │ │ │ ├── VSX-XForm-Scalars.ll │ │ │ │ ├── a2-fp-basic.ll │ │ │ │ ├── a2q-stackalign.ll │ │ │ │ ├── a2q.ll │ │ │ │ ├── aa-tbaa.ll │ │ │ │ ├── aantidep-def-ec.mir │ │ │ │ ├── aantidep-inline-asm-use.ll │ │ │ │ ├── add-fi.ll │ │ │ │ ├── addc.ll │ │ │ │ ├── addegluecrash.ll │ │ │ │ ├── addi-licm.ll │ │ │ │ ├── addi-offset-fold.ll │ │ │ │ ├── addi-reassoc.ll │ │ │ │ ├── addisdtprelha-nonr3.mir │ │ │ │ ├── addrfuncstr.ll │ │ │ │ ├── aggressive-anti-dep-breaker-subreg.ll │ │ │ │ ├── alias.ll │ │ │ │ ├── align.ll │ │ │ │ ├── allocate-r0.ll │ │ │ │ ├── altivec-ord.ll │ │ │ │ ├── and-branch.ll │ │ │ │ ├── and-elim.ll │ │ │ │ ├── and-imm.ll │ │ │ │ ├── and_add.ll │ │ │ │ ├── and_sext.ll │ │ │ │ ├── and_sra.ll │ │ │ │ ├── andc.ll │ │ │ │ ├── anon_aggr.ll │ │ │ │ ├── anyext_srl.ll │ │ │ │ ├── arr-fp-arg-no-copy.ll │ │ │ │ ├── ashr-neg1.ll │ │ │ │ ├── asm-Zy.ll │ │ │ │ ├── asm-constraints.ll │ │ │ │ ├── asm-dialect.ll │ │ │ │ ├── asm-printer-topological-order.ll │ │ │ │ ├── asym-regclass-copy.ll │ │ │ │ ├── atomic-1.ll │ │ │ │ ├── atomic-2.ll │ │ │ │ ├── atomic-minmax.ll │ │ │ │ ├── atomics-constant.ll │ │ │ │ ├── atomics-fences.ll │ │ │ │ ├── atomics-indexed.ll │ │ │ │ ├── atomics-regression.ll │ │ │ │ ├── atomics.ll │ │ │ │ ├── available-externally.ll │ │ │ │ ├── bdzlr.ll │ │ │ │ ├── big-endian-actual-args.ll │ │ │ │ ├── big-endian-call-result.ll │ │ │ │ ├── big-endian-formal-args.ll │ │ │ │ ├── bitcasts-direct-move.ll │ │ │ │ ├── blockaddress.ll │ │ │ │ ├── bperm.ll │ │ │ │ ├── branch-hint.ll │ │ │ │ ├── branch-opt.ll │ │ │ │ ├── branch_coalesce.ll │ │ │ │ ├── bswap-load-store.ll │ │ │ │ ├── bswap64.ll │ │ │ │ ├── build-vector-tests.ll │ │ │ │ ├── buildvec_canonicalize.ll │ │ │ │ ├── builtins-ppc-elf2-abi.ll │ │ │ │ ├── builtins-ppc-p8vector.ll │ │ │ │ ├── bv-pres-v8i1.ll │ │ │ │ ├── bv-widen-undef.ll │ │ │ │ ├── byval-agg-info.ll │ │ │ │ ├── byval-aliased.ll │ │ │ │ ├── calls.ll │ │ │ │ ├── can-lower-ret.ll │ │ │ │ ├── cannonicalize-vector-shifts.ll │ │ │ │ ├── cc.ll │ │ │ │ ├── change-no-infs.ll │ │ │ │ ├── cmp-cmp.ll │ │ │ │ ├── cmp_elimination.ll │ │ │ │ ├── cmpb-ppc32.ll │ │ │ │ ├── cmpb.ll │ │ │ │ ├── coal-sections.ll │ │ │ │ ├── coalesce-ext.ll │ │ │ │ ├── code-align.ll │ │ │ │ ├── combine-to-pre-index-store-crash.ll │ │ │ │ ├── combine_loads_from_build_pair.ll │ │ │ │ ├── compare-duplicate.ll │ │ │ │ ├── compare-simm.ll │ │ │ │ ├── complex-return.ll │ │ │ │ ├── constants-i64.ll │ │ │ │ ├── constants.ll │ │ │ │ ├── convert-rr-to-ri-instrs-R0-special-handling.mir │ │ │ │ ├── convert-rr-to-ri-instrs-out-of-range.mir │ │ │ │ ├── convert-rr-to-ri-instrs.mir │ │ │ │ ├── copysignl.ll │ │ │ │ ├── cr-spills.ll │ │ │ │ ├── cr1eq-no-extra-moves.ll │ │ │ │ ├── cr1eq.ll │ │ │ │ ├── cr_spilling.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── crbit-asm-disabled.ll │ │ │ │ ├── crbit-asm.ll │ │ │ │ ├── crbits.ll │ │ │ │ ├── crsave.ll │ │ │ │ ├── crypto_bifs.ll │ │ │ │ ├── ctr-cleanup.ll │ │ │ │ ├── ctr-loop-tls-const.ll │ │ │ │ ├── ctr-minmaxnum.ll │ │ │ │ ├── ctrloop-asm.ll │ │ │ │ ├── ctrloop-cpsgn.ll │ │ │ │ ├── ctrloop-fp64.ll │ │ │ │ ├── ctrloop-i128.ll │ │ │ │ ├── ctrloop-i64.ll │ │ │ │ ├── ctrloop-intrin.ll │ │ │ │ ├── ctrloop-large-ec.ll │ │ │ │ ├── ctrloop-le.ll │ │ │ │ ├── ctrloop-lt.ll │ │ │ │ ├── ctrloop-ne.ll │ │ │ │ ├── ctrloop-reg.ll │ │ │ │ ├── ctrloop-s000.ll │ │ │ │ ├── ctrloop-sh.ll │ │ │ │ ├── ctrloop-shortLoops.ll │ │ │ │ ├── ctrloop-sums.ll │ │ │ │ ├── ctrloop-udivti3.ll │ │ │ │ ├── ctrloops-softfloat.ll │ │ │ │ ├── ctrloops.ll │ │ │ │ ├── cttz.ll │ │ │ │ ├── cxx_tlscc64.ll │ │ │ │ ├── darwin-labels.ll │ │ │ │ ├── dbg.ll │ │ │ │ ├── dcbt-sched.ll │ │ │ │ ├── debuginfo-split-int.ll │ │ │ │ ├── debuginfo-stackarg.ll │ │ │ │ ├── delete-node.ll │ │ │ │ ├── direct-move-profit.ll │ │ │ │ ├── div-2.ll │ │ │ │ ├── div-e-32.ll │ │ │ │ ├── div-e-all.ll │ │ │ │ ├── duplicate-returns-for-tailcall.ll │ │ │ │ ├── dyn-alloca-aligned.ll │ │ │ │ ├── dyn-alloca-offset.ll │ │ │ │ ├── e500-1.ll │ │ │ │ ├── early-ret.ll │ │ │ │ ├── early-ret2.ll │ │ │ │ ├── ec-input.ll │ │ │ │ ├── eh-dwarf-cfa.ll │ │ │ │ ├── empty-functions.ll │ │ │ │ ├── emptystruct.ll │ │ │ │ ├── emutls_generic.ll │ │ │ │ ├── eqv-andc-orc-nor.ll │ │ │ │ ├── expand-contiguous-isel.ll │ │ │ │ ├── expand-foldable-isel.ll │ │ │ │ ├── expand-isel-1.mir │ │ │ │ ├── expand-isel-10.mir │ │ │ │ ├── expand-isel-2.mir │ │ │ │ ├── expand-isel-3.mir │ │ │ │ ├── expand-isel-4.mir │ │ │ │ ├── expand-isel-5.mir │ │ │ │ ├── expand-isel-6.mir │ │ │ │ ├── expand-isel-7.mir │ │ │ │ ├── expand-isel-8.mir │ │ │ │ ├── expand-isel-9.mir │ │ │ │ ├── expand-isel.ll │ │ │ │ ├── ext-bool-trunc-repl.ll │ │ │ │ ├── extra-toc-reg-deps.ll │ │ │ │ ├── extsh.ll │ │ │ │ ├── f32-to-i64.ll │ │ │ │ ├── fabs.ll │ │ │ │ ├── fast-isel-GEP-coalesce.ll │ │ │ │ ├── fast-isel-binary.ll │ │ │ │ ├── fast-isel-br-const.ll │ │ │ │ ├── fast-isel-call.ll │ │ │ │ ├── fast-isel-cmp-imm.ll │ │ │ │ ├── fast-isel-const.ll │ │ │ │ ├── fast-isel-conversion-p5.ll │ │ │ │ ├── fast-isel-conversion.ll │ │ │ │ ├── fast-isel-crash.ll │ │ │ │ ├── fast-isel-ext.ll │ │ │ │ ├── fast-isel-fcmp-nan.ll │ │ │ │ ├── fast-isel-fold.ll │ │ │ │ ├── fast-isel-fpconv.ll │ │ │ │ ├── fast-isel-i64offset.ll │ │ │ │ ├── fast-isel-icmp-split.ll │ │ │ │ ├── fast-isel-indirectbr.ll │ │ │ │ ├── fast-isel-load-store-vsx.ll │ │ │ │ ├── fast-isel-load-store.ll │ │ │ │ ├── fast-isel-redefinition.ll │ │ │ │ ├── fast-isel-ret.ll │ │ │ │ ├── fast-isel-shifter.ll │ │ │ │ ├── fastisel-gep-promote-before-add.ll │ │ │ │ ├── fcpsgn.ll │ │ │ │ ├── fdiv-combine.ll │ │ │ │ ├── float-asmprint.ll │ │ │ │ ├── float-to-int.ll │ │ │ │ ├── floatPSA.ll │ │ │ │ ├── flt-preinc.ll │ │ │ │ ├── fma-aggr-FMF.ll │ │ │ │ ├── fma-assoc.ll │ │ │ │ ├── fma-ext.ll │ │ │ │ ├── fma-mutate-duplicate-vreg.ll │ │ │ │ ├── fma-mutate-register-constraint.ll │ │ │ │ ├── fma-mutate.ll │ │ │ │ ├── fma.ll │ │ │ │ ├── fmaxnum.ll │ │ │ │ ├── fminnum.ll │ │ │ │ ├── fnabs.ll │ │ │ │ ├── fneg.ll │ │ │ │ ├── fold-li.ll │ │ │ │ ├── fold-zero.ll │ │ │ │ ├── fp-branch.ll │ │ │ │ ├── fp-int-conversions-direct-moves.ll │ │ │ │ ├── fp-int-fp.ll │ │ │ │ ├── fp-splat.ll │ │ │ │ ├── fp-to-int-ext.ll │ │ │ │ ├── fp-to-int-to-fp.ll │ │ │ │ ├── fp128-bitcast-after-operation.ll │ │ │ │ ├── fp2int2fp-ppcfp128.ll │ │ │ │ ├── fp64-to-int16.ll │ │ │ │ ├── fp_to_uint.ll │ │ │ │ ├── fpcopy.ll │ │ │ │ ├── frame-size.ll │ │ │ │ ├── frameaddr.ll │ │ │ │ ├── frounds.ll │ │ │ │ ├── fsel.ll │ │ │ │ ├── fsl-e500mc.ll │ │ │ │ ├── fsl-e5500.ll │ │ │ │ ├── fsqrt.ll │ │ │ │ ├── func-addr-consts.ll │ │ │ │ ├── func-addr.ll │ │ │ │ ├── glob-comp-aa-crash.ll │ │ │ │ ├── gpr-vsr-spill.ll │ │ │ │ ├── hello-reloc.s │ │ │ │ ├── hello.ll │ │ │ │ ├── hidden-vis-2.ll │ │ │ │ ├── hidden-vis.ll │ │ │ │ ├── htm.ll │ │ │ │ ├── i1-ext-fold.ll │ │ │ │ ├── i1-to-double.ll │ │ │ │ ├── i128-and-beyond.ll │ │ │ │ ├── i32-to-float.ll │ │ │ │ ├── i64-to-float.ll │ │ │ │ ├── i64_fp.ll │ │ │ │ ├── i64_fp_round.ll │ │ │ │ ├── ia-mem-r0.ll │ │ │ │ ├── ia-neg-const.ll │ │ │ │ ├── iabs.ll │ │ │ │ ├── ifcvt-forked-bug-2016-08-08.ll │ │ │ │ ├── ifcvt.ll │ │ │ │ ├── illegal-element-type.ll │ │ │ │ ├── in-asm-f64-reg.ll │ │ │ │ ├── indexed-load.ll │ │ │ │ ├── indirect-hidden.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── inline-asm-s-modifier.ll │ │ │ │ ├── inline-asm-scalar-to-vector-error.ll │ │ │ │ ├── inlineasm-copy.ll │ │ │ │ ├── inlineasm-i64-reg.ll │ │ │ │ ├── int-fp-conv-0.ll │ │ │ │ ├── int-fp-conv-1.ll │ │ │ │ ├── inverted-bool-compares.ll │ │ │ │ ├── isel-rc-nox0.ll │ │ │ │ ├── isel.ll │ │ │ │ ├── ispositive.ll │ │ │ │ ├── itofp128.ll │ │ │ │ ├── jaggedstructs.ll │ │ │ │ ├── lbz-from-ld-shift.ll │ │ │ │ ├── lbzux.ll │ │ │ │ ├── ld-st-upd.ll │ │ │ │ ├── ldtoc-inv.ll │ │ │ │ ├── lha.ll │ │ │ │ ├── licm-remat.ll │ │ │ │ ├── licm-tocReg.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── livephysregs.mir │ │ │ │ ├── load-constant-addr.ll │ │ │ │ ├── load-shift-combine.ll │ │ │ │ ├── load-two-flts.ll │ │ │ │ ├── load-v4i8-improved.ll │ │ │ │ ├── logic-ops-on-compares.ll │ │ │ │ ├── long-compare.ll │ │ │ │ ├── longcall.ll │ │ │ │ ├── longdbl-truncate.ll │ │ │ │ ├── loop-data-prefetch-inner.ll │ │ │ │ ├── loop-data-prefetch.ll │ │ │ │ ├── loop-prep-all.ll │ │ │ │ ├── lsa.ll │ │ │ │ ├── lsr-postinc-pos.ll │ │ │ │ ├── lxv-aligned-stack-slots.ll │ │ │ │ ├── lxvw4x-bug.ll │ │ │ │ ├── machine-combiner.ll │ │ │ │ ├── mask64.ll │ │ │ │ ├── mature-mc-support.ll │ │ │ │ ├── mc-instrlat.ll │ │ │ │ ├── mcm-1.ll │ │ │ │ ├── mcm-10.ll │ │ │ │ ├── mcm-11.ll │ │ │ │ ├── mcm-12.ll │ │ │ │ ├── mcm-13.ll │ │ │ │ ├── mcm-2.ll │ │ │ │ ├── mcm-3.ll │ │ │ │ ├── mcm-4.ll │ │ │ │ ├── mcm-5.ll │ │ │ │ ├── mcm-6.ll │ │ │ │ ├── mcm-7.ll │ │ │ │ ├── mcm-8.ll │ │ │ │ ├── mcm-9.ll │ │ │ │ ├── mcm-default.ll │ │ │ │ ├── mcm-obj-2.ll │ │ │ │ ├── mcm-obj.ll │ │ │ │ ├── mcount-insertion.ll │ │ │ │ ├── mem-rr-addr-mode.ll │ │ │ │ ├── memCmpUsedInZeroEqualityComparison.ll │ │ │ │ ├── mem_update.ll │ │ │ │ ├── memcmp.ll │ │ │ │ ├── memcmpIR.ll │ │ │ │ ├── memcpy-vec.ll │ │ │ │ ├── memcpy_dereferenceable.ll │ │ │ │ ├── memset-nc-le.ll │ │ │ │ ├── memset-nc.ll │ │ │ │ ├── merge-st-chain-op.ll │ │ │ │ ├── merge_stores_dereferenceable.ll │ │ │ │ ├── mftb.ll │ │ │ │ ├── misched-inorder-latency.ll │ │ │ │ ├── misched.ll │ │ │ │ ├── mtvsrdd.ll │ │ │ │ ├── mul-neg-power-2.ll │ │ │ │ ├── mul-with-overflow.ll │ │ │ │ ├── mulhs.ll │ │ │ │ ├── mulli64.ll │ │ │ │ ├── mult-alt-generic-powerpc.ll │ │ │ │ ├── mult-alt-generic-powerpc64.ll │ │ │ │ ├── multi-return.ll │ │ │ │ ├── named-reg-alloc-r0.ll │ │ │ │ ├── named-reg-alloc-r1-64.ll │ │ │ │ ├── named-reg-alloc-r1.ll │ │ │ │ ├── named-reg-alloc-r13-64.ll │ │ │ │ ├── named-reg-alloc-r13.ll │ │ │ │ ├── named-reg-alloc-r2-64.ll │ │ │ │ ├── named-reg-alloc-r2.ll │ │ │ │ ├── neg.ll │ │ │ │ ├── negate-i1.ll │ │ │ │ ├── negctr.ll │ │ │ │ ├── no-dead-strip.ll │ │ │ │ ├── no-dup-spill-fp.ll │ │ │ │ ├── no-ext-with-count-zeros.ll │ │ │ │ ├── no-extra-fp-conv-ldst.ll │ │ │ │ ├── no-pref-jumps.ll │ │ │ │ ├── no-rlwimi-trivial-commute.mir │ │ │ │ ├── novrsave.ll │ │ │ │ ├── opt-cmp-inst-cr0-live.ll │ │ │ │ ├── opt-li-add-to-addi.ll │ │ │ │ ├── opt-sub-inst-cr0-live.mir │ │ │ │ ├── optcmp.ll │ │ │ │ ├── optnone-crbits-i1-ret.ll │ │ │ │ ├── or-addressing-mode.ll │ │ │ │ ├── ori_imm32.ll │ │ │ │ ├── p8-isel-sched.ll │ │ │ │ ├── p8-scalar_vector_conversions.ll │ │ │ │ ├── p8altivec-shuffles-pred.ll │ │ │ │ ├── p9-vector-compares-and-counts.ll │ │ │ │ ├── p9-vinsert-vextract.ll │ │ │ │ ├── p9-xxinsertw-xxextractuw.ll │ │ │ │ ├── peephole-align.ll │ │ │ │ ├── pie.ll │ │ │ │ ├── pip-inner.ll │ │ │ │ ├── popcnt.ll │ │ │ │ ├── post-ra-ec.ll │ │ │ │ ├── power9-moves-and-splats.ll │ │ │ │ ├── ppc-crbits-onoff.ll │ │ │ │ ├── ppc-ctr-dead-code.ll │ │ │ │ ├── ppc-empty-fs.ll │ │ │ │ ├── ppc-prologue.ll │ │ │ │ ├── ppc-redzone-alignment-bug.ll │ │ │ │ ├── ppc-shrink-wrapping.ll │ │ │ │ ├── ppc-vaarg-agg.ll │ │ │ │ ├── ppc32-align-long-double-sf.ll │ │ │ │ ├── ppc32-constant-BE-ppcf128.ll │ │ │ │ ├── ppc32-cyclecounter.ll │ │ │ │ ├── ppc32-i1-vaarg.ll │ │ │ │ ├── ppc32-lshrti3.ll │ │ │ │ ├── ppc32-nest.ll │ │ │ │ ├── ppc32-pic-large.ll │ │ │ │ ├── ppc32-pic.ll │ │ │ │ ├── ppc32-skip-regs.ll │ │ │ │ ├── ppc32-vacopy.ll │ │ │ │ ├── ppc440-fp-basic.ll │ │ │ │ ├── ppc440-msync.ll │ │ │ │ ├── ppc64-32bit-addic.ll │ │ │ │ ├── ppc64-P9-mod.ll │ │ │ │ ├── ppc64-P9-vabsd.ll │ │ │ │ ├── ppc64-abi-extend.ll │ │ │ │ ├── ppc64-align-long-double.ll │ │ │ │ ├── ppc64-altivec-abi.ll │ │ │ │ ├── ppc64-anyregcc-crash.ll │ │ │ │ ├── ppc64-anyregcc.ll │ │ │ │ ├── ppc64-blnop.ll │ │ │ │ ├── ppc64-byval-align.ll │ │ │ │ ├── ppc64-calls.ll │ │ │ │ ├── ppc64-crash.ll │ │ │ │ ├── ppc64-cyclecounter.ll │ │ │ │ ├── ppc64-elf-abi.ll │ │ │ │ ├── ppc64-fastcc-fast-isel.ll │ │ │ │ ├── ppc64-fastcc.ll │ │ │ │ ├── ppc64-func-desc-hoist.ll │ │ │ │ ├── ppc64-gep-opt.ll │ │ │ │ ├── ppc64-get-cache-line-size.ll │ │ │ │ ├── ppc64-i128-abi.ll │ │ │ │ ├── ppc64-icbt-pwr7.ll │ │ │ │ ├── ppc64-icbt-pwr8.ll │ │ │ │ ├── ppc64-linux-func-size.ll │ │ │ │ ├── ppc64-nest.ll │ │ │ │ ├── ppc64-nonfunc-calls.ll │ │ │ │ ├── ppc64-patchpoint.ll │ │ │ │ ├── ppc64-pre-inc-no-extra-phi.ll │ │ │ │ ├── ppc64-prefetch.ll │ │ │ │ ├── ppc64-r2-alloc.ll │ │ │ │ ├── ppc64-sibcall-shrinkwrap.ll │ │ │ │ ├── ppc64-sibcall.ll │ │ │ │ ├── ppc64-smallarg.ll │ │ │ │ ├── ppc64-stackmap-nops.ll │ │ │ │ ├── ppc64-stackmap.ll │ │ │ │ ├── ppc64-toc.ll │ │ │ │ ├── ppc64-vaarg-int.ll │ │ │ │ ├── ppc64-zext.ll │ │ │ │ ├── ppc64le-aggregates.ll │ │ │ │ ├── ppc64le-calls.ll │ │ │ │ ├── ppc64le-crsave.ll │ │ │ │ ├── ppc64le-localentry-large.ll │ │ │ │ ├── ppc64le-localentry.ll │ │ │ │ ├── ppc64le-smallarg.ll │ │ │ │ ├── ppcf128-1-opt.ll │ │ │ │ ├── ppcf128-1.ll │ │ │ │ ├── ppcf128-2.ll │ │ │ │ ├── ppcf128-3.ll │ │ │ │ ├── ppcf128-4.ll │ │ │ │ ├── ppcf128-endian.ll │ │ │ │ ├── ppcf128sf.ll │ │ │ │ ├── ppcsoftops.ll │ │ │ │ ├── pr12757.ll │ │ │ │ ├── pr13641.ll │ │ │ │ ├── pr13891.ll │ │ │ │ ├── pr15031.ll │ │ │ │ ├── pr15359.ll │ │ │ │ ├── pr15630.ll │ │ │ │ ├── pr15632.ll │ │ │ │ ├── pr16556-2.ll │ │ │ │ ├── pr16556.ll │ │ │ │ ├── pr16573.ll │ │ │ │ ├── pr17168.ll │ │ │ │ ├── pr17354.ll │ │ │ │ ├── pr18663-2.ll │ │ │ │ ├── pr18663.ll │ │ │ │ ├── pr20442.ll │ │ │ │ ├── pr22711.ll │ │ │ │ ├── pr24216.ll │ │ │ │ ├── pr24546.ll │ │ │ │ ├── pr24636.ll │ │ │ │ ├── pr25157-peephole.ll │ │ │ │ ├── pr25157.ll │ │ │ │ ├── pr26180.ll │ │ │ │ ├── pr26193.ll │ │ │ │ ├── pr26356.ll │ │ │ │ ├── pr26378.ll │ │ │ │ ├── pr26381.ll │ │ │ │ ├── pr26617.ll │ │ │ │ ├── pr26690.ll │ │ │ │ ├── pr27078.ll │ │ │ │ ├── pr27350.ll │ │ │ │ ├── pr28130.ll │ │ │ │ ├── pr28630.ll │ │ │ │ ├── pr30451.ll │ │ │ │ ├── pr30640.ll │ │ │ │ ├── pr30663.ll │ │ │ │ ├── pr30715.ll │ │ │ │ ├── pr31144.ll │ │ │ │ ├── pr32063.ll │ │ │ │ ├── pr32140.ll │ │ │ │ ├── pr33093.ll │ │ │ │ ├── pr35688.ll │ │ │ │ ├── pr36292.ll │ │ │ │ ├── pr3711_widen_bit.ll │ │ │ │ ├── preemption.ll │ │ │ │ ├── preinc-ld-sel-crash.ll │ │ │ │ ├── preincprep-invoke.ll │ │ │ │ ├── preincprep-nontrans-crash.ll │ │ │ │ ├── private.ll │ │ │ │ ├── pwr3-6x.ll │ │ │ │ ├── pwr7-gt-nop.ll │ │ │ │ ├── pzero-fp-xored.ll │ │ │ │ ├── qpx-bv-sint.ll │ │ │ │ ├── qpx-bv.ll │ │ │ │ ├── qpx-func-clobber.ll │ │ │ │ ├── qpx-load-splat.ll │ │ │ │ ├── qpx-load.ll │ │ │ │ ├── qpx-recipest.ll │ │ │ │ ├── qpx-rounding-ops.ll │ │ │ │ ├── qpx-s-load.ll │ │ │ │ ├── qpx-s-sel.ll │ │ │ │ ├── qpx-s-store.ll │ │ │ │ ├── qpx-sel.ll │ │ │ │ ├── qpx-split-vsetcc.ll │ │ │ │ ├── qpx-store.ll │ │ │ │ ├── qpx-unal-cons-lds.ll │ │ │ │ ├── qpx-unalperm.ll │ │ │ │ ├── quadint-return.ll │ │ │ │ ├── r31.ll │ │ │ │ ├── recipest.ll │ │ │ │ ├── reg-coalesce-simple.ll │ │ │ │ ├── reg-names.ll │ │ │ │ ├── reloc-align.ll │ │ │ │ ├── remap-crash.ll │ │ │ │ ├── remat-imm.ll │ │ │ │ ├── remove-redundant-moves.ll │ │ │ │ ├── remove-redundant-toc-saves.ll │ │ │ │ ├── resolvefi-basereg.ll │ │ │ │ ├── resolvefi-disp.ll │ │ │ │ ├── restore-r30.ll │ │ │ │ ├── retaddr.ll │ │ │ │ ├── retaddr2.ll │ │ │ │ ├── return-val-i128.ll │ │ │ │ ├── rlwimi-and-or-bits.ll │ │ │ │ ├── rlwimi-and.ll │ │ │ │ ├── rlwimi-commute.ll │ │ │ │ ├── rlwimi-dyn-and.ll │ │ │ │ ├── rlwimi-keep-rsh.ll │ │ │ │ ├── rlwimi.ll │ │ │ │ ├── rlwimi2.ll │ │ │ │ ├── rlwimi3.ll │ │ │ │ ├── rlwinm-zero-ext.ll │ │ │ │ ├── rlwinm.ll │ │ │ │ ├── rlwinm2.ll │ │ │ │ ├── rm-zext.ll │ │ │ │ ├── rotl-2.ll │ │ │ │ ├── rotl-64.ll │ │ │ │ ├── rotl-rotr-crash.ll │ │ │ │ ├── rotl.ll │ │ │ │ ├── rounding-ops.ll │ │ │ │ ├── rs-undef-use.ll │ │ │ │ ├── s000-alias-misched.ll │ │ │ │ ├── save-bp.ll │ │ │ │ ├── save-cr-ppc32svr4.ll │ │ │ │ ├── save-crbp-ppc32svr4.ll │ │ │ │ ├── scavenging.mir │ │ │ │ ├── sdag-ppcf128.ll │ │ │ │ ├── sdiv-pow2.ll │ │ │ │ ├── sections.ll │ │ │ │ ├── select-addrRegRegOnly.ll │ │ │ │ ├── select-cc.ll │ │ │ │ ├── select-i1-vs-i1.ll │ │ │ │ ├── select_const.ll │ │ │ │ ├── select_lt0.ll │ │ │ │ ├── selectiondag-extload-computeknownbits.ll │ │ │ │ ├── selectiondag-sextload.ll │ │ │ │ ├── set0-v8i16.ll │ │ │ │ ├── setcc-logic.ll │ │ │ │ ├── setcc-to-sub.ll │ │ │ │ ├── setcc_no_zext.ll │ │ │ │ ├── setcclike-or-comb.ll │ │ │ │ ├── seteq-0.ll │ │ │ │ ├── shift-cmp.ll │ │ │ │ ├── shift128.ll │ │ │ │ ├── shift_mask.ll │ │ │ │ ├── shl_elim.ll │ │ │ │ ├── shl_sext.ll │ │ │ │ ├── sign_ext_inreg1.ll │ │ │ │ ├── simplifyConstCmpToISEL.ll │ │ │ │ ├── sj-ctr-loop.ll │ │ │ │ ├── sjlj.ll │ │ │ │ ├── sjlj_no0x.ll │ │ │ │ ├── small-arguments.ll │ │ │ │ ├── spill-nor0.ll │ │ │ │ ├── splat-bug.ll │ │ │ │ ├── splat-larger-types-as-v16i8.ll │ │ │ │ ├── split-index-tc.ll │ │ │ │ ├── srl-mask.ll │ │ │ │ ├── stack-no-redzone.ll │ │ │ │ ├── stack-protector.ll │ │ │ │ ├── stack-realign.ll │ │ │ │ ├── stackmap-frame-setup.ll │ │ │ │ ├── stacksize.ll │ │ │ │ ├── std-unal-fi.ll │ │ │ │ ├── stdux-constuse.ll │ │ │ │ ├── stfiwx-2.ll │ │ │ │ ├── stfiwx.ll │ │ │ │ ├── store-constant.ll │ │ │ │ ├── store-load-fwd.ll │ │ │ │ ├── store-update.ll │ │ │ │ ├── structsinmem.ll │ │ │ │ ├── structsinregs.ll │ │ │ │ ├── stubs.ll │ │ │ │ ├── stwu-gta.ll │ │ │ │ ├── stwu8.ll │ │ │ │ ├── stwux.ll │ │ │ │ ├── sub-bv-types.ll │ │ │ │ ├── subc.ll │ │ │ │ ├── subreg-postra-2.ll │ │ │ │ ├── subreg-postra.ll │ │ │ │ ├── subtract_from_imm.ll │ │ │ │ ├── svr4-redzone.ll │ │ │ │ ├── swaps-le-1.ll │ │ │ │ ├── swaps-le-2.ll │ │ │ │ ├── swaps-le-3.ll │ │ │ │ ├── swaps-le-4.ll │ │ │ │ ├── swaps-le-5.ll │ │ │ │ ├── swaps-le-6.ll │ │ │ │ ├── swaps-le-7.ll │ │ │ │ ├── tail-dup-analyzable-fallthrough.ll │ │ │ │ ├── tail-dup-branch-to-fallthrough.ll │ │ │ │ ├── tail-dup-break-cfg.ll │ │ │ │ ├── tail-dup-layout.ll │ │ │ │ ├── tailcall-string-rvo.ll │ │ │ │ ├── tailcall1-64.ll │ │ │ │ ├── tailcall1.ll │ │ │ │ ├── tailcallpic1.ll │ │ │ │ ├── testBitReverse.ll │ │ │ │ ├── testComparesi32gtu.ll │ │ │ │ ├── testComparesi32leu.ll │ │ │ │ ├── testComparesi32ltu.ll │ │ │ │ ├── testComparesieqsc.ll │ │ │ │ ├── testComparesieqsi.ll │ │ │ │ ├── testComparesieqsll.ll │ │ │ │ ├── testComparesieqss.ll │ │ │ │ ├── testComparesiequc.ll │ │ │ │ ├── testComparesiequi.ll │ │ │ │ ├── testComparesiequll.ll │ │ │ │ ├── testComparesiequs.ll │ │ │ │ ├── testComparesigesc.ll │ │ │ │ ├── testComparesigesi.ll │ │ │ │ ├── testComparesigesll.ll │ │ │ │ ├── testComparesigess.ll │ │ │ │ ├── testComparesigeuc.ll │ │ │ │ ├── testComparesigeui.ll │ │ │ │ ├── testComparesigeull.ll │ │ │ │ ├── testComparesigeus.ll │ │ │ │ ├── testComparesigtsc.ll │ │ │ │ ├── testComparesigtsi.ll │ │ │ │ ├── testComparesigtsll.ll │ │ │ │ ├── testComparesigtss.ll │ │ │ │ ├── testComparesigtuc.ll │ │ │ │ ├── testComparesigtui.ll │ │ │ │ ├── testComparesigtus.ll │ │ │ │ ├── testComparesilesc.ll │ │ │ │ ├── testComparesilesi.ll │ │ │ │ ├── testComparesilesll.ll │ │ │ │ ├── testComparesiless.ll │ │ │ │ ├── testComparesileuc.ll │ │ │ │ ├── testComparesileui.ll │ │ │ │ ├── testComparesileull.ll │ │ │ │ ├── testComparesileus.ll │ │ │ │ ├── testComparesiltsc.ll │ │ │ │ ├── testComparesiltsi.ll │ │ │ │ ├── testComparesiltsll.ll │ │ │ │ ├── testComparesiltss.ll │ │ │ │ ├── testComparesiltuc.ll │ │ │ │ ├── testComparesiltui.ll │ │ │ │ ├── testComparesiltus.ll │ │ │ │ ├── testComparesinesc.ll │ │ │ │ ├── testComparesinesi.ll │ │ │ │ ├── testComparesinesll.ll │ │ │ │ ├── testComparesiness.ll │ │ │ │ ├── testComparesineuc.ll │ │ │ │ ├── testComparesineui.ll │ │ │ │ ├── testComparesineull.ll │ │ │ │ ├── testComparesineus.ll │ │ │ │ ├── testCompareslleqsc.ll │ │ │ │ ├── testCompareslleqsi.ll │ │ │ │ ├── testCompareslleqsll.ll │ │ │ │ ├── testCompareslleqss.ll │ │ │ │ ├── testComparesllequc.ll │ │ │ │ ├── testComparesllequi.ll │ │ │ │ ├── testComparesllequll.ll │ │ │ │ ├── testComparesllequs.ll │ │ │ │ ├── testComparesllgesc.ll │ │ │ │ ├── testComparesllgesi.ll │ │ │ │ ├── testComparesllgesll.ll │ │ │ │ ├── testComparesllgess.ll │ │ │ │ ├── testComparesllgeuc.ll │ │ │ │ ├── testComparesllgeui.ll │ │ │ │ ├── testComparesllgeull.ll │ │ │ │ ├── testComparesllgeus.ll │ │ │ │ ├── testComparesllgtsll.ll │ │ │ │ ├── testComparesllgtuc.ll │ │ │ │ ├── testComparesllgtui.ll │ │ │ │ ├── testComparesllgtus.ll │ │ │ │ ├── testCompareslllesc.ll │ │ │ │ ├── testCompareslllesi.ll │ │ │ │ ├── testCompareslllesll.ll │ │ │ │ ├── testComparesllless.ll │ │ │ │ ├── testComparesllleuc.ll │ │ │ │ ├── testComparesllleui.ll │ │ │ │ ├── testComparesllleull.ll │ │ │ │ ├── testComparesllleus.ll │ │ │ │ ├── testComparesllltsll.ll │ │ │ │ ├── testComparesllltuc.ll │ │ │ │ ├── testComparesllltui.ll │ │ │ │ ├── testComparesllltus.ll │ │ │ │ ├── testComparesllnesll.ll │ │ │ │ ├── testComparesllneull.ll │ │ │ │ ├── thread-pointer.ll │ │ │ │ ├── tls-cse.ll │ │ │ │ ├── tls-pic.ll │ │ │ │ ├── tls-store2.ll │ │ │ │ ├── tls.ll │ │ │ │ ├── tls_get_addr_clobbers.ll │ │ │ │ ├── tls_get_addr_fence1.mir │ │ │ │ ├── tls_get_addr_fence2.mir │ │ │ │ ├── tls_get_addr_stackframe.ll │ │ │ │ ├── toc-load-sched-bug.ll │ │ │ │ ├── trampoline.ll │ │ │ │ ├── uint-to-ppcfp128-crash.ll │ │ │ │ ├── unal-altivec-wint.ll │ │ │ │ ├── unal-altivec.ll │ │ │ │ ├── unal-altivec2.ll │ │ │ │ ├── unal-vec-ldst.ll │ │ │ │ ├── unal-vec-negarith.ll │ │ │ │ ├── unal4-std.ll │ │ │ │ ├── unaligned.ll │ │ │ │ ├── unsafe-math.ll │ │ │ │ ├── unwind-dw2-g.ll │ │ │ │ ├── unwind-dw2.ll │ │ │ │ ├── vaddsplat.ll │ │ │ │ ├── varargs-struct-float.ll │ │ │ │ ├── varargs.ll │ │ │ │ ├── variable_elem_vec_extracts.ll │ │ │ │ ├── vcmp-fold.ll │ │ │ │ ├── vec-abi-align.ll │ │ │ │ ├── vec-asm-disabled.ll │ │ │ │ ├── vec_abs.ll │ │ │ │ ├── vec_absd.ll │ │ │ │ ├── vec_add_sub_doubleword.ll │ │ │ │ ├── vec_add_sub_quadword.ll │ │ │ │ ├── vec_auto_constant.ll │ │ │ │ ├── vec_br_cmp.ll │ │ │ │ ├── vec_buildvector_loadstore.ll │ │ │ │ ├── vec_call.ll │ │ │ │ ├── vec_clz.ll │ │ │ │ ├── vec_cmp.ll │ │ │ │ ├── vec_cmpd.ll │ │ │ │ ├── vec_constants.ll │ │ │ │ ├── vec_conv.ll │ │ │ │ ├── vec_extload.ll │ │ │ │ ├── vec_extract_p9.ll │ │ │ │ ├── vec_extract_p9_2.ll │ │ │ │ ├── vec_fmuladd.ll │ │ │ │ ├── vec_fneg.ll │ │ │ │ ├── vec_insert.ll │ │ │ │ ├── vec_int_ext.ll │ │ │ │ ├── vec_mergeow.ll │ │ │ │ ├── vec_minmax.ll │ │ │ │ ├── vec_misaligned.ll │ │ │ │ ├── vec_mul.ll │ │ │ │ ├── vec_mul_even_odd.ll │ │ │ │ ├── vec_perf_shuffle.ll │ │ │ │ ├── vec_popcnt.ll │ │ │ │ ├── vec_revb.ll │ │ │ │ ├── vec_rotate_shift.ll │ │ │ │ ├── vec_rounding.ll │ │ │ │ ├── vec_select.ll │ │ │ │ ├── vec_shift.ll │ │ │ │ ├── vec_shuffle.ll │ │ │ │ ├── vec_shuffle_le.ll │ │ │ │ ├── vec_shuffle_p8vector.ll │ │ │ │ ├── vec_shuffle_p8vector_le.ll │ │ │ │ ├── vec_sldwi.ll │ │ │ │ ├── vec_splat.ll │ │ │ │ ├── vec_splat_constant.ll │ │ │ │ ├── vec_sqrt.ll │ │ │ │ ├── vec_urem_const.ll │ │ │ │ ├── vec_veqv_vnand_vorc.ll │ │ │ │ ├── vec_vrsave.ll │ │ │ │ ├── vec_xxpermdi.ll │ │ │ │ ├── vec_zero.ll │ │ │ │ ├── vector-identity-shuffle.ll │ │ │ │ ├── vector-merge-store-fp-constants.ll │ │ │ │ ├── vector.ll │ │ │ │ ├── vperm-instcombine.ll │ │ │ │ ├── vperm-lowering.ll │ │ │ │ ├── vrsave-spill.ll │ │ │ │ ├── vrspill.ll │ │ │ │ ├── vsel-prom.ll │ │ │ │ ├── vselect-constants.ll │ │ │ │ ├── vsx-args.ll │ │ │ │ ├── vsx-div.ll │ │ │ │ ├── vsx-elementary-arith.ll │ │ │ │ ├── vsx-fma-m.ll │ │ │ │ ├── vsx-fma-mutate-trivial-copy.ll │ │ │ │ ├── vsx-fma-mutate-undef.ll │ │ │ │ ├── vsx-fma-sp.ll │ │ │ │ ├── vsx-infl-copy1.ll │ │ │ │ ├── vsx-infl-copy2.ll │ │ │ │ ├── vsx-ldst-builtin-le.ll │ │ │ │ ├── vsx-ldst.ll │ │ │ │ ├── vsx-minmax.ll │ │ │ │ ├── vsx-p8.ll │ │ │ │ ├── vsx-p9.ll │ │ │ │ ├── vsx-partword-int-loads-and-stores.ll │ │ │ │ ├── vsx-recip-est.ll │ │ │ │ ├── vsx-self-copy.ll │ │ │ │ ├── vsx-spill-norwstore.ll │ │ │ │ ├── vsx-spill.ll │ │ │ │ ├── vsx-vec-spill.ll │ │ │ │ ├── vsx-word-splats.ll │ │ │ │ ├── vsx.ll │ │ │ │ ├── vsxD-Form-spills.ll │ │ │ │ ├── vsx_insert_extract_le.ll │ │ │ │ ├── vsx_scalar_ld_st.ll │ │ │ │ ├── vsx_shuffle_le.ll │ │ │ │ ├── vtable-reloc.ll │ │ │ │ ├── weak_def_can_be_hidden.ll │ │ │ │ ├── xray-attribute-instrumentation.ll │ │ │ │ ├── xray-conditional-return.ll │ │ │ │ ├── xray-ret-is-terminator.ll │ │ │ │ ├── xray-tail-call-hidden.ll │ │ │ │ ├── xray-tail-call-sled.ll │ │ │ │ ├── xvcmpeqdp-v2f64.ll │ │ │ │ ├── xxleqv_xxlnand_xxlorc.ll │ │ │ │ ├── zero-not-run.ll │ │ │ │ ├── zext-and-cmp.ll │ │ │ │ ├── zext-bitperm.ll │ │ │ │ └── zext-free.ll │ │ │ ├── RISCV │ │ │ │ ├── addc-adde-sube-subc.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── alu32.ll │ │ │ │ ├── bare-select.ll │ │ │ │ ├── blockaddress.ll │ │ │ │ ├── branch.ll │ │ │ │ ├── bswap-ctlz-cttz-ctpop.ll │ │ │ │ ├── byval.ll │ │ │ │ ├── calling-conv-sext-zext.ll │ │ │ │ ├── calling-conv.ll │ │ │ │ ├── calls.ll │ │ │ │ ├── div.ll │ │ │ │ ├── fp128.ll │ │ │ │ ├── frame.ll │ │ │ │ ├── i32-icmp.ll │ │ │ │ ├── imm.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── jumptable.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── mem.ll │ │ │ │ ├── mul.ll │ │ │ │ ├── rem.ll │ │ │ │ ├── rotl-rotr.ll │ │ │ │ ├── select-cc.ll │ │ │ │ ├── sext-zext-trunc.ll │ │ │ │ ├── shifts.ll │ │ │ │ └── wide-mem.ll │ │ │ ├── SPARC │ │ │ │ ├── 2006-01-22-BitConvertLegalize.ll │ │ │ │ ├── 2007-05-09-JumpTables.ll │ │ │ │ ├── 2007-07-05-LiveIntervalAssert.ll │ │ │ │ ├── 2008-10-10-InlineAsmMemoryOperand.ll │ │ │ │ ├── 2008-10-10-InlineAsmRegOperand.ll │ │ │ │ ├── 2009-08-28-PIC.ll │ │ │ │ ├── 2009-08-28-WeakLinkage.ll │ │ │ │ ├── 2011-01-11-CC.ll │ │ │ │ ├── 2011-01-11-Call.ll │ │ │ │ ├── 2011-01-11-FrameAddr.ll │ │ │ │ ├── 2011-01-19-DelaySlot.ll │ │ │ │ ├── 2011-01-21-ByValArgs.ll │ │ │ │ ├── 2011-01-22-SRet.ll │ │ │ │ ├── 2011-12-03-TailDuplication.ll │ │ │ │ ├── 2012-05-01-LowerArguments.ll │ │ │ │ ├── 2013-05-17-CallFrame.ll │ │ │ │ ├── 32abi.ll │ │ │ │ ├── 64abi.ll │ │ │ │ ├── 64bit.ll │ │ │ │ ├── 64cond.ll │ │ │ │ ├── 64spill.ll │ │ │ │ ├── DbgValueOtherTargets.test │ │ │ │ ├── LeonCASAInstructionUT.ll │ │ │ │ ├── LeonDetectRoundChangePassUT.ll │ │ │ │ ├── LeonFixAllFDIVSQRTPassUT.ll │ │ │ │ ├── LeonInsertNOPLoadPassUT.ll │ │ │ │ ├── LeonItinerariesUT.ll │ │ │ │ ├── LeonReplaceSDIVPassUT.ll │ │ │ │ ├── LeonSMACUMACInstructionUT.ll │ │ │ │ ├── analyze-branch.ll │ │ │ │ ├── atomics.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── blockaddr.ll │ │ │ │ ├── constpool.ll │ │ │ │ ├── constructor.ll │ │ │ │ ├── ctpop.ll │ │ │ │ ├── disable-fsmuld-fmuls.ll │ │ │ │ ├── empty-functions.ll │ │ │ │ ├── exception.ll │ │ │ │ ├── fail-alloca-align.ll │ │ │ │ ├── float-constants.ll │ │ │ │ ├── float.ll │ │ │ │ ├── fp128.ll │ │ │ │ ├── func-addr.ll │ │ │ │ ├── globals.ll │ │ │ │ ├── inlineasm-v9.ll │ │ │ │ ├── inlineasm.ll │ │ │ │ ├── leafproc.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── mature-mc-support.ll │ │ │ │ ├── missing-sret.ll │ │ │ │ ├── missinglabel.ll │ │ │ │ ├── mult-alt-generic-sparc.ll │ │ │ │ ├── multiple-div.ll │ │ │ │ ├── obj-relocs.ll │ │ │ │ ├── parts.ll │ │ │ │ ├── private.ll │ │ │ │ ├── register-clobber.ll │ │ │ │ ├── rem.ll │ │ │ │ ├── reserved-regs.ll │ │ │ │ ├── select-mask.ll │ │ │ │ ├── setjmp.ll │ │ │ │ ├── sjlj.ll │ │ │ │ ├── soft-float.ll │ │ │ │ ├── soft-mul-div.ll │ │ │ │ ├── spill.ll │ │ │ │ ├── spillsize.ll │ │ │ │ ├── sret-secondary.ll │ │ │ │ ├── stack-align.ll │ │ │ │ ├── stack-protector.ll │ │ │ │ ├── thread-pointer.ll │ │ │ │ ├── tls.ll │ │ │ │ ├── trap.ll │ │ │ │ ├── varargs.ll │ │ │ │ ├── vector-call.ll │ │ │ │ ├── vector-extract-elt.ll │ │ │ │ └── zerostructcall.ll │ │ │ ├── SystemZ │ │ │ │ ├── DAGCombine_trunc_extract.ll │ │ │ │ ├── DAGCombiner_illegal_BUILD_VECTOR.ll │ │ │ │ ├── DAGCombiner_isAlias.ll │ │ │ │ ├── Large │ │ │ │ │ ├── branch-range-01.py │ │ │ │ │ ├── branch-range-02.py │ │ │ │ │ ├── branch-range-03.py │ │ │ │ │ ├── branch-range-04.py │ │ │ │ │ ├── branch-range-05.py │ │ │ │ │ ├── branch-range-06.py │ │ │ │ │ ├── branch-range-07.py │ │ │ │ │ ├── branch-range-08.py │ │ │ │ │ ├── branch-range-09.py │ │ │ │ │ ├── branch-range-10.py │ │ │ │ │ ├── branch-range-11.py │ │ │ │ │ ├── branch-range-12.py │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── spill-01.py │ │ │ │ │ └── spill-02.py │ │ │ │ ├── RAbasic-invalid-LR-update.mir │ │ │ │ ├── addr-01.ll │ │ │ │ ├── addr-02.ll │ │ │ │ ├── addr-03.ll │ │ │ │ ├── alias-01.ll │ │ │ │ ├── alloca-01.ll │ │ │ │ ├── alloca-02.ll │ │ │ │ ├── alloca-03.ll │ │ │ │ ├── alloca-04.ll │ │ │ │ ├── and-01.ll │ │ │ │ ├── and-02.ll │ │ │ │ ├── and-03.ll │ │ │ │ ├── and-04.ll │ │ │ │ ├── and-05.ll │ │ │ │ ├── and-06.ll │ │ │ │ ├── and-07.ll │ │ │ │ ├── and-08.ll │ │ │ │ ├── and-xor-01.ll │ │ │ │ ├── args-01.ll │ │ │ │ ├── args-02.ll │ │ │ │ ├── args-03.ll │ │ │ │ ├── args-04.ll │ │ │ │ ├── args-05.ll │ │ │ │ ├── args-06.ll │ │ │ │ ├── args-07.ll │ │ │ │ ├── args-08.ll │ │ │ │ ├── args-09.ll │ │ │ │ ├── args-10.ll │ │ │ │ ├── asm-01.ll │ │ │ │ ├── asm-02.ll │ │ │ │ ├── asm-03.ll │ │ │ │ ├── asm-04.ll │ │ │ │ ├── asm-05.ll │ │ │ │ ├── asm-06.ll │ │ │ │ ├── asm-07.ll │ │ │ │ ├── asm-08.ll │ │ │ │ ├── asm-09.ll │ │ │ │ ├── asm-10.ll │ │ │ │ ├── asm-11.ll │ │ │ │ ├── asm-12.ll │ │ │ │ ├── asm-13.ll │ │ │ │ ├── asm-14.ll │ │ │ │ ├── asm-15.ll │ │ │ │ ├── asm-16.ll │ │ │ │ ├── asm-17.ll │ │ │ │ ├── asm-18.ll │ │ │ │ ├── atomic-fence-01.ll │ │ │ │ ├── atomic-fence-02.ll │ │ │ │ ├── atomic-load-01.ll │ │ │ │ ├── atomic-load-02.ll │ │ │ │ ├── atomic-load-03.ll │ │ │ │ ├── atomic-load-04.ll │ │ │ │ ├── atomic-load-05.ll │ │ │ │ ├── atomic-store-01.ll │ │ │ │ ├── atomic-store-02.ll │ │ │ │ ├── atomic-store-03.ll │ │ │ │ ├── atomic-store-04.ll │ │ │ │ ├── atomic-store-05.ll │ │ │ │ ├── atomicrmw-add-01.ll │ │ │ │ ├── atomicrmw-add-02.ll │ │ │ │ ├── atomicrmw-add-03.ll │ │ │ │ ├── atomicrmw-add-04.ll │ │ │ │ ├── atomicrmw-add-05.ll │ │ │ │ ├── atomicrmw-add-06.ll │ │ │ │ ├── atomicrmw-and-01.ll │ │ │ │ ├── atomicrmw-and-02.ll │ │ │ │ ├── atomicrmw-and-03.ll │ │ │ │ ├── atomicrmw-and-04.ll │ │ │ │ ├── atomicrmw-and-05.ll │ │ │ │ ├── atomicrmw-and-06.ll │ │ │ │ ├── atomicrmw-minmax-01.ll │ │ │ │ ├── atomicrmw-minmax-02.ll │ │ │ │ ├── atomicrmw-minmax-03.ll │ │ │ │ ├── atomicrmw-minmax-04.ll │ │ │ │ ├── atomicrmw-nand-01.ll │ │ │ │ ├── atomicrmw-nand-02.ll │ │ │ │ ├── atomicrmw-nand-03.ll │ │ │ │ ├── atomicrmw-nand-04.ll │ │ │ │ ├── atomicrmw-or-01.ll │ │ │ │ ├── atomicrmw-or-02.ll │ │ │ │ ├── atomicrmw-or-03.ll │ │ │ │ ├── atomicrmw-or-04.ll │ │ │ │ ├── atomicrmw-or-05.ll │ │ │ │ ├── atomicrmw-or-06.ll │ │ │ │ ├── atomicrmw-sub-01.ll │ │ │ │ ├── atomicrmw-sub-02.ll │ │ │ │ ├── atomicrmw-sub-03.ll │ │ │ │ ├── atomicrmw-sub-04.ll │ │ │ │ ├── atomicrmw-sub-05.ll │ │ │ │ ├── atomicrmw-sub-06.ll │ │ │ │ ├── atomicrmw-xchg-01.ll │ │ │ │ ├── atomicrmw-xchg-02.ll │ │ │ │ ├── atomicrmw-xchg-03.ll │ │ │ │ ├── atomicrmw-xchg-04.ll │ │ │ │ ├── atomicrmw-xor-01.ll │ │ │ │ ├── atomicrmw-xor-02.ll │ │ │ │ ├── atomicrmw-xor-03.ll │ │ │ │ ├── atomicrmw-xor-04.ll │ │ │ │ ├── atomicrmw-xor-05.ll │ │ │ │ ├── atomicrmw-xor-06.ll │ │ │ │ ├── backchain.ll │ │ │ │ ├── branch-01.ll │ │ │ │ ├── branch-02.ll │ │ │ │ ├── branch-03.ll │ │ │ │ ├── branch-04.ll │ │ │ │ ├── branch-05.ll │ │ │ │ ├── branch-06.ll │ │ │ │ ├── branch-07.ll │ │ │ │ ├── branch-08.ll │ │ │ │ ├── branch-09.ll │ │ │ │ ├── branch-10.ll │ │ │ │ ├── branch-11.ll │ │ │ │ ├── bswap-01.ll │ │ │ │ ├── bswap-02.ll │ │ │ │ ├── bswap-03.ll │ │ │ │ ├── bswap-04.ll │ │ │ │ ├── bswap-05.ll │ │ │ │ ├── bswap-06.ll │ │ │ │ ├── bswap-07.ll │ │ │ │ ├── bswap-08.ll │ │ │ │ ├── builtins.ll │ │ │ │ ├── call-01.ll │ │ │ │ ├── call-02.ll │ │ │ │ ├── call-03.ll │ │ │ │ ├── call-04.ll │ │ │ │ ├── call-05.ll │ │ │ │ ├── clear-liverange-spillreg.mir │ │ │ │ ├── cmpxchg-01.ll │ │ │ │ ├── cmpxchg-02.ll │ │ │ │ ├── cmpxchg-03.ll │ │ │ │ ├── cmpxchg-04.ll │ │ │ │ ├── cmpxchg-05.ll │ │ │ │ ├── cmpxchg-06.ll │ │ │ │ ├── cond-load-01.ll │ │ │ │ ├── cond-load-02.ll │ │ │ │ ├── cond-load-03.ll │ │ │ │ ├── cond-move-01.ll │ │ │ │ ├── cond-move-02.ll │ │ │ │ ├── cond-move-03.ll │ │ │ │ ├── cond-move-04.mir │ │ │ │ ├── cond-move-05.mir │ │ │ │ ├── cond-store-01.ll │ │ │ │ ├── cond-store-02.ll │ │ │ │ ├── cond-store-03.ll │ │ │ │ ├── cond-store-04.ll │ │ │ │ ├── cond-store-05.ll │ │ │ │ ├── cond-store-06.ll │ │ │ │ ├── cond-store-07.ll │ │ │ │ ├── cond-store-08.ll │ │ │ │ ├── cond-store-09.ll │ │ │ │ ├── copy-physreg-128.ll │ │ │ │ ├── ctpop-01.ll │ │ │ │ ├── dag-combine-01.ll │ │ │ │ ├── dag-combine-02.ll │ │ │ │ ├── dyn-alloca-offset.ll │ │ │ │ ├── expand-zext-pseudo.ll │ │ │ │ ├── extract-vector-elt-zEC12.ll │ │ │ │ ├── fold-memory-op-impl.ll │ │ │ │ ├── fp-abs-01.ll │ │ │ │ ├── fp-abs-02.ll │ │ │ │ ├── fp-abs-03.ll │ │ │ │ ├── fp-abs-04.ll │ │ │ │ ├── fp-add-01.ll │ │ │ │ ├── fp-add-02.ll │ │ │ │ ├── fp-add-03.ll │ │ │ │ ├── fp-add-04.ll │ │ │ │ ├── fp-cmp-01.ll │ │ │ │ ├── fp-cmp-02.ll │ │ │ │ ├── fp-cmp-03.ll │ │ │ │ ├── fp-cmp-04.ll │ │ │ │ ├── fp-cmp-05.ll │ │ │ │ ├── fp-cmp-06.ll │ │ │ │ ├── fp-cmp-07.mir │ │ │ │ ├── fp-const-01.ll │ │ │ │ ├── fp-const-02.ll │ │ │ │ ├── fp-const-03.ll │ │ │ │ ├── fp-const-04.ll │ │ │ │ ├── fp-const-05.ll │ │ │ │ ├── fp-const-06.ll │ │ │ │ ├── fp-const-07.ll │ │ │ │ ├── fp-const-08.ll │ │ │ │ ├── fp-const-09.ll │ │ │ │ ├── fp-const-10.ll │ │ │ │ ├── fp-const-11.ll │ │ │ │ ├── fp-conv-01.ll │ │ │ │ ├── fp-conv-02.ll │ │ │ │ ├── fp-conv-03.ll │ │ │ │ ├── fp-conv-04.ll │ │ │ │ ├── fp-conv-05.ll │ │ │ │ ├── fp-conv-06.ll │ │ │ │ ├── fp-conv-07.ll │ │ │ │ ├── fp-conv-08.ll │ │ │ │ ├── fp-conv-09.ll │ │ │ │ ├── fp-conv-10.ll │ │ │ │ ├── fp-conv-11.ll │ │ │ │ ├── fp-conv-12.ll │ │ │ │ ├── fp-conv-13.ll │ │ │ │ ├── fp-conv-14.ll │ │ │ │ ├── fp-conv-15.ll │ │ │ │ ├── fp-conv-16.ll │ │ │ │ ├── fp-conv-17.mir │ │ │ │ ├── fp-copysign-01.ll │ │ │ │ ├── fp-copysign-02.ll │ │ │ │ ├── fp-div-01.ll │ │ │ │ ├── fp-div-02.ll │ │ │ │ ├── fp-div-03.ll │ │ │ │ ├── fp-div-04.ll │ │ │ │ ├── fp-libcall.ll │ │ │ │ ├── fp-move-01.ll │ │ │ │ ├── fp-move-02.ll │ │ │ │ ├── fp-move-03.ll │ │ │ │ ├── fp-move-04.ll │ │ │ │ ├── fp-move-05.ll │ │ │ │ ├── fp-move-06.ll │ │ │ │ ├── fp-move-07.ll │ │ │ │ ├── fp-move-08.ll │ │ │ │ ├── fp-move-09.ll │ │ │ │ ├── fp-move-10.ll │ │ │ │ ├── fp-move-11.ll │ │ │ │ ├── fp-move-12.ll │ │ │ │ ├── fp-move-13.ll │ │ │ │ ├── fp-mul-01.ll │ │ │ │ ├── fp-mul-02.ll │ │ │ │ ├── fp-mul-03.ll │ │ │ │ ├── fp-mul-04.ll │ │ │ │ ├── fp-mul-05.ll │ │ │ │ ├── fp-mul-06.ll │ │ │ │ ├── fp-mul-07.ll │ │ │ │ ├── fp-mul-08.ll │ │ │ │ ├── fp-mul-09.ll │ │ │ │ ├── fp-mul-10.ll │ │ │ │ ├── fp-mul-11.ll │ │ │ │ ├── fp-mul-12.ll │ │ │ │ ├── fp-neg-01.ll │ │ │ │ ├── fp-neg-02.ll │ │ │ │ ├── fp-round-01.ll │ │ │ │ ├── fp-round-02.ll │ │ │ │ ├── fp-round-03.ll │ │ │ │ ├── fp-sincos-01.ll │ │ │ │ ├── fp-sqrt-01.ll │ │ │ │ ├── fp-sqrt-02.ll │ │ │ │ ├── fp-sqrt-03.ll │ │ │ │ ├── fp-sqrt-04.ll │ │ │ │ ├── fp-sub-01.ll │ │ │ │ ├── fp-sub-02.ll │ │ │ │ ├── fp-sub-03.ll │ │ │ │ ├── fp-sub-04.ll │ │ │ │ ├── fpc-intrinsics.ll │ │ │ │ ├── frame-01.ll │ │ │ │ ├── frame-02.ll │ │ │ │ ├── frame-03.ll │ │ │ │ ├── frame-04.ll │ │ │ │ ├── frame-05.ll │ │ │ │ ├── frame-06.ll │ │ │ │ ├── frame-07.ll │ │ │ │ ├── frame-08.ll │ │ │ │ ├── frame-09.ll │ │ │ │ ├── frame-10.ll │ │ │ │ ├── frame-11.ll │ │ │ │ ├── frame-13.ll │ │ │ │ ├── frame-14.ll │ │ │ │ ├── frame-15.ll │ │ │ │ ├── frame-16.ll │ │ │ │ ├── frame-17.ll │ │ │ │ ├── frame-18.ll │ │ │ │ ├── frame-19.ll │ │ │ │ ├── frame-20.ll │ │ │ │ ├── frame-21.ll │ │ │ │ ├── frameaddr-01.ll │ │ │ │ ├── htm-intrinsics.ll │ │ │ │ ├── insert-01.ll │ │ │ │ ├── insert-02.ll │ │ │ │ ├── insert-03.ll │ │ │ │ ├── insert-04.ll │ │ │ │ ├── insert-05.ll │ │ │ │ ├── insert-06.ll │ │ │ │ ├── int-abs-01.ll │ │ │ │ ├── int-add-01.ll │ │ │ │ ├── int-add-02.ll │ │ │ │ ├── int-add-03.ll │ │ │ │ ├── int-add-04.ll │ │ │ │ ├── int-add-05.ll │ │ │ │ ├── int-add-06.ll │ │ │ │ ├── int-add-07.ll │ │ │ │ ├── int-add-08.ll │ │ │ │ ├── int-add-09.ll │ │ │ │ ├── int-add-10.ll │ │ │ │ ├── int-add-11.ll │ │ │ │ ├── int-add-12.ll │ │ │ │ ├── int-add-13.ll │ │ │ │ ├── int-add-14.ll │ │ │ │ ├── int-add-15.ll │ │ │ │ ├── int-add-16.ll │ │ │ │ ├── int-add-17.ll │ │ │ │ ├── int-cmp-01.ll │ │ │ │ ├── int-cmp-02.ll │ │ │ │ ├── int-cmp-03.ll │ │ │ │ ├── int-cmp-04.ll │ │ │ │ ├── int-cmp-05.ll │ │ │ │ ├── int-cmp-06.ll │ │ │ │ ├── int-cmp-07.ll │ │ │ │ ├── int-cmp-08.ll │ │ │ │ ├── int-cmp-09.ll │ │ │ │ ├── int-cmp-10.ll │ │ │ │ ├── int-cmp-11.ll │ │ │ │ ├── int-cmp-12.ll │ │ │ │ ├── int-cmp-13.ll │ │ │ │ ├── int-cmp-14.ll │ │ │ │ ├── int-cmp-15.ll │ │ │ │ ├── int-cmp-16.ll │ │ │ │ ├── int-cmp-17.ll │ │ │ │ ├── int-cmp-18.ll │ │ │ │ ├── int-cmp-19.ll │ │ │ │ ├── int-cmp-20.ll │ │ │ │ ├── int-cmp-21.ll │ │ │ │ ├── int-cmp-22.ll │ │ │ │ ├── int-cmp-23.ll │ │ │ │ ├── int-cmp-24.ll │ │ │ │ ├── int-cmp-25.ll │ │ │ │ ├── int-cmp-26.ll │ │ │ │ ├── int-cmp-27.ll │ │ │ │ ├── int-cmp-28.ll │ │ │ │ ├── int-cmp-29.ll │ │ │ │ ├── int-cmp-30.ll │ │ │ │ ├── int-cmp-31.ll │ │ │ │ ├── int-cmp-32.ll │ │ │ │ ├── int-cmp-33.ll │ │ │ │ ├── int-cmp-34.ll │ │ │ │ ├── int-cmp-35.ll │ │ │ │ ├── int-cmp-36.ll │ │ │ │ ├── int-cmp-37.ll │ │ │ │ ├── int-cmp-38.ll │ │ │ │ ├── int-cmp-39.ll │ │ │ │ ├── int-cmp-40.ll │ │ │ │ ├── int-cmp-41.ll │ │ │ │ ├── int-cmp-42.ll │ │ │ │ ├── int-cmp-43.ll │ │ │ │ ├── int-cmp-44.ll │ │ │ │ ├── int-cmp-45.ll │ │ │ │ ├── int-cmp-46.ll │ │ │ │ ├── int-cmp-47.ll │ │ │ │ ├── int-cmp-48.ll │ │ │ │ ├── int-cmp-49.ll │ │ │ │ ├── int-cmp-50.ll │ │ │ │ ├── int-cmp-51.ll │ │ │ │ ├── int-cmp-52.ll │ │ │ │ ├── int-cmp-53.ll │ │ │ │ ├── int-cmp-54.ll │ │ │ │ ├── int-const-01.ll │ │ │ │ ├── int-const-02.ll │ │ │ │ ├── int-const-03.ll │ │ │ │ ├── int-const-04.ll │ │ │ │ ├── int-const-05.ll │ │ │ │ ├── int-const-06.ll │ │ │ │ ├── int-conv-01.ll │ │ │ │ ├── int-conv-02.ll │ │ │ │ ├── int-conv-03.ll │ │ │ │ ├── int-conv-04.ll │ │ │ │ ├── int-conv-05.ll │ │ │ │ ├── int-conv-06.ll │ │ │ │ ├── int-conv-07.ll │ │ │ │ ├── int-conv-08.ll │ │ │ │ ├── int-conv-09.ll │ │ │ │ ├── int-conv-10.ll │ │ │ │ ├── int-conv-11.ll │ │ │ │ ├── int-conv-12.ll │ │ │ │ ├── int-conv-13.ll │ │ │ │ ├── int-div-01.ll │ │ │ │ ├── int-div-02.ll │ │ │ │ ├── int-div-03.ll │ │ │ │ ├── int-div-04.ll │ │ │ │ ├── int-div-05.ll │ │ │ │ ├── int-div-06.ll │ │ │ │ ├── int-move-01.ll │ │ │ │ ├── int-move-02.ll │ │ │ │ ├── int-move-03.ll │ │ │ │ ├── int-move-04.ll │ │ │ │ ├── int-move-05.ll │ │ │ │ ├── int-move-06.ll │ │ │ │ ├── int-move-07.ll │ │ │ │ ├── int-move-08.ll │ │ │ │ ├── int-move-09.ll │ │ │ │ ├── int-mul-01.ll │ │ │ │ ├── int-mul-02.ll │ │ │ │ ├── int-mul-03.ll │ │ │ │ ├── int-mul-04.ll │ │ │ │ ├── int-mul-05.ll │ │ │ │ ├── int-mul-06.ll │ │ │ │ ├── int-mul-07.ll │ │ │ │ ├── int-mul-08.ll │ │ │ │ ├── int-mul-09.ll │ │ │ │ ├── int-mul-10.ll │ │ │ │ ├── int-mul-11.ll │ │ │ │ ├── int-neg-01.ll │ │ │ │ ├── int-neg-02.ll │ │ │ │ ├── int-sub-01.ll │ │ │ │ ├── int-sub-02.ll │ │ │ │ ├── int-sub-03.ll │ │ │ │ ├── int-sub-04.ll │ │ │ │ ├── int-sub-05.ll │ │ │ │ ├── int-sub-06.ll │ │ │ │ ├── int-sub-07.ll │ │ │ │ ├── int-sub-08.ll │ │ │ │ ├── int-sub-09.ll │ │ │ │ ├── int-sub-10.ll │ │ │ │ ├── la-01.ll │ │ │ │ ├── la-02.ll │ │ │ │ ├── la-03.ll │ │ │ │ ├── la-04.ll │ │ │ │ ├── list-ilp-crash.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── locr-legal-regclass.ll │ │ │ │ ├── loop-01.ll │ │ │ │ ├── loop-02.ll │ │ │ │ ├── loop-03.ll │ │ │ │ ├── lower-copy-undef-src.mir │ │ │ │ ├── mature-mc-support.ll │ │ │ │ ├── memchr-01.ll │ │ │ │ ├── memchr-nobuiltin.ll │ │ │ │ ├── memcmp-01.ll │ │ │ │ ├── memcmp-nobuiltin.ll │ │ │ │ ├── memcpy-01.ll │ │ │ │ ├── memcpy-02.ll │ │ │ │ ├── memset-01.ll │ │ │ │ ├── memset-02.ll │ │ │ │ ├── memset-03.ll │ │ │ │ ├── memset-04.ll │ │ │ │ ├── or-01.ll │ │ │ │ ├── or-02.ll │ │ │ │ ├── or-03.ll │ │ │ │ ├── or-04.ll │ │ │ │ ├── or-05.ll │ │ │ │ ├── or-06.ll │ │ │ │ ├── or-07.ll │ │ │ │ ├── or-08.ll │ │ │ │ ├── pie.ll │ │ │ │ ├── pr31710.ll │ │ │ │ ├── pr32372.ll │ │ │ │ ├── pr32505.ll │ │ │ │ ├── prefetch-01.ll │ │ │ │ ├── regalloc-GR128.ll │ │ │ │ ├── regalloc-fast-invalid-kill-flag.mir │ │ │ │ ├── ret-addr-01.ll │ │ │ │ ├── risbg-01.ll │ │ │ │ ├── risbg-02.ll │ │ │ │ ├── risbg-03.ll │ │ │ │ ├── risbg-04.ll │ │ │ │ ├── rnsbg-01.ll │ │ │ │ ├── rosbg-01.ll │ │ │ │ ├── rosbg-02.ll │ │ │ │ ├── rot-01.ll │ │ │ │ ├── rot-02.ll │ │ │ │ ├── rxsbg-01.ll │ │ │ │ ├── selectcc-01.ll │ │ │ │ ├── selectcc-02.ll │ │ │ │ ├── selectcc-03.ll │ │ │ │ ├── setcc-01.ll │ │ │ │ ├── setcc-02.ll │ │ │ │ ├── shift-01.ll │ │ │ │ ├── shift-02.ll │ │ │ │ ├── shift-03.ll │ │ │ │ ├── shift-04.ll │ │ │ │ ├── shift-05.ll │ │ │ │ ├── shift-06.ll │ │ │ │ ├── shift-07.ll │ │ │ │ ├── shift-08.ll │ │ │ │ ├── shift-09.ll │ │ │ │ ├── shift-10.ll │ │ │ │ ├── shift-11.ll │ │ │ │ ├── shift-12.ll │ │ │ │ ├── spill-01.ll │ │ │ │ ├── splitMove_undefReg_mverifier.ll │ │ │ │ ├── splitMove_undefReg_mverifier_2.ll │ │ │ │ ├── stack-guard.ll │ │ │ │ ├── strcmp-01.ll │ │ │ │ ├── strcmp-nobuiltin.ll │ │ │ │ ├── strcpy-01.ll │ │ │ │ ├── strcpy-nobuiltin.ll │ │ │ │ ├── strlen-01.ll │ │ │ │ ├── strlen-nobuiltin.ll │ │ │ │ ├── swift-return.ll │ │ │ │ ├── swifterror.ll │ │ │ │ ├── swiftself.ll │ │ │ │ ├── tail-call-mem-intrinsics.ll │ │ │ │ ├── tdc-01.ll │ │ │ │ ├── tdc-02.ll │ │ │ │ ├── tdc-03.ll │ │ │ │ ├── tdc-04.ll │ │ │ │ ├── tdc-05.ll │ │ │ │ ├── tdc-06.ll │ │ │ │ ├── tdc-07.ll │ │ │ │ ├── tls-01.ll │ │ │ │ ├── tls-02.ll │ │ │ │ ├── tls-03.ll │ │ │ │ ├── tls-04.ll │ │ │ │ ├── tls-05.ll │ │ │ │ ├── tls-06.ll │ │ │ │ ├── tls-07.ll │ │ │ │ ├── trap-01.ll │ │ │ │ ├── trap-02.ll │ │ │ │ ├── trap-03.ll │ │ │ │ ├── trap-04.ll │ │ │ │ ├── trap-05.ll │ │ │ │ ├── twoaddr-sink.ll │ │ │ │ ├── unaligned-01.ll │ │ │ │ ├── undef-flag.ll │ │ │ │ ├── vec-abi-align.ll │ │ │ │ ├── vec-abs-01.ll │ │ │ │ ├── vec-abs-02.ll │ │ │ │ ├── vec-abs-03.ll │ │ │ │ ├── vec-abs-04.ll │ │ │ │ ├── vec-abs-05.ll │ │ │ │ ├── vec-abs-06.ll │ │ │ │ ├── vec-add-01.ll │ │ │ │ ├── vec-add-02.ll │ │ │ │ ├── vec-and-01.ll │ │ │ │ ├── vec-and-02.ll │ │ │ │ ├── vec-and-03.ll │ │ │ │ ├── vec-and-04.ll │ │ │ │ ├── vec-args-01.ll │ │ │ │ ├── vec-args-02.ll │ │ │ │ ├── vec-args-03.ll │ │ │ │ ├── vec-args-04.ll │ │ │ │ ├── vec-args-05.ll │ │ │ │ ├── vec-args-06.ll │ │ │ │ ├── vec-args-07.ll │ │ │ │ ├── vec-args-error-01.ll │ │ │ │ ├── vec-args-error-02.ll │ │ │ │ ├── vec-args-error-03.ll │ │ │ │ ├── vec-args-error-04.ll │ │ │ │ ├── vec-args-error-05.ll │ │ │ │ ├── vec-args-error-06.ll │ │ │ │ ├── vec-args-error-07.ll │ │ │ │ ├── vec-args-error-08.ll │ │ │ │ ├── vec-cmp-01.ll │ │ │ │ ├── vec-cmp-02.ll │ │ │ │ ├── vec-cmp-03.ll │ │ │ │ ├── vec-cmp-04.ll │ │ │ │ ├── vec-cmp-05.ll │ │ │ │ ├── vec-cmp-06.ll │ │ │ │ ├── vec-cmp-07.ll │ │ │ │ ├── vec-cmp-cmp-logic-select.ll │ │ │ │ ├── vec-cmpsel.ll │ │ │ │ ├── vec-combine-01.ll │ │ │ │ ├── vec-combine-02.ll │ │ │ │ ├── vec-const-01.ll │ │ │ │ ├── vec-const-02.ll │ │ │ │ ├── vec-const-03.ll │ │ │ │ ├── vec-const-04.ll │ │ │ │ ├── vec-const-05.ll │ │ │ │ ├── vec-const-06.ll │ │ │ │ ├── vec-const-07.ll │ │ │ │ ├── vec-const-08.ll │ │ │ │ ├── vec-const-09.ll │ │ │ │ ├── vec-const-10.ll │ │ │ │ ├── vec-const-11.ll │ │ │ │ ├── vec-const-12.ll │ │ │ │ ├── vec-const-13.ll │ │ │ │ ├── vec-const-14.ll │ │ │ │ ├── vec-const-15.ll │ │ │ │ ├── vec-const-16.ll │ │ │ │ ├── vec-const-17.ll │ │ │ │ ├── vec-const-18.ll │ │ │ │ ├── vec-conv-01.ll │ │ │ │ ├── vec-conv-02.ll │ │ │ │ ├── vec-ctlz-01.ll │ │ │ │ ├── vec-ctpop-01.ll │ │ │ │ ├── vec-ctpop-02.ll │ │ │ │ ├── vec-cttz-01.ll │ │ │ │ ├── vec-div-01.ll │ │ │ │ ├── vec-div-02.ll │ │ │ │ ├── vec-extract-01.ll │ │ │ │ ├── vec-extract-02.ll │ │ │ │ ├── vec-intrinsics-01.ll │ │ │ │ ├── vec-intrinsics-02.ll │ │ │ │ ├── vec-log-01.ll │ │ │ │ ├── vec-max-01.ll │ │ │ │ ├── vec-max-02.ll │ │ │ │ ├── vec-max-03.ll │ │ │ │ ├── vec-max-04.ll │ │ │ │ ├── vec-max-05.ll │ │ │ │ ├── vec-min-01.ll │ │ │ │ ├── vec-min-02.ll │ │ │ │ ├── vec-min-03.ll │ │ │ │ ├── vec-min-04.ll │ │ │ │ ├── vec-min-05.ll │ │ │ │ ├── vec-move-01.ll │ │ │ │ ├── vec-move-02.ll │ │ │ │ ├── vec-move-03.ll │ │ │ │ ├── vec-move-04.ll │ │ │ │ ├── vec-move-05.ll │ │ │ │ ├── vec-move-06.ll │ │ │ │ ├── vec-move-07.ll │ │ │ │ ├── vec-move-08.ll │ │ │ │ ├── vec-move-09.ll │ │ │ │ ├── vec-move-10.ll │ │ │ │ ├── vec-move-11.ll │ │ │ │ ├── vec-move-12.ll │ │ │ │ ├── vec-move-13.ll │ │ │ │ ├── vec-move-14.ll │ │ │ │ ├── vec-move-15.ll │ │ │ │ ├── vec-move-16.ll │ │ │ │ ├── vec-move-17.ll │ │ │ │ ├── vec-move-18.ll │ │ │ │ ├── vec-mul-01.ll │ │ │ │ ├── vec-mul-02.ll │ │ │ │ ├── vec-mul-03.ll │ │ │ │ ├── vec-mul-04.ll │ │ │ │ ├── vec-mul-05.ll │ │ │ │ ├── vec-neg-01.ll │ │ │ │ ├── vec-neg-02.ll │ │ │ │ ├── vec-or-01.ll │ │ │ │ ├── vec-or-02.ll │ │ │ │ ├── vec-or-03.ll │ │ │ │ ├── vec-perm-01.ll │ │ │ │ ├── vec-perm-02.ll │ │ │ │ ├── vec-perm-03.ll │ │ │ │ ├── vec-perm-04.ll │ │ │ │ ├── vec-perm-05.ll │ │ │ │ ├── vec-perm-06.ll │ │ │ │ ├── vec-perm-07.ll │ │ │ │ ├── vec-perm-08.ll │ │ │ │ ├── vec-perm-09.ll │ │ │ │ ├── vec-perm-10.ll │ │ │ │ ├── vec-perm-11.ll │ │ │ │ ├── vec-perm-12.ll │ │ │ │ ├── vec-perm-13.ll │ │ │ │ ├── vec-round-01.ll │ │ │ │ ├── vec-round-02.ll │ │ │ │ ├── vec-sext.ll │ │ │ │ ├── vec-shift-01.ll │ │ │ │ ├── vec-shift-02.ll │ │ │ │ ├── vec-shift-03.ll │ │ │ │ ├── vec-shift-04.ll │ │ │ │ ├── vec-shift-05.ll │ │ │ │ ├── vec-shift-06.ll │ │ │ │ ├── vec-shift-07.ll │ │ │ │ ├── vec-sqrt-01.ll │ │ │ │ ├── vec-sqrt-02.ll │ │ │ │ ├── vec-sub-01.ll │ │ │ │ ├── vec-sub-02.ll │ │ │ │ ├── vec-trunc-to-i1.ll │ │ │ │ ├── vec-xor-01.ll │ │ │ │ ├── vec-xor-02.ll │ │ │ │ ├── vec-zext.ll │ │ │ │ ├── vectorizer-output-3xi32.ll │ │ │ │ ├── xor-01.ll │ │ │ │ ├── xor-02.ll │ │ │ │ ├── xor-03.ll │ │ │ │ ├── xor-04.ll │ │ │ │ ├── xor-05.ll │ │ │ │ ├── xor-06.ll │ │ │ │ ├── xor-07.ll │ │ │ │ └── xor-08.ll │ │ │ ├── Thumb │ │ │ │ ├── 2007-01-31-RegInfoAssert.ll │ │ │ │ ├── 2007-02-02-JoinIntervalsCrash.ll │ │ │ │ ├── 2007-05-05-InvalidPushPop.ll │ │ │ │ ├── 2009-06-18-ThumbCommuteMul.ll │ │ │ │ ├── 2009-07-20-TwoAddrBug.ll │ │ │ │ ├── 2009-07-27-PEIAssert.ll │ │ │ │ ├── 2009-08-12-ConstIslandAssert.ll │ │ │ │ ├── 2009-08-12-RegInfoAssert.ll │ │ │ │ ├── 2009-08-20-ISelBug.ll │ │ │ │ ├── 2009-12-17-pre-regalloc-taildup.ll │ │ │ │ ├── 2010-06-18-SibCallCrash.ll │ │ │ │ ├── 2010-07-01-FuncAlign.ll │ │ │ │ ├── 2010-07-15-debugOrdering.ll │ │ │ │ ├── 2011-05-11-DAGLegalizer.ll │ │ │ │ ├── 2011-06-16-NoGPRs.ll │ │ │ │ ├── 2011-EpilogueBug.ll │ │ │ │ ├── 2012-04-26-M0ISelBug.ll │ │ │ │ ├── 2014-06-10-thumb1-ldst-opt-bug.ll │ │ │ │ ├── DbgValueOtherTargets.test │ │ │ │ ├── PR17309.ll │ │ │ │ ├── addr-modes.ll │ │ │ │ ├── and_neg.ll │ │ │ │ ├── asmprinter-bug.ll │ │ │ │ ├── barrier.ll │ │ │ │ ├── bic_imm.ll │ │ │ │ ├── branchless-cmp.ll │ │ │ │ ├── callee_save.ll │ │ │ │ ├── cmp-add-fold.ll │ │ │ │ ├── cmp-fold.ll │ │ │ │ ├── constants.ll │ │ │ │ ├── copy_thumb.ll │ │ │ │ ├── cortex-m0-unaligned-access.ll │ │ │ │ ├── dyn-stackalloc.ll │ │ │ │ ├── fastcc.ll │ │ │ │ ├── fpconv.ll │ │ │ │ ├── fpow.ll │ │ │ │ ├── frame_thumb.ll │ │ │ │ ├── iabs.ll │ │ │ │ ├── inlineasm-imm-thumb.ll │ │ │ │ ├── inlineasm-thumb.ll │ │ │ │ ├── ispositive.ll │ │ │ │ ├── large-stack.ll │ │ │ │ ├── ldm-merge-call.ll │ │ │ │ ├── ldm-merge-struct.ll │ │ │ │ ├── ldm-stm-base-materialization-thumb2.ll │ │ │ │ ├── ldm-stm-base-materialization.ll │ │ │ │ ├── ldm-stm-postinc.ll │ │ │ │ ├── ldr_ext.ll │ │ │ │ ├── ldr_frame.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── litpoolremat.ll │ │ │ │ ├── long-setcc.ll │ │ │ │ ├── long.ll │ │ │ │ ├── long_shift.ll │ │ │ │ ├── machine-cse-physreg.mir │ │ │ │ ├── mature-mc-support.ll │ │ │ │ ├── mul.ll │ │ │ │ ├── optionaldef-scheduling.ll │ │ │ │ ├── pop.ll │ │ │ │ ├── pr35836.ll │ │ │ │ ├── pr35836_2.ll │ │ │ │ ├── push.ll │ │ │ │ ├── remove-unneeded-push-pop.ll │ │ │ │ ├── rev.ll │ │ │ │ ├── segmented-stacks-dynamic.ll │ │ │ │ ├── segmented-stacks.ll │ │ │ │ ├── select.ll │ │ │ │ ├── sjljehprepare-lower-vector.ll │ │ │ │ ├── stack-access.ll │ │ │ │ ├── stack-coloring-without-frame-ptr.ll │ │ │ │ ├── stack-frame.ll │ │ │ │ ├── stack_guard_remat.ll │ │ │ │ ├── stm-deprecated.ll │ │ │ │ ├── stm-merge.ll │ │ │ │ ├── stm-scavenging.ll │ │ │ │ ├── tbb-reuse.mir │ │ │ │ ├── thumb-imm.ll │ │ │ │ ├── thumb-ldm.ll │ │ │ │ ├── thumb-shrink-wrapping.ll │ │ │ │ ├── trap.ll │ │ │ │ ├── triple.ll │ │ │ │ ├── tst_teq.ll │ │ │ │ ├── unord.ll │ │ │ │ └── vargs.ll │ │ │ ├── Thumb2 │ │ │ │ ├── 2009-07-17-CrossRegClassCopy.ll │ │ │ │ ├── 2009-07-21-ISelBug.ll │ │ │ │ ├── 2009-07-23-CPIslandBug.ll │ │ │ │ ├── 2009-07-30-PEICrash.ll │ │ │ │ ├── 2009-08-01-WrongLDRBOpc.ll │ │ │ │ ├── 2009-08-02-CoalescerBug.ll │ │ │ │ ├── 2009-08-04-CoalescerAssert.ll │ │ │ │ ├── 2009-08-04-CoalescerBug.ll │ │ │ │ ├── 2009-08-04-ScavengerAssert.ll │ │ │ │ ├── 2009-08-04-SubregLoweringBug.ll │ │ │ │ ├── 2009-08-04-SubregLoweringBug2.ll │ │ │ │ ├── 2009-08-04-SubregLoweringBug3.ll │ │ │ │ ├── 2009-08-06-SpDecBug.ll │ │ │ │ ├── 2009-08-07-CoalescerBug.ll │ │ │ │ ├── 2009-08-07-NeonFPBug.ll │ │ │ │ ├── 2009-08-08-ScavengerAssert.ll │ │ │ │ ├── 2009-08-10-ISelBug.ll │ │ │ │ ├── 2009-08-21-PostRAKill4.ll │ │ │ │ ├── 2009-09-01-PostRAProlog.ll │ │ │ │ ├── 2009-10-15-ITBlockBranch.ll │ │ │ │ ├── 2009-11-01-CopyReg2RegBug.ll │ │ │ │ ├── 2009-11-11-ScavengerAssert.ll │ │ │ │ ├── 2009-11-13-STRDBug.ll │ │ │ │ ├── 2009-12-01-LoopIVUsers.ll │ │ │ │ ├── 2010-01-06-TailDuplicateLabels.ll │ │ │ │ ├── 2010-01-19-RemovePredicates.ll │ │ │ │ ├── 2010-02-11-phi-cycle.ll │ │ │ │ ├── 2010-02-24-BigStack.ll │ │ │ │ ├── 2010-03-08-addi12-ccout.ll │ │ │ │ ├── 2010-03-15-AsmCCClobber.ll │ │ │ │ ├── 2010-04-15-DynAllocBug.ll │ │ │ │ ├── 2010-04-26-CopyRegCrash.ll │ │ │ │ ├── 2010-05-24-rsbs.ll │ │ │ │ ├── 2010-06-14-NEONCoalescer.ll │ │ │ │ ├── 2010-06-19-ITBlockCrash.ll │ │ │ │ ├── 2010-06-21-TailMergeBug.ll │ │ │ │ ├── 2010-08-10-VarSizedAllocaBug.ll │ │ │ │ ├── 2010-11-22-EpilogueBug.ll │ │ │ │ ├── 2010-12-03-AddSPNarrowing.ll │ │ │ │ ├── 2011-04-21-FILoweringBug.ll │ │ │ │ ├── 2011-06-07-TwoAddrEarlyClobber.ll │ │ │ │ ├── 2011-12-16-T2SizeReduceAssert.ll │ │ │ │ ├── 2012-01-13-CBNZBug.ll │ │ │ │ ├── 2013-02-19-tail-call-register-hint.ll │ │ │ │ ├── 2013-03-02-vduplane-nonconstant-source-index.ll │ │ │ │ ├── 2013-03-06-vector-sext-operand-scalarize.ll │ │ │ │ ├── aapcs.ll │ │ │ │ ├── aligned-constants.ll │ │ │ │ ├── aligned-spill.ll │ │ │ │ ├── bfi.ll │ │ │ │ ├── bfx.ll │ │ │ │ ├── bicbfi.ll │ │ │ │ ├── buildvector-crash.ll │ │ │ │ ├── carry.ll │ │ │ │ ├── cbnz.ll │ │ │ │ ├── constant-islands-jump-table.ll │ │ │ │ ├── constant-islands-new-island-padding.ll │ │ │ │ ├── constant-islands-new-island.ll │ │ │ │ ├── constant-islands.ll │ │ │ │ ├── cortex-fp.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── cross-rc-coalescing-1.ll │ │ │ │ ├── cross-rc-coalescing-2.ll │ │ │ │ ├── div.ll │ │ │ │ ├── emit-unwinding.ll │ │ │ │ ├── float-cmp.ll │ │ │ │ ├── float-intrinsics-double.ll │ │ │ │ ├── float-intrinsics-float.ll │ │ │ │ ├── float-ops.ll │ │ │ │ ├── frame-pointer.ll │ │ │ │ ├── frameless.ll │ │ │ │ ├── frameless2.ll │ │ │ │ ├── ifcvt-compare.ll │ │ │ │ ├── ifcvt-neon-deprecated.mir │ │ │ │ ├── ifcvt-no-branch-predictor.ll │ │ │ │ ├── ifcvt-rescan-bug-2016-08-22.ll │ │ │ │ ├── ifcvt-rescan-diamonds.ll │ │ │ │ ├── inflate-regs.ll │ │ │ │ ├── inlineasm.ll │ │ │ │ ├── intrinsics-cc.ll │ │ │ │ ├── intrinsics-coprocessor.ll │ │ │ │ ├── large-call.ll │ │ │ │ ├── large-stack.ll │ │ │ │ ├── ldr-str-imm12.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── longMACt.ll │ │ │ │ ├── lsr-deficiency.ll │ │ │ │ ├── machine-licm.ll │ │ │ │ ├── mul_const.ll │ │ │ │ ├── pic-load.ll │ │ │ │ ├── segmented-stacks.ll │ │ │ │ ├── setjmp_longjmp.ll │ │ │ │ ├── stack_guard_remat.ll │ │ │ │ ├── t2sizereduction.mir │ │ │ │ ├── tail-call-r9.ll │ │ │ │ ├── tbb-removeadd.mir │ │ │ │ ├── thumb2-adc.ll │ │ │ │ ├── thumb2-add.ll │ │ │ │ ├── thumb2-add2.ll │ │ │ │ ├── thumb2-add3.ll │ │ │ │ ├── thumb2-add4.ll │ │ │ │ ├── thumb2-add5.ll │ │ │ │ ├── thumb2-add6.ll │ │ │ │ ├── thumb2-and.ll │ │ │ │ ├── thumb2-and2.ll │ │ │ │ ├── thumb2-asr.ll │ │ │ │ ├── thumb2-asr2.ll │ │ │ │ ├── thumb2-bcc.ll │ │ │ │ ├── thumb2-bfc.ll │ │ │ │ ├── thumb2-bic.ll │ │ │ │ ├── thumb2-branch.ll │ │ │ │ ├── thumb2-call-tc.ll │ │ │ │ ├── thumb2-call.ll │ │ │ │ ├── thumb2-cbnz.ll │ │ │ │ ├── thumb2-clz.ll │ │ │ │ ├── thumb2-cmn.ll │ │ │ │ ├── thumb2-cmn2.ll │ │ │ │ ├── thumb2-cmp.ll │ │ │ │ ├── thumb2-cpsr-liveness.ll │ │ │ │ ├── thumb2-eor.ll │ │ │ │ ├── thumb2-eor2.ll │ │ │ │ ├── thumb2-ifcvt1-tc.ll │ │ │ │ ├── thumb2-ifcvt1.ll │ │ │ │ ├── thumb2-ifcvt2.ll │ │ │ │ ├── thumb2-ifcvt3.ll │ │ │ │ ├── thumb2-jtb.ll │ │ │ │ ├── thumb2-ldm.ll │ │ │ │ ├── thumb2-ldr.ll │ │ │ │ ├── thumb2-ldr_ext.ll │ │ │ │ ├── thumb2-ldr_post.ll │ │ │ │ ├── thumb2-ldr_pre.ll │ │ │ │ ├── thumb2-ldrb.ll │ │ │ │ ├── thumb2-ldrd.ll │ │ │ │ ├── thumb2-ldrh.ll │ │ │ │ ├── thumb2-lsl.ll │ │ │ │ ├── thumb2-lsl2.ll │ │ │ │ ├── thumb2-lsr.ll │ │ │ │ ├── thumb2-lsr2.ll │ │ │ │ ├── thumb2-lsr3.ll │ │ │ │ ├── thumb2-mla.ll │ │ │ │ ├── thumb2-mls.ll │ │ │ │ ├── thumb2-mov.ll │ │ │ │ ├── thumb2-mul.ll │ │ │ │ ├── thumb2-mulhi.ll │ │ │ │ ├── thumb2-mvn.ll │ │ │ │ ├── thumb2-mvn2.ll │ │ │ │ ├── thumb2-neg.ll │ │ │ │ ├── thumb2-orn.ll │ │ │ │ ├── thumb2-orn2.ll │ │ │ │ ├── thumb2-orr.ll │ │ │ │ ├── thumb2-orr2.ll │ │ │ │ ├── thumb2-pack.ll │ │ │ │ ├── thumb2-rev.ll │ │ │ │ ├── thumb2-rev16.ll │ │ │ │ ├── thumb2-ror.ll │ │ │ │ ├── thumb2-rsb.ll │ │ │ │ ├── thumb2-rsb2.ll │ │ │ │ ├── thumb2-sbc.ll │ │ │ │ ├── thumb2-select.ll │ │ │ │ ├── thumb2-select_xform.ll │ │ │ │ ├── thumb2-shifter.ll │ │ │ │ ├── thumb2-smla.ll │ │ │ │ ├── thumb2-smul.ll │ │ │ │ ├── thumb2-spill-q.ll │ │ │ │ ├── thumb2-str.ll │ │ │ │ ├── thumb2-str_post.ll │ │ │ │ ├── thumb2-str_pre.ll │ │ │ │ ├── thumb2-strb.ll │ │ │ │ ├── thumb2-strh.ll │ │ │ │ ├── thumb2-sub.ll │ │ │ │ ├── thumb2-sub2.ll │ │ │ │ ├── thumb2-sub3.ll │ │ │ │ ├── thumb2-sub4.ll │ │ │ │ ├── thumb2-sub5.ll │ │ │ │ ├── thumb2-sxt-uxt.ll │ │ │ │ ├── thumb2-sxt_rot.ll │ │ │ │ ├── thumb2-tbb.ll │ │ │ │ ├── thumb2-tbh.ll │ │ │ │ ├── thumb2-teq.ll │ │ │ │ ├── thumb2-teq2.ll │ │ │ │ ├── thumb2-tst.ll │ │ │ │ ├── thumb2-tst2.ll │ │ │ │ ├── thumb2-uxt_rot.ll │ │ │ │ ├── thumb2-uxtb.ll │ │ │ │ ├── tls1.ll │ │ │ │ ├── tls2.ll │ │ │ │ ├── tpsoft.ll │ │ │ │ ├── v8_IT_1.ll │ │ │ │ ├── v8_IT_2.ll │ │ │ │ ├── v8_IT_3.ll │ │ │ │ ├── v8_IT_4.ll │ │ │ │ ├── v8_IT_5.ll │ │ │ │ └── v8_IT_6.ll │ │ │ ├── WebAssembly │ │ │ │ ├── address-offsets.ll │ │ │ │ ├── byval.ll │ │ │ │ ├── call.ll │ │ │ │ ├── cfg-stackify.ll │ │ │ │ ├── cfi.ll │ │ │ │ ├── comdat.ll │ │ │ │ ├── comparisons_f32.ll │ │ │ │ ├── comparisons_f64.ll │ │ │ │ ├── comparisons_i32.ll │ │ │ │ ├── comparisons_i64.ll │ │ │ │ ├── conv-trap.ll │ │ │ │ ├── conv.ll │ │ │ │ ├── copysign-casts.ll │ │ │ │ ├── cpus.ll │ │ │ │ ├── dbgvalue.ll │ │ │ │ ├── dead-vreg.ll │ │ │ │ ├── divrem-constant.ll │ │ │ │ ├── exception.ll │ │ │ │ ├── f16.ll │ │ │ │ ├── f32.ll │ │ │ │ ├── f64.ll │ │ │ │ ├── fast-isel-noreg.ll │ │ │ │ ├── fast-isel.ll │ │ │ │ ├── frem.ll │ │ │ │ ├── func.ll │ │ │ │ ├── function-bitcasts-varargs.ll │ │ │ │ ├── function-bitcasts.ll │ │ │ │ ├── global.ll │ │ │ │ ├── globl.ll │ │ │ │ ├── i128.ll │ │ │ │ ├── i32-load-store-alignment.ll │ │ │ │ ├── i32.ll │ │ │ │ ├── i64-load-store-alignment.ll │ │ │ │ ├── i64.ll │ │ │ │ ├── ident.ll │ │ │ │ ├── immediates.ll │ │ │ │ ├── implicit-def.ll │ │ │ │ ├── indirect-import.ll │ │ │ │ ├── inline-asm-m.ll │ │ │ │ ├── inline-asm.ll │ │ │ │ ├── irreducible-cfg.ll │ │ │ │ ├── legalize.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── load-ext-atomic.ll │ │ │ │ ├── load-ext.ll │ │ │ │ ├── load-store-i1.ll │ │ │ │ ├── load.ll │ │ │ │ ├── lower-em-ehsjlj-options.ll │ │ │ │ ├── lower-em-exceptions-whitelist.ll │ │ │ │ ├── lower-em-exceptions.ll │ │ │ │ ├── lower-em-sjlj.ll │ │ │ │ ├── lower-global-dtors.ll │ │ │ │ ├── main-declaration.ll │ │ │ │ ├── main.ll │ │ │ │ ├── mem-intrinsics.ll │ │ │ │ ├── memory-addr32.ll │ │ │ │ ├── negative-base-reg.ll │ │ │ │ ├── non-executable-stack.ll │ │ │ │ ├── offset-atomics.ll │ │ │ │ ├── offset-fastisel.ll │ │ │ │ ├── offset-folding.ll │ │ │ │ ├── offset.ll │ │ │ │ ├── phi.ll │ │ │ │ ├── reg-stackify.ll │ │ │ │ ├── return-int32.ll │ │ │ │ ├── return-void.ll │ │ │ │ ├── returned.ll │ │ │ │ ├── select.ll │ │ │ │ ├── signext-arg.ll │ │ │ │ ├── signext-inreg.ll │ │ │ │ ├── signext-zeroext.ll │ │ │ │ ├── simd-arith.ll │ │ │ │ ├── stack-alignment.ll │ │ │ │ ├── store-trunc.ll │ │ │ │ ├── store.ll │ │ │ │ ├── switch.ll │ │ │ │ ├── umulo-i64.ll │ │ │ │ ├── unreachable.ll │ │ │ │ ├── unsupported-function-bitcasts.ll │ │ │ │ ├── unused-argument.ll │ │ │ │ ├── userstack.ll │ │ │ │ ├── varargs.ll │ │ │ │ └── vtable.ll │ │ │ ├── WinEH │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── wineh-asm.ll │ │ │ │ ├── wineh-cloning.ll │ │ │ │ ├── wineh-comdat.ll │ │ │ │ ├── wineh-demotion.ll │ │ │ │ ├── wineh-intrinsics-invalid.ll │ │ │ │ ├── wineh-intrinsics.ll │ │ │ │ ├── wineh-nested-unwind.ll │ │ │ │ ├── wineh-no-demotion.ll │ │ │ │ ├── wineh-noret-cleanup.ll │ │ │ │ ├── wineh-setjmp.ll │ │ │ │ ├── wineh-statenumbering-cleanups.ll │ │ │ │ └── wineh-statenumbering.ll │ │ │ └── XCore │ │ │ │ ├── 2008-11-17-Shl64.ll │ │ │ │ ├── 2009-01-08-Crash.ll │ │ │ │ ├── 2009-01-14-Remat-Crash.ll │ │ │ │ ├── 2009-03-27-v2f64-param.ll │ │ │ │ ├── 2009-07-15-store192.ll │ │ │ │ ├── 2010-02-25-LSR-Crash.ll │ │ │ │ ├── 2011-01-31-DAGCombineBug.ll │ │ │ │ ├── 2011-08-01-DynamicAllocBug.ll │ │ │ │ ├── DbgValueOtherTargets.test │ │ │ │ ├── addsub64.ll │ │ │ │ ├── aliases.ll │ │ │ │ ├── align.ll │ │ │ │ ├── alignment.ll │ │ │ │ ├── ashr.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── bigstructret.ll │ │ │ │ ├── byVal.ll │ │ │ │ ├── call.ll │ │ │ │ ├── codemodel.ll │ │ │ │ ├── constants.ll │ │ │ │ ├── dwarf_debug.ll │ │ │ │ ├── epilogue_prologue.ll │ │ │ │ ├── events.ll │ │ │ │ ├── exception.ll │ │ │ │ ├── float-intrinsics.ll │ │ │ │ ├── fneg.ll │ │ │ │ ├── getid.ll │ │ │ │ ├── globals.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── inline-asm.ll │ │ │ │ ├── ladd_lsub_combine.ll │ │ │ │ ├── licm-ldwcp.ll │ │ │ │ ├── linkage.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── llvm-intrinsics.ll │ │ │ │ ├── load.ll │ │ │ │ ├── memcpy.ll │ │ │ │ ├── misc-intrinsics.ll │ │ │ │ ├── mkmsk.ll │ │ │ │ ├── mul64.ll │ │ │ │ ├── offset_folding.ll │ │ │ │ ├── private.ll │ │ │ │ ├── ps-intrinsics.ll │ │ │ │ ├── resources.ll │ │ │ │ ├── resources_combine.ll │ │ │ │ ├── scavenging.ll │ │ │ │ ├── section-name.ll │ │ │ │ ├── sext.ll │ │ │ │ ├── shedulingPreference.ll │ │ │ │ ├── sr-intrinsics.ll │ │ │ │ ├── store.ll │ │ │ │ ├── switch.ll │ │ │ │ ├── switch_long.ll │ │ │ │ ├── threads.ll │ │ │ │ ├── tls.ll │ │ │ │ ├── trampoline.ll │ │ │ │ ├── trap.ll │ │ │ │ ├── unaligned_load.ll │ │ │ │ ├── unaligned_store.ll │ │ │ │ ├── unaligned_store_combine.ll │ │ │ │ ├── varargs.ll │ │ │ │ ├── zext.ll │ │ │ │ └── zextfree.ll │ │ ├── DebugInfo │ │ │ ├── AArch64 │ │ │ │ ├── asan-stack-vars.ll │ │ │ │ ├── big-endian-dump.ll │ │ │ │ ├── big-endian.ll │ │ │ │ ├── bitfields.ll │ │ │ │ ├── cfi-eof-prologue.ll │ │ │ │ ├── coalescing.ll │ │ │ │ ├── constant-dbgloc.ll │ │ │ │ ├── dagcombine-zext.ll │ │ │ │ ├── dwarfdump.ll │ │ │ │ ├── eh_frame.s │ │ │ │ ├── eh_frame_personality.ll │ │ │ │ ├── frameindices.ll │ │ │ │ ├── inlined-argument.ll │ │ │ │ ├── line-header.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── little-endian-dump.ll │ │ │ │ ├── processes-relocations.ll │ │ │ │ ├── prologue_end.ll │ │ │ │ └── struct_by_value.ll │ │ │ ├── AMDGPU │ │ │ │ ├── code-pointer-size.ll │ │ │ │ ├── dbg-value-sched-crash.ll │ │ │ │ ├── dwarfdump-relocs.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── pointer-address-space.ll │ │ │ │ └── variable-locations.ll │ │ │ ├── ARM │ │ │ │ ├── PR16736.ll │ │ │ │ ├── PR26163.ll │ │ │ │ ├── big-endian-bitfield.ll │ │ │ │ ├── big-endian-dump.ll │ │ │ │ ├── bitfield.ll │ │ │ │ ├── cfi-eof-prologue.ll │ │ │ │ ├── constant-dbgloc.ll │ │ │ │ ├── float-args.ll │ │ │ │ ├── header.ll │ │ │ │ ├── illegal-fragment.ll │ │ │ │ ├── line.test │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── little-endian-dump.ll │ │ │ │ ├── lowerbdgdeclare_vla.ll │ │ │ │ ├── multiple-constant-uses-drops-dbgloc.ll │ │ │ │ ├── partial-subreg.ll │ │ │ │ ├── processes-relocations.ll │ │ │ │ ├── prologue_end.ll │ │ │ │ ├── s-super-register.ll │ │ │ │ ├── salvage-debug-info.ll │ │ │ │ ├── sdag-split-arg.ll │ │ │ │ ├── sdag-split-arg1.ll │ │ │ │ ├── selectiondag-deadcode.ll │ │ │ │ ├── single-constant-use-preserves-dbgloc.ll │ │ │ │ ├── split-complex.ll │ │ │ │ ├── sroa-complex.ll │ │ │ │ └── tls.ll │ │ │ ├── COFF │ │ │ │ ├── anonymous-struct.ll │ │ │ │ ├── array-odr-violation.ll │ │ │ │ ├── asan-module-ctor.ll │ │ │ │ ├── asan-module-without-functions.ll │ │ │ │ ├── asm.ll │ │ │ │ ├── big-type.ll │ │ │ │ ├── bitfields.ll │ │ │ │ ├── comdat.ll │ │ │ │ ├── cpp-mangling.ll │ │ │ │ ├── defer-complete-type.ll │ │ │ │ ├── dlang.ll │ │ │ │ ├── enum.ll │ │ │ │ ├── fp-stack.ll │ │ │ │ ├── fpo-argsize.ll │ │ │ │ ├── fpo-csrs.ll │ │ │ │ ├── fpo-funclet.ll │ │ │ │ ├── fpo-realign-alloca.ll │ │ │ │ ├── fpo-shrink-wrap.ll │ │ │ │ ├── fpo-stack-protect.ll │ │ │ │ ├── global-dllimport.ll │ │ │ │ ├── global-type-hashes.ll │ │ │ │ ├── globals-discarded.ll │ │ │ │ ├── globals.ll │ │ │ │ ├── inheritance.ll │ │ │ │ ├── inlining-files.ll │ │ │ │ ├── inlining-header.ll │ │ │ │ ├── inlining-levels.ll │ │ │ │ ├── inlining-padding.ll │ │ │ │ ├── inlining-same-name.ll │ │ │ │ ├── inlining.ll │ │ │ │ ├── int8-char-type.ll │ │ │ │ ├── lines-bb-start.ll │ │ │ │ ├── lines-difile.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── local-constant.ll │ │ │ │ ├── local-variable-gap.ll │ │ │ │ ├── local-variables.ll │ │ │ │ ├── long-name.ll │ │ │ │ ├── long-type-name.ll │ │ │ │ ├── multifile.ll │ │ │ │ ├── multifunction.ll │ │ │ │ ├── nested-types.ll │ │ │ │ ├── no-cus.ll │ │ │ │ ├── parameter-order.ll │ │ │ │ ├── pieces.ll │ │ │ │ ├── pr28747.ll │ │ │ │ ├── purge-typedef-udts.ll │ │ │ │ ├── register-variables.ll │ │ │ │ ├── retained-types.ll │ │ │ │ ├── scopes.ll │ │ │ │ ├── simple.ll │ │ │ │ ├── static-methods.ll │ │ │ │ ├── synthetic.ll │ │ │ │ ├── tail-call-without-lexical-scopes.ll │ │ │ │ ├── typedef.ll │ │ │ │ ├── types-array-advanced.ll │ │ │ │ ├── types-array-unsized.ll │ │ │ │ ├── types-array.ll │ │ │ │ ├── types-basic.ll │ │ │ │ ├── types-calling-conv.ll │ │ │ │ ├── types-data-members.ll │ │ │ │ ├── types-nested-class.ll │ │ │ │ ├── types-non-virtual-methods.ll │ │ │ │ ├── types-ptr-to-member.ll │ │ │ │ ├── types-recursive-struct.ll │ │ │ │ ├── udts.ll │ │ │ │ ├── vftables.ll │ │ │ │ ├── virtual-method-kinds.ll │ │ │ │ ├── virtual-methods.ll │ │ │ │ └── vtable-optzn-array.ll │ │ │ ├── Generic │ │ │ │ ├── 2009-10-16-Phi.ll │ │ │ │ ├── 2009-11-03-InsertExtractValue.ll │ │ │ │ ├── 2009-11-05-DeadGlobalVariable.ll │ │ │ │ ├── 2009-11-06-NamelessGlobalVariable.ll │ │ │ │ ├── 2009-11-10-CurrentFn.ll │ │ │ │ ├── 2010-01-05-DbgScope.ll │ │ │ │ ├── 2010-03-12-llc-crash.ll │ │ │ │ ├── 2010-03-19-DbgDeclare.ll │ │ │ │ ├── 2010-03-24-MemberFn.ll │ │ │ │ ├── 2010-04-06-NestedFnDbgInfo.ll │ │ │ │ ├── 2010-04-19-FramePtr.ll │ │ │ │ ├── 2010-05-03-DisableFramePtr.ll │ │ │ │ ├── 2010-05-03-OriginDIE.ll │ │ │ │ ├── 2010-05-10-MultipleCU.ll │ │ │ │ ├── 2010-06-29-InlinedFnLocalVar.ll │ │ │ │ ├── 2010-10-01-crash.ll │ │ │ │ ├── PR20038.ll │ │ │ │ ├── accel-table-hash-collisions.ll │ │ │ │ ├── array.ll │ │ │ │ ├── block-asan.ll │ │ │ │ ├── bug_null_debuginfo.ll │ │ │ │ ├── constant-pointers.ll │ │ │ │ ├── constant-sdnodes-have-dbg-location.ll │ │ │ │ ├── constantfp-sdnodes-have-dbg-location.ll │ │ │ │ ├── containing-type-extension.ll │ │ │ │ ├── cross-cu-inlining.ll │ │ │ │ ├── cross-cu-linkonce-distinct.ll │ │ │ │ ├── cross-cu-linkonce.ll │ │ │ │ ├── cu-range-hole.ll │ │ │ │ ├── cu-ranges.ll │ │ │ │ ├── dbg-at-specficiation.ll │ │ │ │ ├── dead-argument-order.ll │ │ │ │ ├── debug-info-always-inline.ll │ │ │ │ ├── debug-info-qualifiers.ll │ │ │ │ ├── debuginfofinder-forward-declaration.ll │ │ │ │ ├── debuginfofinder-inlined-cu.ll │ │ │ │ ├── debuginfofinder-multiple-cu.ll │ │ │ │ ├── def-line.ll │ │ │ │ ├── discriminator.ll │ │ │ │ ├── dwarf-public-names.ll │ │ │ │ ├── empty.ll │ │ │ │ ├── enum-types.ll │ │ │ │ ├── enum.ll │ │ │ │ ├── global-sra-array.ll │ │ │ │ ├── global-sra-single-member.ll │ │ │ │ ├── global-sra-struct.ll │ │ │ │ ├── global.ll │ │ │ │ ├── gmlt.test │ │ │ │ ├── gmlt_profiling.ll │ │ │ │ ├── gvn.ll │ │ │ │ ├── imported-name-inlined.ll │ │ │ │ ├── incorrect-variable-debugloc.ll │ │ │ │ ├── incorrect-variable-debugloc1.ll │ │ │ │ ├── indvar-discriminator.ll │ │ │ │ ├── inheritance.ll │ │ │ │ ├── inline-debug-info-multiret.ll │ │ │ │ ├── inline-debug-info.ll │ │ │ │ ├── inline-debug-loc.ll │ │ │ │ ├── inline-no-debug-info.ll │ │ │ │ ├── inline-scopes.ll │ │ │ │ ├── inlined-arguments.ll │ │ │ │ ├── inlined-vars.ll │ │ │ │ ├── instcombine-phi.ll │ │ │ │ ├── invalid.ll │ │ │ │ ├── licm-hoist-debug-loc.ll │ │ │ │ ├── linkage-name-abstract.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── location-verifier.ll │ │ │ │ ├── lto-comp-dir.ll │ │ │ │ ├── mainsubprogram.ll │ │ │ │ ├── member-order.ll │ │ │ │ ├── member-pointers.ll │ │ │ │ ├── missing-abstract-variable.ll │ │ │ │ ├── multiline.ll │ │ │ │ ├── namespace.ll │ │ │ │ ├── namespace_function_definition.ll │ │ │ │ ├── namespace_inline_function_definition.ll │ │ │ │ ├── noscopes.ll │ │ │ │ ├── piece-verifier.ll │ │ │ │ ├── ptrsize.ll │ │ │ │ ├── recursive_inlining.ll │ │ │ │ ├── restrict.ll │ │ │ │ ├── simplifycfg_sink_last_inst.ll │ │ │ │ ├── skeletoncu.ll │ │ │ │ ├── sroa-larger.ll │ │ │ │ ├── sroa-samesize.ll │ │ │ │ ├── store-tail-merge.ll │ │ │ │ ├── sugared-constants.ll │ │ │ │ ├── sunk-compare.ll │ │ │ │ ├── template-recursive-void.ll │ │ │ │ ├── thrownTypes.ll │ │ │ │ ├── tu-composite.ll │ │ │ │ ├── tu-member-pointer.ll │ │ │ │ ├── two-cus-from-same-file.ll │ │ │ │ ├── typedef.ll │ │ │ │ ├── unconditional-branch.ll │ │ │ │ ├── varargs.ll │ │ │ │ ├── version.ll │ │ │ │ └── virtual-index.ll │ │ │ ├── Inputs │ │ │ │ ├── arange-overlap.cc │ │ │ │ ├── arange-overlap.elf-x86_64 │ │ │ │ ├── arm-relocs.elf-arm │ │ │ │ ├── cross-cu-inlining.c │ │ │ │ ├── cross-cu-inlining.x86_64-macho.o │ │ │ │ ├── dwarfdump-decompression-corrupt.elf-x86-64 │ │ │ │ ├── dwarfdump-decompression-error.elf-x86-64 │ │ │ │ ├── dwarfdump-dwp.x86_64.o │ │ │ │ ├── dwarfdump-gdbindex-v7.elf-x86-64 │ │ │ │ ├── dwarfdump-inl-test.cc │ │ │ │ ├── dwarfdump-inl-test.elf-x86-64 │ │ │ │ ├── dwarfdump-inl-test.h │ │ │ │ ├── dwarfdump-inl-test.high_pc.elf-x86-64 │ │ │ │ ├── dwarfdump-macho-relocs.macho.x86_64.o │ │ │ │ ├── dwarfdump-macro-cmd.h │ │ │ │ ├── dwarfdump-macro.cc │ │ │ │ ├── dwarfdump-macro.h │ │ │ │ ├── dwarfdump-macro.o │ │ │ │ ├── dwarfdump-objc.m │ │ │ │ ├── dwarfdump-objc.x86_64.o │ │ │ │ ├── dwarfdump-pubnames.cc │ │ │ │ ├── dwarfdump-pubnames.elf-x86-64 │ │ │ │ ├── dwarfdump-ranges-baseaddr-exe.elf-x86-64 │ │ │ │ ├── dwarfdump-test-32bit.elf.c │ │ │ │ ├── dwarfdump-test-32bit.elf.o │ │ │ │ ├── dwarfdump-test-loc-list-32bit.elf.cpp │ │ │ │ ├── dwarfdump-test-loc-list-32bit.elf.o │ │ │ │ ├── dwarfdump-test-zlib.cc │ │ │ │ ├── dwarfdump-test-zlib.elf-x86-64 │ │ │ │ ├── dwarfdump-test-zlib.o.elf-x86-64 │ │ │ │ ├── dwarfdump-test-zlibgnu.elf-x86-64 │ │ │ │ ├── dwarfdump-test.cc │ │ │ │ ├── dwarfdump-test.elf-x86-64 │ │ │ │ ├── dwarfdump-test.elf-x86-64.debuglink │ │ │ │ ├── dwarfdump-test.macho-i386.o │ │ │ │ ├── dwarfdump-test2-helper.cc │ │ │ │ ├── dwarfdump-test2-main.cc │ │ │ │ ├── dwarfdump-test2.elf-x86-64 │ │ │ │ ├── dwarfdump-test3-decl.h │ │ │ │ ├── dwarfdump-test3-decl2.h │ │ │ │ ├── dwarfdump-test3.cc │ │ │ │ ├── dwarfdump-test3.elf-x86-64-space │ │ │ │ ├── dwarfdump-test4-decl.h │ │ │ │ ├── dwarfdump-test4-part1.cc │ │ │ │ ├── dwarfdump-test4-part2.cc │ │ │ │ ├── dwarfdump-test4.elf-x86-64 │ │ │ │ ├── dwarfdump-type-units.cc │ │ │ │ ├── dwarfdump-type-units.elf-x86-64 │ │ │ │ ├── dwarfdump.elf-mips64-64-bit-dwarf │ │ │ │ ├── fat-test.o │ │ │ │ ├── fission-ranges.cc │ │ │ │ ├── fission-ranges.elf-x86_64 │ │ │ │ ├── gmlt.ll │ │ │ │ ├── implicit-const-test.o │ │ │ │ ├── invalid.elf │ │ │ │ ├── invalid.elf.2 │ │ │ │ ├── invalid.elf.3 │ │ │ │ ├── line.ll │ │ │ │ ├── llvm-symbolizer-dwo-test │ │ │ │ ├── llvm-symbolizer-dwo-test.cc │ │ │ │ ├── llvm-symbolizer-test.c │ │ │ │ ├── llvm-symbolizer-test.elf-x86-64 │ │ │ │ ├── macho-universal │ │ │ │ ├── macho-universal.cc │ │ │ │ ├── shared-object-stripped.elf-i386 │ │ │ │ ├── split-dwarf-addr-object-relocation.cpp │ │ │ │ ├── split-dwarf-addr-object-relocation.dwo │ │ │ │ ├── split-dwarf-addr-object-relocation.o │ │ │ │ ├── split-dwarf-dwp.cpp │ │ │ │ ├── split-dwarf-dwp.o │ │ │ │ ├── split-dwarf-dwp.o.dwp │ │ │ │ ├── split-dwarf-empty.dwo │ │ │ │ ├── split-dwarf-empty.o │ │ │ │ ├── split-dwarf-multiple-cu.cpp │ │ │ │ ├── split-dwarf-multiple-cu.dwo │ │ │ │ ├── split-dwarf-multiple-cu.o │ │ │ │ ├── split-dwarf-test │ │ │ │ ├── split-dwarf-test-nogmlt │ │ │ │ ├── split-dwarf-test.cc │ │ │ │ ├── split-dwarf-test.cpp │ │ │ │ ├── split-dwarf-test.dwo │ │ │ │ ├── test-inline.o │ │ │ │ ├── test-multiple-macho.o │ │ │ │ ├── test-parameters.o │ │ │ │ ├── test-simple-macho.o │ │ │ │ ├── typeunit-header.elf-x86-64 │ │ │ │ └── typeunit-header.s │ │ │ ├── Lanai │ │ │ │ ├── lit.local.cfg │ │ │ │ └── processes-relocations.ll │ │ │ ├── MIR │ │ │ │ ├── AArch64 │ │ │ │ │ ├── clobber-sp.mir │ │ │ │ │ ├── implicit-def-dead-scope.mir │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── ARM │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── split-superreg-complex.mir │ │ │ │ │ ├── split-superreg-piece.mir │ │ │ │ │ └── split-superreg.mir │ │ │ │ └── lit.local.cfg │ │ │ ├── MSP430 │ │ │ │ ├── lit.local.cfg │ │ │ │ └── sdagsplit-1.ll │ │ │ ├── Mips │ │ │ │ ├── InlinedFnLocalVar.ll │ │ │ │ ├── delay-slot.ll │ │ │ │ ├── dsr-fixed-objects.ll │ │ │ │ ├── dsr-non-fixed-objects.ll │ │ │ │ ├── dwarfdump-tls.ll │ │ │ │ ├── fn-call-line.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── processes-relocations.ll │ │ │ │ ├── prologue_end.ll │ │ │ │ └── tls.ll │ │ │ ├── PDB │ │ │ │ ├── DIA │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── pdbdump-flags.test │ │ │ │ │ ├── pdbdump-linenumbers.test │ │ │ │ │ └── pdbdump-symbol-format.test │ │ │ │ ├── Inputs │ │ │ │ │ ├── debug-subsections.yaml │ │ │ │ │ ├── empty.cpp │ │ │ │ │ ├── every-type.cpp │ │ │ │ │ ├── every-type.yaml │ │ │ │ │ ├── longname-truncation.yaml │ │ │ │ │ ├── merge-ids-1.yaml │ │ │ │ │ ├── merge-ids-2.yaml │ │ │ │ │ ├── merge-ids-and-types-1.yaml │ │ │ │ │ ├── merge-ids-and-types-2.yaml │ │ │ │ │ ├── merge-types-1.yaml │ │ │ │ │ ├── merge-types-2.yaml │ │ │ │ │ ├── obj-hashes-1.yaml │ │ │ │ │ ├── obj-hashes-2.yaml │ │ │ │ │ ├── one-symbol.yaml │ │ │ │ │ ├── source-names-1.yaml │ │ │ │ │ ├── source-names-2.yaml │ │ │ │ │ ├── symbolformat-fpo.cpp │ │ │ │ │ ├── symbolformat.cpp │ │ │ │ │ └── unknown-symbol.yaml │ │ │ │ ├── Native │ │ │ │ │ ├── pdb-native-compilands.test │ │ │ │ │ ├── pdb-native-enums.test │ │ │ │ │ └── pdb-native-summary.test │ │ │ │ ├── dbi-bytes.test │ │ │ │ ├── dump-fpm.test │ │ │ │ ├── every-type.test │ │ │ │ ├── just-my-code.test │ │ │ │ ├── module-bytes.test │ │ │ │ ├── module-stats.test │ │ │ │ ├── obj-globalhash.test │ │ │ │ ├── pdb-longname-truncation.test │ │ │ │ ├── pdb-minimal-construct.test │ │ │ │ ├── pdb-unknown-symbol.test │ │ │ │ ├── pdb-yaml-symbols.test │ │ │ │ ├── pdbdump-debug-subsections.test │ │ │ │ ├── pdbdump-globals-empty.test │ │ │ │ ├── pdbdump-headers.test │ │ │ │ ├── pdbdump-merge-ids-and-types.test │ │ │ │ ├── pdbdump-mergeids.test │ │ │ │ ├── pdbdump-mergetypes.test │ │ │ │ ├── pdbdump-objfilename.yaml │ │ │ │ ├── pdbdump-raw-blocks.test │ │ │ │ ├── pdbdump-raw-bytes.test │ │ │ │ ├── pdbdump-raw-stream.test │ │ │ │ ├── pdbdump-readwrite.test │ │ │ │ ├── pdbdump-source-names.test │ │ │ │ ├── pdbdump-write.test │ │ │ │ ├── pdbdump-yaml-types.test │ │ │ │ ├── pdbdump-yaml.test │ │ │ │ ├── section-headers.test │ │ │ │ ├── tpi-bytes.test │ │ │ │ ├── udt-stats.test │ │ │ │ └── write-fpm.test │ │ │ ├── PowerPC │ │ │ │ ├── line.test │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── processes-relocations.ll │ │ │ │ ├── tls-fission.ll │ │ │ │ └── tls.ll │ │ │ ├── Sparc │ │ │ │ ├── gnu-window-save.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── processes-relocations.ll │ │ │ │ ├── prologue_end.ll │ │ │ │ └── subreg.ll │ │ │ ├── SystemZ │ │ │ │ ├── eh_frame.s │ │ │ │ ├── eh_frame_personality.ll │ │ │ │ ├── eh_frame_personality.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── processes-relocations.ll │ │ │ │ ├── prologue_end.ll │ │ │ │ ├── variable-loc.ll │ │ │ │ └── variable-loc.s │ │ │ ├── WebAssembly │ │ │ │ ├── dbg-declare.ll │ │ │ │ └── lit.local.cfg │ │ │ ├── arm-relocs.test │ │ │ ├── cross-cu-scope.ll │ │ │ ├── debugify.ll │ │ │ ├── debuglineinfo-macho.test │ │ │ ├── debuglineinfo.test │ │ │ ├── debugmacinfo.test │ │ │ ├── dwarfdump-64-bit-dwarf.test │ │ │ ├── dwarfdump-accel.test │ │ │ ├── dwarfdump-debug-frame-simple.test │ │ │ ├── dwarfdump-decompression-corrupt.test │ │ │ ├── dwarfdump-decompression-error.test │ │ │ ├── dwarfdump-dump-flags.test │ │ │ ├── dwarfdump-dump-gdbindex.test │ │ │ ├── dwarfdump-dwp.test │ │ │ ├── dwarfdump-implicit-const.test │ │ │ ├── dwarfdump-invalid.test │ │ │ ├── dwarfdump-macho-relocs.test │ │ │ ├── dwarfdump-macho-universal.test │ │ │ ├── dwarfdump-objc.test │ │ │ ├── dwarfdump-pubnames.test │ │ │ ├── dwarfdump-ranges.test │ │ │ ├── dwarfdump-type-units.test │ │ │ ├── dwarfdump-zlib.test │ │ │ ├── dwo.ll │ │ │ ├── invalid-relocations.test │ │ │ ├── llvm-symbolizer-split-dwarf-empty.test │ │ │ ├── llvm-symbolizer-zlib.test │ │ │ ├── llvm-symbolizer.test │ │ │ ├── macro_link.ll │ │ │ ├── member-pointers.o │ │ │ ├── missing-abstract-variable.o │ │ │ ├── omit-empty.ll │ │ │ ├── pr34186.ll │ │ │ ├── pr34672.ll │ │ │ ├── skeletoncu.ll │ │ │ ├── strip-DIGlobalVariable.ll │ │ │ ├── strip-loop-metadata.ll │ │ │ ├── typeunit-header.test │ │ │ └── unrolled-loop-remainder.ll │ │ ├── Examples │ │ │ ├── Kaleidoscope │ │ │ │ ├── Chapter3.test │ │ │ │ ├── Chapter4.test │ │ │ │ ├── Chapter5.test │ │ │ │ ├── Chapter6.test │ │ │ │ └── Chapter7.test │ │ │ └── lit.local.cfg │ │ ├── ExecutionEngine │ │ │ ├── 2010-01-15-UndefValue.ll │ │ │ ├── Interpreter │ │ │ │ ├── intrinsics.ll │ │ │ │ └── lit.local.cfg │ │ │ ├── MCJIT │ │ │ │ ├── 2002-12-16-ArgTest.ll │ │ │ │ ├── 2003-01-04-ArgumentBug.ll │ │ │ │ ├── 2003-01-04-LoopTest.ll │ │ │ │ ├── 2003-01-04-PhiTest.ll │ │ │ │ ├── 2003-01-09-SARTest.ll │ │ │ │ ├── 2003-01-10-FUCOM.ll │ │ │ │ ├── 2003-01-15-AlignmentTest.ll │ │ │ │ ├── 2003-05-06-LivenessClobber.ll │ │ │ │ ├── 2003-05-07-ArgumentTest.ll │ │ │ │ ├── 2003-05-11-PHIRegAllocBug.ll │ │ │ │ ├── 2003-06-04-bzip2-bug.ll │ │ │ │ ├── 2003-06-05-PHIBug.ll │ │ │ │ ├── 2003-08-15-AllocaAssertion.ll │ │ │ │ ├── 2003-08-21-EnvironmentTest.ll │ │ │ │ ├── 2003-08-23-RegisterAllocatePhysReg.ll │ │ │ │ ├── 2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll │ │ │ │ ├── 2005-12-02-TailCallBug.ll │ │ │ │ ├── 2007-12-10-APIntLoadStore.ll │ │ │ │ ├── 2008-06-05-APInt-OverAShr.ll │ │ │ │ ├── 2013-04-04-RelocAddend.ll │ │ │ │ ├── Inputs │ │ │ │ │ ├── cross-module-b.ll │ │ │ │ │ ├── multi-module-b.ll │ │ │ │ │ ├── multi-module-c.ll │ │ │ │ │ ├── multi-module-eh-b.ll │ │ │ │ │ └── weak-function-2.ll │ │ │ │ ├── cross-module-a.ll │ │ │ │ ├── cross-module-sm-pic-a.ll │ │ │ │ ├── eh-lg-pic.ll │ │ │ │ ├── eh.ll │ │ │ │ ├── fpbitcast.ll │ │ │ │ ├── hello.ll │ │ │ │ ├── hello2.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── load-object-a.ll │ │ │ │ ├── multi-module-a.ll │ │ │ │ ├── multi-module-eh-a.ll │ │ │ │ ├── multi-module-sm-pic-a.ll │ │ │ │ ├── non-extern-addend.ll │ │ │ │ ├── pr13727.ll │ │ │ │ ├── remote │ │ │ │ │ ├── Inputs │ │ │ │ │ │ ├── cross-module-b.ll │ │ │ │ │ │ ├── multi-module-b.ll │ │ │ │ │ │ └── multi-module-c.ll │ │ │ │ │ ├── cross-module-a.ll │ │ │ │ │ ├── eh.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── multi-module-a.ll │ │ │ │ │ ├── simpletest-remote.ll │ │ │ │ │ ├── stubs-remote.ll │ │ │ │ │ ├── stubs-sm-pic.ll │ │ │ │ │ ├── test-common-symbols-remote.ll │ │ │ │ │ ├── test-data-align-remote.ll │ │ │ │ │ ├── test-fp-no-external-funcs-remote.ll │ │ │ │ │ ├── test-global-init-nonzero-remote.ll │ │ │ │ │ ├── test-global-init-nonzero-sm-pic.ll │ │ │ │ │ ├── test-ptr-reloc-remote.ll │ │ │ │ │ └── test-ptr-reloc-sm-pic.ll │ │ │ │ ├── simplesttest.ll │ │ │ │ ├── simpletest.ll │ │ │ │ ├── stubs-sm-pic.ll │ │ │ │ ├── stubs.ll │ │ │ │ ├── test-arith.ll │ │ │ │ ├── test-branch.ll │ │ │ │ ├── test-call-no-external-funcs.ll │ │ │ │ ├── test-call.ll │ │ │ │ ├── test-cast.ll │ │ │ │ ├── test-common-symbols-alignment.ll │ │ │ │ ├── test-common-symbols.ll │ │ │ │ ├── test-constantexpr.ll │ │ │ │ ├── test-data-align.ll │ │ │ │ ├── test-fp-no-external-funcs.ll │ │ │ │ ├── test-fp.ll │ │ │ │ ├── test-global-ctors.ll │ │ │ │ ├── test-global-init-nonzero-sm-pic.ll │ │ │ │ ├── test-global-init-nonzero.ll │ │ │ │ ├── test-global.ll │ │ │ │ ├── test-loadstore.ll │ │ │ │ ├── test-local.ll │ │ │ │ ├── test-logical.ll │ │ │ │ ├── test-loop.ll │ │ │ │ ├── test-phi.ll │ │ │ │ ├── test-ptr-reloc-sm-pic.ll │ │ │ │ ├── test-ptr-reloc.ll │ │ │ │ ├── test-ret.ll │ │ │ │ ├── test-return.ll │ │ │ │ ├── test-setcond-fp.ll │ │ │ │ ├── test-setcond-int.ll │ │ │ │ ├── test-shift.ll │ │ │ │ └── weak-function.ll │ │ │ ├── OrcLazy │ │ │ │ ├── Inputs │ │ │ │ │ └── weak-function-2.ll │ │ │ │ ├── anonymous_globals.ll │ │ │ │ ├── common-symbols.ll │ │ │ │ ├── global_aliases.ll │ │ │ │ ├── hello.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── module-flags.ll │ │ │ │ ├── private_linkage.ll │ │ │ │ └── weak-function.ll │ │ │ ├── OrcMCJIT │ │ │ │ ├── 2002-12-16-ArgTest.ll │ │ │ │ ├── 2003-01-04-ArgumentBug.ll │ │ │ │ ├── 2003-01-04-LoopTest.ll │ │ │ │ ├── 2003-01-04-PhiTest.ll │ │ │ │ ├── 2003-01-09-SARTest.ll │ │ │ │ ├── 2003-01-10-FUCOM.ll │ │ │ │ ├── 2003-01-15-AlignmentTest.ll │ │ │ │ ├── 2003-05-06-LivenessClobber.ll │ │ │ │ ├── 2003-05-07-ArgumentTest.ll │ │ │ │ ├── 2003-05-11-PHIRegAllocBug.ll │ │ │ │ ├── 2003-06-04-bzip2-bug.ll │ │ │ │ ├── 2003-06-05-PHIBug.ll │ │ │ │ ├── 2003-08-15-AllocaAssertion.ll │ │ │ │ ├── 2003-08-21-EnvironmentTest.ll │ │ │ │ ├── 2003-08-23-RegisterAllocatePhysReg.ll │ │ │ │ ├── 2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll │ │ │ │ ├── 2005-12-02-TailCallBug.ll │ │ │ │ ├── 2007-12-10-APIntLoadStore.ll │ │ │ │ ├── 2008-06-05-APInt-OverAShr.ll │ │ │ │ ├── 2013-04-04-RelocAddend.ll │ │ │ │ ├── Inputs │ │ │ │ │ ├── cross-module-b.ll │ │ │ │ │ ├── multi-module-b.ll │ │ │ │ │ ├── multi-module-c.ll │ │ │ │ │ ├── multi-module-eh-b.ll │ │ │ │ │ └── weak-function-2.ll │ │ │ │ ├── cross-module-a.ll │ │ │ │ ├── cross-module-sm-pic-a.ll │ │ │ │ ├── eh-lg-pic.ll │ │ │ │ ├── eh.ll │ │ │ │ ├── fpbitcast.ll │ │ │ │ ├── hello.ll │ │ │ │ ├── hello2.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── load-object-a.ll │ │ │ │ ├── multi-module-a.ll │ │ │ │ ├── multi-module-eh-a.ll │ │ │ │ ├── multi-module-sm-pic-a.ll │ │ │ │ ├── non-extern-addend.ll │ │ │ │ ├── pr13727.ll │ │ │ │ ├── pr32650.ll │ │ │ │ ├── remote │ │ │ │ │ ├── Inputs │ │ │ │ │ │ ├── cross-module-b.ll │ │ │ │ │ │ ├── multi-module-b.ll │ │ │ │ │ │ └── multi-module-c.ll │ │ │ │ │ ├── cross-module-a.ll │ │ │ │ │ ├── eh.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── multi-module-a.ll │ │ │ │ │ ├── simpletest-remote.ll │ │ │ │ │ ├── stubs-remote.ll │ │ │ │ │ ├── stubs-sm-pic.ll │ │ │ │ │ ├── test-common-symbols-remote.ll │ │ │ │ │ ├── test-data-align-remote.ll │ │ │ │ │ ├── test-fp-no-external-funcs-remote.ll │ │ │ │ │ ├── test-global-init-nonzero-remote.ll │ │ │ │ │ ├── test-global-init-nonzero-sm-pic.ll │ │ │ │ │ ├── test-ptr-reloc-remote.ll │ │ │ │ │ └── test-ptr-reloc-sm-pic.ll │ │ │ │ ├── simplesttest.ll │ │ │ │ ├── simpletest.ll │ │ │ │ ├── stubs-sm-pic.ll │ │ │ │ ├── stubs.ll │ │ │ │ ├── test-arith.ll │ │ │ │ ├── test-branch.ll │ │ │ │ ├── test-call-no-external-funcs.ll │ │ │ │ ├── test-call.ll │ │ │ │ ├── test-cast.ll │ │ │ │ ├── test-common-symbols-alignment.ll │ │ │ │ ├── test-common-symbols.ll │ │ │ │ ├── test-constantexpr.ll │ │ │ │ ├── test-data-align.ll │ │ │ │ ├── test-fp-no-external-funcs.ll │ │ │ │ ├── test-fp.ll │ │ │ │ ├── test-global-ctors.ll │ │ │ │ ├── test-global-init-nonzero-sm-pic.ll │ │ │ │ ├── test-global-init-nonzero.ll │ │ │ │ ├── test-global.ll │ │ │ │ ├── test-loadstore.ll │ │ │ │ ├── test-local.ll │ │ │ │ ├── test-logical.ll │ │ │ │ ├── test-loop.ll │ │ │ │ ├── test-phi.ll │ │ │ │ ├── test-ptr-reloc-sm-pic.ll │ │ │ │ ├── test-ptr-reloc.ll │ │ │ │ ├── test-ret.ll │ │ │ │ ├── test-return.ll │ │ │ │ ├── test-setcond-fp.ll │ │ │ │ ├── test-setcond-int.ll │ │ │ │ ├── test-shift.ll │ │ │ │ └── weak-function.ll │ │ │ ├── RuntimeDyld │ │ │ │ ├── AArch64 │ │ │ │ │ ├── ELF_ARM64_BE-relocations.s │ │ │ │ │ ├── ELF_ARM64_PIC_relocations.s │ │ │ │ │ ├── ELF_ARM64_local_branch.s │ │ │ │ │ ├── ELF_ARM64_relocations.s │ │ │ │ │ ├── MachO_ARM64_relocations.s │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── ARM │ │ │ │ │ ├── COFF_Thumb.s │ │ │ │ │ ├── ELF_ARM_EXIDX_relocations.s │ │ │ │ │ ├── MachO_ARM_PIC_relocations.s │ │ │ │ │ ├── MachO_Thumb_Relocations.s │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── Mips │ │ │ │ │ ├── ELF_Mips64r2N64_PIC_relocations.s │ │ │ │ │ ├── ELF_N32_relocations.s │ │ │ │ │ ├── ELF_N64R6_relocations.s │ │ │ │ │ ├── ELF_O32R6_relocations.s │ │ │ │ │ ├── ELF_O32_PIC_relocations.s │ │ │ │ │ ├── Inputs │ │ │ │ │ │ └── ExternalFunction.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── PowerPC │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── ppc32_elf_rel_addr16.s │ │ │ │ └── SystemZ │ │ │ │ │ ├── Inputs │ │ │ │ │ └── rtdyld-globals.ll │ │ │ │ │ ├── cfi-relo-pc64.s │ │ │ │ │ └── lit.local.cfg │ │ │ ├── fma3-jit.ll │ │ │ ├── frem.ll │ │ │ ├── lit.local.cfg │ │ │ ├── mov64zext32.ll │ │ │ ├── test-interp-vec-arithm_float.ll │ │ │ ├── test-interp-vec-arithm_int.ll │ │ │ ├── test-interp-vec-cast.ll │ │ │ ├── test-interp-vec-insertelement.ll │ │ │ ├── test-interp-vec-insertextractvalue.ll │ │ │ ├── test-interp-vec-loadstore.ll │ │ │ ├── test-interp-vec-logical.ll │ │ │ ├── test-interp-vec-select.ll │ │ │ ├── test-interp-vec-setcond-fp.ll │ │ │ ├── test-interp-vec-setcond-int.ll │ │ │ ├── test-interp-vec-shift.ll │ │ │ └── test-interp-vec-shuffle.ll │ │ ├── Feature │ │ │ ├── NamedMDNode.ll │ │ │ ├── NamedMDNode2.ll │ │ │ ├── OperandBundles │ │ │ │ ├── adce.ll │ │ │ │ ├── basic-aa-argmemonly.ll │ │ │ │ ├── dse.ll │ │ │ │ ├── early-cse.ll │ │ │ │ ├── function-attrs.ll │ │ │ │ ├── inliner-conservative.ll │ │ │ │ ├── merge-func.ll │ │ │ │ ├── pr26510.ll │ │ │ │ └── special-state.ll │ │ │ ├── README.txt │ │ │ ├── alias2.ll │ │ │ ├── aliases.ll │ │ │ ├── alignment.ll │ │ │ ├── attributes.ll │ │ │ ├── basictest.ll │ │ │ ├── callingconventions.ll │ │ │ ├── calltest.ll │ │ │ ├── casttest.ll │ │ │ ├── cfgstructures.ll │ │ │ ├── cold.ll │ │ │ ├── comdat.ll │ │ │ ├── const_pv.ll │ │ │ ├── constexpr.ll │ │ │ ├── constpointer.ll │ │ │ ├── escaped_label.ll │ │ │ ├── exception.ll │ │ │ ├── float.ll │ │ │ ├── fold-fpcast.ll │ │ │ ├── forwardreftest.ll │ │ │ ├── fp-intrinsics.ll │ │ │ ├── global_pv.ll │ │ │ ├── global_section.ll │ │ │ ├── globalredefinition3.ll │ │ │ ├── globalvars.ll │ │ │ ├── indirectcall.ll │ │ │ ├── indirectcall2.ll │ │ │ ├── inlineasm.ll │ │ │ ├── instructions.ll │ │ │ ├── intrinsic-noduplicate.ll │ │ │ ├── intrinsics.ll │ │ │ ├── load_module.ll │ │ │ ├── md_on_instruction.ll │ │ │ ├── memorymarkers.ll │ │ │ ├── metadata.ll │ │ │ ├── minsize_attr.ll │ │ │ ├── newcasts.ll │ │ │ ├── optnone-llc.ll │ │ │ ├── optnone-opt.ll │ │ │ ├── optnone.ll │ │ │ ├── packed.ll │ │ │ ├── packed_struct.ll │ │ │ ├── paramattrs.ll │ │ │ ├── ppcld.ll │ │ │ ├── prefixdata.ll │ │ │ ├── prologuedata.ll │ │ │ ├── properties.ll │ │ │ ├── prototype.ll │ │ │ ├── recursivetype.ll │ │ │ ├── seh-nounwind.ll │ │ │ ├── simplecalltest.ll │ │ │ ├── small.ll │ │ │ ├── smallest.ll │ │ │ ├── sparcld.ll │ │ │ ├── strip_names.ll │ │ │ ├── terminators.ll │ │ │ ├── testalloca.ll │ │ │ ├── testconstants.ll │ │ │ ├── testlogical.ll │ │ │ ├── testtype.ll │ │ │ ├── testvarargs.ll │ │ │ ├── undefined.ll │ │ │ ├── unreachable.ll │ │ │ ├── varargs.ll │ │ │ ├── varargs_new.ll │ │ │ ├── vector-cast-constant-exprs.ll │ │ │ ├── weak_constant.ll │ │ │ ├── weirdnames.ll │ │ │ └── x86ld.ll │ │ ├── FileCheck │ │ │ ├── check-a-b-has-b.txt │ │ │ ├── check-b-a-has-b.txt │ │ │ ├── check-dag-multi-prefix-2.txt │ │ │ ├── check-dag-multi-prefix.txt │ │ │ ├── check-dag-substring-prefix.txt │ │ │ ├── check-dag-xfails.txt │ │ │ ├── check-dag.txt │ │ │ ├── check-empty.txt │ │ │ ├── check-label-dag-capture.txt │ │ │ ├── check-label-dag.txt │ │ │ ├── check-label.txt │ │ │ ├── check-multi-prefix-label.txt │ │ │ ├── check-multiple-prefixes-mixed.txt │ │ │ ├── check-multiple-prefixes-nomatch-2.txt │ │ │ ├── check-multiple-prefixes-nomatch.txt │ │ │ ├── check-multiple-prefixes-substr.txt │ │ │ ├── check-not-diaginfo.txt │ │ │ ├── check-prefixes.txt │ │ │ ├── check-substring-multi-prefix-2.txt │ │ │ ├── check-substring-multi-prefix.txt │ │ │ ├── defines.txt │ │ │ ├── dos-style-eol.txt │ │ │ ├── first-character-match.txt │ │ │ ├── implicit-check-not.txt │ │ │ ├── line-count-2.txt │ │ │ ├── line-count.txt │ │ │ ├── match-full-lines.txt │ │ │ ├── multiple-missing-prefixes.txt │ │ │ ├── next-no-match.txt │ │ │ ├── no-multi-suffixes.txt │ │ │ ├── regex-brackets.txt │ │ │ ├── regex-no-match.txt │ │ │ ├── regex-scope.txt │ │ │ ├── same.txt │ │ │ ├── separate-multi-prefix.txt │ │ │ ├── simple-var-capture.txt │ │ │ ├── two-checks-for-same-match.txt │ │ │ ├── validate-check-prefix.txt │ │ │ └── var-ref-same-line.txt │ │ ├── Instrumentation │ │ │ ├── AddressSanitizer │ │ │ │ ├── adaptive_global_redzones.ll │ │ │ │ ├── asan-masked-load-store.ll │ │ │ │ ├── asan-vs-gvn.ll │ │ │ │ ├── asan_address_space_attr.ll │ │ │ │ ├── basic-msvc64.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── debug-info-global-var.ll │ │ │ │ ├── debug_info.ll │ │ │ │ ├── debug_info_noninstrumented_alloca.ll │ │ │ │ ├── debug_info_noninstrumented_alloca2.ll │ │ │ │ ├── do-not-instrument-globals-darwin.ll │ │ │ │ ├── do-not-instrument-globals-linux.ll │ │ │ │ ├── do-not-instrument-internal-globals.ll │ │ │ │ ├── do-not-instrument-profiling-globals.ll │ │ │ │ ├── do-not-instrument-promotable-allocas.ll │ │ │ │ ├── do-not-instrument-sanitizers.ll │ │ │ │ ├── do-not-touch-comdat-global.ll │ │ │ │ ├── do-not-touch-odr-global.ll │ │ │ │ ├── do-not-touch-threadlocal.ll │ │ │ │ ├── experiment-call.ll │ │ │ │ ├── experiment.ll │ │ │ │ ├── force-dynamic-shadow.ll │ │ │ │ ├── freebsd.ll │ │ │ │ ├── global_cstring_darwin.ll │ │ │ │ ├── global_metadata.ll │ │ │ │ ├── global_metadata_array.ll │ │ │ │ ├── global_metadata_darwin.ll │ │ │ │ ├── global_metadata_windows.ll │ │ │ │ ├── instrument-dynamic-allocas.ll │ │ │ │ ├── instrument-no-return.ll │ │ │ │ ├── instrument-stack.ll │ │ │ │ ├── instrument_global.ll │ │ │ │ ├── instrument_initializer_metadata.ll │ │ │ │ ├── instrument_load_then_store.ll │ │ │ │ ├── instrumentation-with-call-threshold.ll │ │ │ │ ├── keep_going.ll │ │ │ │ ├── lifetime-throw.ll │ │ │ │ ├── lifetime-uar-uas.ll │ │ │ │ ├── lifetime.ll │ │ │ │ ├── local_alias.ll │ │ │ │ ├── local_stack_base.ll │ │ │ │ ├── localescape.ll │ │ │ │ ├── no-globals.ll │ │ │ │ ├── ps4.ll │ │ │ │ ├── scale-offset.ll │ │ │ │ ├── stack-poisoning-and-lifetime-be.ll │ │ │ │ ├── stack-poisoning-and-lifetime.ll │ │ │ │ ├── stack-poisoning-byval-args.ll │ │ │ │ ├── stack-poisoning.ll │ │ │ │ ├── stack_dynamic_alloca.ll │ │ │ │ ├── stack_layout.ll │ │ │ │ ├── str-nobuiltin.ll │ │ │ │ ├── test64.ll │ │ │ │ ├── twice.ll │ │ │ │ ├── ubsan.ll │ │ │ │ └── with-ifunc.ll │ │ │ ├── BoundsChecking │ │ │ │ ├── many-trap.ll │ │ │ │ ├── phi.ll │ │ │ │ ├── simple-32.ll │ │ │ │ └── simple.ll │ │ │ ├── DataFlowSanitizer │ │ │ │ ├── Inputs │ │ │ │ │ ├── abilist.txt │ │ │ │ │ ├── debuglist.txt │ │ │ │ │ └── shadow-args-abilist.txt │ │ │ │ ├── abilist.ll │ │ │ │ ├── args-unreachable-bb.ll │ │ │ │ ├── arith.ll │ │ │ │ ├── call.ll │ │ │ │ ├── debug-nonzero-labels.ll │ │ │ │ ├── debug.ll │ │ │ │ ├── external_mask.ll │ │ │ │ ├── load.ll │ │ │ │ ├── memset.ll │ │ │ │ ├── prefix-rename.ll │ │ │ │ ├── shadow-args-zext.ll │ │ │ │ ├── store.ll │ │ │ │ ├── union-large.ll │ │ │ │ ├── union.ll │ │ │ │ └── unordered_atomic_mem_intrins.ll │ │ │ ├── EfficiencySanitizer │ │ │ │ ├── str-nobuiltin.ll │ │ │ │ ├── struct_field_count_basic.ll │ │ │ │ ├── struct_field_gep.ll │ │ │ │ ├── struct_field_small.ll │ │ │ │ ├── working_set_basic.ll │ │ │ │ ├── working_set_slow.ll │ │ │ │ └── working_set_strict.ll │ │ │ ├── HWAddressSanitizer │ │ │ │ ├── atomic.ll │ │ │ │ ├── basic.ll │ │ │ │ └── with-calls.ll │ │ │ ├── InstrProfiling │ │ │ │ ├── PR23499.ll │ │ │ │ ├── always_inline.ll │ │ │ │ ├── icall.ll │ │ │ │ ├── linkage.ll │ │ │ │ ├── no-counters.ll │ │ │ │ ├── noruntime.ll │ │ │ │ ├── platform.ll │ │ │ │ └── profiling.ll │ │ │ ├── MemorySanitizer │ │ │ │ ├── AArch64 │ │ │ │ │ └── vararg.ll │ │ │ │ ├── Mips │ │ │ │ │ ├── vararg-mips64.ll │ │ │ │ │ └── vararg-mips64el.ll │ │ │ │ ├── PowerPC │ │ │ │ │ ├── vararg-ppc64.ll │ │ │ │ │ └── vararg-ppc64le.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── array_types.ll │ │ │ │ ├── atomics.ll │ │ │ │ ├── byval-alignment.ll │ │ │ │ ├── check-constant-shadow.ll │ │ │ │ ├── check_access_address.ll │ │ │ │ ├── csr.ll │ │ │ │ ├── global_ctors_2to3.ll │ │ │ │ ├── instrumentation-with-call-threshold.ll │ │ │ │ ├── missing_origin.ll │ │ │ │ ├── msan_basic.ll │ │ │ │ ├── msan_x86intrinsics.ll │ │ │ │ ├── mul_by_constant.ll │ │ │ │ ├── nosanitize.ll │ │ │ │ ├── origin-alignment.ll │ │ │ │ ├── origin-array.ll │ │ │ │ ├── pr32842.ll │ │ │ │ ├── return_from_main.ll │ │ │ │ ├── store-long-origin.ll │ │ │ │ ├── store-origin.ll │ │ │ │ ├── str-nobuiltin.ll │ │ │ │ ├── unreachable.ll │ │ │ │ ├── unsized_type.ll │ │ │ │ ├── vector_arith.ll │ │ │ │ ├── vector_cmp.ll │ │ │ │ ├── vector_cvt.ll │ │ │ │ ├── vector_pack.ll │ │ │ │ ├── vector_shift.ll │ │ │ │ └── with-call-type-size.ll │ │ │ ├── SanitizerCoverage │ │ │ │ ├── chains.ll │ │ │ │ ├── cmp-tracing-api-x86_32.ll │ │ │ │ ├── cmp-tracing-api-x86_64.ll │ │ │ │ ├── cmp-tracing.ll │ │ │ │ ├── const-cmp-tracing.ll │ │ │ │ ├── coverage-dbg.ll │ │ │ │ ├── coverage.ll │ │ │ │ ├── coverage2-dbg.ll │ │ │ │ ├── div-tracing.ll │ │ │ │ ├── gep-tracing.ll │ │ │ │ ├── inline-8bit-counters.ll │ │ │ │ ├── no-func.ll │ │ │ │ ├── pc-table.ll │ │ │ │ ├── postdominator_check.ll │ │ │ │ ├── seh.ll │ │ │ │ ├── stack-depth.ll │ │ │ │ ├── switch-tracing.ll │ │ │ │ ├── trace-pc-guard-comdat.ll │ │ │ │ ├── trace-pc-guard-nocomdat.ll │ │ │ │ ├── tracing-comdat.ll │ │ │ │ ├── tracing.ll │ │ │ │ └── wineh.ll │ │ │ └── ThreadSanitizer │ │ │ │ ├── atomic-non-integer.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── capture.ll │ │ │ │ ├── do-not-instrument-memory-access.ll │ │ │ │ ├── eh.ll │ │ │ │ ├── no_sanitize_thread.ll │ │ │ │ ├── read_before_write.ll │ │ │ │ ├── read_from_global.ll │ │ │ │ ├── sanitize-thread-no-checking.ll │ │ │ │ ├── str-nobuiltin.ll │ │ │ │ ├── tsan-vs-gvn.ll │ │ │ │ ├── tsan_address_space_attr.ll │ │ │ │ ├── tsan_basic.ll │ │ │ │ ├── unaligned.ll │ │ │ │ ├── vptr_read.ll │ │ │ │ └── vptr_update.ll │ │ ├── Integer │ │ │ ├── 2007-01-19-TruncSext.ll │ │ │ ├── BitPacked.ll │ │ │ ├── basictest_bt.ll │ │ │ ├── constexpr_bt.ll │ │ │ ├── constpointer_bt.ll │ │ │ ├── fold-fpcast_bt.ll │ │ │ ├── instructions_bt.ll │ │ │ ├── newcasts_bt.ll │ │ │ ├── packed_bt.ll │ │ │ ├── packed_struct_bt.ll │ │ │ ├── properties_bt.ll │ │ │ ├── undefined_bt.ll │ │ │ └── unreachable_bt.ll │ │ ├── JitListener │ │ │ ├── lit.local.cfg │ │ │ ├── multiple.ll │ │ │ └── simple.ll │ │ ├── LTO │ │ │ └── ARM │ │ │ │ ├── Inputs │ │ │ │ └── thumb.ll │ │ │ │ ├── inline-asm.ll │ │ │ │ ├── link-arm-and-thumb.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ └── runtime-library-subtarget.ll │ │ ├── Linker │ │ │ ├── 2002-07-17-GlobalFail.ll │ │ │ ├── 2002-07-17-LinkTest2.ll │ │ │ ├── 2002-08-20-ConstantExpr.ll │ │ │ ├── 2003-01-30-LinkerRename.ll │ │ │ ├── 2003-01-30-LinkerTypeRename.ll │ │ │ ├── 2003-04-23-LinkOnceLost.ll │ │ │ ├── 2003-04-26-NullPtrLinkProblem.ll │ │ │ ├── 2003-05-15-TypeProblem.ll │ │ │ ├── 2003-05-31-LinkerRename.ll │ │ │ ├── 2003-06-02-TypeResolveProblem.ll │ │ │ ├── 2003-06-02-TypeResolveProblem2.ll │ │ │ ├── 2003-08-20-OpaqueTypeResolve.ll │ │ │ ├── 2003-08-23-GlobalVarLinking.ll │ │ │ ├── 2003-08-23-RecursiveOpaqueTypeResolve.ll │ │ │ ├── 2003-08-24-InheritPtrSize.ll │ │ │ ├── 2003-08-28-TypeResolvesGlobal.ll │ │ │ ├── 2003-08-28-TypeResolvesGlobal2.ll │ │ │ ├── 2003-08-28-TypeResolvesGlobal3.ll │ │ │ ├── 2003-10-27-LinkOncePromote.ll │ │ │ ├── 2003-11-18-TypeResolution.ll │ │ │ ├── 2004-02-17-WeakStrongLinkage.ll │ │ │ ├── 2004-05-07-TypeResolution1.ll │ │ │ ├── 2004-05-07-TypeResolution2.ll │ │ │ ├── 2004-12-03-DisagreeingType.ll │ │ │ ├── 2005-02-12-ConstantGlobals-2.ll │ │ │ ├── 2005-02-12-ConstantGlobals.ll │ │ │ ├── 2005-12-06-AppendingZeroLengthArrays.ll │ │ │ ├── 2006-01-19-ConstantPacked.ll │ │ │ ├── 2008-03-05-AliasReference.ll │ │ │ ├── 2008-03-05-AliasReference2.ll │ │ │ ├── 2008-03-07-DroppedSection_a.ll │ │ │ ├── 2008-03-07-DroppedSection_b.ll │ │ │ ├── 2008-06-13-LinkOnceRedefinition.ll │ │ │ ├── 2008-06-26-AddressSpace.ll │ │ │ ├── 2008-07-06-AliasFnDecl.ll │ │ │ ├── 2008-07-06-AliasFnDecl2.ll │ │ │ ├── 2008-07-06-AliasWeakDest.ll │ │ │ ├── 2008-07-06-AliasWeakDest2.ll │ │ │ ├── 2009-09-03-mdnode.ll │ │ │ ├── 2009-09-03-mdnode2.ll │ │ │ ├── 2011-08-04-DebugLoc.ll │ │ │ ├── 2011-08-04-DebugLoc2.ll │ │ │ ├── 2011-08-04-Metadata.ll │ │ │ ├── 2011-08-04-Metadata2.ll │ │ │ ├── 2011-08-18-unique-class-type.ll │ │ │ ├── 2011-08-18-unique-class-type2.ll │ │ │ ├── 2011-08-18-unique-debug-type.ll │ │ │ ├── 2011-08-18-unique-debug-type2.ll │ │ │ ├── AppendingLinkage.ll │ │ │ ├── AppendingLinkage2.ll │ │ │ ├── ConstantGlobals.ll │ │ │ ├── DbgDeclare.ll │ │ │ ├── DbgDeclare2.ll │ │ │ ├── Inputs │ │ │ │ ├── 2003-01-30-LinkerRename.ll │ │ │ │ ├── 2003-05-31-LinkerRename.ll │ │ │ │ ├── ConstantGlobals.ll │ │ │ │ ├── PR11464.a.ll │ │ │ │ ├── PR11464.b.ll │ │ │ │ ├── PR8300.a.ll │ │ │ │ ├── PR8300.b.ll │ │ │ │ ├── alias-2.ll │ │ │ │ ├── alias.ll │ │ │ │ ├── alignment.ll │ │ │ │ ├── apple-version │ │ │ │ │ ├── 1.ll │ │ │ │ │ ├── 2.ll │ │ │ │ │ ├── 3.ll │ │ │ │ │ └── 4.ll │ │ │ │ ├── available_externally_over_decl.ll │ │ │ │ ├── basiclink.a.ll │ │ │ │ ├── basiclink.b.ll │ │ │ │ ├── comdat-rm-dst.ll │ │ │ │ ├── comdat.ll │ │ │ │ ├── comdat11.ll │ │ │ │ ├── comdat13.ll │ │ │ │ ├── comdat14.ll │ │ │ │ ├── comdat15.ll │ │ │ │ ├── comdat16.ll │ │ │ │ ├── comdat2.ll │ │ │ │ ├── comdat3.ll │ │ │ │ ├── comdat4.ll │ │ │ │ ├── comdat5.ll │ │ │ │ ├── comdat8.ll │ │ │ │ ├── constructor-comdat.ll │ │ │ │ ├── ctors.ll │ │ │ │ ├── ctors2.ll │ │ │ │ ├── ctors3.ll │ │ │ │ ├── datalayout-a.ll │ │ │ │ ├── datalayout-b.ll │ │ │ │ ├── dicompositetype-unique.ll │ │ │ │ ├── distinct.ll │ │ │ │ ├── drop-debug.bc │ │ │ │ ├── funcimport.ll │ │ │ │ ├── funcimport2.ll │ │ │ │ ├── funcimport_appending_global.ll │ │ │ │ ├── funcimport_comdat.ll │ │ │ │ ├── ident.a.ll │ │ │ │ ├── ident.b.ll │ │ │ │ ├── internalize-lazy.ll │ │ │ │ ├── linkage.a.ll │ │ │ │ ├── linkage.b.ll │ │ │ │ ├── linkage.c.ll │ │ │ │ ├── linkage.d.ll │ │ │ │ ├── linkage2.ll │ │ │ │ ├── mdlocation.ll │ │ │ │ ├── metadata-attach.ll │ │ │ │ ├── metadata-function.ll │ │ │ │ ├── metadata-with-global-value-operand.ll │ │ │ │ ├── module-flags-dont-change-others.ll │ │ │ │ ├── module-flags-pic-1-b.ll │ │ │ │ ├── module-flags-pic-2-b.ll │ │ │ │ ├── objectivec-class-property-flag-mismatch.ll │ │ │ │ ├── odr-lambda-2.ll │ │ │ │ ├── odr.ll │ │ │ │ ├── old_global_ctors.3.4.bc │ │ │ │ ├── only-needed-compiler-used.ll │ │ │ │ ├── only-needed-ctors.ll │ │ │ │ ├── only-needed-debug-metadata.ll │ │ │ │ ├── only-needed-dtors.ll │ │ │ │ ├── only-needed-named-metadata.ll │ │ │ │ ├── only-needed-recurse.ll │ │ │ │ ├── only-needed-used.ll │ │ │ │ ├── opaque.ll │ │ │ │ ├── override-different-linkage.ll │ │ │ │ ├── override-with-internal-linkage-2.ll │ │ │ │ ├── override-with-internal-linkage.ll │ │ │ │ ├── override.ll │ │ │ │ ├── pr21374.ll │ │ │ │ ├── pr22807-1.ll │ │ │ │ ├── pr22807-2.ll │ │ │ │ ├── pr26037.ll │ │ │ │ ├── pr27044.ll │ │ │ │ ├── redefinition.ll │ │ │ │ ├── replaced-function-matches-first-subprogram.ll │ │ │ │ ├── subprogram-linkonce-weak.ll │ │ │ │ ├── syncscope-1.ll │ │ │ │ ├── syncscope-2.ll │ │ │ │ ├── targettriple-a.ll │ │ │ │ ├── targettriple-b.ll │ │ │ │ ├── targettriple-c.ll │ │ │ │ ├── testlink.ll │ │ │ │ ├── thinlto_funcimport_debug.ll │ │ │ │ ├── thumb-module-inline-asm.ll │ │ │ │ ├── thumb.ll │ │ │ │ ├── type-unique-alias.ll │ │ │ │ ├── type-unique-dst-types2.ll │ │ │ │ ├── type-unique-dst-types3.ll │ │ │ │ ├── type-unique-inheritance-a.ll │ │ │ │ ├── type-unique-inheritance-b.ll │ │ │ │ ├── type-unique-name.ll │ │ │ │ ├── type-unique-opaque.ll │ │ │ │ ├── type-unique-simple2-a.ll │ │ │ │ ├── type-unique-simple2-b.ll │ │ │ │ ├── type-unique-unrelated2.ll │ │ │ │ ├── type-unique-unrelated3.ll │ │ │ │ ├── unique-fwd-decl-b.ll │ │ │ │ ├── unique-fwd-decl-order.ll │ │ │ │ └── visibility.ll │ │ │ ├── LinkOnce.ll │ │ │ ├── PR8300.ll │ │ │ ├── alias-2.ll │ │ │ ├── alias-3.ll │ │ │ ├── alias.ll │ │ │ ├── alignment.ll │ │ │ ├── apple-version.ll │ │ │ ├── available_externally_a.ll │ │ │ ├── available_externally_b.ll │ │ │ ├── available_externally_over_decl.ll │ │ │ ├── basiclink.ll │ │ │ ├── broken.ll │ │ │ ├── comdat-rm-dst.ll │ │ │ ├── comdat.ll │ │ │ ├── comdat10.ll │ │ │ ├── comdat11.ll │ │ │ ├── comdat12.ll │ │ │ ├── comdat13.ll │ │ │ ├── comdat14.ll │ │ │ ├── comdat15.ll │ │ │ ├── comdat16.ll │ │ │ ├── comdat2.ll │ │ │ ├── comdat4.ll │ │ │ ├── comdat5.ll │ │ │ ├── comdat6.ll │ │ │ ├── comdat7.ll │ │ │ ├── comdat8.ll │ │ │ ├── comdat9.ll │ │ │ ├── comdat_group.ll │ │ │ ├── constructor-comdat.ll │ │ │ ├── ctors.ll │ │ │ ├── ctors2.ll │ │ │ ├── ctors3.ll │ │ │ ├── ctors4.ll │ │ │ ├── ctors5.ll │ │ │ ├── datalayout.ll │ │ │ ├── debug-info-global-var.ll │ │ │ ├── debug-info-version-a.ll │ │ │ ├── debug-info-version-b.ll │ │ │ ├── dicompositetype-unique.ll │ │ │ ├── distinct-cycles.ll │ │ │ ├── distinct.ll │ │ │ ├── dllstorage-a.ll │ │ │ ├── dllstorage-b.ll │ │ │ ├── drop-debug.ll │ │ │ ├── func-attrs-a.ll │ │ │ ├── func-attrs-b.ll │ │ │ ├── funcimport.ll │ │ │ ├── funcimport2.ll │ │ │ ├── funcimport_appending_global.ll │ │ │ ├── funcimport_comdat.ll │ │ │ ├── global_ctors.ll │ │ │ ├── ident.ll │ │ │ ├── inlineasm.ll │ │ │ ├── internalize-lazy.ll │ │ │ ├── link-arm-and-thumb-module-inline-asm.ll │ │ │ ├── link-arm-and-thumb.ll │ │ │ ├── link-flags.ll │ │ │ ├── link-global-to-func.ll │ │ │ ├── link-type-names.ll │ │ │ ├── linkage.ll │ │ │ ├── linkage2.ll │ │ │ ├── linkmdnode.ll │ │ │ ├── linkmdnode2.ll │ │ │ ├── linknamedmdnode.ll │ │ │ ├── linknamedmdnode2.ll │ │ │ ├── lto-attributes.ll │ │ │ ├── mdlocation.ll │ │ │ ├── metadata-a.ll │ │ │ ├── metadata-attach.ll │ │ │ ├── metadata-b.ll │ │ │ ├── metadata-function.ll │ │ │ ├── metadata-global.ll │ │ │ ├── metadata-with-global-value-operand.ll │ │ │ ├── module-flags-1-a.ll │ │ │ ├── module-flags-1-b.ll │ │ │ ├── module-flags-2-a.ll │ │ │ ├── module-flags-2-b.ll │ │ │ ├── module-flags-3-a.ll │ │ │ ├── module-flags-3-b.ll │ │ │ ├── module-flags-4-a.ll │ │ │ ├── module-flags-4-b.ll │ │ │ ├── module-flags-5-a.ll │ │ │ ├── module-flags-5-b.ll │ │ │ ├── module-flags-6-a.ll │ │ │ ├── module-flags-6-b.ll │ │ │ ├── module-flags-7-a.ll │ │ │ ├── module-flags-7-b.ll │ │ │ ├── module-flags-8-a.ll │ │ │ ├── module-flags-8-b.ll │ │ │ ├── module-flags-dont-change-others.ll │ │ │ ├── module-flags-pic-1-a.ll │ │ │ ├── module-flags-pic-2-a.ll │ │ │ ├── multiple-merged-structs.ll │ │ │ ├── null_mapping_constant.ll │ │ │ ├── objectivec-class-property-flag-mismatch.ll │ │ │ ├── odr-lambda-1.ll │ │ │ ├── odr.ll │ │ │ ├── only-needed-compiler-used.ll │ │ │ ├── only-needed-ctors1.ll │ │ │ ├── only-needed-ctors2.ll │ │ │ ├── only-needed-debug-metadata.ll │ │ │ ├── only-needed-dtors1.ll │ │ │ ├── only-needed-dtors2.ll │ │ │ ├── only-needed-named-metadata.ll │ │ │ ├── only-needed-recurse.ll │ │ │ ├── only-needed-used.ll │ │ │ ├── opaque.ll │ │ │ ├── override-different-linkage.ll │ │ │ ├── override-with-internal-linkage-2.ll │ │ │ ├── override-with-internal-linkage.ll │ │ │ ├── override.ll │ │ │ ├── partial-type-refinement-link.ll │ │ │ ├── partial-type-refinement.ll │ │ │ ├── pr21374.ll │ │ │ ├── pr21494.ll │ │ │ ├── pr22807.ll │ │ │ ├── pr26037.ll │ │ │ ├── pr27044.ll │ │ │ ├── prologuedata.ll │ │ │ ├── redefinition.ll │ │ │ ├── replaced-function-matches-first-subprogram.ll │ │ │ ├── subprogram-linkonce-weak.ll │ │ │ ├── syncscopes.ll │ │ │ ├── targettriple.ll │ │ │ ├── testlink.ll │ │ │ ├── thinlto_funcimport_debug.ll │ │ │ ├── transitive-lazy-link.ll │ │ │ ├── type-unique-alias.ll │ │ │ ├── type-unique-dst-types.ll │ │ │ ├── type-unique-inheritance.ll │ │ │ ├── type-unique-name.ll │ │ │ ├── type-unique-odr-a.ll │ │ │ ├── type-unique-odr-b.ll │ │ │ ├── type-unique-opaque.ll │ │ │ ├── type-unique-simple-a.ll │ │ │ ├── type-unique-simple-b.ll │ │ │ ├── type-unique-simple2-a.ll │ │ │ ├── type-unique-simple2-b.ll │ │ │ ├── type-unique-simple2.ll │ │ │ ├── type-unique-src-type.ll │ │ │ ├── type-unique-type-array-a.ll │ │ │ ├── type-unique-type-array-b.ll │ │ │ ├── type-unique-unrelated.ll │ │ │ ├── unique-fwd-decl-a.ll │ │ │ ├── unique-fwd-decl-order.ll │ │ │ ├── uniqued-distinct-cycles.ll │ │ │ ├── unnamed-addr-err-a.ll │ │ │ ├── unnamed-addr-err-b.ll │ │ │ ├── unnamed-addr1-a.ll │ │ │ ├── unnamed-addr1-b.ll │ │ │ ├── visibility.ll │ │ │ └── weakextern.ll │ │ ├── MC │ │ │ ├── AArch64 │ │ │ │ ├── SVE │ │ │ │ │ ├── add-diagnostics.s │ │ │ │ │ ├── add.s │ │ │ │ │ ├── dot-req-diagnostics.s │ │ │ │ │ ├── dot-req.s │ │ │ │ │ ├── sub-diagnostics.s │ │ │ │ │ ├── sub.s │ │ │ │ │ ├── zip1-diagnostics.s │ │ │ │ │ ├── zip1.s │ │ │ │ │ ├── zip2-diagnostics.s │ │ │ │ │ └── zip2.s │ │ │ │ ├── adrp-relocation.s │ │ │ │ ├── alias-addsubimm.s │ │ │ │ ├── alias-logicalimm.s │ │ │ │ ├── arm32-elf-relocs.s │ │ │ │ ├── arm64-adr.s │ │ │ │ ├── arm64-advsimd.s │ │ │ │ ├── arm64-aliases.s │ │ │ │ ├── arm64-arithmetic-encoding.s │ │ │ │ ├── arm64-arm64-fixup.s │ │ │ │ ├── arm64-basic-a64-instructions.s │ │ │ │ ├── arm64-be-datalayout.s │ │ │ │ ├── arm64-bitfield-encoding.s │ │ │ │ ├── arm64-branch-encoding.s │ │ │ │ ├── arm64-condbr-without-dots.s │ │ │ │ ├── arm64-crypto.s │ │ │ │ ├── arm64-diagno-predicate.s │ │ │ │ ├── arm64-diags.s │ │ │ │ ├── arm64-directive_loh.s │ │ │ │ ├── arm64-elf-reloc-condbr.s │ │ │ │ ├── arm64-elf-relocs.s │ │ │ │ ├── arm64-fp-encoding-error.s │ │ │ │ ├── arm64-fp-encoding.s │ │ │ │ ├── arm64-ilp32.s │ │ │ │ ├── arm64-large-relocs.s │ │ │ │ ├── arm64-leaf-compact-unwind.s │ │ │ │ ├── arm64-logical-encoding.s │ │ │ │ ├── arm64-mapping-across-sections.s │ │ │ │ ├── arm64-mapping-within-section.s │ │ │ │ ├── arm64-memory.s │ │ │ │ ├── arm64-nv-cond.s │ │ │ │ ├── arm64-optional-hash.s │ │ │ │ ├── arm64-separator.s │ │ │ │ ├── arm64-simd-ldst.s │ │ │ │ ├── arm64-small-data-fixups.s │ │ │ │ ├── arm64-spsel-sysreg.s │ │ │ │ ├── arm64-system-encoding.s │ │ │ │ ├── arm64-target-specific-sysreg.s │ │ │ │ ├── arm64-tls-modifiers-darwin.s │ │ │ │ ├── arm64-tls-relocs.s │ │ │ │ ├── arm64-v128_lo-diagnostics.s │ │ │ │ ├── arm64-variable-exprs.s │ │ │ │ ├── arm64-vector-lists.s │ │ │ │ ├── arm64-verbose-vector-case.s │ │ │ │ ├── arm64v8.1-diagno-predicate.s │ │ │ │ ├── armv8.1a-atomic.s │ │ │ │ ├── armv8.1a-lor.s │ │ │ │ ├── armv8.1a-lse.s │ │ │ │ ├── armv8.1a-pan.s │ │ │ │ ├── armv8.1a-rdma.s │ │ │ │ ├── armv8.1a-vhe.s │ │ │ │ ├── armv8.2a-at.s │ │ │ │ ├── armv8.2a-dotprod-errors.s │ │ │ │ ├── armv8.2a-dotprod.s │ │ │ │ ├── armv8.2a-mmfr2.s │ │ │ │ ├── armv8.2a-persistent-memory.s │ │ │ │ ├── armv8.2a-statistical-profiling.s │ │ │ │ ├── armv8.2a-uao.s │ │ │ │ ├── armv8.3a-ID_ISAR6_EL1.s │ │ │ │ ├── armv8.3a-complex.s │ │ │ │ ├── armv8.3a-diagnostics.s │ │ │ │ ├── armv8.3a-js.s │ │ │ │ ├── armv8.3a-rcpc.s │ │ │ │ ├── armv8.3a-signed-pointer.s │ │ │ │ ├── basic-a64-diagnostics.s │ │ │ │ ├── basic-a64-instructions.s │ │ │ │ ├── basic-pic.s │ │ │ │ ├── case-insen-reg-names.s │ │ │ │ ├── cfi.s │ │ │ │ ├── coff-align.s │ │ │ │ ├── coff-basic.ll │ │ │ │ ├── coff-debug.ll │ │ │ │ ├── coff-gnu.s │ │ │ │ ├── coff-relocations.s │ │ │ │ ├── crc.s │ │ │ │ ├── cyclone-movi-bug.s │ │ │ │ ├── darwin-reloc-addsubimm.s │ │ │ │ ├── directive-arch-negative.s │ │ │ │ ├── directive-arch.s │ │ │ │ ├── directive-cpu-err.s │ │ │ │ ├── directive-cpu.s │ │ │ │ ├── dot-req-case-insensitive.s │ │ │ │ ├── dot-req-diagnostics.s │ │ │ │ ├── dot-req.s │ │ │ │ ├── elf-extern.s │ │ │ │ ├── elf-globaladdress.ll │ │ │ │ ├── elf-objdump.s │ │ │ │ ├── elf-reloc-addsubimm.s │ │ │ │ ├── elf-reloc-ldrlit.s │ │ │ │ ├── elf-reloc-ldstunsimm.s │ │ │ │ ├── elf-reloc-movw.s │ │ │ │ ├── elf-reloc-pcreladdressing.s │ │ │ │ ├── elf-reloc-tstb.s │ │ │ │ ├── elf-reloc-uncondbrimm.s │ │ │ │ ├── elf_osabi_flags.s │ │ │ │ ├── error-location-during-layout.s │ │ │ │ ├── error-location-ldr-pseudo.s │ │ │ │ ├── error-location-post-layout.s │ │ │ │ ├── error-location.s │ │ │ │ ├── expr-shr.s │ │ │ │ ├── fixup-out-of-range.s │ │ │ │ ├── fullfp16-diagnostics.s │ │ │ │ ├── fullfp16-neon-neg.s │ │ │ │ ├── gicv3-regs-diagnostics.s │ │ │ │ ├── gicv3-regs.s │ │ │ │ ├── ilp32-diagnostics.s │ │ │ │ ├── inline-asm-modifiers.s │ │ │ │ ├── inst-directive-diagnostic.s │ │ │ │ ├── inst-directive.s │ │ │ │ ├── invalid-instructions-spellcheck.s │ │ │ │ ├── jump-table.s │ │ │ │ ├── label-arithmetic-darwin.s │ │ │ │ ├── label-arithmetic-diags-darwin.s │ │ │ │ ├── label-arithmetic-diags-elf.s │ │ │ │ ├── label-arithmetic-elf.s │ │ │ │ ├── ldr-pseudo-diagnostics.s │ │ │ │ ├── ldr-pseudo-obj-errors.s │ │ │ │ ├── ldr-pseudo.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── macho-adrp-missing-reloc.s │ │ │ │ ├── macho-adrp-page.s │ │ │ │ ├── mapping-across-sections.s │ │ │ │ ├── mapping-within-section.s │ │ │ │ ├── neon-2velem.s │ │ │ │ ├── neon-3vdiff.s │ │ │ │ ├── neon-aba-abd.s │ │ │ │ ├── neon-across.s │ │ │ │ ├── neon-add-pairwise.s │ │ │ │ ├── neon-add-sub-instructions.s │ │ │ │ ├── neon-bitwise-instructions.s │ │ │ │ ├── neon-compare-instructions.s │ │ │ │ ├── neon-crypto.s │ │ │ │ ├── neon-diagnostics.s │ │ │ │ ├── neon-extract.s │ │ │ │ ├── neon-facge-facgt.s │ │ │ │ ├── neon-frsqrt-frecp.s │ │ │ │ ├── neon-halving-add-sub.s │ │ │ │ ├── neon-max-min-pairwise.s │ │ │ │ ├── neon-max-min.s │ │ │ │ ├── neon-mla-mls-instructions.s │ │ │ │ ├── neon-mov.s │ │ │ │ ├── neon-mul-div-instructions.s │ │ │ │ ├── neon-perm.s │ │ │ │ ├── neon-rounding-halving-add.s │ │ │ │ ├── neon-rounding-shift.s │ │ │ │ ├── neon-saturating-add-sub.s │ │ │ │ ├── neon-saturating-rounding-shift.s │ │ │ │ ├── neon-saturating-shift.s │ │ │ │ ├── neon-scalar-abs.s │ │ │ │ ├── neon-scalar-add-sub.s │ │ │ │ ├── neon-scalar-by-elem-mla.s │ │ │ │ ├── neon-scalar-by-elem-mul.s │ │ │ │ ├── neon-scalar-by-elem-saturating-mla.s │ │ │ │ ├── neon-scalar-by-elem-saturating-mul.s │ │ │ │ ├── neon-scalar-compare.s │ │ │ │ ├── neon-scalar-cvt.s │ │ │ │ ├── neon-scalar-dup.s │ │ │ │ ├── neon-scalar-extract-narrow.s │ │ │ │ ├── neon-scalar-fp-compare.s │ │ │ │ ├── neon-scalar-mul.s │ │ │ │ ├── neon-scalar-neg.s │ │ │ │ ├── neon-scalar-recip.s │ │ │ │ ├── neon-scalar-reduce-pairwise.s │ │ │ │ ├── neon-scalar-rounding-shift.s │ │ │ │ ├── neon-scalar-saturating-add-sub.s │ │ │ │ ├── neon-scalar-saturating-rounding-shift.s │ │ │ │ ├── neon-scalar-saturating-shift.s │ │ │ │ ├── neon-scalar-shift-imm.s │ │ │ │ ├── neon-scalar-shift.s │ │ │ │ ├── neon-shift-left-long.s │ │ │ │ ├── neon-shift.s │ │ │ │ ├── neon-simd-copy.s │ │ │ │ ├── neon-simd-ldst-multi-elem.s │ │ │ │ ├── neon-simd-ldst-one-elem.s │ │ │ │ ├── neon-simd-misc.s │ │ │ │ ├── neon-simd-post-ldst-multi-elem.s │ │ │ │ ├── neon-simd-shift.s │ │ │ │ ├── neon-sxtl.s │ │ │ │ ├── neon-tbl.s │ │ │ │ ├── neon-uxtl.s │ │ │ │ ├── nofp-crypto-diagnostic.s │ │ │ │ ├── noneon-diagnostics.s │ │ │ │ ├── optional-hash.s │ │ │ │ ├── ras-extension.s │ │ │ │ ├── shift_extend_op_w_symbol.s │ │ │ │ ├── single-slash.s │ │ │ │ ├── tls-add-shift.s │ │ │ │ ├── tls-relocs.s │ │ │ │ ├── trace-regs-diagnostics.s │ │ │ │ └── trace-regs.s │ │ │ ├── AMDGPU │ │ │ │ ├── add-sub-no-carry.s │ │ │ │ ├── buffer_wbinv1l_vol_vi.s │ │ │ │ ├── ds-err.s │ │ │ │ ├── ds-gfx9.s │ │ │ │ ├── ds.s │ │ │ │ ├── elf-notes-verify-amdgcn.s │ │ │ │ ├── elf-notes-verify-r600.s │ │ │ │ ├── exp-err.s │ │ │ │ ├── exp.s │ │ │ │ ├── expressions.s │ │ │ │ ├── flat-gfx9.s │ │ │ │ ├── flat-global.s │ │ │ │ ├── flat-scratch-instructions.s │ │ │ │ ├── flat-scratch.s │ │ │ │ ├── flat.s │ │ │ │ ├── gfx7_asm_all.s │ │ │ │ ├── gfx8_asm_all.s │ │ │ │ ├── gfx9_asm_all.s │ │ │ │ ├── hsa-exp.s │ │ │ │ ├── hsa-metadata-kernel-args.s │ │ │ │ ├── hsa-metadata-kernel-attrs.s │ │ │ │ ├── hsa-metadata-kernel-code-props.s │ │ │ │ ├── hsa-metadata-kernel-debug-props.s │ │ │ │ ├── hsa-metadata-unknown-key.s │ │ │ │ ├── hsa-text.s │ │ │ │ ├── hsa.s │ │ │ │ ├── hsa_code_object_isa_args.s │ │ │ │ ├── invalid-instructions-spellcheck.s │ │ │ │ ├── isa-version-hsa.s │ │ │ │ ├── isa-version-pal.s │ │ │ │ ├── isa-version-unk.s │ │ │ │ ├── labels-branch.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── literal16-err.s │ │ │ │ ├── literal16.s │ │ │ │ ├── literals.s │ │ │ │ ├── literalv216-err.s │ │ │ │ ├── literalv216.s │ │ │ │ ├── macro-examples.s │ │ │ │ ├── max-branch-distance.s │ │ │ │ ├── mimg.s │ │ │ │ ├── mtbuf.s │ │ │ │ ├── mubuf-gfx9.s │ │ │ │ ├── mubuf.s │ │ │ │ ├── out-of-range-registers.s │ │ │ │ ├── pal.s │ │ │ │ ├── reg-syntax-extra.s │ │ │ │ ├── regression │ │ │ │ │ ├── bug28165.s │ │ │ │ │ ├── bug28168.s │ │ │ │ │ ├── bug28413.s │ │ │ │ │ ├── bug28538.s │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── reloc.s │ │ │ │ ├── smem-err.s │ │ │ │ ├── smem.s │ │ │ │ ├── smrd-err.s │ │ │ │ ├── smrd.s │ │ │ │ ├── sop1-err.s │ │ │ │ ├── sop1.s │ │ │ │ ├── sop2-err.s │ │ │ │ ├── sop2.s │ │ │ │ ├── sopc-err.s │ │ │ │ ├── sopc.s │ │ │ │ ├── sopk-err.s │ │ │ │ ├── sopk.s │ │ │ │ ├── sopp-err.s │ │ │ │ ├── sopp-gfx9.s │ │ │ │ ├── sopp.s │ │ │ │ ├── sym_kernel_scope.s │ │ │ │ ├── sym_option.s │ │ │ │ ├── trap.s │ │ │ │ ├── vintrp-err.s │ │ │ │ ├── vintrp.s │ │ │ │ ├── vop-err.s │ │ │ │ ├── vop1-gfx9-err.s │ │ │ │ ├── vop1-gfx9.s │ │ │ │ ├── vop1.s │ │ │ │ ├── vop2-err.s │ │ │ │ ├── vop2.s │ │ │ │ ├── vop3-convert.s │ │ │ │ ├── vop3-errs.s │ │ │ │ ├── vop3-gfx9.s │ │ │ │ ├── vop3-modifiers-err.s │ │ │ │ ├── vop3-modifiers.s │ │ │ │ ├── vop3-vop1-nosrc.s │ │ │ │ ├── vop3.s │ │ │ │ ├── vop3p-err.s │ │ │ │ ├── vop3p.s │ │ │ │ ├── vop_dpp.s │ │ │ │ ├── vop_dpp_expr.s │ │ │ │ ├── vop_sdwa.s │ │ │ │ ├── vopc-errs.s │ │ │ │ ├── vopc-vi.s │ │ │ │ └── vopc.s │ │ │ ├── ARM │ │ │ │ ├── 2010-11-30-reloc-movt.s │ │ │ │ ├── 2013-03-18-Br-to-label-named-like-reg.s │ │ │ │ ├── AlignedBundling │ │ │ │ │ ├── group-bundle-arm.s │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── pad-align-to-bundle-end.s │ │ │ │ ├── Inputs │ │ │ │ │ ├── 1.s │ │ │ │ │ ├── 2.s │ │ │ │ │ ├── 3.s │ │ │ │ │ ├── 4.s │ │ │ │ │ ├── 5.s │ │ │ │ │ ├── 6.s │ │ │ │ │ ├── 7.s │ │ │ │ │ ├── attr.s │ │ │ │ │ └── ident.s │ │ │ │ ├── Windows │ │ │ │ │ ├── invalid-relocation.s │ │ │ │ │ ├── literals-comments.s │ │ │ │ │ ├── mov32t-range.s │ │ │ │ │ ├── multiple-text-sections.s │ │ │ │ │ ├── text-attributes.s │ │ │ │ │ └── thumb-attributes.s │ │ │ │ ├── align_arm_2_thumb.s │ │ │ │ ├── align_thumb_2_arm.s │ │ │ │ ├── aligned-blx.s │ │ │ │ ├── arm-aliases.s │ │ │ │ ├── arm-arithmetic-aliases.s │ │ │ │ ├── arm-branch-errors.s │ │ │ │ ├── arm-branches.s │ │ │ │ ├── arm-elf-relocation-diagnostics.s │ │ │ │ ├── arm-elf-relocations.s │ │ │ │ ├── arm-elf-symver.s │ │ │ │ ├── arm-it-block.s │ │ │ │ ├── arm-ldrd.s │ │ │ │ ├── arm-load-store-multiple-deprecated.s │ │ │ │ ├── arm-macho-calls.s │ │ │ │ ├── arm-memory-instructions.s │ │ │ │ ├── arm-qualifier-diagnostics.s │ │ │ │ ├── arm-shift-encoding.s │ │ │ │ ├── arm-thumb-cpus-default.s │ │ │ │ ├── arm-thumb-cpus.s │ │ │ │ ├── arm-thumb-tail-call.ll │ │ │ │ ├── arm-thumb-trustzone.s │ │ │ │ ├── arm-trustzone.s │ │ │ │ ├── arm11-hint-instr.s │ │ │ │ ├── arm_addrmode2.s │ │ │ │ ├── arm_addrmode3.s │ │ │ │ ├── arm_fixups.s │ │ │ │ ├── arm_instructions.s │ │ │ │ ├── armv8.2a-dotprod-a32.s │ │ │ │ ├── armv8.2a-dotprod-error.s │ │ │ │ ├── armv8.2a-dotprod-t32.s │ │ │ │ ├── armv8.3a-js.s │ │ │ │ ├── assembly-default-build-attributes.s │ │ │ │ ├── basic-arm-instructions-v8.1a.s │ │ │ │ ├── basic-arm-instructions-v8.s │ │ │ │ ├── basic-arm-instructions.s │ │ │ │ ├── basic-thumb-instructions.s │ │ │ │ ├── basic-thumb2-instructions-v8.s │ │ │ │ ├── basic-thumb2-instructions.s │ │ │ │ ├── big-endian-arm-fixup.s │ │ │ │ ├── big-endian-thumb-fixup.s │ │ │ │ ├── big-endian-thumb2-fixup.s │ │ │ │ ├── bkpt.s │ │ │ │ ├── bracket-darwin.s │ │ │ │ ├── bracket-exprs.s │ │ │ │ ├── branch-disassemble.s │ │ │ │ ├── cmp-immediate-fixup-error.s │ │ │ │ ├── cmp-immediate-fixup-error2.s │ │ │ │ ├── cmp-immediate-fixup.s │ │ │ │ ├── cmp-immediate-fixup2.s │ │ │ │ ├── coff-debugging-secrel.ll │ │ │ │ ├── coff-file.s │ │ │ │ ├── coff-function-type-info.ll │ │ │ │ ├── coff-relocations.s │ │ │ │ ├── comment.s │ │ │ │ ├── complex-operands.s │ │ │ │ ├── coproc-diag.s │ │ │ │ ├── cps.s │ │ │ │ ├── cpu-test.s │ │ │ │ ├── crc32-thumb.s │ │ │ │ ├── crc32.s │ │ │ │ ├── cxx-global-constructor.ll │ │ │ │ ├── d16.s │ │ │ │ ├── data-in-code.ll │ │ │ │ ├── deprecated-v8.s │ │ │ │ ├── dfb-neg.s │ │ │ │ ├── dfb.s │ │ │ │ ├── diagnostics-noneon.s │ │ │ │ ├── diagnostics.s │ │ │ │ ├── directive-align.s │ │ │ │ ├── directive-arch-armv2.s │ │ │ │ ├── directive-arch-armv2a.s │ │ │ │ ├── directive-arch-armv3.s │ │ │ │ ├── directive-arch-armv3m.s │ │ │ │ ├── directive-arch-armv4.s │ │ │ │ ├── directive-arch-armv4t.s │ │ │ │ ├── directive-arch-armv5.s │ │ │ │ ├── directive-arch-armv5t.s │ │ │ │ ├── directive-arch-armv5te.s │ │ │ │ ├── directive-arch-armv6-m.s │ │ │ │ ├── directive-arch-armv6.s │ │ │ │ ├── directive-arch-armv6k.s │ │ │ │ ├── directive-arch-armv6t2.s │ │ │ │ ├── directive-arch-armv6z.s │ │ │ │ ├── directive-arch-armv7-a.s │ │ │ │ ├── directive-arch-armv7-m.s │ │ │ │ ├── directive-arch-armv7-r.s │ │ │ │ ├── directive-arch-armv7.s │ │ │ │ ├── directive-arch-armv7a.s │ │ │ │ ├── directive-arch-armv7e-m.s │ │ │ │ ├── directive-arch-armv7em.s │ │ │ │ ├── directive-arch-armv7m.s │ │ │ │ ├── directive-arch-armv7r.s │ │ │ │ ├── directive-arch-armv8-a.s │ │ │ │ ├── directive-arch-armv8.2-a.s │ │ │ │ ├── directive-arch-armv8a.s │ │ │ │ ├── directive-arch-iwmmxt.s │ │ │ │ ├── directive-arch-iwmmxt2.s │ │ │ │ ├── directive-arch-mode-switch.s │ │ │ │ ├── directive-arch-semantic-action.s │ │ │ │ ├── directive-arch_extension-crc.s │ │ │ │ ├── directive-arch_extension-crypto.s │ │ │ │ ├── directive-arch_extension-fp.s │ │ │ │ ├── directive-arch_extension-idiv.s │ │ │ │ ├── directive-arch_extension-mode-switch.s │ │ │ │ ├── directive-arch_extension-mp.s │ │ │ │ ├── directive-arch_extension-sec.s │ │ │ │ ├── directive-arch_extension-simd.s │ │ │ │ ├── directive-arch_extension-toggle.s │ │ │ │ ├── directive-arch_extension-unsupported.s │ │ │ │ ├── directive-cpu.s │ │ │ │ ├── directive-eabi_attribute-diagnostics.s │ │ │ │ ├── directive-eabi_attribute-overwrite.s │ │ │ │ ├── directive-eabi_attribute.s │ │ │ │ ├── directive-even.s │ │ │ │ ├── directive-fpu-diagnostics.s │ │ │ │ ├── directive-fpu-instrs.s │ │ │ │ ├── directive-fpu-multiple.s │ │ │ │ ├── directive-fpu-softvfp.s │ │ │ │ ├── directive-fpu.s │ │ │ │ ├── directive-literals.s │ │ │ │ ├── directive-object_arch-2.s │ │ │ │ ├── directive-object_arch-3.s │ │ │ │ ├── directive-object_arch-diagnostics.s │ │ │ │ ├── directive-object_arch.s │ │ │ │ ├── directive-thumb_func.s │ │ │ │ ├── directive-tlsdescseq-diagnostics.s │ │ │ │ ├── directive-tlsdescseq.s │ │ │ │ ├── directive-type-diagnostics.s │ │ │ │ ├── directive-unsupported.s │ │ │ │ ├── directive-word-diagnostics.s │ │ │ │ ├── directive_parsing.s │ │ │ │ ├── dot-req-case-insensitive.s │ │ │ │ ├── dot-req.s │ │ │ │ ├── dwarf-asm-multiple-sections-dwarf-2.s │ │ │ │ ├── dwarf-asm-multiple-sections.s │ │ │ │ ├── dwarf-asm-no-code.s │ │ │ │ ├── dwarf-asm-nonstandard-section.s │ │ │ │ ├── dwarf-asm-single-section.s │ │ │ │ ├── dwarf-cfi-initial-state.s │ │ │ │ ├── eh-compact-pr0.s │ │ │ │ ├── eh-compact-pr1.s │ │ │ │ ├── eh-directive-cantunwind-diagnostics.s │ │ │ │ ├── eh-directive-cantunwind.s │ │ │ │ ├── eh-directive-fnend-diagnostics.s │ │ │ │ ├── eh-directive-fnstart-diagnostics.s │ │ │ │ ├── eh-directive-handlerdata.s │ │ │ │ ├── eh-directive-integrated-test.s │ │ │ │ ├── eh-directive-movsp-diagnostics.s │ │ │ │ ├── eh-directive-movsp.s │ │ │ │ ├── eh-directive-multiple-offsets.s │ │ │ │ ├── eh-directive-pad-diagnostics.s │ │ │ │ ├── eh-directive-pad.s │ │ │ │ ├── eh-directive-personality-diagnostics.s │ │ │ │ ├── eh-directive-personality.s │ │ │ │ ├── eh-directive-personalityindex-diagnostics.s │ │ │ │ ├── eh-directive-personalityindex.s │ │ │ │ ├── eh-directive-save-diagnostics.s │ │ │ │ ├── eh-directive-save.s │ │ │ │ ├── eh-directive-section-comdat.s │ │ │ │ ├── eh-directive-section-multiple-func.s │ │ │ │ ├── eh-directive-section.s │ │ │ │ ├── eh-directive-setfp-diagnostics.s │ │ │ │ ├── eh-directive-setfp.s │ │ │ │ ├── eh-directive-text-section-multiple-func.s │ │ │ │ ├── eh-directive-text-section.s │ │ │ │ ├── eh-directive-unwind_raw-diagnostics.s │ │ │ │ ├── eh-directive-unwind_raw.s │ │ │ │ ├── eh-directive-vsave-diagnostics.s │ │ │ │ ├── eh-directive-vsave.s │ │ │ │ ├── eh-link.s │ │ │ │ ├── ehabi-personality-abs.s │ │ │ │ ├── elf-eflags-eabi.s │ │ │ │ ├── elf-jump24-fixup.s │ │ │ │ ├── elf-movt.s │ │ │ │ ├── elf-reloc-01.s │ │ │ │ ├── elf-reloc-02.s │ │ │ │ ├── elf-reloc-03.s │ │ │ │ ├── elf-reloc-condcall.s │ │ │ │ ├── elf-thumbfunc-reloc.s │ │ │ │ ├── elf-thumbfunc-reloc2.s │ │ │ │ ├── elf-thumbfunc.s │ │ │ │ ├── error-location-ldr-pseudo.s │ │ │ │ ├── error-location-post-layout.s │ │ │ │ ├── error-location.s │ │ │ │ ├── fconst.s │ │ │ │ ├── fixup-cpu-mode.s │ │ │ │ ├── fp-armv8.s │ │ │ │ ├── fp-const-errors.s │ │ │ │ ├── full_line_comment.s │ │ │ │ ├── fullfp16-neg.s │ │ │ │ ├── fullfp16-neon-neg.s │ │ │ │ ├── fullfp16-neon.s │ │ │ │ ├── fullfp16.s │ │ │ │ ├── gas-compl-copr-reg.s │ │ │ │ ├── hilo-16bit-relocations.s │ │ │ │ ├── idiv.s │ │ │ │ ├── implicit-it-generation.s │ │ │ │ ├── implicit-it.s │ │ │ │ ├── inline-asm-diags.ll │ │ │ │ ├── inline-asm-srcloc.ll │ │ │ │ ├── inline-comments-arm.ll │ │ │ │ ├── inst-arm-suffixes.s │ │ │ │ ├── inst-constant-required.s │ │ │ │ ├── inst-directive-emit.s │ │ │ │ ├── inst-directive.s │ │ │ │ ├── inst-overflow.s │ │ │ │ ├── inst-thumb-overflow-2.s │ │ │ │ ├── inst-thumb-overflow.s │ │ │ │ ├── inst-thumb-suffixes.s │ │ │ │ ├── invalid-barrier.s │ │ │ │ ├── invalid-crc32.s │ │ │ │ ├── invalid-fp-armv8.s │ │ │ │ ├── invalid-hint-arm.s │ │ │ │ ├── invalid-hint-thumb.s │ │ │ │ ├── invalid-idiv.s │ │ │ │ ├── invalid-instructions-spellcheck.s │ │ │ │ ├── invalid-neon-v8.s │ │ │ │ ├── invalid-special-reg.s │ │ │ │ ├── invalid-vector-index.s │ │ │ │ ├── ldr-pseudo-cond-darwin.s │ │ │ │ ├── ldr-pseudo-cond.s │ │ │ │ ├── ldr-pseudo-darwin.s │ │ │ │ ├── ldr-pseudo-obj-errors.s │ │ │ │ ├── ldr-pseudo-parse-errors.s │ │ │ │ ├── ldr-pseudo-unpredictable.s │ │ │ │ ├── ldr-pseudo-wide.s │ │ │ │ ├── ldr-pseudo.s │ │ │ │ ├── ldrd-strd-gnu-arm-bad-imm.s │ │ │ │ ├── ldrd-strd-gnu-arm-bad-regs.s │ │ │ │ ├── ldrd-strd-gnu-arm.s │ │ │ │ ├── ldrd-strd-gnu-bad-inst.s │ │ │ │ ├── ldrd-strd-gnu-sp.s │ │ │ │ ├── ldrd-strd-gnu-thumb-bad-regs.s │ │ │ │ ├── ldrd-strd-gnu-thumb.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── load-store-acquire-release-v8-thumb.s │ │ │ │ ├── load-store-acquire-release-v8.s │ │ │ │ ├── lsl-zero-errors.s │ │ │ │ ├── lsl-zero.s │ │ │ │ ├── ltorg-darwin.s │ │ │ │ ├── ltorg-range.s │ │ │ │ ├── ltorg.s │ │ │ │ ├── macho-movwt.s │ │ │ │ ├── macho-relocs-with-addend.s │ │ │ │ ├── macho-word-reloc-thumb.s │ │ │ │ ├── mapping-initial.s │ │ │ │ ├── mapping-within-section.s │ │ │ │ ├── mappingsymbols.s │ │ │ │ ├── misaligned-blx.s │ │ │ │ ├── mixed-arm-thumb-bl-fixup.ll │ │ │ │ ├── mode-switch.s │ │ │ │ ├── modified-immediate-fixup-error.s │ │ │ │ ├── modified-immediate-fixup.s │ │ │ │ ├── move-banked-regs.s │ │ │ │ ├── mul-v4.s │ │ │ │ ├── multi-section-mapping.s │ │ │ │ ├── negative-immediates-fail.s │ │ │ │ ├── negative-immediates-thumb1-fail.s │ │ │ │ ├── negative-immediates-thumb1.s │ │ │ │ ├── negative-immediates.s │ │ │ │ ├── neon-abs-encoding.s │ │ │ │ ├── neon-absdiff-encoding.s │ │ │ │ ├── neon-add-encoding.s │ │ │ │ ├── neon-bitcount-encoding.s │ │ │ │ ├── neon-bitwise-encoding.s │ │ │ │ ├── neon-cmp-encoding.s │ │ │ │ ├── neon-complex.s │ │ │ │ ├── neon-convert-encoding.s │ │ │ │ ├── neon-crypto.s │ │ │ │ ├── neon-dup-encoding.s │ │ │ │ ├── neon-minmax-encoding.s │ │ │ │ ├── neon-mov-encoding.s │ │ │ │ ├── neon-mov-vfp.s │ │ │ │ ├── neon-mul-accum-encoding.s │ │ │ │ ├── neon-mul-encoding.s │ │ │ │ ├── neon-neg-encoding.s │ │ │ │ ├── neon-pairwise-encoding.s │ │ │ │ ├── neon-reciprocal-encoding.s │ │ │ │ ├── neon-reverse-encoding.s │ │ │ │ ├── neon-satshift-encoding.s │ │ │ │ ├── neon-shift-encoding.s │ │ │ │ ├── neon-shiftaccum-encoding.s │ │ │ │ ├── neon-shuffle-encoding.s │ │ │ │ ├── neon-sub-encoding.s │ │ │ │ ├── neon-table-encoding.s │ │ │ │ ├── neon-v8.s │ │ │ │ ├── neon-vcvt-fp16.s │ │ │ │ ├── neon-vld-encoding.s │ │ │ │ ├── neon-vld-vst-align.s │ │ │ │ ├── neon-vst-encoding.s │ │ │ │ ├── neon-vswp.s │ │ │ │ ├── neont2-abs-encoding.s │ │ │ │ ├── neont2-absdiff-encoding.s │ │ │ │ ├── neont2-add-encoding.s │ │ │ │ ├── neont2-bitcount-encoding.s │ │ │ │ ├── neont2-bitwise-encoding.s │ │ │ │ ├── neont2-cmp-encoding.s │ │ │ │ ├── neont2-convert-encoding.s │ │ │ │ ├── neont2-dup-encoding.s │ │ │ │ ├── neont2-minmax-encoding.s │ │ │ │ ├── neont2-mov-encoding.s │ │ │ │ ├── neont2-mul-accum-encoding.s │ │ │ │ ├── neont2-mul-encoding.s │ │ │ │ ├── neont2-neg-encoding.s │ │ │ │ ├── neont2-pairwise-encoding.s │ │ │ │ ├── neont2-reciprocal-encoding.s │ │ │ │ ├── neont2-reverse-encoding.s │ │ │ │ ├── neont2-satshift-encoding.s │ │ │ │ ├── neont2-shift-encoding.s │ │ │ │ ├── neont2-shiftaccum-encoding.s │ │ │ │ ├── neont2-shuffle-encoding.s │ │ │ │ ├── neont2-sub-encoding.s │ │ │ │ ├── neont2-table-encoding.s │ │ │ │ ├── neont2-vld-encoding.s │ │ │ │ ├── neont2-vst-encoding.s │ │ │ │ ├── not-armv4.s │ │ │ │ ├── obsolete-v8.s │ │ │ │ ├── pkhbt-archs.s │ │ │ │ ├── pool.s │ │ │ │ ├── pr11877.s │ │ │ │ ├── pr22395-2.s │ │ │ │ ├── pr22395.s │ │ │ │ ├── preserve-comments-arm.s │ │ │ │ ├── quad-relocation.s │ │ │ │ ├── ras-extension.s │ │ │ │ ├── register-token-source-loc.s │ │ │ │ ├── relocated-mapping.s │ │ │ │ ├── simple-fp-encoding.s │ │ │ │ ├── single-precision-fp.s │ │ │ │ ├── sub-expr-imm.s │ │ │ │ ├── symbol-variants-errors.s │ │ │ │ ├── symbol-variants.s │ │ │ │ ├── t2-modified-immediate-fixup-error1.s │ │ │ │ ├── t2-modified-immediate-fixup-error2.s │ │ │ │ ├── t2-modified-immediate-fixup.s │ │ │ │ ├── target-expressions.s │ │ │ │ ├── thumb-add-sub-width.s │ │ │ │ ├── thumb-branch-errors.s │ │ │ │ ├── thumb-branches.s │ │ │ │ ├── thumb-cb-offsets.s │ │ │ │ ├── thumb-cb-thumbfunc.s │ │ │ │ ├── thumb-diagnostics.s │ │ │ │ ├── thumb-far-jump.s │ │ │ │ ├── thumb-fp-armv8.s │ │ │ │ ├── thumb-hints.s │ │ │ │ ├── thumb-invalid-crypto.txt │ │ │ │ ├── thumb-load-store-multiple.s │ │ │ │ ├── thumb-mov.s │ │ │ │ ├── thumb-movwt-reloc.s │ │ │ │ ├── thumb-neon-crypto.s │ │ │ │ ├── thumb-neon-v8.s │ │ │ │ ├── thumb-not-mclass.s │ │ │ │ ├── thumb-only-conditionals.s │ │ │ │ ├── thumb-shift-encoding.s │ │ │ │ ├── thumb-st_other.s │ │ │ │ ├── thumb-types.s │ │ │ │ ├── thumb.s │ │ │ │ ├── thumb1-branch-reloc.s │ │ │ │ ├── thumb1-relax-8m-baseline.s │ │ │ │ ├── thumb1-relax-adr.s │ │ │ │ ├── thumb1-relax-bcc.s │ │ │ │ ├── thumb1-relax-br.s │ │ │ │ ├── thumb1-relax-ldrlit.s │ │ │ │ ├── thumb1-relax.s │ │ │ │ ├── thumb2-b.w-encodingT4.s │ │ │ │ ├── thumb2-beq-fixup.s │ │ │ │ ├── thumb2-branches.s │ │ │ │ ├── thumb2-bxj-v8.s │ │ │ │ ├── thumb2-bxj.s │ │ │ │ ├── thumb2-cbn-to-next-inst.s │ │ │ │ ├── thumb2-diagnostics.s │ │ │ │ ├── thumb2-dsp-diag.s │ │ │ │ ├── thumb2-exception-return-mclass.s │ │ │ │ ├── thumb2-ldrb-ldrh.s │ │ │ │ ├── thumb2-ldrd.s │ │ │ │ ├── thumb2-ldrexd-strexd.s │ │ │ │ ├── thumb2-mclass.s │ │ │ │ ├── thumb2-narrow-dp.ll │ │ │ │ ├── thumb2-pldw.s │ │ │ │ ├── thumb2-strd.s │ │ │ │ ├── thumb2be-b.w-encoding.s │ │ │ │ ├── thumb2be-beq.w-encoding.s │ │ │ │ ├── thumb2be-movt-encoding.s │ │ │ │ ├── thumb2be-movw-encoding.s │ │ │ │ ├── thumb_rewrites.s │ │ │ │ ├── thumb_set-diagnostics.s │ │ │ │ ├── thumb_set.s │ │ │ │ ├── thumbv7em.s │ │ │ │ ├── thumbv7m.s │ │ │ │ ├── thumbv8m.s │ │ │ │ ├── tls-directives.s │ │ │ │ ├── twice.ll │ │ │ │ ├── udf-arm-diagnostics.s │ │ │ │ ├── udf-arm.s │ │ │ │ ├── udf-thumb-2-diagnostics.s │ │ │ │ ├── udf-thumb-2.s │ │ │ │ ├── udf-thumb-diagnostics.s │ │ │ │ ├── udf-thumb.s │ │ │ │ ├── unpred-control-flow-in-it-block.s │ │ │ │ ├── unwind-stack-diagnostics.s │ │ │ │ ├── v7k-dsp.s │ │ │ │ ├── v8_IT_manual.s │ │ │ │ ├── variant-diagnostics.s │ │ │ │ ├── vfp-aliases-diagnostics.s │ │ │ │ ├── vfp-aliases.s │ │ │ │ ├── vfp4.s │ │ │ │ ├── virtexts-arm.s │ │ │ │ ├── virtexts-thumb.s │ │ │ │ ├── vldm-vstm-diags.s │ │ │ │ ├── vmov-vmvn-byte-replicate.s │ │ │ │ ├── vmov-vmvn-illegal-cases.s │ │ │ │ ├── vmrs_vmsr.s │ │ │ │ ├── vorr-vbic-illegal-cases.s │ │ │ │ └── vpush-vpop.s │ │ │ ├── AVR │ │ │ │ ├── inst-adc.s │ │ │ │ ├── inst-add.s │ │ │ │ ├── inst-adiw.s │ │ │ │ ├── inst-and.s │ │ │ │ ├── inst-andi.s │ │ │ │ ├── inst-asr.s │ │ │ │ ├── inst-bld.s │ │ │ │ ├── inst-brbc.s │ │ │ │ ├── inst-brbs.s │ │ │ │ ├── inst-break.s │ │ │ │ ├── inst-bst.s │ │ │ │ ├── inst-call.s │ │ │ │ ├── inst-cbi.s │ │ │ │ ├── inst-cbr.s │ │ │ │ ├── inst-clr.s │ │ │ │ ├── inst-com.s │ │ │ │ ├── inst-cp.s │ │ │ │ ├── inst-cpc.s │ │ │ │ ├── inst-cpi.s │ │ │ │ ├── inst-cpse.s │ │ │ │ ├── inst-dec.s │ │ │ │ ├── inst-des.s │ │ │ │ ├── inst-eicall.s │ │ │ │ ├── inst-eijmp.s │ │ │ │ ├── inst-elpm.s │ │ │ │ ├── inst-eor.s │ │ │ │ ├── inst-family-cond-branch.s │ │ │ │ ├── inst-family-set-clr-flag.s │ │ │ │ ├── inst-fmul.s │ │ │ │ ├── inst-fmuls.s │ │ │ │ ├── inst-fmulsu.s │ │ │ │ ├── inst-icall.s │ │ │ │ ├── inst-ijmp.s │ │ │ │ ├── inst-in.s │ │ │ │ ├── inst-inc.s │ │ │ │ ├── inst-jmp.s │ │ │ │ ├── inst-lac.s │ │ │ │ ├── inst-las.s │ │ │ │ ├── inst-lat.s │ │ │ │ ├── inst-ld.s │ │ │ │ ├── inst-ldd.s │ │ │ │ ├── inst-ldi.s │ │ │ │ ├── inst-lds.s │ │ │ │ ├── inst-lpm.s │ │ │ │ ├── inst-lsl.s │ │ │ │ ├── inst-lsr.s │ │ │ │ ├── inst-mov.s │ │ │ │ ├── inst-movw.s │ │ │ │ ├── inst-mul.s │ │ │ │ ├── inst-muls.s │ │ │ │ ├── inst-mulsu.s │ │ │ │ ├── inst-neg.s │ │ │ │ ├── inst-nop.s │ │ │ │ ├── inst-or.s │ │ │ │ ├── inst-ori.s │ │ │ │ ├── inst-out.s │ │ │ │ ├── inst-pop.s │ │ │ │ ├── inst-push.s │ │ │ │ ├── inst-rcall.s │ │ │ │ ├── inst-ret.s │ │ │ │ ├── inst-reti.s │ │ │ │ ├── inst-rjmp.s │ │ │ │ ├── inst-rol.s │ │ │ │ ├── inst-ror.s │ │ │ │ ├── inst-sbc.s │ │ │ │ ├── inst-sbci.s │ │ │ │ ├── inst-sbi.s │ │ │ │ ├── inst-sbic.s │ │ │ │ ├── inst-sbis.s │ │ │ │ ├── inst-sbiw.s │ │ │ │ ├── inst-sbr.s │ │ │ │ ├── inst-sbrc.s │ │ │ │ ├── inst-sbrs.s │ │ │ │ ├── inst-ser.s │ │ │ │ ├── inst-sleep.s │ │ │ │ ├── inst-spm.s │ │ │ │ ├── inst-st.s │ │ │ │ ├── inst-std.s │ │ │ │ ├── inst-sts.s │ │ │ │ ├── inst-sub.s │ │ │ │ ├── inst-subi.s │ │ │ │ ├── inst-swap.s │ │ │ │ ├── inst-tst.s │ │ │ │ ├── inst-wdr.s │ │ │ │ ├── inst-xch.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── modifiers.s │ │ │ │ ├── out-of-range-fixups │ │ │ │ │ ├── adiw-pass.s │ │ │ │ │ ├── brbs-pass.s │ │ │ │ │ ├── call-pass.s │ │ │ │ │ ├── in-pass.s │ │ │ │ │ ├── lds-pass.s │ │ │ │ │ ├── rjmp-pass.s │ │ │ │ │ └── sbi-pass.s │ │ │ │ ├── relocations.s │ │ │ │ ├── symbol_relocation.s │ │ │ │ ├── syntax-reg-int-literal.s │ │ │ │ └── syntax-reg-pair.s │ │ │ ├── AsmParser │ │ │ │ ├── AArch64 │ │ │ │ │ ├── directive-parse-err.s │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── Inputs │ │ │ │ │ ├── function.x │ │ │ │ │ ├── module.x │ │ │ │ │ ├── non-english-characters-comments.s │ │ │ │ │ └── non-english-characters-section-name.s │ │ │ │ ├── align_invalid.s │ │ │ │ ├── altmacro_expression.s │ │ │ │ ├── altmacro_string.s │ │ │ │ ├── altmacro_string_escape.s │ │ │ │ ├── assignment.s │ │ │ │ ├── at-pseudo-variable-bad.s │ │ │ │ ├── at-pseudo-variable.s │ │ │ │ ├── bad-macro.s │ │ │ │ ├── cfi-unfinished-frame.s │ │ │ │ ├── cfi-unknown-register.s │ │ │ │ ├── cfi-window-save.s │ │ │ │ ├── comments-x86-darwin.s │ │ │ │ ├── conditional_asm.s │ │ │ │ ├── dash-n.s │ │ │ │ ├── defsym.s │ │ │ │ ├── defsym_error1.s │ │ │ │ ├── defsym_error2.s │ │ │ │ ├── directive-err-diagnostics.s │ │ │ │ ├── directive-err.s │ │ │ │ ├── directive-warning.s │ │ │ │ ├── directive_abort.s │ │ │ │ ├── directive_align.s │ │ │ │ ├── directive_ascii.s │ │ │ │ ├── directive_comm.s │ │ │ │ ├── directive_darwin_section.s │ │ │ │ ├── directive_dc.s │ │ │ │ ├── directive_dcb.s │ │ │ │ ├── directive_desc.s │ │ │ │ ├── directive_ds.s │ │ │ │ ├── directive_elf_size.s │ │ │ │ ├── directive_end-2.s │ │ │ │ ├── directive_end.s │ │ │ │ ├── directive_file-2.s │ │ │ │ ├── directive_file.s │ │ │ │ ├── directive_fill.s │ │ │ │ ├── directive_incbin.s │ │ │ │ ├── directive_include.s │ │ │ │ ├── directive_lcomm.s │ │ │ │ ├── directive_line.s │ │ │ │ ├── directive_loc.s │ │ │ │ ├── directive_lsym.s │ │ │ │ ├── directive_org.s │ │ │ │ ├── directive_print.s │ │ │ │ ├── directive_rept-diagnostics.s │ │ │ │ ├── directive_rept.s │ │ │ │ ├── directive_seh.s │ │ │ │ ├── directive_set.s │ │ │ │ ├── directive_space.s │ │ │ │ ├── directive_subsections_via_symbols.s │ │ │ │ ├── directive_symbol_attrs.s │ │ │ │ ├── directive_tbss.s │ │ │ │ ├── directive_tdata.s │ │ │ │ ├── directive_thread_init_func.s │ │ │ │ ├── directive_tlv.s │ │ │ │ ├── directive_values.s │ │ │ │ ├── directive_zerofill.s │ │ │ │ ├── dollars-in-identifiers.s │ │ │ │ ├── dot-symbol-assignment-backwards.s │ │ │ │ ├── dot-symbol-assignment.s │ │ │ │ ├── dot-symbol-non-absolute.s │ │ │ │ ├── dot-symbol.s │ │ │ │ ├── empty-comment.s │ │ │ │ ├── equ.s │ │ │ │ ├── expr-shr.s │ │ │ │ ├── expr_symbol_modifiers.s │ │ │ │ ├── exprs-invalid.s │ │ │ │ ├── exprs.s │ │ │ │ ├── extern.s │ │ │ │ ├── floating-literals.s │ │ │ │ ├── hash-directive.s │ │ │ │ ├── hello.s │ │ │ │ ├── if-diagnostics.s │ │ │ │ ├── ifb.s │ │ │ │ ├── ifc.s │ │ │ │ ├── ifdef.s │ │ │ │ ├── ifeqs-diagnostics.s │ │ │ │ ├── ifeqs.s │ │ │ │ ├── ifndef.s │ │ │ │ ├── ifnes.s │ │ │ │ ├── incbin_abcd │ │ │ │ ├── include.ll │ │ │ │ ├── inline-comments.ll │ │ │ │ ├── inline_macro_duplication.ll │ │ │ │ ├── invalid-asm-variant.s │ │ │ │ ├── invalid-input-assertion.s │ │ │ │ ├── labels.s │ │ │ │ ├── line_with_hash.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── macro-args.s │ │ │ │ ├── macro-def-in-instantiation.s │ │ │ │ ├── macro-duplicate-params-names-err.s │ │ │ │ ├── macro-err1.s │ │ │ │ ├── macro-exitm.s │ │ │ │ ├── macro-irp.s │ │ │ │ ├── macro-irpc.s │ │ │ │ ├── macro-max-depth.s │ │ │ │ ├── macro-qualifier-diagnostics.s │ │ │ │ ├── macro-qualifier.s │ │ │ │ ├── macro-rept-err1.s │ │ │ │ ├── macro-rept-err2.s │ │ │ │ ├── macro-rept.s │ │ │ │ ├── macro_parsing.s │ │ │ │ ├── macros-argument-parsing-diagnostics.s │ │ │ │ ├── macros-argument-parsing.s │ │ │ │ ├── macros-darwin-vararg.s │ │ │ │ ├── macros-darwin.s │ │ │ │ ├── macros-gas.s │ │ │ │ ├── macros-parsing.s │ │ │ │ ├── negativ_altmacro_expression.s │ │ │ │ ├── negative_altmacro_string.s │ │ │ │ ├── non-english-characters.s │ │ │ │ ├── pr11865.s │ │ │ │ ├── pr28805.ll │ │ │ │ ├── pr28921.s │ │ │ │ ├── preserve-comments-crlf.s │ │ │ │ ├── preserve-comments.s │ │ │ │ ├── purgem.s │ │ │ │ ├── reassign.s │ │ │ │ ├── rename.s │ │ │ │ ├── section.s │ │ │ │ ├── section_names.s │ │ │ │ ├── secure_log_unique.s │ │ │ │ ├── seh-directive-errors.s │ │ │ │ ├── seh-unfinished-frame.s │ │ │ │ ├── undefined-local-symbol.s │ │ │ │ ├── uppercase-hex.s │ │ │ │ ├── vararg-default-value.s │ │ │ │ ├── vararg.s │ │ │ │ ├── variables-invalid.s │ │ │ │ └── variables.s │ │ │ ├── BPF │ │ │ │ ├── insn-unit-32.s │ │ │ │ ├── insn-unit.s │ │ │ │ └── lit.local.cfg │ │ │ ├── COFF │ │ │ │ ├── ARM │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── alias.s │ │ │ │ ├── align-nops.s │ │ │ │ ├── bad-expr.s │ │ │ │ ├── basic-coff-64.s │ │ │ │ ├── basic-coff.s │ │ │ │ ├── bigobj.py │ │ │ │ ├── bss.s │ │ │ │ ├── bss_section.ll │ │ │ │ ├── comm-align.s │ │ │ │ ├── comm.ll │ │ │ │ ├── comm.s │ │ │ │ ├── const-gv-with-rel-init.ll │ │ │ │ ├── cross-section-relative-err.s │ │ │ │ ├── cross-section-relative.ll │ │ │ │ ├── cross-section-relative.s │ │ │ │ ├── cv-compiler-info.ll │ │ │ │ ├── cv-def-range-gap.s │ │ │ │ ├── cv-def-range.s │ │ │ │ ├── cv-empty-file-table.s │ │ │ │ ├── cv-empty-linetable.s │ │ │ │ ├── cv-errors.s │ │ │ │ ├── cv-fpo-csrs.s │ │ │ │ ├── cv-fpo-errors.s │ │ │ │ ├── cv-fpo-setframe.s │ │ │ │ ├── cv-inline-linetable-infloop.s │ │ │ │ ├── cv-inline-linetable-unlikely.s │ │ │ │ ├── cv-inline-linetable-unreachable.s │ │ │ │ ├── cv-inline-linetable.s │ │ │ │ ├── cv-loc-cross-section.s │ │ │ │ ├── cv-loc.s │ │ │ │ ├── diff.s │ │ │ │ ├── directive-section-characteristics.ll │ │ │ │ ├── early-dce.s │ │ │ │ ├── eh-frame.s │ │ │ │ ├── feat00.s │ │ │ │ ├── file.s │ │ │ │ ├── global_ctors_dtors.ll │ │ │ │ ├── initialised-data.ll │ │ │ │ ├── invalid-def.s │ │ │ │ ├── invalid-endef.s │ │ │ │ ├── invalid-scl-range.s │ │ │ │ ├── invalid-scl.s │ │ │ │ ├── invalid-type-range.s │ │ │ │ ├── invalid-type.s │ │ │ │ ├── ir-to-imgrel.ll │ │ │ │ ├── label-undefined.s │ │ │ │ ├── linker-options.ll │ │ │ │ ├── linkonce-invalid.s │ │ │ │ ├── linkonce.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── lset0.s │ │ │ │ ├── module-asm.ll │ │ │ │ ├── offset.s │ │ │ │ ├── pr23025.s │ │ │ │ ├── pr28462.s │ │ │ │ ├── rdata.ll │ │ │ │ ├── relax-reloc.s │ │ │ │ ├── relocation-imgrel.s │ │ │ │ ├── safeseh.s │ │ │ │ ├── secidx.s │ │ │ │ ├── secrel-variant.s │ │ │ │ ├── secrel32-undef.s │ │ │ │ ├── secrel32.s │ │ │ │ ├── section-comdat-conflict.s │ │ │ │ ├── section-comdat-conflict2.s │ │ │ │ ├── section-comdat.s │ │ │ │ ├── section-invalid-flags.s │ │ │ │ ├── section-name-encoding.s │ │ │ │ ├── section-passthru-flags.s │ │ │ │ ├── section.s │ │ │ │ ├── seh-align1.s │ │ │ │ ├── seh-align2.s │ │ │ │ ├── seh-align3.s │ │ │ │ ├── seh-linkonce.s │ │ │ │ ├── seh-section-2.s │ │ │ │ ├── seh-section.s │ │ │ │ ├── seh-stackalloc-zero.s │ │ │ │ ├── seh.s │ │ │ │ ├── simple-fixups.s │ │ │ │ ├── stdin.s │ │ │ │ ├── switch-relocations.ll │ │ │ │ ├── symbol-alias.s │ │ │ │ ├── symbol-fragment-offset-64.s │ │ │ │ ├── symbol-fragment-offset.s │ │ │ │ ├── symbol-mangling.ll │ │ │ │ ├── temporary-alias.s │ │ │ │ ├── timestamp.s │ │ │ │ ├── tricky-names.ll │ │ │ │ ├── weak-alias-local.s │ │ │ │ ├── weak-val.s │ │ │ │ └── weak.s │ │ │ ├── Disassembler │ │ │ │ ├── AArch64 │ │ │ │ │ ├── a64-ignored-fields.txt │ │ │ │ │ ├── arm64-advsimd.txt │ │ │ │ │ ├── arm64-arithmetic.txt │ │ │ │ │ ├── arm64-basic-a64-undefined.txt │ │ │ │ │ ├── arm64-bitfield.txt │ │ │ │ │ ├── arm64-branch.txt │ │ │ │ │ ├── arm64-canonical-form.txt │ │ │ │ │ ├── arm64-crc32.txt │ │ │ │ │ ├── arm64-crypto.txt │ │ │ │ │ ├── arm64-invalid-logical.txt │ │ │ │ │ ├── arm64-logical.txt │ │ │ │ │ ├── arm64-memory.txt │ │ │ │ │ ├── arm64-non-apple-fmov.txt │ │ │ │ │ ├── arm64-scalar-fp.txt │ │ │ │ │ ├── arm64-system.txt │ │ │ │ │ ├── armv8.1a-atomic.txt │ │ │ │ │ ├── armv8.1a-lor.txt │ │ │ │ │ ├── armv8.1a-pan.txt │ │ │ │ │ ├── armv8.1a-rdma.txt │ │ │ │ │ ├── armv8.1a-vhe.txt │ │ │ │ │ ├── armv8.2a-at.txt │ │ │ │ │ ├── armv8.2a-dotprod.txt │ │ │ │ │ ├── armv8.2a-mmfr2.txt │ │ │ │ │ ├── armv8.2a-persistent-memory.txt │ │ │ │ │ ├── armv8.2a-statistical-profiling.txt │ │ │ │ │ ├── armv8.2a-uao.txt │ │ │ │ │ ├── armv8.3a-ID_ISAR6_EL1.txt │ │ │ │ │ ├── armv8.3a-complex.txt │ │ │ │ │ ├── armv8.3a-js.txt │ │ │ │ │ ├── armv8.3a-rcpc.txt │ │ │ │ │ ├── armv8.3a-signed-pointer.txt │ │ │ │ │ ├── basic-a64-instructions.txt │ │ │ │ │ ├── basic-a64-undefined.txt │ │ │ │ │ ├── basic-a64-unpredictable.txt │ │ │ │ │ ├── fullfp16-neg.txt │ │ │ │ │ ├── fullfp16-neon-neg.txt │ │ │ │ │ ├── gicv3-regs.txt │ │ │ │ │ ├── ldp-offset-predictable.txt │ │ │ │ │ ├── ldp-postind.predictable.txt │ │ │ │ │ ├── ldp-preind.predictable.txt │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── neon-instructions.txt │ │ │ │ │ ├── ras-extension.txt │ │ │ │ │ └── trace-regs.txt │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── aperture-regs.ll │ │ │ │ │ ├── dpp_vi.txt │ │ │ │ │ ├── ds_vi.txt │ │ │ │ │ ├── exp_vi.txt │ │ │ │ │ ├── flat_gfx9.txt │ │ │ │ │ ├── flat_vi.txt │ │ │ │ │ ├── gfx8_dasm_all.txt │ │ │ │ │ ├── gfx9_dasm_all.txt │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── literal16_vi.txt │ │ │ │ │ ├── mac.txt │ │ │ │ │ ├── mimg_vi.txt │ │ │ │ │ ├── mov.txt │ │ │ │ │ ├── mtbuf_vi.txt │ │ │ │ │ ├── mubuf_vi.txt │ │ │ │ │ ├── nop.txt │ │ │ │ │ ├── sdwa_gfx9.txt │ │ │ │ │ ├── sdwa_vi.txt │ │ │ │ │ ├── si-support.txt │ │ │ │ │ ├── smem_vi.txt │ │ │ │ │ ├── smrd_vi.txt │ │ │ │ │ ├── sop1_vi.txt │ │ │ │ │ ├── sop2_vi.txt │ │ │ │ │ ├── sopc_vi.txt │ │ │ │ │ ├── sopk_vi.txt │ │ │ │ │ ├── sopp_vi.txt │ │ │ │ │ ├── trap_gfx9.txt │ │ │ │ │ ├── trap_vi.txt │ │ │ │ │ ├── vintrp.txt │ │ │ │ │ ├── vop1.txt │ │ │ │ │ ├── vop1_gfx9.txt │ │ │ │ │ ├── vop1_vi.txt │ │ │ │ │ ├── vop2_vi.txt │ │ │ │ │ ├── vop3_gfx9.txt │ │ │ │ │ ├── vop3_vi.txt │ │ │ │ │ └── vopc_vi.txt │ │ │ │ ├── ARC │ │ │ │ │ ├── alu.txt │ │ │ │ │ ├── br.txt │ │ │ │ │ ├── compact.txt │ │ │ │ │ ├── ldst.txt │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── misc.txt │ │ │ │ ├── ARM │ │ │ │ │ ├── addrmode2-reencoding.txt │ │ │ │ │ ├── arm-LDREXD-reencoding.txt │ │ │ │ │ ├── arm-STREXD-reencoding.txt │ │ │ │ │ ├── arm-tests.txt │ │ │ │ │ ├── arm-thumb-trustzone.txt │ │ │ │ │ ├── arm-trustzone.txt │ │ │ │ │ ├── arm-vmrs_vmsr.txt │ │ │ │ │ ├── armv8.1a.txt │ │ │ │ │ ├── armv8.2a-dotprod-a32.s │ │ │ │ │ ├── armv8.2a-dotprod-t32.s │ │ │ │ │ ├── armv8.3a-js-arm.txt │ │ │ │ │ ├── armv8.3a-js-thumb.txt │ │ │ │ │ ├── basic-arm-instructions-v8.txt │ │ │ │ │ ├── basic-arm-instructions.txt │ │ │ │ │ ├── crc32-thumb.txt │ │ │ │ │ ├── crc32.txt │ │ │ │ │ ├── d16.txt │ │ │ │ │ ├── dfb-arm.txt │ │ │ │ │ ├── dfb-thumb.txt │ │ │ │ │ ├── fp-armv8.txt │ │ │ │ │ ├── fp-encoding.txt │ │ │ │ │ ├── fullfp16-arm-neg.txt │ │ │ │ │ ├── fullfp16-arm.txt │ │ │ │ │ ├── fullfp16-neon-arm-neg.txt │ │ │ │ │ ├── fullfp16-neon-arm.txt │ │ │ │ │ ├── fullfp16-neon-thumb-neg.txt │ │ │ │ │ ├── fullfp16-neon-thumb.txt │ │ │ │ │ ├── fullfp16-thumb-neg.txt │ │ │ │ │ ├── fullfp16-thumb.txt │ │ │ │ │ ├── hex-immediates.txt │ │ │ │ │ ├── invalid-FSTMX-arm.txt │ │ │ │ │ ├── invalid-IT-CC15.txt │ │ │ │ │ ├── invalid-armv7.txt │ │ │ │ │ ├── invalid-armv8.1a.txt │ │ │ │ │ ├── invalid-armv8.txt │ │ │ │ │ ├── invalid-because-armv7.txt │ │ │ │ │ ├── invalid-thumb-MSR-MClass.txt │ │ │ │ │ ├── invalid-thumbv7-xfail.txt │ │ │ │ │ ├── invalid-thumbv7.txt │ │ │ │ │ ├── invalid-thumbv8.1a.txt │ │ │ │ │ ├── invalid-thumbv8.txt │ │ │ │ │ ├── invalid-virtexts.arm.txt │ │ │ │ │ ├── ldrd-armv4.txt │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── load-store-acquire-release-v8-thumb.txt │ │ │ │ │ ├── load-store-acquire-release-v8.txt │ │ │ │ │ ├── marked-up-thumb.txt │ │ │ │ │ ├── memory-arm-instructions.txt │ │ │ │ │ ├── move-banked-regs-arm.txt │ │ │ │ │ ├── move-banked-regs-thumb.txt │ │ │ │ │ ├── neon-complex-arm.txt │ │ │ │ │ ├── neon-complex-thumb.txt │ │ │ │ │ ├── neon-crypto.txt │ │ │ │ │ ├── neon-tests.txt │ │ │ │ │ ├── neon-v8.txt │ │ │ │ │ ├── neon.txt │ │ │ │ │ ├── neont-VLD-reencoding.txt │ │ │ │ │ ├── neont-VST-reencoding.txt │ │ │ │ │ ├── neont2.txt │ │ │ │ │ ├── ras-extension-arm.txt │ │ │ │ │ ├── ras-extension-thumb.txt │ │ │ │ │ ├── thumb-MSR-MClass.txt │ │ │ │ │ ├── thumb-fp-armv8.txt │ │ │ │ │ ├── thumb-neon-crypto.txt │ │ │ │ │ ├── thumb-neon-v8.txt │ │ │ │ │ ├── thumb-printf.txt │ │ │ │ │ ├── thumb-tests.txt │ │ │ │ │ ├── thumb-v8.1a.txt │ │ │ │ │ ├── thumb-v8.txt │ │ │ │ │ ├── thumb-vmrs_vmsr.txt │ │ │ │ │ ├── thumb1.txt │ │ │ │ │ ├── thumb2-preloads.txt │ │ │ │ │ ├── thumb2-v8.txt │ │ │ │ │ ├── thumb2-v8m.txt │ │ │ │ │ ├── thumb2.txt │ │ │ │ │ ├── unpredictable-ADC-arm.txt │ │ │ │ │ ├── unpredictable-ADDREXT3-arm.txt │ │ │ │ │ ├── unpredictable-AExtI-arm.txt │ │ │ │ │ ├── unpredictable-AI1cmp-arm.txt │ │ │ │ │ ├── unpredictable-BFI.txt │ │ │ │ │ ├── unpredictable-LDR-arm.txt │ │ │ │ │ ├── unpredictable-LDRD-arm.txt │ │ │ │ │ ├── unpredictable-LSL-regform.txt │ │ │ │ │ ├── unpredictable-MRRC2-arm.txt │ │ │ │ │ ├── unpredictable-MRS-arm.txt │ │ │ │ │ ├── unpredictable-MUL-arm.txt │ │ │ │ │ ├── unpredictable-RSC-arm.txt │ │ │ │ │ ├── unpredictable-SEL-arm.txt │ │ │ │ │ ├── unpredictable-SHADD16-arm.txt │ │ │ │ │ ├── unpredictable-SSAT-arm.txt │ │ │ │ │ ├── unpredictable-STRBrs-arm.txt │ │ │ │ │ ├── unpredictable-UQADD8-arm.txt │ │ │ │ │ ├── unpredictable-swp-arm.txt │ │ │ │ │ ├── unpredictables-thumb.txt │ │ │ │ │ ├── vfp4.txt │ │ │ │ │ ├── virtexts-arm.txt │ │ │ │ │ └── virtexts-thumb.txt │ │ │ │ ├── Hexagon │ │ │ │ │ ├── alu32_alu.txt │ │ │ │ │ ├── alu32_perm.txt │ │ │ │ │ ├── alu32_pred.txt │ │ │ │ │ ├── cr.txt │ │ │ │ │ ├── invalid_packet.txt │ │ │ │ │ ├── j.txt │ │ │ │ │ ├── jr.txt │ │ │ │ │ ├── ld.txt │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── memop.txt │ │ │ │ │ ├── nv_j.txt │ │ │ │ │ ├── nv_st.txt │ │ │ │ │ ├── st.txt │ │ │ │ │ ├── system_user.txt │ │ │ │ │ ├── too_many_instructions.txt │ │ │ │ │ ├── too_many_loop_ends.txt │ │ │ │ │ ├── unextendable.txt │ │ │ │ │ ├── xtype_alu.txt │ │ │ │ │ ├── xtype_bit.txt │ │ │ │ │ ├── xtype_complex.txt │ │ │ │ │ ├── xtype_fp.txt │ │ │ │ │ ├── xtype_mpy.txt │ │ │ │ │ ├── xtype_perm.txt │ │ │ │ │ ├── xtype_pred.txt │ │ │ │ │ └── xtype_shift.txt │ │ │ │ ├── Lanai │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── v11.txt │ │ │ │ ├── Mips │ │ │ │ │ ├── dsp │ │ │ │ │ │ ├── valid-el.txt │ │ │ │ │ │ └── valid.txt │ │ │ │ │ ├── dspr2 │ │ │ │ │ │ └── valid.txt │ │ │ │ │ ├── eva │ │ │ │ │ │ ├── valid_R6-eva.txt │ │ │ │ │ │ └── valid_preR6-eva.txt │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── micromips-dsp │ │ │ │ │ │ ├── valid-micromips32r3.txt │ │ │ │ │ │ └── valid.txt │ │ │ │ │ ├── micromips-dspr2 │ │ │ │ │ │ └── valid.txt │ │ │ │ │ ├── micromips-dspr3 │ │ │ │ │ │ └── valid.txt │ │ │ │ │ ├── micromips32r3 │ │ │ │ │ │ ├── invalid.txt │ │ │ │ │ │ ├── valid-el.txt │ │ │ │ │ │ └── valid.txt │ │ │ │ │ ├── micromips32r6 │ │ │ │ │ │ └── valid.txt │ │ │ │ │ ├── mips1 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── invalid.txt │ │ │ │ │ │ ├── valid-mips1-el.txt │ │ │ │ │ │ ├── valid-mips1.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips2 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips2-el.txt │ │ │ │ │ │ ├── valid-mips2.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips3 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips3-el.txt │ │ │ │ │ │ ├── valid-mips3.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips32 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips32-el.txt │ │ │ │ │ │ ├── valid-mips32.txt │ │ │ │ │ │ ├── valid-xfail-mips32.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips32r2 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips32r2-el.txt │ │ │ │ │ │ ├── valid-mips32r2.txt │ │ │ │ │ │ ├── valid-xfail-mips32r2.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips32r3 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips32r3-el.txt │ │ │ │ │ │ ├── valid-mips32r3.txt │ │ │ │ │ │ ├── valid-xfail-mips32r3.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips32r5 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips32r5-el.txt │ │ │ │ │ │ ├── valid-mips32r5.txt │ │ │ │ │ │ ├── valid-xfail-mips32r5.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips32r6 │ │ │ │ │ │ ├── valid-mips32r6-el.txt │ │ │ │ │ │ ├── valid-mips32r6.txt │ │ │ │ │ │ └── valid-xfail-mips32r6.txt │ │ │ │ │ ├── mips4 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips4-el.txt │ │ │ │ │ │ ├── valid-mips4.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips64 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips64-el.txt │ │ │ │ │ │ ├── valid-mips64-xfail.txt │ │ │ │ │ │ ├── valid-mips64.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips64r2 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips64r2-el.txt │ │ │ │ │ │ ├── valid-mips64r2.txt │ │ │ │ │ │ ├── valid-xfail-mips64r2.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips64r3 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips64r3-el.txt │ │ │ │ │ │ ├── valid-mips64r3.txt │ │ │ │ │ │ ├── valid-xfail-mips64r3.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips64r5 │ │ │ │ │ │ ├── invalid-xfail.txt │ │ │ │ │ │ ├── valid-mips64r5-el.txt │ │ │ │ │ │ ├── valid-mips64r5.txt │ │ │ │ │ │ ├── valid-xfail-mips64r5.txt │ │ │ │ │ │ └── valid-xfail.txt │ │ │ │ │ ├── mips64r6 │ │ │ │ │ │ ├── valid-mips64r6-el.txt │ │ │ │ │ │ ├── valid-mips64r6.txt │ │ │ │ │ │ └── valid-xfail-mips64r6.txt │ │ │ │ │ ├── msa │ │ │ │ │ │ ├── test_2r.txt │ │ │ │ │ │ ├── test_2r_msa64.txt │ │ │ │ │ │ ├── test_2rf.txt │ │ │ │ │ │ ├── test_3r.txt │ │ │ │ │ │ ├── test_3rf.txt │ │ │ │ │ │ ├── test_bit.txt │ │ │ │ │ │ ├── test_ctrlregs.txt │ │ │ │ │ │ ├── test_dlsa.txt │ │ │ │ │ │ ├── test_elm.txt │ │ │ │ │ │ ├── test_elm_insert.txt │ │ │ │ │ │ ├── test_elm_insert_msa64.txt │ │ │ │ │ │ ├── test_elm_insve.txt │ │ │ │ │ │ ├── test_elm_msa64.txt │ │ │ │ │ │ ├── test_i10.txt │ │ │ │ │ │ ├── test_i5.txt │ │ │ │ │ │ ├── test_i8.txt │ │ │ │ │ │ ├── test_lsa.txt │ │ │ │ │ │ ├── test_mi10.txt │ │ │ │ │ │ └── test_vec.txt │ │ │ │ │ └── mt │ │ │ │ │ │ ├── valid-r2-el.txt │ │ │ │ │ │ └── valid-r2.txt │ │ │ │ ├── PowerPC │ │ │ │ │ ├── dcbt.txt │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── ppc32-extpid-e500.txt │ │ │ │ │ ├── ppc64-encoding-4xx.txt │ │ │ │ │ ├── ppc64-encoding-6xx.txt │ │ │ │ │ ├── ppc64-encoding-bookII.txt │ │ │ │ │ ├── ppc64-encoding-bookIII.txt │ │ │ │ │ ├── ppc64-encoding-e500.txt │ │ │ │ │ ├── ppc64-encoding-ext.txt │ │ │ │ │ ├── ppc64-encoding-fp.txt │ │ │ │ │ ├── ppc64-encoding-p8vector.txt │ │ │ │ │ ├── ppc64-encoding-p9vector.txt │ │ │ │ │ ├── ppc64-encoding-vmx.txt │ │ │ │ │ ├── ppc64-encoding.txt │ │ │ │ │ ├── ppc64-operands.txt │ │ │ │ │ ├── ppc64le-encoding.txt │ │ │ │ │ ├── qpx.txt │ │ │ │ │ └── vsx.txt │ │ │ │ ├── Sparc │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── sparc-fp.txt │ │ │ │ │ ├── sparc-mem.txt │ │ │ │ │ ├── sparc-special-registers.txt │ │ │ │ │ ├── sparc-v9.txt │ │ │ │ │ └── sparc.txt │ │ │ │ ├── SystemZ │ │ │ │ │ ├── insns-pcrel.txt │ │ │ │ │ ├── insns-z13-bad.txt │ │ │ │ │ ├── insns-z13.txt │ │ │ │ │ ├── insns-z14.txt │ │ │ │ │ ├── insns.txt │ │ │ │ │ ├── invalid-regs.txt │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── trunc-01.txt │ │ │ │ │ ├── trunc-02.txt │ │ │ │ │ ├── trunc-03.txt │ │ │ │ │ └── unmapped.txt │ │ │ │ └── XCore │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── xcore.txt │ │ │ ├── ELF │ │ │ │ ├── ARM │ │ │ │ │ ├── bss-non-zero-value.s │ │ │ │ │ ├── clang-section.s │ │ │ │ │ ├── directive-type-diagnostics.s │ │ │ │ │ ├── execute-only-section.s │ │ │ │ │ ├── gnu-type-hash-diagnostics.s │ │ │ │ │ ├── gnu-type-hash.s │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── abs.s │ │ │ │ ├── alias-reloc.s │ │ │ │ ├── alias-to-local.s │ │ │ │ ├── alias.s │ │ │ │ ├── align-bss.s │ │ │ │ ├── align-nops.s │ │ │ │ ├── align-size.s │ │ │ │ ├── align-text.s │ │ │ │ ├── align-zero.s │ │ │ │ ├── align.s │ │ │ │ ├── bad-expr.s │ │ │ │ ├── bad-expr2.s │ │ │ │ ├── bad-expr3.s │ │ │ │ ├── bad-relocation.s │ │ │ │ ├── bad-section.s │ │ │ │ ├── basic-elf-32.s │ │ │ │ ├── basic-elf-64.s │ │ │ │ ├── bracket-exprs.s │ │ │ │ ├── bracket.s │ │ │ │ ├── bss-large.ll │ │ │ │ ├── bss.ll │ │ │ │ ├── call-abs.s │ │ │ │ ├── cfi-adjust-cfa-offset.s │ │ │ │ ├── cfi-advance-loc2.s │ │ │ │ ├── cfi-def-cfa-offset.s │ │ │ │ ├── cfi-def-cfa-register.s │ │ │ │ ├── cfi-def-cfa.s │ │ │ │ ├── cfi-escape.s │ │ │ │ ├── cfi-large-model.s │ │ │ │ ├── cfi-offset.s │ │ │ │ ├── cfi-reg.s │ │ │ │ ├── cfi-register.s │ │ │ │ ├── cfi-rel-offset.s │ │ │ │ ├── cfi-rel-offset2.s │ │ │ │ ├── cfi-remember.s │ │ │ │ ├── cfi-restore.s │ │ │ │ ├── cfi-same-value.s │ │ │ │ ├── cfi-sections.s │ │ │ │ ├── cfi-signal-frame.s │ │ │ │ ├── cfi-undefined.s │ │ │ │ ├── cfi-version.ll │ │ │ │ ├── cfi-window-save.s │ │ │ │ ├── cfi-zero-addr-delta.s │ │ │ │ ├── cfi.s │ │ │ │ ├── comdat-declaration-errors.s │ │ │ │ ├── comdat-dup-group-name.s │ │ │ │ ├── comdat-name-number.s │ │ │ │ ├── comdat-reloc.s │ │ │ │ ├── comdat.s │ │ │ │ ├── common-error1.s │ │ │ │ ├── common-error2.s │ │ │ │ ├── common-error3.s │ │ │ │ ├── common-redeclare.s │ │ │ │ ├── common.s │ │ │ │ ├── common2.s │ │ │ │ ├── comp-dir.s │ │ │ │ ├── compression.s │ │ │ │ ├── debug-line.s │ │ │ │ ├── debug-line2.s │ │ │ │ ├── debug-loc.s │ │ │ │ ├── diff.s │ │ │ │ ├── diff2.s │ │ │ │ ├── discriminator.s │ │ │ │ ├── div-by-zero.s │ │ │ │ ├── dot-symbol-assignment.s │ │ │ │ ├── elf_directive_previous.s │ │ │ │ ├── elf_directive_section.s │ │ │ │ ├── empty-dwarf-lines.s │ │ │ │ ├── empty-twice.ll │ │ │ │ ├── empty.s │ │ │ │ ├── entsize.ll │ │ │ │ ├── entsize.s │ │ │ │ ├── fde.s │ │ │ │ ├── file-double.s │ │ │ │ ├── file.s │ │ │ │ ├── gen-dwarf.s │ │ │ │ ├── global-offset.s │ │ │ │ ├── gnu-type-diagnostics.s │ │ │ │ ├── gnu-type.s │ │ │ │ ├── got-relaxed-i386.s │ │ │ │ ├── got-relaxed-no-relax.s │ │ │ │ ├── got-relaxed-rex.s │ │ │ │ ├── got-relaxed.s │ │ │ │ ├── got.s │ │ │ │ ├── ident.s │ │ │ │ ├── ifunc-reloc.s │ │ │ │ ├── invalid-symver.s │ │ │ │ ├── lcomm.s │ │ │ │ ├── leb128.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── local-reloc.s │ │ │ │ ├── many-sections-2.s │ │ │ │ ├── many-sections-3.s │ │ │ │ ├── many-sections.s │ │ │ │ ├── merge.s │ │ │ │ ├── metadata-declaration-errors.s │ │ │ │ ├── n_bytes.s │ │ │ │ ├── no-fixup.s │ │ │ │ ├── no-reloc.s │ │ │ │ ├── nocompression.s │ │ │ │ ├── noexec.s │ │ │ │ ├── norelocation.s │ │ │ │ ├── offset.s │ │ │ │ ├── org.s │ │ │ │ ├── pic-diff.s │ │ │ │ ├── plt.s │ │ │ │ ├── popsection.s │ │ │ │ ├── pr19430.s │ │ │ │ ├── pr19582.s │ │ │ │ ├── pr9292.s │ │ │ │ ├── relax-all-flag.s │ │ │ │ ├── relax-arith.s │ │ │ │ ├── relax-arith2.s │ │ │ │ ├── relax-arith3.s │ │ │ │ ├── relax-arith4.s │ │ │ │ ├── relax-crash.s │ │ │ │ ├── relax.s │ │ │ │ ├── reloc-same-name-section.s │ │ │ │ ├── relocation-386.s │ │ │ │ ├── relocation-pc.s │ │ │ │ ├── relocation-tls.s │ │ │ │ ├── relocation.s │ │ │ │ ├── rename.s │ │ │ │ ├── section-metadata-err1.s │ │ │ │ ├── section-metadata-err2.s │ │ │ │ ├── section-metadata-err3.s │ │ │ │ ├── section-metadata-err4.s │ │ │ │ ├── section-numeric-flag.s │ │ │ │ ├── section-numeric-invalid-type.s │ │ │ │ ├── section-numeric-type.s │ │ │ │ ├── section-quoting.s │ │ │ │ ├── section-sym-err.s │ │ │ │ ├── section-sym-err2.s │ │ │ │ ├── section-sym.s │ │ │ │ ├── section-sym2.s │ │ │ │ ├── section-unique-err1.s │ │ │ │ ├── section-unique-err2.s │ │ │ │ ├── section-unique-err3.s │ │ │ │ ├── section-unique-err4.s │ │ │ │ ├── section-unique.s │ │ │ │ ├── section.s │ │ │ │ ├── set.s │ │ │ │ ├── size.s │ │ │ │ ├── sleb.s │ │ │ │ ├── strtab-suffix-opt.s │ │ │ │ ├── subsection.s │ │ │ │ ├── subtraction-error.s │ │ │ │ ├── symbol-names.s │ │ │ │ ├── symver-msvc.s │ │ │ │ ├── symver-pr23914.s │ │ │ │ ├── symver.s │ │ │ │ ├── tls-i386.s │ │ │ │ ├── tls.s │ │ │ │ ├── type-propagate.s │ │ │ │ ├── type.s │ │ │ │ ├── uleb.s │ │ │ │ ├── undef-temp.s │ │ │ │ ├── undef.s │ │ │ │ ├── undefined-directional.s │ │ │ │ ├── version.s │ │ │ │ ├── weak-diff.s │ │ │ │ ├── weak-relocation.s │ │ │ │ ├── weak.s │ │ │ │ ├── weakref-plt.s │ │ │ │ ├── weakref-reloc.s │ │ │ │ ├── weakref.s │ │ │ │ ├── x86_64-reloc-sizetest.s │ │ │ │ └── zero.s │ │ │ ├── Hexagon │ │ │ │ ├── PacketRules │ │ │ │ │ ├── endloop_branches.s │ │ │ │ │ ├── registers_readonly.s │ │ │ │ │ ├── restrict_ax.s │ │ │ │ │ └── solo.s │ │ │ │ ├── align.s │ │ │ │ ├── asmMap.s │ │ │ │ ├── basic.ll │ │ │ │ ├── bug20416.s │ │ │ │ ├── capitalizedEndloop.s │ │ │ │ ├── common-redeclare.s │ │ │ │ ├── dcfetch-symbol.s │ │ │ │ ├── dcfetch.s │ │ │ │ ├── dealloc-return-jump.s │ │ │ │ ├── decode_acc_type.s │ │ │ │ ├── dis-duplex-p0.s │ │ │ │ ├── double-vector-producer.s │ │ │ │ ├── duplex-addi-global-imm.s │ │ │ │ ├── duplex-registers.s │ │ │ │ ├── elf-flags.s │ │ │ │ ├── empty_asm.s │ │ │ │ ├── equ.s │ │ │ │ ├── ext-callt-rel.s │ │ │ │ ├── extended_relocations.ll │ │ │ │ ├── extender.s │ │ │ │ ├── fixups.s │ │ │ │ ├── got.s │ │ │ │ ├── hvx-double-implies-hvx.s │ │ │ │ ├── iconst.s │ │ │ │ ├── inst_add.ll │ │ │ │ ├── inst_add64.ll │ │ │ │ ├── inst_and.ll │ │ │ │ ├── inst_and64.ll │ │ │ │ ├── inst_aslh.ll │ │ │ │ ├── inst_asrh.ll │ │ │ │ ├── inst_cmp_eq.ll │ │ │ │ ├── inst_cmp_eqi.ll │ │ │ │ ├── inst_cmp_gt.ll │ │ │ │ ├── inst_cmp_gti.ll │ │ │ │ ├── inst_cmp_lt.ll │ │ │ │ ├── inst_cmp_ugt.ll │ │ │ │ ├── inst_cmp_ugti.ll │ │ │ │ ├── inst_cmp_ult.ll │ │ │ │ ├── inst_or.ll │ │ │ │ ├── inst_or64.ll │ │ │ │ ├── inst_select.ll │ │ │ │ ├── inst_sub.ll │ │ │ │ ├── inst_sub64.ll │ │ │ │ ├── inst_sxtb.ll │ │ │ │ ├── inst_sxth.ll │ │ │ │ ├── inst_xor.ll │ │ │ │ ├── inst_xor64.ll │ │ │ │ ├── inst_zxtb.ll │ │ │ │ ├── inst_zxth.ll │ │ │ │ ├── instructions │ │ │ │ │ ├── alu32_alu.s │ │ │ │ │ ├── alu32_perm.s │ │ │ │ │ ├── alu32_pred.s │ │ │ │ │ ├── cr.s │ │ │ │ │ ├── j.s │ │ │ │ │ ├── jr.s │ │ │ │ │ ├── ld.s │ │ │ │ │ ├── memop.s │ │ │ │ │ ├── nv_j.s │ │ │ │ │ ├── nv_st.s │ │ │ │ │ ├── st.s │ │ │ │ │ ├── system_user.s │ │ │ │ │ ├── xtype_alu.s │ │ │ │ │ ├── xtype_bit.s │ │ │ │ │ ├── xtype_complex.s │ │ │ │ │ ├── xtype_fp.s │ │ │ │ │ ├── xtype_mpy.s │ │ │ │ │ ├── xtype_perm.s │ │ │ │ │ ├── xtype_pred.s │ │ │ │ │ └── xtype_shift.s │ │ │ │ ├── jumpdoublepound.s │ │ │ │ ├── labels.s │ │ │ │ ├── lcomm.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── load-GPRel.s │ │ │ │ ├── missing_label.s │ │ │ │ ├── multiple_errs.s │ │ │ │ ├── new-value-check.s │ │ │ │ ├── non-relocatable.s │ │ │ │ ├── not-over.s │ │ │ │ ├── not_found.s │ │ │ │ ├── offset.s │ │ │ │ ├── operand-range.s │ │ │ │ ├── out_of_range.s │ │ │ │ ├── parse-pound-hi.s │ │ │ │ ├── pcrel.s │ │ │ │ ├── plt-rel.s │ │ │ │ ├── reg_altnames.s │ │ │ │ ├── register-alt-names.s │ │ │ │ ├── registers_readonly.s │ │ │ │ ├── relaxed_newvalue.s │ │ │ │ ├── relocations.s │ │ │ │ ├── ro-c9.s │ │ │ │ ├── ro-cc9.s │ │ │ │ ├── solo-axok.s │ │ │ │ ├── store-GPRel.s │ │ │ │ ├── test.s │ │ │ │ ├── tprel_noextend.s │ │ │ │ ├── two-extenders.s │ │ │ │ ├── two_ext.s │ │ │ │ ├── v60-alu.s │ │ │ │ ├── v60-misc.s │ │ │ │ ├── v60-permute.s │ │ │ │ ├── v60-shift.s │ │ │ │ ├── v60-vcmp.s │ │ │ │ ├── v60-vmem.s │ │ │ │ ├── v60-vmpy-acc.s │ │ │ │ ├── v60-vmpy1.s │ │ │ │ ├── v60lookup.s │ │ │ │ ├── v62_all.s │ │ │ │ ├── v62_jumps.s │ │ │ │ ├── v62a.s │ │ │ │ ├── v62a_regs.s │ │ │ │ ├── v65_all.s │ │ │ │ ├── vpred_defs.s │ │ │ │ ├── vscatter-slot.s │ │ │ │ └── vtmp_def.s │ │ │ ├── Lanai │ │ │ │ ├── conditional_inst.s │ │ │ │ ├── ctrl-instructions.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── memory.s │ │ │ │ └── v11.s │ │ │ ├── MachO │ │ │ │ ├── AArch64 │ │ │ │ │ ├── classrefs.s │ │ │ │ │ ├── cstexpr-gotpcrel.ll │ │ │ │ │ ├── darwin-ARM64-local-label-diff.s │ │ │ │ │ ├── darwin-ARM64-reloc.s │ │ │ │ │ ├── data-in-code.s │ │ │ │ │ ├── ld64-workaround.s │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── mergeable.s │ │ │ │ │ ├── reloc-crash.s │ │ │ │ │ ├── reloc-crash2.s │ │ │ │ │ └── reloc-errors.s │ │ │ │ ├── ARM │ │ │ │ │ ├── aliased-symbols.s │ │ │ │ │ ├── bad-darwin-ARM-reloc.s │ │ │ │ │ ├── bad-darwin-directives.s │ │ │ │ │ ├── build-version-diagnostics.s │ │ │ │ │ ├── build-version-encode.s │ │ │ │ │ ├── build-version.s │ │ │ │ │ ├── compact-unwind-armv7k.s │ │ │ │ │ ├── cstexpr-gotpcrel.ll │ │ │ │ │ ├── darwin-ARM-reloc.s │ │ │ │ │ ├── darwin-Thumb-reloc.s │ │ │ │ │ ├── data-in-code.s │ │ │ │ │ ├── directive-type-diagnostics.s │ │ │ │ │ ├── empty-function-nop.ll │ │ │ │ │ ├── ios-version-min-load-command.s │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── llvm-objdump-macho-stripped.s │ │ │ │ │ ├── llvm-objdump-macho.s │ │ │ │ │ ├── long-call-branch-island-relocation.s │ │ │ │ │ ├── no-subsections-reloc.s │ │ │ │ │ ├── no-tls-assert.ll │ │ │ │ │ ├── nop-armv4-padding.s │ │ │ │ │ ├── nop-armv6t2-padding.s │ │ │ │ │ ├── nop-thumb-padding.s │ │ │ │ │ ├── nop-thumb2-padding.s │ │ │ │ │ ├── relax-thumb-ldr-literal.s │ │ │ │ │ ├── relax-thumb2-branches.s │ │ │ │ │ ├── static-movt-relocs.s │ │ │ │ │ ├── thumb-bl-jbits.s │ │ │ │ │ ├── thumb2-function-relative-load.s │ │ │ │ │ ├── thumb2-movt-fixup.s │ │ │ │ │ ├── thumb2-movw-fixup.s │ │ │ │ │ ├── tvos-version-min-load-command.s │ │ │ │ │ ├── version-min-diagnostics.s │ │ │ │ │ ├── version-min-diagnostics2.s │ │ │ │ │ ├── version-min.s │ │ │ │ │ └── watchos-version-min-load-command.s │ │ │ │ ├── PowerPC │ │ │ │ │ ├── coal-sections-powerpc.s │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── absolute.s │ │ │ │ ├── absolutize.s │ │ │ │ ├── alias.s │ │ │ │ ├── altentry.s │ │ │ │ ├── bad-darwin-x86_64-32-bit-abs-addr.s │ │ │ │ ├── bad-darwin-x86_64-diff-relocs.s │ │ │ │ ├── bad-darwin-x86_64-reloc-expr.s │ │ │ │ ├── bad-dollar.s │ │ │ │ ├── bad-indirect-symbols.s │ │ │ │ ├── bad-macro.s │ │ │ │ ├── bss.s │ │ │ │ ├── coal-sections-x86_64.s │ │ │ │ ├── comm-1.s │ │ │ │ ├── cstexpr-gotpcrel-32.ll │ │ │ │ ├── cstexpr-gotpcrel-64.ll │ │ │ │ ├── darwin-complex-difference.s │ │ │ │ ├── darwin-version-min-load-command.s │ │ │ │ ├── darwin-x86_64-diff-reloc-assign-2.s │ │ │ │ ├── darwin-x86_64-diff-reloc-assign.s │ │ │ │ ├── darwin-x86_64-diff-relocs.s │ │ │ │ ├── darwin-x86_64-nobase-relocs.s │ │ │ │ ├── darwin-x86_64-reloc-offsets.s │ │ │ │ ├── darwin-x86_64-reloc.s │ │ │ │ ├── data.s │ │ │ │ ├── debug_frame.s │ │ │ │ ├── diff-with-two-sections.s │ │ │ │ ├── direction_labels.s │ │ │ │ ├── eh-frame-reloc.s │ │ │ │ ├── eh_symbol.s │ │ │ │ ├── empty-twice.ll │ │ │ │ ├── file.s │ │ │ │ ├── gen-dwarf-cpp.s │ │ │ │ ├── gen-dwarf-macro-cpp.s │ │ │ │ ├── gen-dwarf-producer.s │ │ │ │ ├── gen-dwarf.s │ │ │ │ ├── i386-large-relocations.s │ │ │ │ ├── indirect-symbols.s │ │ │ │ ├── jcc.s │ │ │ │ ├── lcomm-attributes.s │ │ │ │ ├── linker-option-1.s │ │ │ │ ├── linker-option-2.s │ │ │ │ ├── linker-options.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── loc.s │ │ │ │ ├── osx-version-min-load-command.s │ │ │ │ ├── pcrel-to-other-section.s │ │ │ │ ├── pr19185.s │ │ │ │ ├── previous.s │ │ │ │ ├── pushsection.s │ │ │ │ ├── relax-jumps.s │ │ │ │ ├── relax-recompute-align.s │ │ │ │ ├── reloc-diff.s │ │ │ │ ├── reloc-pcrel-offset.s │ │ │ │ ├── reloc-pcrel.s │ │ │ │ ├── reloc.s │ │ │ │ ├── section-align-1.s │ │ │ │ ├── section-align-2.s │ │ │ │ ├── section-attributes.s │ │ │ │ ├── section-flags.s │ │ │ │ ├── string-table.s │ │ │ │ ├── symbol-diff.s │ │ │ │ ├── symbol-flags.s │ │ │ │ ├── symbol-indirect.s │ │ │ │ ├── symbols-1.s │ │ │ │ ├── tbss.s │ │ │ │ ├── tdata.s │ │ │ │ ├── temp-labels.s │ │ │ │ ├── thread_init_func.s │ │ │ │ ├── tls.s │ │ │ │ ├── tlv-bss.ll │ │ │ │ ├── tlv-reloc.s │ │ │ │ ├── tlv.s │ │ │ │ ├── undefined-directional.s │ │ │ │ ├── values.s │ │ │ │ ├── variable-errors.s │ │ │ │ ├── variable-exprs.s │ │ │ │ ├── weakdef.s │ │ │ │ ├── x86-data-in-code.s │ │ │ │ ├── x86_32-optimal_nop.s │ │ │ │ ├── x86_32-scattered-reloc-fallback.s │ │ │ │ ├── x86_32-sections.s │ │ │ │ ├── x86_32-symbols.s │ │ │ │ ├── x86_64-mergeable.s │ │ │ │ ├── x86_64-reloc-arithmetic.s │ │ │ │ ├── x86_64-sections.s │ │ │ │ ├── x86_64-symbols.s │ │ │ │ ├── zerofill-1.s │ │ │ │ ├── zerofill-2.s │ │ │ │ ├── zerofill-3.s │ │ │ │ ├── zerofill-4.s │ │ │ │ ├── zerofill-5.s │ │ │ │ └── zerofill-sect-align.s │ │ │ ├── Markup │ │ │ │ ├── basic-markup.mc │ │ │ │ └── lit.local.cfg │ │ │ ├── Mips │ │ │ │ ├── addend.s │ │ │ │ ├── asciiz-directive-bad.s │ │ │ │ ├── asciiz-directive.s │ │ │ │ ├── bopt-directive.s │ │ │ │ ├── branch-pseudos-bad.s │ │ │ │ ├── branch-pseudos.s │ │ │ │ ├── cfi-advance-loc.s │ │ │ │ ├── cfi.s │ │ │ │ ├── cnmips │ │ │ │ │ └── invalid.s │ │ │ │ ├── cpload-bad.s │ │ │ │ ├── cpload.s │ │ │ │ ├── cprestore-bad.s │ │ │ │ ├── cprestore-noreorder-noat.s │ │ │ │ ├── cprestore-noreorder.s │ │ │ │ ├── cprestore-reorder.s │ │ │ │ ├── cprestore-warning-unused.s │ │ │ │ ├── cpsetup-bad.s │ │ │ │ ├── cpsetup.s │ │ │ │ ├── directive-ent.s │ │ │ │ ├── do_switch1.s │ │ │ │ ├── do_switch2.s │ │ │ │ ├── do_switch3.s │ │ │ │ ├── double-expand.s │ │ │ │ ├── dsp │ │ │ │ │ ├── invalid.s │ │ │ │ │ └── valid.s │ │ │ │ ├── dspr2 │ │ │ │ │ ├── invalid.s │ │ │ │ │ └── valid.s │ │ │ │ ├── eh-frame.s │ │ │ │ ├── elf-N32.s │ │ │ │ ├── elf-N64.s │ │ │ │ ├── elf-bigendian.ll │ │ │ │ ├── elf-debug-section.s │ │ │ │ ├── elf-gprel-32-64.s │ │ │ │ ├── elf-relsym.s │ │ │ │ ├── elf-tls.s │ │ │ │ ├── elf_basic.s │ │ │ │ ├── elf_eflags.s │ │ │ │ ├── elf_eflags_abicalls.s │ │ │ │ ├── elf_eflags_micromips.s │ │ │ │ ├── elf_eflags_micromips2.s │ │ │ │ ├── elf_eflags_mips16.s │ │ │ │ ├── elf_eflags_nan2008.s │ │ │ │ ├── elf_eflags_nanlegacy.s │ │ │ │ ├── elf_eflags_noreorder.s │ │ │ │ ├── elf_eflags_pic0.s │ │ │ │ ├── elf_eflags_pic2.s │ │ │ │ ├── elf_header.s │ │ │ │ ├── elf_reginfo.s │ │ │ │ ├── elf_st_other.s │ │ │ │ ├── end-directive.s │ │ │ │ ├── eva │ │ │ │ │ ├── invalid-noeva-wrong-error.s │ │ │ │ │ ├── invalid-noeva.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── invalid_R6.s │ │ │ │ │ ├── valid_R6.s │ │ │ │ │ └── valid_preR6.s │ │ │ │ ├── expansion-j-sym-pic.s │ │ │ │ ├── expansion-jal-sym-pic.s │ │ │ │ ├── expr1.s │ │ │ │ ├── got-rel-expr.s │ │ │ │ ├── hex-immediates.s │ │ │ │ ├── higher-highest-addressing.s │ │ │ │ ├── hilo-addressing.s │ │ │ │ ├── init-order-bug.ll │ │ │ │ ├── insn-directive.s │ │ │ │ ├── instalias-imm-expanding.s │ │ │ │ ├── instr-analysis.s │ │ │ │ ├── j-macro-insn.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── llvm-mc-fixup-endianness.s │ │ │ │ ├── macro-abs.s │ │ │ │ ├── macro-aliases-invalid-wrong-error.s │ │ │ │ ├── macro-aliases.s │ │ │ │ ├── macro-bcc-imm-bad.s │ │ │ │ ├── macro-bcc-imm.s │ │ │ │ ├── macro-ddiv-bad.s │ │ │ │ ├── macro-ddiv.s │ │ │ │ ├── macro-ddivu-bad.s │ │ │ │ ├── macro-ddivu.s │ │ │ │ ├── macro-div-bad.s │ │ │ │ ├── macro-div.s │ │ │ │ ├── macro-divu-bad.s │ │ │ │ ├── macro-divu.s │ │ │ │ ├── macro-dla-32bit.s │ │ │ │ ├── macro-dla-bad.s │ │ │ │ ├── macro-dla-pic.s │ │ │ │ ├── macro-dla.s │ │ │ │ ├── macro-dli.s │ │ │ │ ├── macro-la-bad.s │ │ │ │ ├── macro-la-pic.s │ │ │ │ ├── macro-la.s │ │ │ │ ├── macro-ld-sd.s │ │ │ │ ├── macro-li-bad.s │ │ │ │ ├── macro-li.d.s │ │ │ │ ├── macro-li.s │ │ │ │ ├── macro-li.s.s │ │ │ │ ├── macro-seq.s │ │ │ │ ├── memory-offsets.s │ │ │ │ ├── micromips-16-bit-instructions.s │ │ │ │ ├── micromips-alias.s │ │ │ │ ├── micromips-alu-instructions.s │ │ │ │ ├── micromips-ase-directive.s │ │ │ │ ├── micromips-bad-branches.s │ │ │ │ ├── micromips-branch-fixup.s │ │ │ │ ├── micromips-branch-instructions.s │ │ │ │ ├── micromips-control-instructions.s │ │ │ │ ├── micromips-diagnostic-fixup.s │ │ │ │ ├── micromips-dsp │ │ │ │ │ ├── invalid-wrong-error.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── valid-micromips32r3.s │ │ │ │ │ └── valid.s │ │ │ │ ├── micromips-dspr2 │ │ │ │ │ ├── invalid.s │ │ │ │ │ └── valid.s │ │ │ │ ├── micromips-dspr3 │ │ │ │ │ └── valid.s │ │ │ │ ├── micromips-el-fixup-data.s │ │ │ │ ├── micromips-expansions.s │ │ │ │ ├── micromips-fpu-instructions.s │ │ │ │ ├── micromips-func-addr.s │ │ │ │ ├── micromips-invalid.s │ │ │ │ ├── micromips-jump-instructions.s │ │ │ │ ├── micromips-jump26.s │ │ │ │ ├── micromips-label-test-sections.s │ │ │ │ ├── micromips-label-test.s │ │ │ │ ├── micromips-loadstore-instructions.s │ │ │ │ ├── micromips-loadstore-unaligned.s │ │ │ │ ├── micromips-movcond-instructions.s │ │ │ │ ├── micromips-multiply-instructions.s │ │ │ │ ├── micromips-neg-offset.s │ │ │ │ ├── micromips-pc16-fixup.s │ │ │ │ ├── micromips-relocations.s │ │ │ │ ├── micromips-shift-instructions.s │ │ │ │ ├── micromips-tailr.s │ │ │ │ ├── micromips-trap-instructions.s │ │ │ │ ├── micromips │ │ │ │ │ ├── invalid-wrong-error.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ └── valid.s │ │ │ │ ├── micromips32r6 │ │ │ │ │ ├── invalid-wrong-error.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── relocations.s │ │ │ │ │ └── valid.s │ │ │ │ ├── micromips64r6-unsupported.s │ │ │ │ ├── mips-abi-bad.s │ │ │ │ ├── mips-alu-instructions.s │ │ │ │ ├── mips-bad-branches.s │ │ │ │ ├── mips-control-instructions.s │ │ │ │ ├── mips-cop0-reginfo.s │ │ │ │ ├── mips-coprocessor-encodings.s │ │ │ │ ├── mips-data-directives.s │ │ │ │ ├── mips-diagnostic-fixup.s │ │ │ │ ├── mips-expansions-bad.s │ │ │ │ ├── mips-expansions.s │ │ │ │ ├── mips-fpu-instructions.s │ │ │ │ ├── mips-hwr-register-names.s │ │ │ │ ├── mips-jump-delay-slots.s │ │ │ │ ├── mips-jump-instructions.s │ │ │ │ ├── mips-memory-instructions.s │ │ │ │ ├── mips-noat.s │ │ │ │ ├── mips-pc16-fixup.s │ │ │ │ ├── mips-pdr-bad.s │ │ │ │ ├── mips-pdr.s │ │ │ │ ├── mips-rdata.s │ │ │ │ ├── mips-reginfo-fp32.s │ │ │ │ ├── mips-reginfo-fp64.s │ │ │ │ ├── mips-register-names-invalid.s │ │ │ │ ├── mips-register-names-o32.s │ │ │ │ ├── mips1 │ │ │ │ │ ├── invalid-mips2-wrong-error.s │ │ │ │ │ ├── invalid-mips2.s │ │ │ │ │ ├── invalid-mips3-wrong-error.s │ │ │ │ │ ├── invalid-mips3.s │ │ │ │ │ ├── invalid-mips32.s │ │ │ │ │ ├── invalid-mips32r2.s │ │ │ │ │ ├── invalid-mips4-wrong-error.s │ │ │ │ │ ├── invalid-mips4.s │ │ │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ │ │ ├── invalid-mips5.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips2 │ │ │ │ │ ├── invalid-mips3-wrong-error.s │ │ │ │ │ ├── invalid-mips3.s │ │ │ │ │ ├── invalid-mips32.s │ │ │ │ │ ├── invalid-mips32r2-xfail.s │ │ │ │ │ ├── invalid-mips32r2.s │ │ │ │ │ ├── invalid-mips4-wrong-error.s │ │ │ │ │ ├── invalid-mips4.s │ │ │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ │ │ ├── invalid-mips5.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips3 │ │ │ │ │ ├── invalid-mips32.s │ │ │ │ │ ├── invalid-mips32r2.s │ │ │ │ │ ├── invalid-mips4.s │ │ │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ │ │ ├── invalid-mips5.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips32 │ │ │ │ │ ├── abiflags.s │ │ │ │ │ ├── invalid-mips32r2-xfail.s │ │ │ │ │ ├── invalid-mips32r2.s │ │ │ │ │ ├── invalid-mips64.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips32r2 │ │ │ │ │ ├── abiflags.s │ │ │ │ │ ├── invalid-dsp.s │ │ │ │ │ ├── invalid-dspr2.s │ │ │ │ │ ├── invalid-mips64r2.s │ │ │ │ │ ├── invalid-msa.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips32r3 │ │ │ │ │ ├── abiflags.s │ │ │ │ │ ├── invalid-mips64r2.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips32r5 │ │ │ │ │ ├── abiflags.s │ │ │ │ │ ├── invalid-mips32.s │ │ │ │ │ ├── invalid-mips32r2.s │ │ │ │ │ ├── invalid-mips32r3.s │ │ │ │ │ ├── invalid-mips64r2.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips32r6 │ │ │ │ │ ├── invalid-mips1-wrong-error.s │ │ │ │ │ ├── invalid-mips1.s │ │ │ │ │ ├── invalid-mips2-wrong-error.s │ │ │ │ │ ├── invalid-mips2.s │ │ │ │ │ ├── invalid-mips32-wrong-error.s │ │ │ │ │ ├── invalid-mips32.s │ │ │ │ │ ├── invalid-mips32r2.s │ │ │ │ │ ├── invalid-mips4-wrong-error.s │ │ │ │ │ ├── invalid-mips4.s │ │ │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ │ │ ├── invalid-mips5.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── relocations.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips4 │ │ │ │ │ ├── invalid-mips32.s │ │ │ │ │ ├── invalid-mips32r2.s │ │ │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ │ │ ├── invalid-mips5.s │ │ │ │ │ ├── invalid-mips64.s │ │ │ │ │ ├── invalid-mips64r2-xfail.s │ │ │ │ │ ├── invalid-mips64r2.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips5 │ │ │ │ │ ├── invalid-mips32.s │ │ │ │ │ ├── invalid-mips32r2.s │ │ │ │ │ ├── invalid-mips64.s │ │ │ │ │ ├── invalid-mips64r2-xfail.s │ │ │ │ │ ├── invalid-mips64r2.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips64-alu-instructions.s │ │ │ │ ├── mips64-expansions.s │ │ │ │ ├── mips64-instalias-imm-expanding.s │ │ │ │ ├── mips64-instructions.s │ │ │ │ ├── mips64-register-names-n32-n64.s │ │ │ │ ├── mips64-register-names-o32.s │ │ │ │ ├── mips64 │ │ │ │ │ ├── abiflags.s │ │ │ │ │ ├── invalid-mips32r2.s │ │ │ │ │ ├── invalid-mips64r2-xfail.s │ │ │ │ │ ├── invalid-mips64r2.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips64eb-fixups.s │ │ │ │ ├── mips64extins.s │ │ │ │ ├── mips64r2 │ │ │ │ │ ├── abi-bad.s │ │ │ │ │ ├── abiflags.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips64r3 │ │ │ │ │ ├── abi-bad.s │ │ │ │ │ ├── abiflags.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips64r5 │ │ │ │ │ ├── abi-bad.s │ │ │ │ │ ├── abiflags.s │ │ │ │ │ ├── invalid-mips64.s │ │ │ │ │ ├── invalid-mips64r2.s │ │ │ │ │ ├── invalid-mips64r3.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── valid-xfail.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips64r6 │ │ │ │ │ ├── invalid-mips1-wrong-error.s │ │ │ │ │ ├── invalid-mips1.s │ │ │ │ │ ├── invalid-mips2.s │ │ │ │ │ ├── invalid-mips3-wrong-error.s │ │ │ │ │ ├── invalid-mips3.s │ │ │ │ │ ├── invalid-mips32-wrong-error.s │ │ │ │ │ ├── invalid-mips4-wrong-error.s │ │ │ │ │ ├── invalid-mips4.s │ │ │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ │ │ ├── invalid-mips5.s │ │ │ │ │ ├── invalid-mips64.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── relocations.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mips64shift.ll │ │ │ │ ├── mips_abi_flags_xx.s │ │ │ │ ├── mips_abi_flags_xx_set.s │ │ │ │ ├── mips_directives.s │ │ │ │ ├── mips_directives_bad.s │ │ │ │ ├── mips_gprel16.s │ │ │ │ ├── module-directive-bad.s │ │ │ │ ├── module-hardfloat.s │ │ │ │ ├── module-softfloat.s │ │ │ │ ├── msa │ │ │ │ │ ├── abiflags.s │ │ │ │ │ ├── invalid-64.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── set-msa-directive-bad.s │ │ │ │ │ ├── set-msa-directive.s │ │ │ │ │ ├── test_2r.s │ │ │ │ │ ├── test_2r_msa64.s │ │ │ │ │ ├── test_2rf.s │ │ │ │ │ ├── test_3r.s │ │ │ │ │ ├── test_3rf.s │ │ │ │ │ ├── test_bit.s │ │ │ │ │ ├── test_cbranch.s │ │ │ │ │ ├── test_ctrlregs.s │ │ │ │ │ ├── test_dlsa.s │ │ │ │ │ ├── test_elm.s │ │ │ │ │ ├── test_elm_insert.s │ │ │ │ │ ├── test_elm_insert_msa64.s │ │ │ │ │ ├── test_elm_insve.s │ │ │ │ │ ├── test_elm_msa64.s │ │ │ │ │ ├── test_i10.s │ │ │ │ │ ├── test_i5.s │ │ │ │ │ ├── test_i8.s │ │ │ │ │ ├── test_lsa.s │ │ │ │ │ ├── test_mi10.s │ │ │ │ │ └── test_vec.s │ │ │ │ ├── mt │ │ │ │ │ ├── abiflag.s │ │ │ │ │ ├── invalid-wrong-error.s │ │ │ │ │ ├── invalid.s │ │ │ │ │ ├── mftr-mttr-aliases-invalid-wrong-error.s │ │ │ │ │ ├── mftr-mttr-aliases-invalid.s │ │ │ │ │ ├── mftr-mttr-aliases.s │ │ │ │ │ ├── mftr-mttr-reserved-valid.s │ │ │ │ │ ├── module-directive-invalid.s │ │ │ │ │ ├── module-directive.s │ │ │ │ │ ├── set-directive.s │ │ │ │ │ └── valid.s │ │ │ │ ├── mul-macro-variants.s │ │ │ │ ├── multi-64bit-func.ll │ │ │ │ ├── nabi-regs.s │ │ │ │ ├── nacl-mask.s │ │ │ │ ├── nooddspreg-cmdarg.s │ │ │ │ ├── nooddspreg-error.s │ │ │ │ ├── nooddspreg.s │ │ │ │ ├── octeon-instructions.s │ │ │ │ ├── oddspreg.s │ │ │ │ ├── pr11877.s │ │ │ │ ├── r-mips-got-disp.s │ │ │ │ ├── reloc-directive-bad.s │ │ │ │ ├── reloc-directive-negative.s │ │ │ │ ├── reloc-directive.s │ │ │ │ ├── relocation-n64.s │ │ │ │ ├── relocation-xfail.s │ │ │ │ ├── relocation.s │ │ │ │ ├── rotations32-bad.s │ │ │ │ ├── rotations32.s │ │ │ │ ├── rotations64.s │ │ │ │ ├── section-size.s │ │ │ │ ├── set-arch.s │ │ │ │ ├── set-at-directive-explicit-at.s │ │ │ │ ├── set-at-directive.s │ │ │ │ ├── set-at-noat-bad-syntax.s │ │ │ │ ├── set-defined-symbol.s │ │ │ │ ├── set-mips-directives-bad.s │ │ │ │ ├── set-mips-directives.s │ │ │ │ ├── set-mips0-directive.s │ │ │ │ ├── set-mips16-directive.s │ │ │ │ ├── set-nodsp.s │ │ │ │ ├── set-nomacro-micromips.s │ │ │ │ ├── set-nomacro.s │ │ │ │ ├── set-oddspreg-nooddspreg-error.s │ │ │ │ ├── set-oddspreg-nooddspreg.s │ │ │ │ ├── set-push-pop-directives-bad.s │ │ │ │ ├── set-push-pop-directives.s │ │ │ │ ├── set-softfloat-hardfloat-bad.s │ │ │ │ ├── set-softfloat-hardfloat.s │ │ │ │ ├── sext_64_32.ll │ │ │ │ ├── sort-relocation-table.s │ │ │ │ ├── sym-expr.s │ │ │ │ ├── sym-offset.ll │ │ │ │ ├── target-soft-float.s │ │ │ │ ├── tls-symbols.s │ │ │ │ ├── unaligned-nops.s │ │ │ │ ├── update-module-level-options.s │ │ │ │ ├── user-macro-argument-separation.s │ │ │ │ └── xgot.s │ │ │ ├── PowerPC │ │ │ │ ├── dcbt.s │ │ │ │ ├── deprecated-p7.s │ │ │ │ ├── directive-parse-err.s │ │ │ │ ├── htm.s │ │ │ │ ├── invalid-instructions-spellcheck.s │ │ │ │ ├── lcomm.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── ppc-llong.s │ │ │ │ ├── ppc-machine.s │ │ │ │ ├── ppc-nop.s │ │ │ │ ├── ppc-reloc.s │ │ │ │ ├── ppc-separator.s │ │ │ │ ├── ppc-word.s │ │ │ │ ├── ppc32-ba.s │ │ │ │ ├── ppc32-extpid-e500.s │ │ │ │ ├── ppc64-abiversion.s │ │ │ │ ├── ppc64-encoding-4xx.s │ │ │ │ ├── ppc64-encoding-6xx.s │ │ │ │ ├── ppc64-encoding-bookII.s │ │ │ │ ├── ppc64-encoding-bookIII.s │ │ │ │ ├── ppc64-encoding-e500.s │ │ │ │ ├── ppc64-encoding-ext.s │ │ │ │ ├── ppc64-encoding-fp.s │ │ │ │ ├── ppc64-encoding-p8vector.s │ │ │ │ ├── ppc64-encoding-spe.s │ │ │ │ ├── ppc64-encoding-vmx.s │ │ │ │ ├── ppc64-encoding.s │ │ │ │ ├── ppc64-errors.s │ │ │ │ ├── ppc64-fixup-apply.s │ │ │ │ ├── ppc64-fixup-explicit.s │ │ │ │ ├── ppc64-fixups.s │ │ │ │ ├── ppc64-initial-cfa.s │ │ │ │ ├── ppc64-localentry-error1.s │ │ │ │ ├── ppc64-localentry-error2.s │ │ │ │ ├── ppc64-localentry.s │ │ │ │ ├── ppc64-operands.s │ │ │ │ ├── ppc64-regs.s │ │ │ │ ├── ppc64-relocs-01.s │ │ │ │ ├── ppc64-tls-relocs-01.s │ │ │ │ ├── pr24686.s │ │ │ │ ├── qpx.s │ │ │ │ ├── st-other-crash.s │ │ │ │ ├── tls-gd-obj.s │ │ │ │ ├── tls-ie-obj.s │ │ │ │ ├── tls-ld-obj.s │ │ │ │ └── vsx.s │ │ │ ├── RISCV │ │ │ │ ├── elf-header.s │ │ │ │ ├── fixups-compressed.s │ │ │ │ ├── fixups-diagnostics.s │ │ │ │ ├── fixups.s │ │ │ │ ├── hilo-constaddr.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── priv-invalid.s │ │ │ │ ├── priv-valid.s │ │ │ │ ├── relocations.s │ │ │ │ ├── rv32a-invalid.s │ │ │ │ ├── rv32a-valid.s │ │ │ │ ├── rv32c-invalid.s │ │ │ │ ├── rv32c-only-valid.s │ │ │ │ ├── rv32c-valid.s │ │ │ │ ├── rv32d-invalid.s │ │ │ │ ├── rv32d-valid.s │ │ │ │ ├── rv32dc-invalid.s │ │ │ │ ├── rv32dc-valid.s │ │ │ │ ├── rv32f-invalid.s │ │ │ │ ├── rv32f-valid.s │ │ │ │ ├── rv32fc-invalid.s │ │ │ │ ├── rv32fc-valid.s │ │ │ │ ├── rv32i-aliases-invalid.s │ │ │ │ ├── rv32i-aliases-valid.s │ │ │ │ ├── rv32i-invalid.s │ │ │ │ ├── rv32i-valid.s │ │ │ │ ├── rv32m-invalid.s │ │ │ │ ├── rv32m-valid.s │ │ │ │ ├── rv64a-invalid.s │ │ │ │ ├── rv64a-valid.s │ │ │ │ ├── rv64c-invalid.s │ │ │ │ ├── rv64c-valid.s │ │ │ │ ├── rv64d-aliases-valid.s │ │ │ │ ├── rv64d-invalid.s │ │ │ │ ├── rv64d-valid.s │ │ │ │ ├── rv64f-aliases-valid.s │ │ │ │ ├── rv64f-invalid.s │ │ │ │ ├── rv64f-valid.s │ │ │ │ ├── rv64i-aliases-invalid.s │ │ │ │ ├── rv64i-aliases-valid.s │ │ │ │ ├── rv64i-invalid.s │ │ │ │ ├── rv64i-valid.s │ │ │ │ ├── rv64m-valid.s │ │ │ │ ├── rvd-aliases-valid.s │ │ │ │ ├── rvf-aliases-valid.s │ │ │ │ └── rvi-aliases-valid.s │ │ │ ├── Sparc │ │ │ │ ├── leon-instructions.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── sparc-alu-instructions.s │ │ │ │ ├── sparc-asm-errors.s │ │ │ │ ├── sparc-assembly-exprs.s │ │ │ │ ├── sparc-atomic-instructions.s │ │ │ │ ├── sparc-coproc.s │ │ │ │ ├── sparc-ctrl-instructions.s │ │ │ │ ├── sparc-directive-xword.s │ │ │ │ ├── sparc-directives.s │ │ │ │ ├── sparc-fp-instructions.s │ │ │ │ ├── sparc-little-endian.s │ │ │ │ ├── sparc-mem-instructions.s │ │ │ │ ├── sparc-nop-data.s │ │ │ │ ├── sparc-pic.s │ │ │ │ ├── sparc-relocations.s │ │ │ │ ├── sparc-special-registers.s │ │ │ │ ├── sparc-synthetic-instructions.s │ │ │ │ ├── sparc-tls-relocations.s │ │ │ │ ├── sparc-traps.s │ │ │ │ ├── sparc-v9-traps.s │ │ │ │ ├── sparc-vis.s │ │ │ │ ├── sparc64-alu-instructions.s │ │ │ │ ├── sparc64-ctrl-instructions.s │ │ │ │ ├── sparcv8-instructions.s │ │ │ │ ├── sparcv9-atomic-instructions.s │ │ │ │ └── sparcv9-instructions.s │ │ │ ├── SystemZ │ │ │ │ ├── directive-insn.s │ │ │ │ ├── fixups-zEC12.s │ │ │ │ ├── fixups.s │ │ │ │ ├── insn-bad-z13.s │ │ │ │ ├── insn-bad-z14.s │ │ │ │ ├── insn-bad-z196.s │ │ │ │ ├── insn-bad-zEC12.s │ │ │ │ ├── insn-bad.s │ │ │ │ ├── insn-good-z13.s │ │ │ │ ├── insn-good-z14.s │ │ │ │ ├── insn-good-z196.s │ │ │ │ ├── insn-good-zEC12.s │ │ │ │ ├── insn-good.s │ │ │ │ ├── invalid-instructions-spellcheck.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── regs-bad.s │ │ │ │ ├── regs-good.s │ │ │ │ ├── tokens.s │ │ │ │ └── word.s │ │ │ └── WebAssembly │ │ │ │ ├── array-fill.ll │ │ │ │ ├── bss.ll │ │ │ │ ├── custom-code-section.ll │ │ │ │ ├── debug-info.ll │ │ │ │ ├── explicit-sections.ll │ │ │ │ ├── external-data.ll │ │ │ │ ├── external-func-address.ll │ │ │ │ ├── file-headers.ll │ │ │ │ ├── func-address.ll │ │ │ │ ├── init-fini-array.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── reloc-code.ll │ │ │ │ ├── reloc-data.ll │ │ │ │ ├── sections.ll │ │ │ │ ├── stack-ptr.ll │ │ │ │ ├── unnamed-data.ll │ │ │ │ ├── visibility.ll │ │ │ │ ├── weak-alias.ll │ │ │ │ └── weak.ll │ │ ├── Object │ │ │ ├── AArch64 │ │ │ │ └── yaml2obj-elf-aarch64-rel.yaml │ │ │ ├── AMDGPU │ │ │ │ ├── elf32-r600-definitions.yaml │ │ │ │ ├── elf32-unknown.yaml │ │ │ │ ├── elf64-amdgcn-amdhsa-definitions.yaml │ │ │ │ ├── elf64-amdgcn-amdpal-definitions.yaml │ │ │ │ ├── elf64-amdgcn-mesa3d-definitions.yaml │ │ │ │ ├── elf64-relocs.yaml │ │ │ │ ├── elf64-unknown.yaml │ │ │ │ ├── lit.local.cfg │ │ │ │ └── objdump.s │ │ │ ├── ARM │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── macho-data-in-code.test │ │ │ │ ├── nm-mapping-symbol.s │ │ │ │ ├── objdump-thumb.test │ │ │ │ └── symbol-addr.ll │ │ │ ├── Inputs │ │ │ │ ├── COFF │ │ │ │ │ ├── empty-drectve.yaml │ │ │ │ │ ├── i386.yaml │ │ │ │ │ ├── long-file-symbol.yaml │ │ │ │ │ ├── long-section-name.yaml │ │ │ │ │ ├── section-aux-symbol.yaml │ │ │ │ │ ├── weak-external.yaml │ │ │ │ │ ├── weak-externals.yaml │ │ │ │ │ └── x86-64.yaml │ │ │ │ ├── ELF │ │ │ │ │ ├── BE32.yaml │ │ │ │ │ ├── BE64.yaml │ │ │ │ │ ├── LE32.yaml │ │ │ │ │ └── LE64.yaml │ │ │ │ ├── GNU.a │ │ │ │ ├── IsNAN.o │ │ │ │ ├── MacOSX.a │ │ │ │ ├── SVR4.a │ │ │ │ ├── WASM │ │ │ │ │ └── missing-version.wasm │ │ │ │ ├── absolute.elf-x86-64 │ │ │ │ ├── archive-test.a-coff-i386 │ │ │ │ ├── archive-test.a-corrupt-symbol-table │ │ │ │ ├── archive-test.a-empty │ │ │ │ ├── archive-test.a-gnu-minimal │ │ │ │ ├── archive-test.a-gnu-no-symtab │ │ │ │ ├── archive-test.a-irix6-mips64el │ │ │ │ ├── coff-short-import-code │ │ │ │ ├── coff-short-import-data │ │ │ │ ├── common.coff-i386 │ │ │ │ ├── corrupt-archive.a │ │ │ │ ├── corrupt-invalid-dynamic-table-offset.elf.x86-64 │ │ │ │ ├── corrupt-invalid-dynamic-table-size.elf.x86-64 │ │ │ │ ├── corrupt-invalid-dynamic-table-too-large.elf.x86-64 │ │ │ │ ├── corrupt-invalid-phentsize.elf.x86-64 │ │ │ │ ├── corrupt-invalid-relocation-size.elf.x86-64 │ │ │ │ ├── corrupt-invalid-strtab.elf.x86-64 │ │ │ │ ├── corrupt-invalid-virtual-addr.elf.x86-64 │ │ │ │ ├── corrupt-version.elf-x86_64 │ │ │ │ ├── corrupt.elf-x86-64 │ │ │ │ ├── darwin-m-test1.mach0-armv7 │ │ │ │ ├── darwin-m-test2.macho-i386 │ │ │ │ ├── darwin-m-test3.macho-x86-64 │ │ │ │ ├── dext-test.elf-mips64r2 │ │ │ │ ├── dyn-rel.so.elf-mips │ │ │ │ ├── dynamic-reloc.so │ │ │ │ ├── elf-mip64-reloc.o │ │ │ │ ├── elf-reloc-no-sym.x86_64 │ │ │ │ ├── elf-versioning-test.i386 │ │ │ │ ├── elf-versioning-test.x86_64 │ │ │ │ ├── elfver.S │ │ │ │ ├── elfver.script │ │ │ │ ├── evenlen │ │ │ │ ├── hello-world.elf-x86-64 │ │ │ │ ├── hello-world.macho-x86_64 │ │ │ │ ├── invalid-bad-rel-type.elf │ │ │ │ ├── invalid-bad-section-address.coff │ │ │ │ ├── invalid-buffer.elf │ │ │ │ ├── invalid-coff-header-too-small │ │ │ │ ├── invalid-e_shnum.elf │ │ │ │ ├── invalid-ext-symtab-index.elf-x86-64 │ │ │ │ ├── invalid-phdr.elf │ │ │ │ ├── invalid-rel-sym.elf │ │ │ │ ├── invalid-reloc.elf-x86-64 │ │ │ │ ├── invalid-relocation-sec-sh_offset.elf-i386 │ │ │ │ ├── invalid-relocation-sec-sh_offset.elf-x86-64 │ │ │ │ ├── invalid-section-index.elf │ │ │ │ ├── invalid-section-size.elf │ │ │ │ ├── invalid-section-size2.elf │ │ │ │ ├── invalid-sections-address-alignment.x86-64 │ │ │ │ ├── invalid-sections-num.elf │ │ │ │ ├── invalid-sh_entsize.elf │ │ │ │ ├── invalid-strtab-non-null.elf │ │ │ │ ├── invalid-strtab-size.elf │ │ │ │ ├── invalid-strtab-type.elf │ │ │ │ ├── invalid-strtab-zero-size.elf │ │ │ │ ├── invalid-symbol-table-size.elf │ │ │ │ ├── invalid-xindex-size.elf │ │ │ │ ├── liblong_filenames.a │ │ │ │ ├── libsimple_archive.a │ │ │ │ ├── macho-archive-unsorted-x86_64.a │ │ │ │ ├── macho-archive-x86_64.a │ │ │ │ ├── macho-bad-archive1.a │ │ │ │ ├── macho-bad-archive2.a │ │ │ │ ├── macho-data-in-code.macho-thumbv7 │ │ │ │ ├── macho-empty-kext-bundle-x86-64 │ │ │ │ ├── macho-hello-g.macho-x86_64 │ │ │ │ ├── macho-invalid-bad-symbol-index │ │ │ │ ├── macho-invalid-bind-overlap │ │ │ │ ├── macho-invalid-codesig-overlap │ │ │ │ ├── macho-invalid-codesign-bad-size │ │ │ │ ├── macho-invalid-dataincode-bad-size │ │ │ │ ├── macho-invalid-dataincode-dataoff-datasize │ │ │ │ ├── macho-invalid-dataincode-more-than-one │ │ │ │ ├── macho-invalid-dyld-name_offset-toobig │ │ │ │ ├── macho-invalid-dyld-name_toobig │ │ │ │ ├── macho-invalid-dyld-small │ │ │ │ ├── macho-invalid-dyldinfo-bind_off-bind_size │ │ │ │ ├── macho-invalid-dyldinfo-export_off-export_size │ │ │ │ ├── macho-invalid-dyldinfo-lazy_bind_off-lazy_bind_size │ │ │ │ ├── macho-invalid-dyldinfo-more-than-one │ │ │ │ ├── macho-invalid-dyldinfo-rebase_off │ │ │ │ ├── macho-invalid-dyldinfo-rebase_off-rebase_size │ │ │ │ ├── macho-invalid-dyldinfo-small │ │ │ │ ├── macho-invalid-dyldinfo-weak_bind_off-weak_bind_size │ │ │ │ ├── macho-invalid-dyldinfoonly-bad-size │ │ │ │ ├── macho-invalid-dyldinfoonly-bind_off │ │ │ │ ├── macho-invalid-dyldinfoonly-export_off │ │ │ │ ├── macho-invalid-dyldinfoonly-lazy_bind_off │ │ │ │ ├── macho-invalid-dyldinfoonly-weak_bind_off │ │ │ │ ├── macho-invalid-dylib-cmdsize-past-eof │ │ │ │ ├── macho-invalid-dylib-id-more-than-one │ │ │ │ ├── macho-invalid-dylib-name_offset-toobig │ │ │ │ ├── macho-invalid-dylib-name_offset-toosmall │ │ │ │ ├── macho-invalid-dylib-name_toobig │ │ │ │ ├── macho-invalid-dylib-no-id │ │ │ │ ├── macho-invalid-dylib-small │ │ │ │ ├── macho-invalid-dylib-wrong-filetype │ │ │ │ ├── macho-invalid-dylib_code_sign_drs-bad-size │ │ │ │ ├── macho-invalid-dysymtab-bad-size │ │ │ │ ├── macho-invalid-dysymtab-extrefsymoff │ │ │ │ ├── macho-invalid-dysymtab-extrefsymoff-nextrefsyms │ │ │ │ ├── macho-invalid-dysymtab-extreloff │ │ │ │ ├── macho-invalid-dysymtab-extreloff-nextrel │ │ │ │ ├── macho-invalid-dysymtab-indirectsymoff │ │ │ │ ├── macho-invalid-dysymtab-indirectsymoff-nindirectsyms │ │ │ │ ├── macho-invalid-dysymtab-locreloff │ │ │ │ ├── macho-invalid-dysymtab-locreloff-nlocrel │ │ │ │ ├── macho-invalid-dysymtab-modtaboff │ │ │ │ ├── macho-invalid-dysymtab-modtaboff-nmodtab │ │ │ │ ├── macho-invalid-dysymtab-more-than-one │ │ │ │ ├── macho-invalid-dysymtab-small │ │ │ │ ├── macho-invalid-dysymtab-tocoff │ │ │ │ ├── macho-invalid-dysymtab-tocoff-ntoc │ │ │ │ ├── macho-invalid-encrypt-bad-size │ │ │ │ ├── macho-invalid-encrypt-cryptoff │ │ │ │ ├── macho-invalid-encrypt-more-than-one │ │ │ │ ├── macho-invalid-encrypt64-bad-size │ │ │ │ ├── macho-invalid-encrypt64-cryptoff-cryptsize │ │ │ │ ├── macho-invalid-entry-bad-size │ │ │ │ ├── macho-invalid-entry-more-than-one │ │ │ │ ├── macho-invalid-export-overlap │ │ │ │ ├── macho-invalid-extrefsyms-overlap │ │ │ │ ├── macho-invalid-extreloff-overlap │ │ │ │ ├── macho-invalid-fat │ │ │ │ ├── macho-invalid-fat-arch-badalign │ │ │ │ ├── macho-invalid-fat-arch-bigalign │ │ │ │ ├── macho-invalid-fat-arch-overlap │ │ │ │ ├── macho-invalid-fat-arch-overlapheaders │ │ │ │ ├── macho-invalid-fat-arch-size │ │ │ │ ├── macho-invalid-fat-arch-twosame │ │ │ │ ├── macho-invalid-fat-header │ │ │ │ ├── macho-invalid-fat.obj.elf-x86_64 │ │ │ │ ├── macho-invalid-fat_cputype │ │ │ │ ├── macho-invalid-function_starts-dataoff │ │ │ │ ├── macho-invalid-fvmfile-obsolete │ │ │ │ ├── macho-invalid-header │ │ │ │ ├── macho-invalid-hints-overlap │ │ │ │ ├── macho-invalid-ident-obsolete │ │ │ │ ├── macho-invalid-idfvmlib-obsolete │ │ │ │ ├── macho-invalid-indirectsyms-overlap │ │ │ │ ├── macho-invalid-lazy_bind-overlap │ │ │ │ ├── macho-invalid-linkopt-bad-count │ │ │ │ ├── macho-invalid-linkopt-bad-size │ │ │ │ ├── macho-invalid-linkopthint-dataoff │ │ │ │ ├── macho-invalid-linkopthint-small │ │ │ │ ├── macho-invalid-loadfvmlib-obsolete │ │ │ │ ├── macho-invalid-locreloff-overlap │ │ │ │ ├── macho-invalid-modtab-overlap │ │ │ │ ├── macho-invalid-no-size-for-sections │ │ │ │ ├── macho-invalid-note │ │ │ │ ├── macho-invalid-prebind_cksum-obsolete │ │ │ │ ├── macho-invalid-prebound_dylib-obsolete │ │ │ │ ├── macho-invalid-prepage-obsolete │ │ │ │ ├── macho-invalid-rebase-overlap │ │ │ │ ├── macho-invalid-reloc-overlap │ │ │ │ ├── macho-invalid-routines-bad-size │ │ │ │ ├── macho-invalid-routines64-more-than-one │ │ │ │ ├── macho-invalid-rpath-name_offset-toobig │ │ │ │ ├── macho-invalid-rpath-name_toobig │ │ │ │ ├── macho-invalid-rpath-small │ │ │ │ ├── macho-invalid-section-addr │ │ │ │ ├── macho-invalid-section-addr-size │ │ │ │ ├── macho-invalid-section-index-getSectionRawName │ │ │ │ ├── macho-invalid-section-offset │ │ │ │ ├── macho-invalid-section-offset-in-headers │ │ │ │ ├── macho-invalid-section-offset-size │ │ │ │ ├── macho-invalid-section-overlap │ │ │ │ ├── macho-invalid-section-reloff │ │ │ │ ├── macho-invalid-section-reloff-nrelocs │ │ │ │ ├── macho-invalid-section-size-filesize │ │ │ │ ├── macho-invalid-segment-fileoff │ │ │ │ ├── macho-invalid-segment-filesize │ │ │ │ ├── macho-invalid-segment-vmsize │ │ │ │ ├── macho-invalid-source-bad-size │ │ │ │ ├── macho-invalid-source-more-than-one │ │ │ │ ├── macho-invalid-splitinfo-dataoff-datasize │ │ │ │ ├── macho-invalid-strtab-overlap │ │ │ │ ├── macho-invalid-subclient-name_toobig │ │ │ │ ├── macho-invalid-subframe-small │ │ │ │ ├── macho-invalid-sublibrary-name_offset-toobig │ │ │ │ ├── macho-invalid-subumbrella-offset-small │ │ │ │ ├── macho-invalid-symbol-name-past-eof │ │ │ │ ├── macho-invalid-symseg-obsolete │ │ │ │ ├── macho-invalid-symtab-bad-size │ │ │ │ ├── macho-invalid-symtab-more-than-one │ │ │ │ ├── macho-invalid-symtab-overlap │ │ │ │ ├── macho-invalid-symtab-small │ │ │ │ ├── macho-invalid-symtab-stroff │ │ │ │ ├── macho-invalid-symtab-stroff-strsize │ │ │ │ ├── macho-invalid-symtab-symoff │ │ │ │ ├── macho-invalid-symtab-symoff-nsyms │ │ │ │ ├── macho-invalid-thread-count-pastend │ │ │ │ ├── macho-invalid-thread-count-wrong │ │ │ │ ├── macho-invalid-thread-flavor-unknown │ │ │ │ ├── macho-invalid-thread-state-pastend │ │ │ │ ├── macho-invalid-thread-unknown-cputype │ │ │ │ ├── macho-invalid-toc-overlap │ │ │ │ ├── macho-invalid-too-small-load-command │ │ │ │ ├── macho-invalid-too-small-segment-load-command │ │ │ │ ├── macho-invalid-too-small-segment-load-command.1 │ │ │ │ ├── macho-invalid-twolevelhints-bad-size │ │ │ │ ├── macho-invalid-twolevelhints-more-than-one │ │ │ │ ├── macho-invalid-twolevelhints-offset │ │ │ │ ├── macho-invalid-twolevelhints-offset-nhints │ │ │ │ ├── macho-invalid-unixthread-more-than-one │ │ │ │ ├── macho-invalid-uuid-bad-size │ │ │ │ ├── macho-invalid-uuid-more-than-one │ │ │ │ ├── macho-invalid-vers-more-than-one │ │ │ │ ├── macho-invalid-vers-small │ │ │ │ ├── macho-invalid-weak_bind-overlap │ │ │ │ ├── macho-invalid-zero-ncmds │ │ │ │ ├── macho-no-exports.dylib │ │ │ │ ├── macho-rpath-x86_64 │ │ │ │ ├── macho-text-data-bss.macho-x86_64 │ │ │ │ ├── macho-text-sections.macho-x86_64 │ │ │ │ ├── macho-text.thumb │ │ │ │ ├── macho-toc64-archive-x86_64.a │ │ │ │ ├── macho-universal-archive-bad1.x86_64.i386 │ │ │ │ ├── macho-universal-archive-bad2.x86_64.i386 │ │ │ │ ├── macho-universal-archive.x86_64.i386 │ │ │ │ ├── macho-universal-bad1.x86_64.i386 │ │ │ │ ├── macho-universal-bad2.x86_64.i386 │ │ │ │ ├── macho-universal.x86_64.i386 │ │ │ │ ├── macho-universal64-archive.x86_64.i386 │ │ │ │ ├── macho-universal64.x86_64.i386 │ │ │ │ ├── macho-valid-0-nsyms │ │ │ │ ├── macho64-invalid-incomplete-load-command │ │ │ │ ├── macho64-invalid-incomplete-load-command.1 │ │ │ │ ├── macho64-invalid-incomplete-segment-load-command │ │ │ │ ├── macho64-invalid-no-size-for-sections │ │ │ │ ├── macho64-invalid-too-small-load-command │ │ │ │ ├── macho64-invalid-too-small-load-command.1 │ │ │ │ ├── macho64-invalid-too-small-segment-load-command │ │ │ │ ├── micro-mips.elf-mipsel │ │ │ │ ├── mri-crlf.mri │ │ │ │ ├── multi-module.ll │ │ │ │ ├── no-section-header-string-table.elf-x86-64 │ │ │ │ ├── no-section-table.so │ │ │ │ ├── no-sections.elf-x86-64 │ │ │ │ ├── no-start-symbol.elf-x86_64 │ │ │ │ ├── oddlen │ │ │ │ ├── openbsd-phdrs.elf-x86-64 │ │ │ │ ├── phdr-note.elf-x86-64 │ │ │ │ ├── phdrs.elf-x86-64 │ │ │ │ ├── program-headers.elf-i386 │ │ │ │ ├── program-headers.elf-x86-64 │ │ │ │ ├── program-headers.mips │ │ │ │ ├── program-headers.mips64 │ │ │ │ ├── rel-no-sec-table.elf-x86-64 │ │ │ │ ├── relocatable-with-section-address.elf-x86-64 │ │ │ │ ├── relocation-dynamic.elf-i386 │ │ │ │ ├── relocation-relocatable.elf-i386 │ │ │ │ ├── relocations.elf-x86-64 │ │ │ │ ├── sectionGroup.elf.x86-64 │ │ │ │ ├── shared-object-test.elf-i386 │ │ │ │ ├── shared-object-test.elf-x86-64 │ │ │ │ ├── shared.ll │ │ │ │ ├── shndx.elf │ │ │ │ ├── solaris-nosymbols.yaml │ │ │ │ ├── stackmap-test.macho-x86-64 │ │ │ │ ├── symtab-only.a │ │ │ │ ├── thin-path.a │ │ │ │ ├── thin.a │ │ │ │ ├── thumb-symbols.elf.arm │ │ │ │ ├── trivial-executable-test.macho-x86-64 │ │ │ │ ├── trivial-label-test.elf-x86-64 │ │ │ │ ├── trivial-object-test.coff-arm64 │ │ │ │ ├── trivial-object-test.coff-armnt │ │ │ │ ├── trivial-object-test.coff-i386 │ │ │ │ ├── trivial-object-test.coff-x86-64 │ │ │ │ ├── trivial-object-test.elf-avr │ │ │ │ ├── trivial-object-test.elf-hexagon │ │ │ │ ├── trivial-object-test.elf-i386 │ │ │ │ ├── trivial-object-test.elf-mips64el │ │ │ │ ├── trivial-object-test.elf-mipsel │ │ │ │ ├── trivial-object-test.elf-x86-64 │ │ │ │ ├── trivial-object-test.macho-i386 │ │ │ │ ├── trivial-object-test.macho-x86-64 │ │ │ │ ├── trivial-object-test.wasm │ │ │ │ ├── trivial-object-test2.elf-x86-64 │ │ │ │ ├── trivial-object-test2.macho-x86-64 │ │ │ │ ├── trivial.ll │ │ │ │ ├── unwind-section.elf-x86-64 │ │ │ │ ├── very_long_bytecode_file_name.bc │ │ │ │ ├── weak-global-symbol.macho-i386 │ │ │ │ ├── weak.elf-x86-64 │ │ │ │ └── xpg4.a │ │ │ ├── Lanai │ │ │ │ ├── lit.local.cfg │ │ │ │ └── yaml2obj-elf-lanai-rel.yaml │ │ │ ├── Mips │ │ │ │ ├── abi-flags.yaml │ │ │ │ ├── elf-abi.yaml │ │ │ │ ├── elf-flags.yaml │ │ │ │ ├── elf-mips64-rel.yaml │ │ │ │ ├── feature.test │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── objdump-micro-mips.test │ │ │ │ └── reloc-visit.test │ │ │ ├── RISCV │ │ │ │ ├── elf-flags.yaml │ │ │ │ └── lit.local.cfg │ │ │ ├── ar-create.test │ │ │ ├── ar-error.test │ │ │ ├── archive-GNU64-write.test │ │ │ ├── archive-delete.test │ │ │ ├── archive-error-tmp.txt │ │ │ ├── archive-extract-dir.test │ │ │ ├── archive-extract.test │ │ │ ├── archive-format.test │ │ │ ├── archive-long-index.test │ │ │ ├── archive-move.test │ │ │ ├── archive-pad.test │ │ │ ├── archive-replace-pos.test │ │ │ ├── archive-symtab.test │ │ │ ├── archive-thin-create.test │ │ │ ├── archive-thin-paths.test │ │ │ ├── archive-thin-read.test │ │ │ ├── archive-toc.test │ │ │ ├── archive-update.test │ │ │ ├── check_binary_output.ll │ │ │ ├── coff-archive-short.test │ │ │ ├── coff-archive.test │ │ │ ├── coff-empty-drectve.test │ │ │ ├── coff-invalid.test │ │ │ ├── coff-weak-externals.test │ │ │ ├── corrupt.test │ │ │ ├── directory.ll │ │ │ ├── dllimport-globalref.ll │ │ │ ├── dllimport.ll │ │ │ ├── dyn-rel-relocation.test │ │ │ ├── dynamic-reloc.test │ │ │ ├── elf-invalid-phdr.test │ │ │ ├── elf-reloc-no-sym.test │ │ │ ├── elf-unknown-type.test │ │ │ ├── invalid-alignment.test │ │ │ ├── invalid.test │ │ │ ├── kext.test │ │ │ ├── lit.local.cfg │ │ │ ├── macho-invalid.test │ │ │ ├── mangle-ir.ll │ │ │ ├── mri-addlib.test │ │ │ ├── mri-addmod.test │ │ │ ├── mri-crlf.test │ │ │ ├── mri1.test │ │ │ ├── mri2.test │ │ │ ├── mri3.test │ │ │ ├── mri4.test │ │ │ ├── mri5.test │ │ │ ├── multi-module.ll │ │ │ ├── nm-archive.test │ │ │ ├── nm-darwin-m.test │ │ │ ├── nm-error.test │ │ │ ├── nm-irix6.test │ │ │ ├── nm-pe-image.test │ │ │ ├── nm-shared-object.test │ │ │ ├── nm-trivial-object.test │ │ │ ├── nm-universal-binary.test │ │ │ ├── nm-weak-global-macho.test │ │ │ ├── no-section-header-string-table.test │ │ │ ├── no-section-table.test │ │ │ ├── obj2yaml-coff-long-file-symbol.test │ │ │ ├── obj2yaml-coff-long-section-name.test │ │ │ ├── obj2yaml-coff-section-aux-symbol.test │ │ │ ├── obj2yaml-coff-weak-external.test │ │ │ ├── obj2yaml-invalid-reloc.test │ │ │ ├── obj2yaml-sectiongroup.test │ │ │ ├── obj2yaml.test │ │ │ ├── objc-imageinfo-coff.ll │ │ │ ├── objc-imageinfo-elf.ll │ │ │ ├── objc-imageinfo-macho.ll │ │ │ ├── objdump-export-list.test │ │ │ ├── objdump-file-header.test │ │ │ ├── objdump-no-sectionheaders.test │ │ │ ├── objdump-private-headers.test │ │ │ ├── objdump-reloc-shared.test │ │ │ ├── objdump-relocations.test │ │ │ ├── objdump-section-content.test │ │ │ ├── objdump-sectionheaders.test │ │ │ ├── objdump-shndx.test │ │ │ ├── objdump-symbol-table.test │ │ │ ├── pr25877.test │ │ │ ├── readobj-absent.test │ │ │ ├── readobj-elf-versioning.test │ │ │ ├── readobj-shared-object.test │ │ │ ├── readobj.test │ │ │ ├── relocation-executable.test │ │ │ ├── simple-archive.test │ │ │ ├── size-trivial-macho.test │ │ │ ├── stackmap-dump.test │ │ │ ├── wasm-invalid-start.test │ │ │ ├── wasm-missing-version.test │ │ │ ├── yaml2obj-coff-invalid-alignment.test │ │ │ ├── yaml2obj-coff-multi-doc.test │ │ │ ├── yaml2obj-elf-alignment.yaml │ │ │ ├── yaml2obj-elf-bits-endian.test │ │ │ ├── yaml2obj-elf-file-headers-with-e_flags.yaml │ │ │ ├── yaml2obj-elf-file-headers.yaml │ │ │ ├── yaml2obj-elf-multi-doc.test │ │ │ ├── yaml2obj-elf-rel-noref.yaml │ │ │ ├── yaml2obj-elf-rel.yaml │ │ │ ├── yaml2obj-elf-section-basic.yaml │ │ │ ├── yaml2obj-elf-section-invalid-size.yaml │ │ │ ├── yaml2obj-elf-symbol-LocalGlobalWeak.yaml │ │ │ ├── yaml2obj-elf-symbol-basic.yaml │ │ │ ├── yaml2obj-elf-symbol-visibility.yaml │ │ │ ├── yaml2obj-invalid.yaml │ │ │ └── yaml2obj-readobj.test │ │ ├── ObjectYAML │ │ │ ├── CodeView │ │ │ │ └── sections.yaml │ │ │ ├── ELF │ │ │ │ └── shf-compressed.yaml │ │ │ ├── MachO │ │ │ │ ├── BigEndian.yaml │ │ │ │ ├── DWARF-BigEndian.yaml │ │ │ │ ├── DWARF-LittleEndian.yaml │ │ │ │ ├── DWARF-debug_abbrev.yaml │ │ │ │ ├── DWARF-debug_aranges.yaml │ │ │ │ ├── DWARF-debug_info.yaml │ │ │ │ ├── DWARF-debug_line.yaml │ │ │ │ ├── DWARF-debug_str.yaml │ │ │ │ ├── DWARF-pubsections.yaml │ │ │ │ ├── DWARF2-AddrSize8-FormValues.yaml │ │ │ │ ├── DWARF5-abbrevValues.yaml │ │ │ │ ├── DWARF5-debug_info.yaml │ │ │ │ ├── LittleEndian.yaml │ │ │ │ ├── bind_opcode.yaml │ │ │ │ ├── bogus_load_command.yaml │ │ │ │ ├── build_version_command.yaml │ │ │ │ ├── dylib_dylinker_command.yaml │ │ │ │ ├── export_trie.yaml │ │ │ │ ├── fat_macho_i386_x86_64.yaml │ │ │ │ ├── lazy_bind_opcode.yaml │ │ │ │ ├── load_commands.yaml │ │ │ │ ├── mach_header.yaml │ │ │ │ ├── mach_header_32_malformed.yaml │ │ │ │ ├── mach_header_64.yaml │ │ │ │ ├── null_string_entries.yaml │ │ │ │ ├── out_of_order_linkedit.yaml │ │ │ │ ├── rebase_opcode.yaml │ │ │ │ ├── sections.yaml │ │ │ │ ├── symtab.yaml │ │ │ │ └── weak_bind_opcode.yaml │ │ │ ├── lit.local.cfg │ │ │ └── wasm │ │ │ │ ├── code_section.yaml │ │ │ │ ├── custom_section.yaml │ │ │ │ ├── data_section.yaml │ │ │ │ ├── elem_section.yaml │ │ │ │ ├── export_section.yaml │ │ │ │ ├── function_section.yaml │ │ │ │ ├── global_section.yaml │ │ │ │ ├── header.yaml │ │ │ │ ├── header_invalid_version.yaml │ │ │ │ ├── import_section.yaml │ │ │ │ ├── invalid_export.yaml │ │ │ │ ├── linking_section.yaml │ │ │ │ ├── memory_section.yaml │ │ │ │ ├── name_section.yaml │ │ │ │ ├── start_section.yaml │ │ │ │ ├── table_section.yaml │ │ │ │ ├── type_section.yaml │ │ │ │ └── weak_symbols.yaml │ │ ├── Other │ │ │ ├── 2002-01-31-CallGraph.ll │ │ │ ├── 2002-02-24-InlineBrokePHINodes.ll │ │ │ ├── 2002-03-11-ConstPropCrash.ll │ │ │ ├── 2003-02-19-LoopInfoNestingBug.ll │ │ │ ├── 2004-08-16-PackedConstantInlineStore.ll │ │ │ ├── 2004-08-16-PackedGlobalConstant.ll │ │ │ ├── 2004-08-16-PackedSelect.ll │ │ │ ├── 2004-08-16-PackedSimple.ll │ │ │ ├── 2004-08-20-PackedControlFlow.ll │ │ │ ├── 2006-02-05-PassManager.ll │ │ │ ├── 2007-04-24-eliminate-mostly-empty-blocks.ll │ │ │ ├── 2007-06-05-PassID.ll │ │ │ ├── 2007-06-28-PassManager.ll │ │ │ ├── 2007-09-10-PassManager.ll │ │ │ ├── 2008-02-14-PassManager.ll │ │ │ ├── 2008-06-04-FieldSizeInPacked.ll │ │ │ ├── 2008-10-06-RemoveDeadPass.ll │ │ │ ├── 2008-10-15-MissingSpace.ll │ │ │ ├── 2009-03-31-CallGraph.ll │ │ │ ├── 2009-06-05-no-implicit-float.ll │ │ │ ├── 2009-09-14-function-elements.ll │ │ │ ├── 2010-05-06-Printer.ll │ │ │ ├── FileCheck-space.txt │ │ │ ├── Inputs │ │ │ │ ├── TestProg │ │ │ │ │ └── TestProg │ │ │ │ ├── block-info-only.bc │ │ │ │ ├── glob-input │ │ │ │ ├── has-block-info.bc │ │ │ │ ├── invariant.group.barrier.ll │ │ │ │ ├── new-pm-pgo.prof │ │ │ │ ├── new-pm-pgo.proftext │ │ │ │ ├── no-block-info.bc │ │ │ │ ├── utf8-bom-response │ │ │ │ └── utf8-response │ │ │ ├── ResponseFile.ll │ │ │ ├── attribute-comment.ll │ │ │ ├── bcanalyzer-block-info.txt │ │ │ ├── can-execute.txt │ │ │ ├── cgscc-devirt-iteration.ll │ │ │ ├── cgscc-disconnected-invalidation.ll │ │ │ ├── cgscc-iterate-function-mutation.ll │ │ │ ├── cgscc-libcall-update.ll │ │ │ ├── cgscc-observe-devirt.ll │ │ │ ├── cleanup-lcssa.ll │ │ │ ├── close-stderr.ll │ │ │ ├── constant-fold-gep-address-spaces.ll │ │ │ ├── constant-fold-gep.ll │ │ │ ├── debugcounter-newgvn.ll │ │ │ ├── debugcounter-predicateinfo.ll │ │ │ ├── extract-alias.ll │ │ │ ├── extract-linkonce.ll │ │ │ ├── extract-weak-odr.ll │ │ │ ├── extract.ll │ │ │ ├── invalid-commandline-option.ll │ │ │ ├── invariant.group.barrier.ll │ │ │ ├── lint.ll │ │ │ ├── lit-globbing.ll │ │ │ ├── lit-quoting.txt │ │ │ ├── lit-unicode.txt │ │ │ ├── llvm-nm-without-aliases.ll │ │ │ ├── loop-pass-ordering.ll │ │ │ ├── loop-pass-printer.ll │ │ │ ├── loop-pm-invalidation.ll │ │ │ ├── new-pass-manager.ll │ │ │ ├── new-pm-defaults.ll │ │ │ ├── new-pm-lto-defaults.ll │ │ │ ├── new-pm-pgo.ll │ │ │ ├── new-pm-thinlto-defaults.ll │ │ │ ├── opt-bisect-helper.py │ │ │ ├── opt-bisect-legacy-pass-manager.ll │ │ │ ├── opt-override-mcpu-mattr.ll │ │ │ ├── opt-twice.ll │ │ │ ├── optimization-remarks-inline.ll │ │ │ ├── optimization-remarks-invalidation.ll │ │ │ ├── optimization-remarks-lazy-bfi.ll │ │ │ ├── optimize-options.ll │ │ │ ├── pass-pipeline-parsing.ll │ │ │ ├── pass-pipelines.ll │ │ │ ├── pipefail.txt │ │ │ ├── pr32085.ll │ │ │ ├── print-module-scope.ll │ │ │ ├── spir_cc.ll │ │ │ ├── statistic.ll │ │ │ ├── umask.ll │ │ │ └── writing-to-stdout.ll │ │ ├── SafepointIRVerifier │ │ │ ├── basic-use-after-reloc.ll │ │ │ ├── compares.ll │ │ │ ├── constant-bases.ll │ │ │ ├── from-same-relocation-in-phi-nodes.ll │ │ │ ├── unrecorded-live-at-sp.ll │ │ │ ├── use-derived-unrelocated.ll │ │ │ └── uses-in-phi-nodes.ll │ │ ├── SymbolRewriter │ │ │ ├── rewrite.ll │ │ │ └── rewrite.map │ │ ├── TableGen │ │ │ ├── 2003-08-03-PassCode.td │ │ │ ├── 2006-09-18-LargeInt.td │ │ │ ├── 2010-03-24-PrematureDefaults.td │ │ │ ├── AllowDuplicateRegisterNames.td │ │ │ ├── AnonDefinitionOnDemand.td │ │ │ ├── AsmPredicateCondsEmission.td │ │ │ ├── AsmVariant.td │ │ │ ├── BitOffsetDecoder.td │ │ │ ├── BitsInit.td │ │ │ ├── BitsInitOverflow.td │ │ │ ├── CStyleComment.td │ │ │ ├── ClassInstanceValue.td │ │ │ ├── ConcatenatedSubregs.td │ │ │ ├── Dag.td │ │ │ ├── DefmInherit.td │ │ │ ├── DefmInsideMultiClass.td │ │ │ ├── DuplicateFieldValues.td │ │ │ ├── FieldAccess.td │ │ │ ├── ForeachList.td │ │ │ ├── ForeachLoop.td │ │ │ ├── ForwardRef.td │ │ │ ├── GeneralList.td │ │ │ ├── GlobalISelEmitter.td │ │ │ ├── HwModeSelect.td │ │ │ ├── Include.inc │ │ │ ├── Include.td │ │ │ ├── IntBitInit.td │ │ │ ├── LazyChange.td │ │ │ ├── LetInsideMultiClasses.td │ │ │ ├── ListArgs.td │ │ │ ├── ListArgsSimple.td │ │ │ ├── ListConversion.td │ │ │ ├── ListManip.td │ │ │ ├── ListOfList.td │ │ │ ├── ListSlices.td │ │ │ ├── LoLoL.td │ │ │ ├── MultiClass.td │ │ │ ├── MultiClassDefName.td │ │ │ ├── MultiClassInherit.td │ │ │ ├── MultiPat.td │ │ │ ├── NestedForeach.td │ │ │ ├── Paste.td │ │ │ ├── RegisterBankEmitter.td │ │ │ ├── RegisterEncoder.td │ │ │ ├── SetTheory.td │ │ │ ├── SiblingForeach.td │ │ │ ├── Slice.td │ │ │ ├── String.td │ │ │ ├── SuperSubclassSameName.td │ │ │ ├── TargetInstrInfo.td │ │ │ ├── TargetInstrSpec.td │ │ │ ├── TemplateArgRename.td │ │ │ ├── Tree.td │ │ │ ├── TreeNames.td │ │ │ ├── TwoLevelName.td │ │ │ ├── UnsetBitInit.td │ │ │ ├── UnterminatedComment.td │ │ │ ├── ValidIdentifiers.td │ │ │ ├── cast-list-initializer.td │ │ │ ├── cast.td │ │ │ ├── defmclass.td │ │ │ ├── eq.td │ │ │ ├── eqbit.td │ │ │ ├── foreach.td │ │ │ ├── if-empty-list-arg.td │ │ │ ├── if.td │ │ │ ├── ifbit.td │ │ │ ├── intrinsic-long-name.td │ │ │ ├── intrinsic-struct.td │ │ │ ├── intrinsic-varargs.td │ │ │ ├── lisp.td │ │ │ ├── list-element-bitref.td │ │ │ ├── listconcat.td │ │ │ ├── lit.local.cfg │ │ │ ├── math.td │ │ │ ├── nested-comment.td │ │ │ ├── pr8330.td │ │ │ ├── strconcat.td │ │ │ ├── subst.td │ │ │ ├── subst2.td │ │ │ ├── trydecode-emission.td │ │ │ ├── trydecode-emission2.td │ │ │ ├── trydecode-emission3.td │ │ │ └── usevalname.td │ │ ├── TestRunner.sh │ │ ├── Transforms │ │ │ ├── ADCE │ │ │ │ ├── 2002-01-31-UseStuckAround.ll │ │ │ │ ├── 2002-05-22-PHITest.ll │ │ │ │ ├── 2002-05-23-ZeroArgPHITest.ll │ │ │ │ ├── 2002-05-28-Crash-distilled.ll │ │ │ │ ├── 2002-05-28-Crash.ll │ │ │ │ ├── 2002-07-17-AssertionFailure.ll │ │ │ │ ├── 2002-07-17-PHIAssertion.ll │ │ │ │ ├── 2002-07-29-Segfault.ll │ │ │ │ ├── 2003-01-22-PredecessorProblem.ll │ │ │ │ ├── 2003-04-25-PHIPostDominateProblem.ll │ │ │ │ ├── 2003-06-11-InvalidCFG.ll │ │ │ │ ├── 2003-06-24-BadSuccessor.ll │ │ │ │ ├── 2003-06-24-BasicFunctionality.ll │ │ │ │ ├── 2003-09-10-UnwindInstFail.ll │ │ │ │ ├── 2003-09-15-InfLoopCrash.ll │ │ │ │ ├── 2003-11-16-MissingPostDominanceInfo.ll │ │ │ │ ├── 2004-05-04-UnreachableBlock.ll │ │ │ │ ├── 2005-02-17-PHI-Invoke-Crash.ll │ │ │ │ ├── 2016-09-06.ll │ │ │ │ ├── 2017-08-21-DomTree-deletions.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── basictest1.ll │ │ │ │ ├── basictest2.ll │ │ │ │ ├── dce_pure_call.ll │ │ │ │ ├── dce_pure_invoke.ll │ │ │ │ ├── debug-info-intrinsic.ll │ │ │ │ ├── delete-profiling-calls-to-constant.ll │ │ │ │ ├── domtree-DoubleDeletion.ll │ │ │ │ ├── unreachable-function.ll │ │ │ │ └── unreachable.ll │ │ │ ├── AddDiscriminators │ │ │ │ ├── basic.ll │ │ │ │ ├── call-nested.ll │ │ │ │ ├── call.ll │ │ │ │ ├── dbg-declare-discriminator.ll │ │ │ │ ├── diamond.ll │ │ │ │ ├── first-only.ll │ │ │ │ ├── inlined.ll │ │ │ │ ├── memcpy-discriminator.ll │ │ │ │ ├── multiple.ll │ │ │ │ ├── no-discriminators.ll │ │ │ │ └── oneline.ll │ │ │ ├── AlignmentFromAssumptions │ │ │ │ ├── simple.ll │ │ │ │ ├── simple32.ll │ │ │ │ └── start-unk.ll │ │ │ ├── ArgumentPromotion │ │ │ │ ├── 2008-02-01-ReturnAttrs.ll │ │ │ │ ├── 2008-07-02-array-indexing.ll │ │ │ │ ├── 2008-09-07-CGUpdate.ll │ │ │ │ ├── 2008-09-08-CGUpdateSelfEdge.ll │ │ │ │ ├── aggregate-promote.ll │ │ │ │ ├── attrs.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── byval-2.ll │ │ │ │ ├── byval.ll │ │ │ │ ├── chained.ll │ │ │ │ ├── control-flow.ll │ │ │ │ ├── control-flow2.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── dbg.ll │ │ │ │ ├── fp80.ll │ │ │ │ ├── inalloca.ll │ │ │ │ ├── pr27568.ll │ │ │ │ ├── pr3085.ll │ │ │ │ ├── pr32917.ll │ │ │ │ ├── pr33641_remove_arg_dbgvalue.ll │ │ │ │ ├── profile.ll │ │ │ │ ├── reserve-tbaa.ll │ │ │ │ ├── sret.ll │ │ │ │ ├── tail.ll │ │ │ │ └── variadic.ll │ │ │ ├── AtomicExpand │ │ │ │ ├── ARM │ │ │ │ │ ├── atomic-expansion-v7.ll │ │ │ │ │ ├── atomic-expansion-v8.ll │ │ │ │ │ ├── cmpxchg-weak.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ └── SPARC │ │ │ │ │ ├── libcalls.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── partword.ll │ │ │ ├── BDCE │ │ │ │ ├── basic.ll │ │ │ │ ├── dbg-multipleuses.ll │ │ │ │ ├── dce-pure.ll │ │ │ │ ├── dead-void-ro.ll │ │ │ │ ├── invalidate-assumptions.ll │ │ │ │ ├── order.ll │ │ │ │ └── pr26587.ll │ │ │ ├── BranchFolding │ │ │ │ └── 2007-10-19-InlineAsmDirectives.ll │ │ │ ├── CallSiteSplitting │ │ │ │ ├── callsite-no-or-structure.ll │ │ │ │ ├── callsite-no-splitting.ll │ │ │ │ ├── callsite-split-debug.ll │ │ │ │ ├── callsite-split-or-phi.ll │ │ │ │ └── callsite-split.ll │ │ │ ├── CalledValuePropagation │ │ │ │ ├── simple-arguments.ll │ │ │ │ ├── simple-memory.ll │ │ │ │ └── simple-select.ll │ │ │ ├── CodeExtractor │ │ │ │ ├── 2004-03-13-LoopExtractorCrash.ll │ │ │ │ ├── 2004-03-14-DominanceProblem.ll │ │ │ │ ├── 2004-03-14-NoSwitchSupport.ll │ │ │ │ ├── 2004-03-17-MissedLiveIns.ll │ │ │ │ ├── 2004-03-17-UpdatePHIsOutsideRegion.ll │ │ │ │ ├── 2004-03-18-InvokeHandling.ll │ │ │ │ ├── 2004-08-12-BlockExtractPHI.ll │ │ │ │ ├── 2004-11-12-InvokeExtract.ll │ │ │ │ ├── BlockAddressReference.ll │ │ │ │ ├── BlockAddressSelfReference.ll │ │ │ │ ├── ExtractedFnEntryCount.ll │ │ │ │ ├── MultipleExitBranchProb.ll │ │ │ │ ├── PartialInlineAlloca.ll │ │ │ │ ├── PartialInlineAlloca2.ll │ │ │ │ ├── PartialInlineAlloca4.ll │ │ │ │ ├── PartialInlineAlloca5.ll │ │ │ │ ├── PartialInlineAnd.ll │ │ │ │ ├── PartialInlineAndOr.ll │ │ │ │ ├── PartialInlineCallRef.ll │ │ │ │ ├── PartialInlineDebug.ll │ │ │ │ ├── PartialInlineEntryUpdate.ll │ │ │ │ ├── PartialInlineHighCost.ll │ │ │ │ ├── PartialInlineLiveAcross.ll │ │ │ │ ├── PartialInlineNoInline.ll │ │ │ │ ├── PartialInlineNoLiveOut.ll │ │ │ │ ├── PartialInlineOptRemark.ll │ │ │ │ ├── PartialInlineOr.ll │ │ │ │ ├── PartialInlineOrAnd.ll │ │ │ │ ├── PartialInlinePGOMultiRegion.ll │ │ │ │ ├── PartialInlinePGORegion.ll │ │ │ │ ├── PartialInlineVarArg.ll │ │ │ │ ├── PartialInlineVarArgsDebug.ll │ │ │ │ ├── SingleCondition.ll │ │ │ │ ├── cost.ll │ │ │ │ ├── cost_meta.ll │ │ │ │ ├── live_shrink.ll │ │ │ │ ├── live_shrink_gep.ll │ │ │ │ ├── live_shrink_hoist.ll │ │ │ │ ├── live_shrink_multiple.ll │ │ │ │ ├── live_shrink_unsafe.ll │ │ │ │ └── unreachable-block.ll │ │ │ ├── CodeGenPrepare │ │ │ │ ├── 2008-11-24-RAUW-Self.ll │ │ │ │ ├── AArch64 │ │ │ │ │ ├── free-zext.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── trunc-weird-user.ll │ │ │ │ │ └── widen_switch.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── no-sink-addrspacecast.ll │ │ │ │ │ └── sink-addrspacecast.ll │ │ │ │ ├── ARM │ │ │ │ │ ├── bitreverse-recognize.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── sink-addrmode.ll │ │ │ │ ├── Mips │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── pr35209.ll │ │ │ │ ├── NVPTX │ │ │ │ │ ├── bypass-slow-div-constant-numerator.ll │ │ │ │ │ ├── bypass-slow-div-not-exact.ll │ │ │ │ │ ├── bypass-slow-div-special-cases.ll │ │ │ │ │ ├── bypass-slow-div.ll │ │ │ │ │ ├── dont-sink-nop-addrspacecast.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── basic.ll │ │ │ │ ├── bitreverse-hang.ll │ │ │ │ ├── builtin-condition.ll │ │ │ │ ├── crash-on-large-allocas.ll │ │ │ │ ├── dom-tree.ll │ │ │ │ ├── gep-unmerging.ll │ │ │ │ ├── invariant.group.ll │ │ │ │ ├── nonintegral.ll │ │ │ │ ├── overflow-intrinsics.ll │ │ │ │ ├── section-samplepgo.ll │ │ │ │ ├── section.ll │ │ │ │ ├── skip-merging-case-block.ll │ │ │ │ ├── split-indirect-loop.ll │ │ │ │ └── statepoint-relocate.ll │ │ │ ├── ConstProp │ │ │ │ ├── 2002-05-03-DivideByZeroException.ll │ │ │ │ ├── 2002-05-03-NotOperator.ll │ │ │ │ ├── 2002-09-03-SetCC-Bools.ll │ │ │ │ ├── 2003-05-12-DivideError.ll │ │ │ │ ├── 2005-01-28-SetCCGEP.ll │ │ │ │ ├── 2006-11-30-vector-cast.ll │ │ │ │ ├── 2006-12-01-TruncBoolBug.ll │ │ │ │ ├── 2006-12-01-bool-casts.ll │ │ │ │ ├── 2007-02-05-BitCast.ll │ │ │ │ ├── 2007-02-23-sdiv.ll │ │ │ │ ├── 2007-11-23-cttz.ll │ │ │ │ ├── 2008-07-07-VectorCompare.ll │ │ │ │ ├── 2009-06-20-constexpr-zero-lhs.ll │ │ │ │ ├── 2009-09-01-GEP-Crash.ll │ │ │ │ ├── InsertElement.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── bitcast.ll │ │ │ │ ├── bswap.ll │ │ │ │ ├── calls-math-finite.ll │ │ │ │ ├── calls.ll │ │ │ │ ├── constant-expr.ll │ │ │ │ ├── convert-from-fp16.ll │ │ │ │ ├── div-zero.ll │ │ │ │ ├── extractvalue.ll │ │ │ │ ├── float-to-ptr-cast.ll │ │ │ │ ├── insertvalue.ll │ │ │ │ ├── loads.ll │ │ │ │ ├── logicaltest.ll │ │ │ │ ├── overflow-ops.ll │ │ │ │ ├── phi.ll │ │ │ │ ├── remtest.ll │ │ │ │ ├── shift.ll │ │ │ │ ├── sse.ll │ │ │ │ └── trunc_vec.ll │ │ │ ├── ConstantHoisting │ │ │ │ ├── AArch64 │ │ │ │ │ ├── const-addr.ll │ │ │ │ │ ├── large-immediate.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── ARM │ │ │ │ │ ├── bad-cases.ll │ │ │ │ │ ├── const-addr-no-neg-offset.ll │ │ │ │ │ ├── gep-struct-index.ll │ │ │ │ │ ├── insertvalue.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ └── PowerPC │ │ │ │ │ ├── const-base-addr.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── masks.ll │ │ │ ├── ConstantMerge │ │ │ │ ├── 2002-09-23-CPR-Update.ll │ │ │ │ ├── 2003-10-28-MergeExternalConstants.ll │ │ │ │ ├── 2011-01-15-EitherOrder.ll │ │ │ │ ├── align.ll │ │ │ │ ├── dont-merge.ll │ │ │ │ ├── merge-both.ll │ │ │ │ ├── merge-dbg.ll │ │ │ │ └── unnamed-addr.ll │ │ │ ├── Coroutines │ │ │ │ ├── ArgAddr.ll │ │ │ │ ├── coro-catchswitch.ll │ │ │ │ ├── coro-cleanup.ll │ │ │ │ ├── coro-debug.ll │ │ │ │ ├── coro-early.ll │ │ │ │ ├── coro-eh-aware-edge-split.ll │ │ │ │ ├── coro-elide.ll │ │ │ │ ├── coro-frame.ll │ │ │ │ ├── coro-heap-elide.ll │ │ │ │ ├── coro-materialize.ll │ │ │ │ ├── coro-spill-after-phi.ll │ │ │ │ ├── coro-spill-corobegin.ll │ │ │ │ ├── coro-split-00.ll │ │ │ │ ├── coro-split-01.ll │ │ │ │ ├── coro-split-02.ll │ │ │ │ ├── coro-split-dbg.ll │ │ │ │ ├── coro-split-eh.ll │ │ │ │ ├── coro-split-musttail.ll │ │ │ │ ├── ex0.ll │ │ │ │ ├── ex1.ll │ │ │ │ ├── ex2.ll │ │ │ │ ├── ex3.ll │ │ │ │ ├── ex4.ll │ │ │ │ ├── ex5.ll │ │ │ │ ├── no-suspend.ll │ │ │ │ ├── phi-coro-end.ll │ │ │ │ ├── restart-trigger.ll │ │ │ │ └── smoketest.ll │ │ │ ├── CorrelatedValuePropagation │ │ │ │ ├── 2010-09-02-Trunc.ll │ │ │ │ ├── 2010-09-26-MergeConstantRange.ll │ │ │ │ ├── add.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── ashr.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── conflict.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── guards.ll │ │ │ │ ├── icmp.ll │ │ │ │ ├── non-null.ll │ │ │ │ ├── overflows.ll │ │ │ │ ├── range.ll │ │ │ │ ├── sdiv.ll │ │ │ │ ├── select.ll │ │ │ │ └── srem.ll │ │ │ ├── CrossDSOCFI │ │ │ │ ├── basic.ll │ │ │ │ ├── cfi_functions.ll │ │ │ │ └── thumb.ll │ │ │ ├── DCE │ │ │ │ ├── basic.ll │ │ │ │ ├── calls-errno.ll │ │ │ │ ├── guards.ll │ │ │ │ └── int_sideeffect.ll │ │ │ ├── DeadArgElim │ │ │ │ ├── 2006-06-27-struct-ret.ll │ │ │ │ ├── 2007-02-07-FuncRename.ll │ │ │ │ ├── 2007-10-18-VarargsReturn.ll │ │ │ │ ├── 2007-12-20-ParamAttrs.ll │ │ │ │ ├── 2008-01-16-VarargsParamAttrs.ll │ │ │ │ ├── 2008-06-23-DeadAfterLive.ll │ │ │ │ ├── 2009-03-17-MRE-Invoke.ll │ │ │ │ ├── 2010-04-30-DbgInfo.ll │ │ │ │ ├── 2013-05-17-VarargsAndBlockAddress.ll │ │ │ │ ├── aggregates.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── call_profile.ll │ │ │ │ ├── canon.ll │ │ │ │ ├── comdat.ll │ │ │ │ ├── dbginfo.ll │ │ │ │ ├── dead_vaargs.ll │ │ │ │ ├── deadexternal.ll │ │ │ │ ├── deadretval.ll │ │ │ │ ├── deadretval2.ll │ │ │ │ ├── funclet.ll │ │ │ │ ├── keepalive.ll │ │ │ │ ├── linkage.ll │ │ │ │ ├── multdeadretval.ll │ │ │ │ ├── naked_functions.ll │ │ │ │ ├── operandbundle.ll │ │ │ │ ├── returned.ll │ │ │ │ └── variadic_safety.ll │ │ │ ├── DeadStoreElimination │ │ │ │ ├── 2011-03-25-DSEMiscompile.ll │ │ │ │ ├── 2011-09-06-EndOfFunction.ll │ │ │ │ ├── 2011-09-06-MemCpy.ll │ │ │ │ ├── 2016-07-17-UseAfterFree.ll │ │ │ │ ├── OverwriteStoreBegin.ll │ │ │ │ ├── OverwriteStoreEnd.ll │ │ │ │ ├── PartialStore.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── calloc-store.ll │ │ │ │ ├── combined-partial-overwrites.ll │ │ │ │ ├── const-pointers.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── cs-cs-aliasing.ll │ │ │ │ ├── dominate.ll │ │ │ │ ├── fence.ll │ │ │ │ ├── free.ll │ │ │ │ ├── inst-limits.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── invariant.start.ll │ │ │ │ ├── libcalls.ll │ │ │ │ ├── lifetime.ll │ │ │ │ ├── mda-with-dbg-values.ll │ │ │ │ ├── memintrinsics.ll │ │ │ │ ├── merge-stores-big-endian.ll │ │ │ │ ├── merge-stores.ll │ │ │ │ ├── no-targetdata.ll │ │ │ │ ├── operand-bundles.ll │ │ │ │ ├── pr11390.ll │ │ │ │ └── simple.ll │ │ │ ├── DivRemPairs │ │ │ │ └── PowerPC │ │ │ │ │ ├── div-rem-pairs.ll │ │ │ │ │ └── lit.local.cfg │ │ │ ├── EarlyCSE │ │ │ │ ├── AArch64 │ │ │ │ │ ├── intrinsics.ll │ │ │ │ │ ├── ldstN.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── atomics.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── commute.ll │ │ │ │ ├── conditional.ll │ │ │ │ ├── const-speculation.ll │ │ │ │ ├── edge.ll │ │ │ │ ├── fence.ll │ │ │ │ ├── flags.ll │ │ │ │ ├── floatingpoint.ll │ │ │ │ ├── globalsaa-memoryssa.ll │ │ │ │ ├── guards.ll │ │ │ │ ├── instsimplify-dom.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── invariant-loads.ll │ │ │ │ ├── invariant.start.ll │ │ │ │ ├── memoryssa.ll │ │ │ │ ├── pr33406.ll │ │ │ │ ├── read-reg.ll │ │ │ │ └── readnone-mayunwind.ll │ │ │ ├── EliminateAvailableExternally │ │ │ │ └── visibility.ll │ │ │ ├── EntryExitInstrumenter │ │ │ │ ├── debug-info.ll │ │ │ │ └── mcount.ll │ │ │ ├── Float2Int │ │ │ │ ├── basic.ll │ │ │ │ ├── float2int-optnone.ll │ │ │ │ └── toolarge.ll │ │ │ ├── ForcedFunctionAttrs │ │ │ │ └── forced.ll │ │ │ ├── FunctionAttrs │ │ │ │ ├── 2008-09-03-Mutual.ll │ │ │ │ ├── 2008-09-03-ReadNone.ll │ │ │ │ ├── 2008-09-03-ReadOnly.ll │ │ │ │ ├── 2008-09-13-VolatileRead.ll │ │ │ │ ├── 2008-12-29-Constant.ll │ │ │ │ ├── 2009-01-02-LocalStores.ll │ │ │ │ ├── 2010-10-30-volatile.ll │ │ │ │ ├── assume.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── comdat-ipo.ll │ │ │ │ ├── convergent.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── nocapture.ll │ │ │ │ ├── nonnull-global.ll │ │ │ │ ├── nonnull.ll │ │ │ │ ├── norecurse.ll │ │ │ │ ├── operand-bundles-scc.ll │ │ │ │ ├── optnone-simple.ll │ │ │ │ ├── optnone.ll │ │ │ │ ├── out-of-bounds-iterator-bug.ll │ │ │ │ ├── readattrs.ll │ │ │ │ ├── readnone.ll │ │ │ │ └── returned.ll │ │ │ ├── FunctionImport │ │ │ │ ├── Inputs │ │ │ │ │ ├── adjustable_threshold.ll │ │ │ │ │ ├── funcimport.ll │ │ │ │ │ ├── funcimport_alias.ll │ │ │ │ │ ├── funcimport_debug.ll │ │ │ │ │ ├── funcimport_var2.ll │ │ │ │ │ ├── hotness_based_import.ll │ │ │ │ │ ├── hotness_based_import2.ll │ │ │ │ │ └── inlineasm.ll │ │ │ │ ├── adjustable_threshold.ll │ │ │ │ ├── funcimport.ll │ │ │ │ ├── funcimport_alias.ll │ │ │ │ ├── funcimport_debug.ll │ │ │ │ ├── funcimport_var.ll │ │ │ │ ├── hotness_based_import.ll │ │ │ │ ├── hotness_based_import2.ll │ │ │ │ └── inlineasm.ll │ │ │ ├── GCOVProfiling │ │ │ │ ├── function-numbering.ll │ │ │ │ ├── global-ctor.ll │ │ │ │ ├── linezero.ll │ │ │ │ ├── linkagename.ll │ │ │ │ ├── modules.ll │ │ │ │ ├── return-block.ll │ │ │ │ ├── three-element-mdnode.ll │ │ │ │ └── version.ll │ │ │ ├── GVN │ │ │ │ ├── 2007-07-25-DominatedLoop.ll │ │ │ │ ├── 2007-07-25-InfiniteLoop.ll │ │ │ │ ├── 2007-07-25-Loop.ll │ │ │ │ ├── 2007-07-25-NestedLoop.ll │ │ │ │ ├── 2007-07-25-SinglePredecessor.ll │ │ │ │ ├── 2007-07-26-InterlockingLoops.ll │ │ │ │ ├── 2007-07-26-NonRedundant.ll │ │ │ │ ├── 2007-07-26-PhiErasure.ll │ │ │ │ ├── 2007-07-30-PredIDom.ll │ │ │ │ ├── 2007-07-31-NoDomInherit.ll │ │ │ │ ├── 2007-07-31-RedundantPhi.ll │ │ │ │ ├── 2008-02-12-UndefLoad.ll │ │ │ │ ├── 2008-02-13-NewPHI.ll │ │ │ │ ├── 2008-07-02-Unreachable.ll │ │ │ │ ├── 2008-12-09-SelfRemove.ll │ │ │ │ ├── 2008-12-12-RLE-Crash.ll │ │ │ │ ├── 2008-12-14-rle-reanalyze.ll │ │ │ │ ├── 2008-12-15-CacheVisited.ll │ │ │ │ ├── 2009-01-21-SortInvalidation.ll │ │ │ │ ├── 2009-01-22-SortInvalidation.ll │ │ │ │ ├── 2009-03-10-PREOnVoid.ll │ │ │ │ ├── 2009-07-13-MemDepSortFail.ll │ │ │ │ ├── 2009-11-12-MemDepMallocBitCast.ll │ │ │ │ ├── 2010-03-31-RedundantPHIs.ll │ │ │ │ ├── 2010-05-08-OneBit.ll │ │ │ │ ├── 2010-11-13-Simplify.ll │ │ │ │ ├── 2011-04-27-phioperands.ll │ │ │ │ ├── 2011-07-07-MatchIntrinsicExtract.ll │ │ │ │ ├── 2011-09-07-TypeIdFor.ll │ │ │ │ ├── 2012-05-22-PreCrash.ll │ │ │ │ ├── 2016-08-30-MaskedScatterGather.ll │ │ │ │ ├── MemdepMiscompile.ll │ │ │ │ ├── PRE │ │ │ │ │ ├── 2009-02-17-LoadPRECrash.ll │ │ │ │ │ ├── 2009-06-17-InvalidPRE.ll │ │ │ │ │ ├── 2011-06-01-NonLocalMemdepMiscompile.ll │ │ │ │ │ ├── 2017-06-28-pre-load-dbgloc.ll │ │ │ │ │ ├── 2017-10-16-LoadPRECrash.ll │ │ │ │ │ ├── atomic.ll │ │ │ │ │ ├── invariant-load.ll │ │ │ │ │ ├── load-metadata.ll │ │ │ │ │ ├── load-pre-align.ll │ │ │ │ │ ├── load-pre-licm.ll │ │ │ │ │ ├── load-pre-nonlocal.ll │ │ │ │ │ ├── local-pre.ll │ │ │ │ │ ├── lpre-call-wrap-2.ll │ │ │ │ │ ├── lpre-call-wrap.ll │ │ │ │ │ ├── nonintegral.ll │ │ │ │ │ ├── phi-translate-2.ll │ │ │ │ │ ├── phi-translate.ll │ │ │ │ │ ├── pre-basic-add.ll │ │ │ │ │ ├── pre-gep-load.ll │ │ │ │ │ ├── pre-jt-add.ll │ │ │ │ │ ├── pre-load-guards.ll │ │ │ │ │ ├── pre-load-implicit-cf-updates.ll │ │ │ │ │ ├── pre-load.ll │ │ │ │ │ ├── pre-no-cost-phi.ll │ │ │ │ │ ├── pre-poison-add.ll │ │ │ │ │ ├── pre-single-pred.ll │ │ │ │ │ ├── preserve-tbaa.ll │ │ │ │ │ ├── rle-addrspace-cast.ll │ │ │ │ │ ├── rle-phi-translate.ll │ │ │ │ │ ├── rle-semidominated.ll │ │ │ │ │ ├── rle.ll │ │ │ │ │ └── volatile.ll │ │ │ │ ├── assume-equal.ll │ │ │ │ ├── basic-undef-test.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── big-endian.ll │ │ │ │ ├── bitcast-of-call.ll │ │ │ │ ├── br-identical.ll │ │ │ │ ├── calloc-load-removal.ll │ │ │ │ ├── calls-nonlocal.ll │ │ │ │ ├── calls-readonly.ll │ │ │ │ ├── commute.ll │ │ │ │ ├── cond_br.ll │ │ │ │ ├── cond_br2.ll │ │ │ │ ├── condprop.ll │ │ │ │ ├── crash-no-aa.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── dbg-redundant-load.ll │ │ │ │ ├── debugloc.ll │ │ │ │ ├── edge.ll │ │ │ │ ├── fence.ll │ │ │ │ ├── flags.ll │ │ │ │ ├── fold-const-expr.ll │ │ │ │ ├── fpmath.ll │ │ │ │ ├── funclet.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── invariant.group.ll │ │ │ │ ├── invariant.start.ll │ │ │ │ ├── lifetime-simple.ll │ │ │ │ ├── load-constant-mem.ll │ │ │ │ ├── load-from-unreachable-predecessor.ll │ │ │ │ ├── malloc-load-removal.ll │ │ │ │ ├── no_speculative_loads_with_asan.ll │ │ │ │ ├── noalias.ll │ │ │ │ ├── non-integral-pointers.ll │ │ │ │ ├── non-local-offset.ll │ │ │ │ ├── nonescaping-malloc.ll │ │ │ │ ├── null-aliases-nothing.ll │ │ │ │ ├── opt-remarks.ll │ │ │ │ ├── phi-translate-partial-alias.ll │ │ │ │ ├── pr10820.ll │ │ │ │ ├── pr12979.ll │ │ │ │ ├── pr14166.ll │ │ │ │ ├── pr17732.ll │ │ │ │ ├── pr17852.ll │ │ │ │ ├── pr24397.ll │ │ │ │ ├── pr24426.ll │ │ │ │ ├── pr25440.ll │ │ │ │ ├── pr28562.ll │ │ │ │ ├── pr32314.ll │ │ │ │ ├── pr34908.ll │ │ │ │ ├── pre-compare.ll │ │ │ │ ├── pre-new-inst.ll │ │ │ │ ├── propagate-ir-flags.ll │ │ │ │ ├── range.ll │ │ │ │ ├── readattrs.ll │ │ │ │ ├── rle-must-alias.ll │ │ │ │ ├── rle-no-phi-translate.ll │ │ │ │ ├── rle-nonlocal.ll │ │ │ │ ├── stale-loop-info.ll │ │ │ │ ├── tbaa.ll │ │ │ │ ├── unreachable_block_infinite_loop.ll │ │ │ │ └── volatile-nonvolatile.ll │ │ │ ├── GVNHoist │ │ │ │ ├── hoist-call.ll │ │ │ │ ├── hoist-convergent.ll │ │ │ │ ├── hoist-inline.ll │ │ │ │ ├── hoist-md.ll │ │ │ │ ├── hoist-more-than-two-branches.ll │ │ │ │ ├── hoist-mssa.ll │ │ │ │ ├── hoist-newgvn.ll │ │ │ │ ├── hoist-pr20242.ll │ │ │ │ ├── hoist-pr22005.ll │ │ │ │ ├── hoist-pr28606.ll │ │ │ │ ├── hoist-pr28933.ll │ │ │ │ ├── hoist-pr31891.ll │ │ │ │ ├── hoist-recursive-geps.ll │ │ │ │ ├── hoist-unsafe-pr31729.ll │ │ │ │ ├── hoist-very-busy.ll │ │ │ │ ├── hoist.ll │ │ │ │ ├── infinite-loop-direct.ll │ │ │ │ ├── infinite-loop-indirect.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── ld_hoist1.ll │ │ │ │ ├── ld_hoist_st_sink.ll │ │ │ │ ├── pr28626.ll │ │ │ │ ├── pr29031.ll │ │ │ │ ├── pr29034.ll │ │ │ │ ├── pr30216.ll │ │ │ │ ├── pr30499.ll │ │ │ │ └── pr35222-hoist-load.ll │ │ │ ├── GVNSink │ │ │ │ ├── dither.ll │ │ │ │ ├── indirect-call.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── sink-common-code.ll │ │ │ │ └── struct.ll │ │ │ ├── GlobalDCE │ │ │ │ ├── 2002-07-17-CastRef.ll │ │ │ │ ├── 2002-07-17-ConstantRef.ll │ │ │ │ ├── 2002-08-17-FunctionDGE.ll │ │ │ │ ├── 2002-08-17-WorkListTest.ll │ │ │ │ ├── 2002-09-12-Redeletion.ll │ │ │ │ ├── 2003-07-01-SelfReference.ll │ │ │ │ ├── 2003-10-09-PreserveWeakGlobals.ll │ │ │ │ ├── 2009-01-05-DeadAliases.ll │ │ │ │ ├── 2009-02-17-AliasUsesAliasee.ll │ │ │ │ ├── basicvariabletest.ll │ │ │ │ ├── comdats.ll │ │ │ │ ├── complex-constantexpr.ll │ │ │ │ ├── crash-assertingvh.ll │ │ │ │ ├── deadblockaddr.ll │ │ │ │ ├── externally_available.ll │ │ │ │ ├── global-ifunc.ll │ │ │ │ ├── global_ctors.ll │ │ │ │ ├── global_ctors_integration.ll │ │ │ │ └── indirectbr.ll │ │ │ ├── GlobalMerge │ │ │ │ ├── basic.ll │ │ │ │ └── debug-info.ll │ │ │ ├── GlobalOpt │ │ │ │ ├── 2004-10-10-CastStoreOnce.ll │ │ │ │ ├── 2005-06-15-LocalizeConstExprCrash.ll │ │ │ │ ├── 2005-09-27-Crash.ll │ │ │ │ ├── 2006-07-07-InlineAsmCrash.ll │ │ │ │ ├── 2006-11-01-ShrinkGlobalPhiCrash.ll │ │ │ │ ├── 2007-04-05-Crash.ll │ │ │ │ ├── 2007-05-13-Crash.ll │ │ │ │ ├── 2007-06-04-PackedStruct.ll │ │ │ │ ├── 2007-11-09-GEP-GEP-Crash.ll │ │ │ │ ├── 2008-01-03-Crash.ll │ │ │ │ ├── 2008-01-13-OutOfRangeSROA.ll │ │ │ │ ├── 2008-01-29-VolatileGlobal.ll │ │ │ │ ├── 2008-04-26-SROA-Global-Align.ll │ │ │ │ ├── 2008-07-17-addrspace.ll │ │ │ │ ├── 2008-12-16-HeapSRACrash-2.ll │ │ │ │ ├── 2008-12-16-HeapSRACrash.ll │ │ │ │ ├── 2009-01-13-phi-user.ll │ │ │ │ ├── 2009-02-15-BitcastAlias.ll │ │ │ │ ├── 2009-02-15-ResolveAlias.ll │ │ │ │ ├── 2009-03-05-dbg.ll │ │ │ │ ├── 2009-03-06-Anonymous.ll │ │ │ │ ├── 2009-03-07-PromotePtrToBool.ll │ │ │ │ ├── 2009-06-01-RecursivePHI.ll │ │ │ │ ├── 2009-11-16-BrokenPerformHeapAllocSRoA.ll │ │ │ │ ├── 2009-11-16-MallocSingleStoreToGlobalVar.ll │ │ │ │ ├── 2010-02-25-MallocPromote.ll │ │ │ │ ├── 2010-02-26-MallocSROA.ll │ │ │ │ ├── 2010-10-19-WeakOdr.ll │ │ │ │ ├── 2011-04-09-EmptyGlobalCtors.ll │ │ │ │ ├── 2012-05-11-blockaddress.ll │ │ │ │ ├── GSROA-section.ll │ │ │ │ ├── MallocSROA-section.ll │ │ │ │ ├── SROA-section.ll │ │ │ │ ├── alias-resolve.ll │ │ │ │ ├── alias-used-address-space.ll │ │ │ │ ├── alias-used-section.ll │ │ │ │ ├── alias-used.ll │ │ │ │ ├── array-elem-refs.ll │ │ │ │ ├── assume.ll │ │ │ │ ├── atexit.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── available_externally_global_ctors.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── blockaddress.ll │ │ │ │ ├── cleanup-pointer-root-users.ll │ │ │ │ ├── compiler-used.ll │ │ │ │ ├── constantexpr-dangle.ll │ │ │ │ ├── constantfold-initializers.ll │ │ │ │ ├── crash-2.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── ctor-list-opt-constexpr.ll │ │ │ │ ├── ctor-list-opt-inbounds.ll │ │ │ │ ├── ctor-list-opt.ll │ │ │ │ ├── cxx-dtor.ll │ │ │ │ ├── deaddeclaration.ll │ │ │ │ ├── deadfunction.ll │ │ │ │ ├── deadglobal-2.ll │ │ │ │ ├── deadglobal.ll │ │ │ │ ├── externally-initialized-aggregate.ll │ │ │ │ ├── externally-initialized-global-ctr.ll │ │ │ │ ├── externally-initialized.ll │ │ │ │ ├── fastcc.ll │ │ │ │ ├── global-demotion.ll │ │ │ │ ├── globalsra-partial.ll │ │ │ │ ├── globalsra-unknown-index.ll │ │ │ │ ├── globalsra.ll │ │ │ │ ├── heap-sra-1.ll │ │ │ │ ├── heap-sra-2.ll │ │ │ │ ├── heap-sra-3.ll │ │ │ │ ├── heap-sra-4.ll │ │ │ │ ├── heap-sra-phi.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── integer-bool-dwarf.ll │ │ │ │ ├── integer-bool.ll │ │ │ │ ├── invariant-nodatalayout.ll │ │ │ │ ├── invariant.group.barrier.ll │ │ │ │ ├── invariant.ll │ │ │ │ ├── invoke.ll │ │ │ │ ├── iterate.ll │ │ │ │ ├── load-store-global.ll │ │ │ │ ├── localize-constexpr-debuginfo.ll │ │ │ │ ├── localize-constexpr.ll │ │ │ │ ├── malloc-promote-1.ll │ │ │ │ ├── malloc-promote-2.ll │ │ │ │ ├── malloc-promote-3.ll │ │ │ │ ├── memcpy.ll │ │ │ │ ├── memset-null.ll │ │ │ │ ├── memset.ll │ │ │ │ ├── metadata.ll │ │ │ │ ├── phi-select.ll │ │ │ │ ├── pr21191.ll │ │ │ │ ├── pr33686.ll │ │ │ │ ├── preserve-comdats.ll │ │ │ │ ├── shrink-address-to-bool.ll │ │ │ │ ├── storepointer-compare.ll │ │ │ │ ├── storepointer.ll │ │ │ │ ├── tls.ll │ │ │ │ ├── trivialstore.ll │ │ │ │ ├── undef-init.ll │ │ │ │ ├── unnamed-addr.ll │ │ │ │ └── zeroinitializer-gep-load.ll │ │ │ ├── GlobalSplit │ │ │ │ ├── basic.ll │ │ │ │ ├── non-beneficial.ll │ │ │ │ └── nonlocal.ll │ │ │ ├── GuardWidening │ │ │ │ ├── basic.ll │ │ │ │ └── range-check-merging.ll │ │ │ ├── IPConstantProp │ │ │ │ ├── 2008-06-09-WeakProp.ll │ │ │ │ ├── 2009-09-24-byval-ptr.ll │ │ │ │ ├── PR16052.ll │ │ │ │ ├── PR26044.ll │ │ │ │ ├── comdat-ipo.ll │ │ │ │ ├── dangling-block-address.ll │ │ │ │ ├── deadarg.ll │ │ │ │ ├── fp-bc-icmp-const-fold.ll │ │ │ │ ├── global.ll │ │ │ │ ├── naked-return.ll │ │ │ │ ├── recursion.ll │ │ │ │ ├── return-argument.ll │ │ │ │ ├── return-constant.ll │ │ │ │ ├── return-constants.ll │ │ │ │ └── user-with-multiple-uses.ll │ │ │ ├── IRCE │ │ │ │ ├── add-metadata-pre-post-loops.ll │ │ │ │ ├── bad-loop-structure.ll │ │ │ │ ├── bad_expander.ll │ │ │ │ ├── bug-loop-varying-upper-limit.ll │ │ │ │ ├── bug-mismatched-types.ll │ │ │ │ ├── clamp.ll │ │ │ │ ├── conjunctive-checks.ll │ │ │ │ ├── correct-loop-info.ll │ │ │ │ ├── decrementing-loop.ll │ │ │ │ ├── empty_ranges.ll │ │ │ │ ├── eq_ne.ll │ │ │ │ ├── low-becount.ll │ │ │ │ ├── multiple-access-no-preloop.ll │ │ │ │ ├── not-likely-taken.ll │ │ │ │ ├── only-lower-check.ll │ │ │ │ ├── only-upper-check.ll │ │ │ │ ├── pre_post_loops.ll │ │ │ │ ├── range_intersect_miscompile.ll │ │ │ │ ├── ranges_of_different_types.ll │ │ │ │ ├── single-access-no-preloop.ll │ │ │ │ ├── single-access-with-preloop.ll │ │ │ │ ├── skip-profitability-checks.ll │ │ │ │ ├── stride_more_than_1.ll │ │ │ │ ├── unhandled.ll │ │ │ │ ├── unsigned_comparisons_ugt.ll │ │ │ │ ├── unsigned_comparisons_ult.ll │ │ │ │ └── with-parent-loops.ll │ │ │ ├── IndVarSimplify │ │ │ │ ├── 2002-09-09-PointerIndVar.ll │ │ │ │ ├── 2003-04-16-ExprAnalysis.ll │ │ │ │ ├── 2003-09-23-NotAtTop.ll │ │ │ │ ├── 2003-12-10-RemoveInstrCrash.ll │ │ │ │ ├── 2003-12-15-Crash.ll │ │ │ │ ├── 2004-03-10-PHIInsertionBug.ll │ │ │ │ ├── 2004-04-05-InvokeCastCrash.ll │ │ │ │ ├── 2004-04-07-ScalarEvolutionCrash.ll │ │ │ │ ├── 2005-02-11-InvokeCrash.ll │ │ │ │ ├── 2005-02-17-TruncateExprCrash.ll │ │ │ │ ├── 2005-02-26-ExitValueCompute.ll │ │ │ │ ├── 2005-06-15-InstMoveCrash.ll │ │ │ │ ├── 2005-11-18-Crash.ll │ │ │ │ ├── 2006-03-31-NegativeStride.ll │ │ │ │ ├── 2006-06-16-Indvar-LCSSA-Crash.ll │ │ │ │ ├── 2006-09-20-LFTR-Crash.ll │ │ │ │ ├── 2006-12-10-BitCast.ll │ │ │ │ ├── 2007-01-06-TripCount.ll │ │ │ │ ├── 2007-06-06-DeleteDanglesPtr.ll │ │ │ │ ├── 2007-11-23-BitcastCrash.ll │ │ │ │ ├── 2008-06-15-SCEVExpanderBug.ll │ │ │ │ ├── 2008-09-02-IVType.ll │ │ │ │ ├── 2008-10-03-CouldNotCompute.ll │ │ │ │ ├── 2008-11-25-APFloatAssert.ll │ │ │ │ ├── 2009-04-14-shorten_iv_vars.ll │ │ │ │ ├── 2009-04-15-shorten-iv-vars-2.ll │ │ │ │ ├── 2009-04-22-IndvarCrash.ll │ │ │ │ ├── 2009-04-27-Floating.ll │ │ │ │ ├── 2009-05-24-useafterfree.ll │ │ │ │ ├── 2011-09-10-widen-nsw.ll │ │ │ │ ├── 2011-09-19-vectoriv.ll │ │ │ │ ├── 2011-09-27-hoistsext.ll │ │ │ │ ├── 2011-10-27-lftrnull.ll │ │ │ │ ├── 2011-11-01-lftrptr.ll │ │ │ │ ├── 2011-11-15-multiexit.ll │ │ │ │ ├── 2011-11-17-selfphi.ll │ │ │ │ ├── 2012-07-17-lftr-undef.ll │ │ │ │ ├── 2012-10-19-congruent-constant.ll │ │ │ │ ├── 2014-06-21-congruent-constant.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── no-widen-to-i64.ll │ │ │ │ ├── NVPTX │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── no-widen-expensive.ll │ │ │ │ ├── ada-loops.ll │ │ │ │ ├── ashr-tripcount.ll │ │ │ │ ├── avoid-i0.ll │ │ │ │ ├── backedge-on-min-max.ll │ │ │ │ ├── bec-cmp.ll │ │ │ │ ├── canonicalize-cmp.ll │ │ │ │ ├── casted-argument.ll │ │ │ │ ├── const_phi.ll │ │ │ │ ├── constant-fold.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── dangling-use.ll │ │ │ │ ├── divide-pointer.ll │ │ │ │ ├── dont-recompute.ll │ │ │ │ ├── elim-extend.ll │ │ │ │ ├── eliminate-comparison.ll │ │ │ │ ├── eliminate-max.ll │ │ │ │ ├── eliminate-rem.ll │ │ │ │ ├── exit_value_test2.ll │ │ │ │ ├── exit_value_test3.ll │ │ │ │ ├── exit_value_tests.ll │ │ │ │ ├── floating-point-iv.ll │ │ │ │ ├── huge_muls.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── interesting-invoke-use.ll │ │ │ │ ├── iterationCount_zext_or_trunc.ll │ │ │ │ ├── iv-fold.ll │ │ │ │ ├── iv-sext.ll │ │ │ │ ├── iv-widen-elim-ext.ll │ │ │ │ ├── iv-widen.ll │ │ │ │ ├── iv-zext.ll │ │ │ │ ├── lcssa-preservation.ll │ │ │ │ ├── lftr-address-space-pointers.ll │ │ │ │ ├── lftr-extend-const.ll │ │ │ │ ├── lftr-other-uses.ll │ │ │ │ ├── lftr-promote.ll │ │ │ │ ├── lftr-reuse.ll │ │ │ │ ├── lftr-udiv-tripcount.ll │ │ │ │ ├── lftr-wide-trip-count.ll │ │ │ │ ├── lftr-zext.ll │ │ │ │ ├── lftr_disabled.ll │ │ │ │ ├── lftr_simple.ll │ │ │ │ ├── loop-invariant-conditions.ll │ │ │ │ ├── loop_evaluate10.ll │ │ │ │ ├── loop_evaluate11.ll │ │ │ │ ├── loop_evaluate7.ll │ │ │ │ ├── loop_evaluate8.ll │ │ │ │ ├── loop_evaluate9.ll │ │ │ │ ├── loop_evaluate_1.ll │ │ │ │ ├── loop_evaluate_2.ll │ │ │ │ ├── loop_evaluate_3.ll │ │ │ │ ├── loop_evaluate_4.ll │ │ │ │ ├── loop_evaluate_5.ll │ │ │ │ ├── loop_evaluate_6.ll │ │ │ │ ├── lrev-existing-umin.ll │ │ │ │ ├── masked-iv.ll │ │ │ │ ├── no-iv-rewrite.ll │ │ │ │ ├── overflow-intrinsics.ll │ │ │ │ ├── phi-uses-value-multiple-times.ll │ │ │ │ ├── polynomial-expand.ll │ │ │ │ ├── post-inc-range.ll │ │ │ │ ├── pr18223.ll │ │ │ │ ├── pr20680.ll │ │ │ │ ├── pr22222.ll │ │ │ │ ├── pr24356.ll │ │ │ │ ├── pr24783.ll │ │ │ │ ├── pr24804.ll │ │ │ │ ├── pr24952.ll │ │ │ │ ├── pr24956.ll │ │ │ │ ├── pr25047.ll │ │ │ │ ├── pr25051.ll │ │ │ │ ├── pr25060.ll │ │ │ │ ├── pr25360.ll │ │ │ │ ├── pr25421.ll │ │ │ │ ├── pr25576.ll │ │ │ │ ├── pr25578.ll │ │ │ │ ├── pr26207.ll │ │ │ │ ├── pr26973.ll │ │ │ │ ├── pr26974.ll │ │ │ │ ├── pr27133.ll │ │ │ │ ├── pr28935.ll │ │ │ │ ├── pr32045.ll │ │ │ │ ├── pr35406.ll │ │ │ │ ├── preserve-signed-wrap.ll │ │ │ │ ├── promote-iv-to-eliminate-casts.ll │ │ │ │ ├── replace-iv-with-loop-invariant.ll │ │ │ │ ├── replace-sdiv-by-udiv.ll │ │ │ │ ├── replace-srem-by-urem.ll │ │ │ │ ├── rewrite-loop-exit-value.ll │ │ │ │ ├── scev-phi-debug-info.ll │ │ │ │ ├── scevexpander-phi-base-case.ll │ │ │ │ ├── sharpen-range.ll │ │ │ │ ├── shrunk-constant.ll │ │ │ │ ├── signed-trip-count.ll │ │ │ │ ├── single-element-range.ll │ │ │ │ ├── sink-alloca.ll │ │ │ │ ├── sink-trapping.ll │ │ │ │ ├── strengthen-overflow.ll │ │ │ │ ├── tripcount_compute.ll │ │ │ │ ├── tripcount_infinite.ll │ │ │ │ ├── udiv-invariant-but-traps.ll │ │ │ │ ├── udiv.ll │ │ │ │ ├── uglygep.ll │ │ │ │ ├── ult-sub-to-eq.ll │ │ │ │ ├── use-range-metadata.ll │ │ │ │ ├── variable-stride-ivs-0.ll │ │ │ │ ├── variable-stride-ivs-1.ll │ │ │ │ ├── verify-scev.ll │ │ │ │ ├── widen-loop-comp.ll │ │ │ │ ├── widen-nsw.ll │ │ │ │ └── zext-nuw.ll │ │ │ ├── IndirectBrExpand │ │ │ │ └── basic.ll │ │ │ ├── InferAddressSpaces │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── basic.ll │ │ │ │ │ ├── icmp.ll │ │ │ │ │ ├── infer-address-space.ll │ │ │ │ │ ├── infer-addrspacecast.ll │ │ │ │ │ ├── infer-getelementptr.ll │ │ │ │ │ ├── intrinsics.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── mem-intrinsics.ll │ │ │ │ │ ├── old-pass-regressions.ll │ │ │ │ │ ├── select.ll │ │ │ │ │ └── volatile.ll │ │ │ │ └── NVPTX │ │ │ │ │ ├── bug31948.ll │ │ │ │ │ ├── clone_constexpr.ll │ │ │ │ │ └── lit.local.cfg │ │ │ ├── InferFunctionAttrs │ │ │ │ ├── annotate.ll │ │ │ │ ├── no-proto.ll │ │ │ │ └── pr30455.ll │ │ │ ├── Inline │ │ │ │ ├── 2003-09-14-InlineValue.ll │ │ │ │ ├── 2003-09-22-PHINodeInlineFail.ll │ │ │ │ ├── 2003-09-22-PHINodesInExceptionDest.ll │ │ │ │ ├── 2003-09-22-PHINodesInNormalInvokeDest.ll │ │ │ │ ├── 2003-10-13-AllocaDominanceProblem.ll │ │ │ │ ├── 2004-04-15-InlineDeletesCall.ll │ │ │ │ ├── 2004-04-20-InlineLinkOnce.ll │ │ │ │ ├── 2004-10-17-InlineFunctionWithoutReturn.ll │ │ │ │ ├── 2006-01-14-CallGraphUpdate.ll │ │ │ │ ├── 2006-07-12-InlinePruneCGUpdate.ll │ │ │ │ ├── 2006-11-09-InlineCGUpdate-2.ll │ │ │ │ ├── 2006-11-09-InlineCGUpdate.ll │ │ │ │ ├── 2007-04-15-InlineEH.ll │ │ │ │ ├── 2007-06-25-WeakInline.ll │ │ │ │ ├── 2007-12-19-InlineNoUnwind.ll │ │ │ │ ├── 2008-09-02-NoInline.ll │ │ │ │ ├── 2009-01-08-NoInlineDynamicAlloca.ll │ │ │ │ ├── 2009-01-13-RecursiveInlineCrash.ll │ │ │ │ ├── 2009-05-07-CallUsingSelfCrash.ll │ │ │ │ ├── 2010-05-12-ValueMap.ll │ │ │ │ ├── AArch64 │ │ │ │ │ ├── binop.ll │ │ │ │ │ ├── ext.ll │ │ │ │ │ ├── gep-cost.ll │ │ │ │ │ ├── inline-target-attr.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── logical-and-or.ll │ │ │ │ │ ├── phi.ll │ │ │ │ │ ├── select.ll │ │ │ │ │ └── switch.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── inline-target-cpu.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── ARM │ │ │ │ │ ├── inline-fp.ll │ │ │ │ │ ├── inline-target-attr.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── PR4909.ll │ │ │ │ ├── PowerPC │ │ │ │ │ ├── ext.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── align.ll │ │ │ │ ├── alloca-bonus.ll │ │ │ │ ├── alloca-dbgdeclare-merge.ll │ │ │ │ ├── alloca-dbgdeclare.ll │ │ │ │ ├── alloca-in-scc.ll │ │ │ │ ├── alloca-merge-align.ll │ │ │ │ ├── alloca_test.ll │ │ │ │ ├── always-inline.ll │ │ │ │ ├── arg-attr-propagation.ll │ │ │ │ ├── array-alloca.ll │ │ │ │ ├── array_merge.ll │ │ │ │ ├── attributes.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── bfi-update.ll │ │ │ │ ├── blockaddress.ll │ │ │ │ ├── byval-tail-call.ll │ │ │ │ ├── byval.ll │ │ │ │ ├── byval_lifetime.ll │ │ │ │ ├── callgraph-update.ll │ │ │ │ ├── casts.ll │ │ │ │ ├── cfg_preserve_test.ll │ │ │ │ ├── cgscc-cycle.ll │ │ │ │ ├── cgscc-incremental-invalidate.ll │ │ │ │ ├── cgscc-invalidate.ll │ │ │ │ ├── cgscc-update.ll │ │ │ │ ├── clear-analyses.ll │ │ │ │ ├── comdat-ipo.ll │ │ │ │ ├── crash-lifetime-marker.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── crash2.ll │ │ │ │ ├── debug-info-duplicate-calls.ll │ │ │ │ ├── debug-invoke.ll │ │ │ │ ├── delete-call.ll │ │ │ │ ├── deopt-bundles.ll │ │ │ │ ├── deoptimize-intrinsic-cconv.ll │ │ │ │ ├── deoptimize-intrinsic.ll │ │ │ │ ├── devirtualize-2.ll │ │ │ │ ├── devirtualize-3.ll │ │ │ │ ├── devirtualize.ll │ │ │ │ ├── dynamic_alloca_test.ll │ │ │ │ ├── ephemeral.ll │ │ │ │ ├── externally_available.ll │ │ │ │ ├── frameescape.ll │ │ │ │ ├── function-count-update-2.ll │ │ │ │ ├── function-count-update-3.ll │ │ │ │ ├── function-count-update.ll │ │ │ │ ├── guard-intrinsic.ll │ │ │ │ ├── gvn-inline-iteration.ll │ │ │ │ ├── ignore-debug-info.ll │ │ │ │ ├── inalloca-not-static.ll │ │ │ │ ├── inline-assume.ll │ │ │ │ ├── inline-byval-bonus.ll │ │ │ │ ├── inline-cold-callee.ll │ │ │ │ ├── inline-cold-callsite-pgo.ll │ │ │ │ ├── inline-cold-callsite-samplepgo.ll │ │ │ │ ├── inline-cold-callsite.ll │ │ │ │ ├── inline-cold.ll │ │ │ │ ├── inline-constexpr-addrspacecast-argument.ll │ │ │ │ ├── inline-fast-math-flags.ll │ │ │ │ ├── inline-funclets.ll │ │ │ │ ├── inline-hot-callee.ll │ │ │ │ ├── inline-hot-callsite-2.ll │ │ │ │ ├── inline-hot-callsite.ll │ │ │ │ ├── inline-indirect.ll │ │ │ │ ├── inline-invoke-tail.ll │ │ │ │ ├── inline-invoke-with-asm-call.ll │ │ │ │ ├── inline-musttail-varargs.ll │ │ │ │ ├── inline-optnone.ll │ │ │ │ ├── inline-optsize.ll │ │ │ │ ├── inline-probe-stack.ll │ │ │ │ ├── inline-stack-probe-size.ll │ │ │ │ ├── inline-tail.ll │ │ │ │ ├── inline-threshold.ll │ │ │ │ ├── inline-vla.ll │ │ │ │ ├── inline_cleanup.ll │ │ │ │ ├── inline_constprop.ll │ │ │ │ ├── inline_dbg_declare.ll │ │ │ │ ├── inline_dce.ll │ │ │ │ ├── inline_invoke.ll │ │ │ │ ├── inline_minisize.ll │ │ │ │ ├── inline_prune.ll │ │ │ │ ├── inline_returns_twice.ll │ │ │ │ ├── inline_ssp.ll │ │ │ │ ├── inline_stats.ll │ │ │ │ ├── inline_unreachable-2.ll │ │ │ │ ├── inline_unreachable.ll │ │ │ │ ├── internal-scc-members.ll │ │ │ │ ├── invoke-cleanup.ll │ │ │ │ ├── invoke-combine-clauses.ll │ │ │ │ ├── invoke-cost.ll │ │ │ │ ├── invoke_test-1.ll │ │ │ │ ├── invoke_test-2.ll │ │ │ │ ├── invoke_test-3.ll │ │ │ │ ├── label-annotation.ll │ │ │ │ ├── last-call-bonus.ll │ │ │ │ ├── last-call-no-bonus.ll │ │ │ │ ├── last-callsite.ll │ │ │ │ ├── lifetime-no-datalayout.ll │ │ │ │ ├── lifetime.ll │ │ │ │ ├── local-as-metadata-undominated-use.ll │ │ │ │ ├── monster_scc.ll │ │ │ │ ├── nested-inline.ll │ │ │ │ ├── noalias-calls.ll │ │ │ │ ├── noalias-cs.ll │ │ │ │ ├── noalias.ll │ │ │ │ ├── noalias2.ll │ │ │ │ ├── noinline-recursive-fn.ll │ │ │ │ ├── noinline.ll │ │ │ │ ├── nonnull.ll │ │ │ │ ├── null-function.ll │ │ │ │ ├── optimization-remarks-hotness-threshold.ll │ │ │ │ ├── optimization-remarks-passed-yaml.ll │ │ │ │ ├── optimization-remarks-with-hotness.ll │ │ │ │ ├── optimization-remarks-yaml.ll │ │ │ │ ├── optimization-remarks.ll │ │ │ │ ├── parallel-loop-md.ll │ │ │ │ ├── partial-inline-act.ll │ │ │ │ ├── pr21206.ll │ │ │ │ ├── pr22285.ll │ │ │ │ ├── pr26698.ll │ │ │ │ ├── pr28298.ll │ │ │ │ ├── pr33637.ll │ │ │ │ ├── prof-update-instr.ll │ │ │ │ ├── prof-update-sample.ll │ │ │ │ ├── profile-meta.ll │ │ │ │ ├── ptr-diff.ll │ │ │ │ ├── recursive.ll │ │ │ │ ├── redundant-loads.ll │ │ │ │ ├── store-sroa.ll │ │ │ │ ├── switch.ll │ │ │ │ ├── vector-bonus.ll │ │ │ │ ├── vector-no-bonus.ll │ │ │ │ └── zero-cost.ll │ │ │ ├── InstCombine │ │ │ │ ├── 2003-05-26-CastMiscompile.ll │ │ │ │ ├── 2003-05-27-ConstExprCrash.ll │ │ │ │ ├── 2003-06-05-BranchInvertInfLoop.ll │ │ │ │ ├── 2003-07-21-ExternalConstant.ll │ │ │ │ ├── 2003-08-12-AllocaNonNull.ll │ │ │ │ ├── 2003-09-09-VolatileLoadElim.ll │ │ │ │ ├── 2003-10-29-CallSiteResolve.ll │ │ │ │ ├── 2003-11-03-VarargsCallBug.ll │ │ │ │ ├── 2004-01-13-InstCombineInvokePHI.ll │ │ │ │ ├── 2004-02-23-ShiftShiftOverflow.ll │ │ │ │ ├── 2004-03-13-InstCombineInfLoop.ll │ │ │ │ ├── 2004-04-04-InstCombineReplaceAllUsesWith.ll │ │ │ │ ├── 2004-05-07-UnsizedCastLoad.ll │ │ │ │ ├── 2004-07-27-ConstantExprMul.ll │ │ │ │ ├── 2004-08-09-RemInfLoop.ll │ │ │ │ ├── 2004-08-10-BoolSetCC.ll │ │ │ │ ├── 2004-09-20-BadLoadCombine.ll │ │ │ │ ├── 2004-09-20-BadLoadCombine2.ll │ │ │ │ ├── 2004-09-28-BadShiftAndSetCC.ll │ │ │ │ ├── 2004-11-22-Missed-and-fold.ll │ │ │ │ ├── 2004-11-27-SetCCForCastLargerAndConstant.ll │ │ │ │ ├── 2004-12-08-RemInfiniteLoop.ll │ │ │ │ ├── 2005-03-04-ShiftOverflow.ll │ │ │ │ ├── 2005-04-07-UDivSelectCrash.ll │ │ │ │ ├── 2005-06-15-DivSelectCrash.ll │ │ │ │ ├── 2005-06-15-ShiftSetCCCrash.ll │ │ │ │ ├── 2005-06-16-RangeCrash.ll │ │ │ │ ├── 2005-07-07-DeadPHILoop.ll │ │ │ │ ├── 2006-02-13-DemandedMiscompile.ll │ │ │ │ ├── 2006-02-28-Crash.ll │ │ │ │ ├── 2006-03-30-ExtractElement.ll │ │ │ │ ├── 2006-04-28-ShiftShiftLongLong.ll │ │ │ │ ├── 2006-05-04-DemandedBitCrash.ll │ │ │ │ ├── 2006-09-15-CastToBool.ll │ │ │ │ ├── 2006-10-19-SignedToUnsignedCastAndConst-2.ll │ │ │ │ ├── 2006-10-20-mask.ll │ │ │ │ ├── 2006-10-26-VectorReassoc.ll │ │ │ │ ├── 2006-11-10-ashr-miscompile.ll │ │ │ │ ├── 2006-12-01-BadFPVectorXform.ll │ │ │ │ ├── 2006-12-05-fp-to-int-ext.ll │ │ │ │ ├── 2006-12-08-Phi-ICmp-Op-Fold.ll │ │ │ │ ├── 2006-12-08-Select-ICmp.ll │ │ │ │ ├── 2006-12-15-Range-Test.ll │ │ │ │ ├── 2006-12-23-Select-Cmp-Cmp.ll │ │ │ │ ├── 2007-01-13-ExtCompareMiscompile.ll │ │ │ │ ├── 2007-01-18-VectorInfLoop.ll │ │ │ │ ├── 2007-02-01-LoadSinkAlloca.ll │ │ │ │ ├── 2007-02-07-PointerCast.ll │ │ │ │ ├── 2007-02-23-PhiFoldInfLoop.ll │ │ │ │ ├── 2007-03-13-CompareMerge.ll │ │ │ │ ├── 2007-03-19-BadTruncChangePR1261.ll │ │ │ │ ├── 2007-03-21-SignedRangeTest.ll │ │ │ │ ├── 2007-03-25-BadShiftMask.ll │ │ │ │ ├── 2007-03-25-DoubleShift.ll │ │ │ │ ├── 2007-03-26-BadShiftMask.ll │ │ │ │ ├── 2007-04-08-SingleEltVectorCrash.ll │ │ │ │ ├── 2007-05-10-icmp-or.ll │ │ │ │ ├── 2007-05-14-Crash.ll │ │ │ │ ├── 2007-05-18-CastFoldBug.ll │ │ │ │ ├── 2007-06-06-AshrSignBit.ll │ │ │ │ ├── 2007-06-21-DivCompareMiscomp.ll │ │ │ │ ├── 2007-08-02-InfiniteLoop.ll │ │ │ │ ├── 2007-09-10-AliasConstFold.ll │ │ │ │ ├── 2007-09-17-AliasConstFold2.ll │ │ │ │ ├── 2007-10-10-EliminateMemCpy.ll │ │ │ │ ├── 2007-10-12-Crash.ll │ │ │ │ ├── 2007-10-28-stacksave.ll │ │ │ │ ├── 2007-10-31-RangeCrash.ll │ │ │ │ ├── 2007-10-31-StringCrash.ll │ │ │ │ ├── 2007-11-07-OpaqueAlignCrash.ll │ │ │ │ ├── 2007-11-15-CompareMiscomp.ll │ │ │ │ ├── 2007-11-25-CompatibleAttributes.ll │ │ │ │ ├── 2007-12-10-ConstFoldCompare.ll │ │ │ │ ├── 2007-12-12-GEPScale.ll │ │ │ │ ├── 2007-12-16-AsmNoUnwind.ll │ │ │ │ ├── 2007-12-18-AddSelCmpSub.ll │ │ │ │ ├── 2007-12-28-IcmpSub2.ll │ │ │ │ ├── 2008-01-06-BitCastAttributes.ll │ │ │ │ ├── 2008-01-06-CastCrash.ll │ │ │ │ ├── 2008-01-06-VoidCast.ll │ │ │ │ ├── 2008-01-13-AndCmpCmp.ll │ │ │ │ ├── 2008-01-14-VarArgTrampoline.ll │ │ │ │ ├── 2008-01-21-MismatchedCastAndCompare.ll │ │ │ │ ├── 2008-01-21-MulTrunc.ll │ │ │ │ ├── 2008-01-27-FloatSelect.ll │ │ │ │ ├── 2008-02-13-MulURem.ll │ │ │ │ ├── 2008-02-16-SDivOverflow2.ll │ │ │ │ ├── 2008-02-23-MulSub.ll │ │ │ │ ├── 2008-02-28-OrFCmpCrash.ll │ │ │ │ ├── 2008-03-13-IntToPtr.ll │ │ │ │ ├── 2008-04-22-ByValBitcast.ll │ │ │ │ ├── 2008-04-28-VolatileStore.ll │ │ │ │ ├── 2008-04-29-VolatileLoadDontMerge.ll │ │ │ │ ├── 2008-04-29-VolatileLoadMerge.ll │ │ │ │ ├── 2008-05-08-LiveStoreDelete.ll │ │ │ │ ├── 2008-05-08-StrLenSink.ll │ │ │ │ ├── 2008-05-09-SinkOfInvoke.ll │ │ │ │ ├── 2008-05-17-InfLoop.ll │ │ │ │ ├── 2008-05-18-FoldIntToPtr.ll │ │ │ │ ├── 2008-05-22-IDivVector.ll │ │ │ │ ├── 2008-05-22-NegValVector.ll │ │ │ │ ├── 2008-05-23-CompareFold.ll │ │ │ │ ├── 2008-05-31-AddBool.ll │ │ │ │ ├── 2008-05-31-Bools.ll │ │ │ │ ├── 2008-06-05-ashr-crash.ll │ │ │ │ ├── 2008-06-08-ICmpPHI.ll │ │ │ │ ├── 2008-06-13-InfiniteLoopStore.ll │ │ │ │ ├── 2008-06-13-ReadOnlyCallStore.ll │ │ │ │ ├── 2008-06-19-UncondLoad.ll │ │ │ │ ├── 2008-06-21-CompareMiscomp.ll │ │ │ │ ├── 2008-06-24-StackRestore.ll │ │ │ │ ├── 2008-07-08-ShiftOneAndOne.ll │ │ │ │ ├── 2008-07-08-SubAnd.ll │ │ │ │ ├── 2008-07-08-VolatileLoadMerge.ll │ │ │ │ ├── 2008-07-09-SubAndError.ll │ │ │ │ ├── 2008-07-10-CastSextBool.ll │ │ │ │ ├── 2008-07-11-RemAnd.ll │ │ │ │ ├── 2008-07-13-DivZero.ll │ │ │ │ ├── 2008-07-16-fsub.ll │ │ │ │ ├── 2008-08-05-And.ll │ │ │ │ ├── 2008-09-02-VectorCrash.ll │ │ │ │ ├── 2008-10-11-DivCompareFold.ll │ │ │ │ ├── 2008-10-23-ConstFoldWithoutMask.ll │ │ │ │ ├── 2008-11-01-SRemDemandedBits.ll │ │ │ │ ├── 2008-11-08-FCmp.ll │ │ │ │ ├── 2008-11-27-IDivVector.ll │ │ │ │ ├── 2008-11-27-MultiplyIntVec.ll │ │ │ │ ├── 2008-11-27-UDivNegative.ll │ │ │ │ ├── 2008-12-17-SRemNegConstVec.ll │ │ │ │ ├── 2009-01-05-i128-crash.ll │ │ │ │ ├── 2009-01-08-AlignAlloca.ll │ │ │ │ ├── 2009-01-16-PointerAddrSpace.ll │ │ │ │ ├── 2009-01-19-fmod-constant-float-specials.ll │ │ │ │ ├── 2009-01-19-fmod-constant-float.ll │ │ │ │ ├── 2009-01-24-EmptyStruct.ll │ │ │ │ ├── 2009-01-31-InfIterate.ll │ │ │ │ ├── 2009-01-31-Pressure.ll │ │ │ │ ├── 2009-02-04-FPBitcast.ll │ │ │ │ ├── 2009-02-11-NotInitialized.ll │ │ │ │ ├── 2009-02-20-InstCombine-SROA.ll │ │ │ │ ├── 2009-02-21-LoadCST.ll │ │ │ │ ├── 2009-02-25-CrashZeroSizeArray.ll │ │ │ │ ├── 2009-03-18-vector-ashr-crash.ll │ │ │ │ ├── 2009-03-24-InfLoop.ll │ │ │ │ ├── 2009-04-07-MulPromoteToI96.ll │ │ │ │ ├── 2009-05-23-FCmpToICmp.ll │ │ │ │ ├── 2009-06-11-StoreAddrSpace.ll │ │ │ │ ├── 2009-06-16-SRemDemandedBits.ll │ │ │ │ ├── 2009-07-02-MaskedIntVector.ll │ │ │ │ ├── 2009-12-17-CmpSelectNull.ll │ │ │ │ ├── 2010-01-28-NegativeSRem.ll │ │ │ │ ├── 2010-03-03-ExtElim.ll │ │ │ │ ├── 2010-05-30-memcpy-Struct.ll │ │ │ │ ├── 2010-11-01-lshr-mask.ll │ │ │ │ ├── 2010-11-21-SizeZeroTypeGEP.ll │ │ │ │ ├── 2010-11-23-Distributed.ll │ │ │ │ ├── 2011-02-14-InfLoop.ll │ │ │ │ ├── 2011-03-08-SRemMinusOneBadOpt.ll │ │ │ │ ├── 2011-05-02-VectorBoolean.ll │ │ │ │ ├── 2011-05-13-InBoundsGEP.ll │ │ │ │ ├── 2011-05-28-swapmulsub.ll │ │ │ │ ├── 2011-06-13-nsw-alloca.ll │ │ │ │ ├── 2011-09-03-Trampoline.ll │ │ │ │ ├── 2011-10-07-AlignPromotion.ll │ │ │ │ ├── 2012-01-11-OpaqueBitcastCrash.ll │ │ │ │ ├── 2012-02-13-FCmp.ll │ │ │ │ ├── 2012-02-28-ICmp.ll │ │ │ │ ├── 2012-03-10-InstCombine.ll │ │ │ │ ├── 2012-04-24-vselect.ll │ │ │ │ ├── 2012-04-30-SRem.ll │ │ │ │ ├── 2012-05-28-select-hang.ll │ │ │ │ ├── 2012-06-06-LoadOfPHIs.ll │ │ │ │ ├── 2012-07-25-LoadPart.ll │ │ │ │ ├── 2012-07-30-addrsp-bitcast.ll │ │ │ │ ├── 2012-08-28-udiv_ashl.ll │ │ │ │ ├── 2012-09-17-ZeroSizedAlloca.ll │ │ │ │ ├── 2012-10-25-vector-of-pointers.ll │ │ │ │ ├── 2012-12-14-simp-vgep.ll │ │ │ │ ├── 2012-3-15-or-xor-constant.ll │ │ │ │ ├── 2012-6-7-vselect-bitcast.ll │ │ │ │ ├── 2013-03-05-Combine-BitcastTy-Into-Alloca.ll │ │ │ │ ├── 2017-07-07-UMul-ZExt.ll │ │ │ │ ├── AArch64 │ │ │ │ │ ├── 2012-04-23-Neon-Intrinsics.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── amdgcn-demanded-vector-elts.ll │ │ │ │ │ ├── amdgcn-intrinsics.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── ARM │ │ │ │ │ ├── 2012-04-23-Neon-Intrinsics.ll │ │ │ │ │ ├── constant-fold-hang.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── neon-intrinsics.ll │ │ │ │ │ ├── strcmp.ll │ │ │ │ │ └── strcpy.ll │ │ │ │ ├── AddOverFlow.ll │ │ │ │ ├── CPP_min_max.ll │ │ │ │ ├── ExtractCast.ll │ │ │ │ ├── IntPtrCast.ll │ │ │ │ ├── JavaCompare.ll │ │ │ │ ├── LandingPadClauses.ll │ │ │ │ ├── NVPTX │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── nvvm-intrins.ll │ │ │ │ ├── OverlappingInsertvalues.ll │ │ │ │ ├── PR30597.ll │ │ │ │ ├── PowerPC │ │ │ │ │ ├── aligned-altivec.ll │ │ │ │ │ ├── aligned-qpx.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── vsx-unaligned.ll │ │ │ │ ├── README.txt │ │ │ │ ├── abs-1.ll │ │ │ │ ├── abs_abs.ll │ │ │ │ ├── add-shrink.ll │ │ │ │ ├── add-sitofp.ll │ │ │ │ ├── add.ll │ │ │ │ ├── add2.ll │ │ │ │ ├── add3.ll │ │ │ │ ├── addnegneg.ll │ │ │ │ ├── addrspacecast.ll │ │ │ │ ├── adjust-for-minmax.ll │ │ │ │ ├── alias-recursion.ll │ │ │ │ ├── align-2d-gep.ll │ │ │ │ ├── align-addr.ll │ │ │ │ ├── align-attr.ll │ │ │ │ ├── align-external.ll │ │ │ │ ├── all-bits-shift.ll │ │ │ │ ├── alloca-cast-debuginfo.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── allocsize-32.ll │ │ │ │ ├── allocsize.ll │ │ │ │ ├── and-compare.ll │ │ │ │ ├── and-fcmp.ll │ │ │ │ ├── and-or-and.ll │ │ │ │ ├── and-or-icmps.ll │ │ │ │ ├── and-or-not.ll │ │ │ │ ├── and-or.ll │ │ │ │ ├── and-xor-merge.ll │ │ │ │ ├── and-xor-or.ll │ │ │ │ ├── and.ll │ │ │ │ ├── and2.ll │ │ │ │ ├── apint-add.ll │ │ │ │ ├── apint-and-compare.ll │ │ │ │ ├── apint-and-or-and.ll │ │ │ │ ├── apint-and-xor-merge.ll │ │ │ │ ├── apint-and.ll │ │ │ │ ├── apint-call-cast-target.ll │ │ │ │ ├── apint-cast-and-cast.ll │ │ │ │ ├── apint-cast-cast-to-and.ll │ │ │ │ ├── apint-cast.ll │ │ │ │ ├── apint-div1.ll │ │ │ │ ├── apint-div2.ll │ │ │ │ ├── apint-mul1.ll │ │ │ │ ├── apint-mul2.ll │ │ │ │ ├── apint-not.ll │ │ │ │ ├── apint-or.ll │ │ │ │ ├── apint-rem1.ll │ │ │ │ ├── apint-rem2.ll │ │ │ │ ├── apint-select.ll │ │ │ │ ├── apint-shift-simplify.ll │ │ │ │ ├── apint-shift.ll │ │ │ │ ├── apint-shl-trunc.ll │ │ │ │ ├── apint-sub.ll │ │ │ │ ├── apint-xor1.ll │ │ │ │ ├── apint-xor2.ll │ │ │ │ ├── assoc-cast-assoc.ll │ │ │ │ ├── assume-loop-align.ll │ │ │ │ ├── assume-redundant.ll │ │ │ │ ├── assume.ll │ │ │ │ ├── assume2.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── badmalloc.ll │ │ │ │ ├── binop-cast.ll │ │ │ │ ├── bit-checks.ll │ │ │ │ ├── bitcast-alias-function.ll │ │ │ │ ├── bitcast-bigendian.ll │ │ │ │ ├── bitcast-bitcast.ll │ │ │ │ ├── bitcast-sext-vector.ll │ │ │ │ ├── bitcast-store.ll │ │ │ │ ├── bitcast-vec-canon.ll │ │ │ │ ├── bitcast.ll │ │ │ │ ├── bitcount.ll │ │ │ │ ├── bitreverse-hang.ll │ │ │ │ ├── bitreverse-known-bits.ll │ │ │ │ ├── bittest.ll │ │ │ │ ├── branch.ll │ │ │ │ ├── broadcast.ll │ │ │ │ ├── bswap-fold.ll │ │ │ │ ├── bswap-known-bits.ll │ │ │ │ ├── bswap.ll │ │ │ │ ├── builtin-object-size-offset.ll │ │ │ │ ├── builtin-object-size-ptr.ll │ │ │ │ ├── cabs-array.ll │ │ │ │ ├── cabs-discrete.ll │ │ │ │ ├── call-cast-attrs.ll │ │ │ │ ├── call-cast-target-inalloca.ll │ │ │ │ ├── call-cast-target.ll │ │ │ │ ├── call-guard.ll │ │ │ │ ├── call-intrinsics.ll │ │ │ │ ├── call.ll │ │ │ │ ├── call2.ll │ │ │ │ ├── call_nonnull_arg.ll │ │ │ │ ├── canonicalize_branch.ll │ │ │ │ ├── cast-call-combine-prof.ll │ │ │ │ ├── cast-call-combine.ll │ │ │ │ ├── cast-callee-deopt-bundles.ll │ │ │ │ ├── cast-int-fcmp-eq-0.ll │ │ │ │ ├── cast-mul-select.ll │ │ │ │ ├── cast-set.ll │ │ │ │ ├── cast.ll │ │ │ │ ├── cast_ptr.ll │ │ │ │ ├── ceil.ll │ │ │ │ ├── clamp-to-minmax.ll │ │ │ │ ├── cmp-intrinsic.ll │ │ │ │ ├── compare-3way.ll │ │ │ │ ├── compare-alloca.ll │ │ │ │ ├── compare-signs.ll │ │ │ │ ├── compare-udiv.ll │ │ │ │ ├── compare-unescaped.ll │ │ │ │ ├── consecutive-fences.ll │ │ │ │ ├── constant-expr-datalayout.ll │ │ │ │ ├── constant-fold-address-space-pointer.ll │ │ │ │ ├── constant-fold-alias.ll │ │ │ │ ├── constant-fold-compare.ll │ │ │ │ ├── constant-fold-gep.ll │ │ │ │ ├── constant-fold-iteration.ll │ │ │ │ ├── constant-fold-libfunc.ll │ │ │ │ ├── constant-fold-math.ll │ │ │ │ ├── convergent.ll │ │ │ │ ├── copysign.ll │ │ │ │ ├── cos-1.ll │ │ │ │ ├── cos-2.ll │ │ │ │ ├── cos-intrinsic.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── ctpop.ll │ │ │ │ ├── dce-iterate.ll │ │ │ │ ├── deadcode.ll │ │ │ │ ├── debug-line.ll │ │ │ │ ├── debuginfo-dce.ll │ │ │ │ ├── debuginfo-dce2.ll │ │ │ │ ├── debuginfo-skip.ll │ │ │ │ ├── debuginfo.ll │ │ │ │ ├── debuginfo_add.ll │ │ │ │ ├── default-alignment.ll │ │ │ │ ├── demand_shrink_nsw.ll │ │ │ │ ├── demorgan.ll │ │ │ │ ├── disable-simplify-libcalls.ll │ │ │ │ ├── distribute.ll │ │ │ │ ├── div-shift-crash.ll │ │ │ │ ├── div-shift.ll │ │ │ │ ├── div.ll │ │ │ │ ├── double-float-shrink-1.ll │ │ │ │ ├── double-float-shrink-2.ll │ │ │ │ ├── early_constfold_changes_IR.ll │ │ │ │ ├── early_dce_clobbers_callgraph.ll │ │ │ │ ├── element-atomic-memcpy-to-loads.ll │ │ │ │ ├── element-atomic-memintrins.ll │ │ │ │ ├── enforce-known-alignment.ll │ │ │ │ ├── err-rep-cold.ll │ │ │ │ ├── exact.ll │ │ │ │ ├── exp2-1.ll │ │ │ │ ├── exp2-2.ll │ │ │ │ ├── extractelement.ll │ │ │ │ ├── extractinsert-tbaa.ll │ │ │ │ ├── extractvalue.ll │ │ │ │ ├── fabs-libcall.ll │ │ │ │ ├── fabs.ll │ │ │ │ ├── fast-math-scalarization.ll │ │ │ │ ├── fast-math.ll │ │ │ │ ├── fcmp-select.ll │ │ │ │ ├── fcmp-special.ll │ │ │ │ ├── fcmp.ll │ │ │ │ ├── fdiv.ll │ │ │ │ ├── ffs-1.ll │ │ │ │ ├── float-shrink-compare.ll │ │ │ │ ├── fls.ll │ │ │ │ ├── fma.ll │ │ │ │ ├── fmul-sqrt.ll │ │ │ │ ├── fmul.ll │ │ │ │ ├── fneg-ext.ll │ │ │ │ ├── fold-bin-operand.ll │ │ │ │ ├── fold-calls.ll │ │ │ │ ├── fold-fops-into-selects.ll │ │ │ │ ├── fold-phi-load-metadata.ll │ │ │ │ ├── fold-phi.ll │ │ │ │ ├── fold-sqrt-sqrtf.ll │ │ │ │ ├── fold-vector-select.ll │ │ │ │ ├── fold-vector-zero.ll │ │ │ │ ├── fp-ret-bitcast.ll │ │ │ │ ├── fpcast.ll │ │ │ │ ├── fpextend.ll │ │ │ │ ├── fpextend_x86.ll │ │ │ │ ├── fprintf-1.ll │ │ │ │ ├── fputs-1.ll │ │ │ │ ├── fputs-opt-size.ll │ │ │ │ ├── fsub.ll │ │ │ │ ├── fwrite-1.ll │ │ │ │ ├── gc.relocate.ll │ │ │ │ ├── gep-addrspace.ll │ │ │ │ ├── gep-sext.ll │ │ │ │ ├── gep-vector.ll │ │ │ │ ├── gepgep.ll │ │ │ │ ├── gepphigep.ll │ │ │ │ ├── getelementptr-folding.ll │ │ │ │ ├── getelementptr.ll │ │ │ │ ├── hoist_instr.ll │ │ │ │ ├── icmp-add.ll │ │ │ │ ├── icmp-div-constant.ll │ │ │ │ ├── icmp-logical.ll │ │ │ │ ├── icmp-range.ll │ │ │ │ ├── icmp-shl-nsw.ll │ │ │ │ ├── icmp-shl-nuw.ll │ │ │ │ ├── icmp-shr-lt-gt.ll │ │ │ │ ├── icmp-shr.ll │ │ │ │ ├── icmp-vec.ll │ │ │ │ ├── icmp-xor-signbit.ll │ │ │ │ ├── icmp.ll │ │ │ │ ├── idioms.ll │ │ │ │ ├── indexed-gep-compares.ll │ │ │ │ ├── inline-intrinsic-assert.ll │ │ │ │ ├── insert-const-shuf.ll │ │ │ │ ├── insert-extract-shuffle.ll │ │ │ │ ├── insert-val-extract-elem.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── intptr1.ll │ │ │ │ ├── intptr2.ll │ │ │ │ ├── intptr3.ll │ │ │ │ ├── intptr4.ll │ │ │ │ ├── intptr5.ll │ │ │ │ ├── intptr6.ll │ │ │ │ ├── intptr7.ll │ │ │ │ ├── intrinsics.ll │ │ │ │ ├── invariant.ll │ │ │ │ ├── invoke.ll │ │ │ │ ├── isascii-1.ll │ │ │ │ ├── isdigit-1.ll │ │ │ │ ├── known_align.ll │ │ │ │ ├── lifetime-asan.ll │ │ │ │ ├── lifetime.ll │ │ │ │ ├── load-bitcast-select.ll │ │ │ │ ├── load-bitcast32.ll │ │ │ │ ├── load-bitcast64.ll │ │ │ │ ├── load-cmp.ll │ │ │ │ ├── load-combine-metadata-2.ll │ │ │ │ ├── load-combine-metadata-3.ll │ │ │ │ ├── load-combine-metadata-4.ll │ │ │ │ ├── load-combine-metadata.ll │ │ │ │ ├── load-select.ll │ │ │ │ ├── load.ll │ │ │ │ ├── load3.ll │ │ │ │ ├── load_combine_aa.ll │ │ │ │ ├── loadstore-alignment.ll │ │ │ │ ├── loadstore-metadata.ll │ │ │ │ ├── log-pow-nofastmath.ll │ │ │ │ ├── log-pow.ll │ │ │ │ ├── logical-select.ll │ │ │ │ ├── lshr-phi.ll │ │ │ │ ├── lshr.ll │ │ │ │ ├── malloc-free-delete.ll │ │ │ │ ├── masked_intrinsics.ll │ │ │ │ ├── max-of-nots.ll │ │ │ │ ├── maxnum.ll │ │ │ │ ├── mem-gep-zidx.ll │ │ │ │ ├── mem-par-metadata-memcpy.ll │ │ │ │ ├── memchr.ll │ │ │ │ ├── memcmp-1.ll │ │ │ │ ├── memcmp-2.ll │ │ │ │ ├── memcmp-constant-fold.ll │ │ │ │ ├── memcpy-1.ll │ │ │ │ ├── memcpy-2.ll │ │ │ │ ├── memcpy-addrspace.ll │ │ │ │ ├── memcpy-from-global.ll │ │ │ │ ├── memcpy-to-load.ll │ │ │ │ ├── memcpy.ll │ │ │ │ ├── memcpy_chk-1.ll │ │ │ │ ├── memcpy_chk-2.ll │ │ │ │ ├── memmove-1.ll │ │ │ │ ├── memmove-2.ll │ │ │ │ ├── memmove.ll │ │ │ │ ├── memmove_chk-1.ll │ │ │ │ ├── memmove_chk-2.ll │ │ │ │ ├── memset-1.ll │ │ │ │ ├── memset-2.ll │ │ │ │ ├── memset.ll │ │ │ │ ├── memset2.ll │ │ │ │ ├── memset_chk-1.ll │ │ │ │ ├── memset_chk-2.ll │ │ │ │ ├── merge-icmp.ll │ │ │ │ ├── min-positive.ll │ │ │ │ ├── minmax-fold.ll │ │ │ │ ├── minmax-fp.ll │ │ │ │ ├── minnum.ll │ │ │ │ ├── misc-2002.ll │ │ │ │ ├── mul-masked-bits.ll │ │ │ │ ├── mul.ll │ │ │ │ ├── multi-size-address-space-pointer.ll │ │ │ │ ├── multi-use-or.ll │ │ │ │ ├── multiple-uses-load-bitcast-select.ll │ │ │ │ ├── narrow-switch.ll │ │ │ │ ├── narrow.ll │ │ │ │ ├── no-negzero.ll │ │ │ │ ├── no_cgscc_assert.ll │ │ │ │ ├── non-integral-pointers.ll │ │ │ │ ├── nonnull-attribute.ll │ │ │ │ ├── not.ll │ │ │ │ ├── nothrow.ll │ │ │ │ ├── nsw.ll │ │ │ │ ├── obfuscated_splat.ll │ │ │ │ ├── objsize-64.ll │ │ │ │ ├── objsize-address-space.ll │ │ │ │ ├── objsize-noverify.ll │ │ │ │ ├── objsize.ll │ │ │ │ ├── odr-linkage.ll │ │ │ │ ├── onehot_merge.ll │ │ │ │ ├── opaque.ll │ │ │ │ ├── or-fcmp.ll │ │ │ │ ├── or-shifted-masks.ll │ │ │ │ ├── or-xor.ll │ │ │ │ ├── or.ll │ │ │ │ ├── osx-names.ll │ │ │ │ ├── out-of-bounds-indexes.ll │ │ │ │ ├── overflow-mul.ll │ │ │ │ ├── overflow.ll │ │ │ │ ├── phi-load-metadata-2.ll │ │ │ │ ├── phi-load-metadata-3.ll │ │ │ │ ├── phi-load-metadata.ll │ │ │ │ ├── phi-merge-gep.ll │ │ │ │ ├── phi-preserve-ir-flags.ll │ │ │ │ ├── phi-select-constant.ll │ │ │ │ ├── phi.ll │ │ │ │ ├── pow-1.ll │ │ │ │ ├── pow-2.ll │ │ │ │ ├── pow-3.ll │ │ │ │ ├── pow-4.ll │ │ │ │ ├── pow-exp-nofastmath.ll │ │ │ │ ├── pow-exp.ll │ │ │ │ ├── pow-sqrt.ll │ │ │ │ ├── pr12251.ll │ │ │ │ ├── pr12338.ll │ │ │ │ ├── pr17827.ll │ │ │ │ ├── pr19420.ll │ │ │ │ ├── pr20079.ll │ │ │ │ ├── pr20678.ll │ │ │ │ ├── pr21199.ll │ │ │ │ ├── pr21210.ll │ │ │ │ ├── pr21651.ll │ │ │ │ ├── pr21891.ll │ │ │ │ ├── pr23751.ll │ │ │ │ ├── pr23809.ll │ │ │ │ ├── pr24354.ll │ │ │ │ ├── pr24605.ll │ │ │ │ ├── pr25342.ll │ │ │ │ ├── pr25745.ll │ │ │ │ ├── pr2645-0.ll │ │ │ │ ├── pr26992.ll │ │ │ │ ├── pr26993.ll │ │ │ │ ├── pr27236.ll │ │ │ │ ├── pr27332.ll │ │ │ │ ├── pr27703.ll │ │ │ │ ├── pr27996.ll │ │ │ │ ├── pr28143.ll │ │ │ │ ├── pr28725.ll │ │ │ │ ├── pr2996.ll │ │ │ │ ├── pr30929.ll │ │ │ │ ├── pr31990_wrong_memcpy.ll │ │ │ │ ├── pr32686.ll │ │ │ │ ├── pr33453.ll │ │ │ │ ├── pr33689_same_bitwidth.ll │ │ │ │ ├── pr33765.ll │ │ │ │ ├── pr34349.ll │ │ │ │ ├── pr34627.ll │ │ │ │ ├── pr35515.ll │ │ │ │ ├── pr36362.ll │ │ │ │ ├── prefetch-load.ll │ │ │ │ ├── preserve-sminmax.ll │ │ │ │ ├── preserved-analyses.ll │ │ │ │ ├── prevent-cmp-merge.ll │ │ │ │ ├── printf-1.ll │ │ │ │ ├── printf-2.ll │ │ │ │ ├── printf-3.ll │ │ │ │ ├── ptr-int-cast.ll │ │ │ │ ├── puts-1.ll │ │ │ │ ├── range-check.ll │ │ │ │ ├── readnone-maythrow.ll │ │ │ │ ├── rem.ll │ │ │ │ ├── rotate.ll │ │ │ │ ├── round.ll │ │ │ │ ├── sdiv-1.ll │ │ │ │ ├── sdiv-2.ll │ │ │ │ ├── select-2.ll │ │ │ │ ├── select-bitext-bitwise-ops.ll │ │ │ │ ├── select-bitext.ll │ │ │ │ ├── select-cmp-br.ll │ │ │ │ ├── select-cmp-cttz-ctlz.ll │ │ │ │ ├── select-cmpxchg.ll │ │ │ │ ├── select-crash-noverify.ll │ │ │ │ ├── select-crash.ll │ │ │ │ ├── select-extractelement.ll │ │ │ │ ├── select-implied.ll │ │ │ │ ├── select-load-call.ll │ │ │ │ ├── select-select.ll │ │ │ │ ├── select-with-bitwise-ops.ll │ │ │ │ ├── select.ll │ │ │ │ ├── select_arithmetic.ll │ │ │ │ ├── select_meta.ll │ │ │ │ ├── set.ll │ │ │ │ ├── setcc-strength-reduce.ll │ │ │ │ ├── sext.ll │ │ │ │ ├── shift-add.ll │ │ │ │ ├── shift-shift.ll │ │ │ │ ├── shift-sra.ll │ │ │ │ ├── shift.ll │ │ │ │ ├── shufflevec-bitcast.ll │ │ │ │ ├── shufflevec-constant.ll │ │ │ │ ├── sign-test-and-or.ll │ │ │ │ ├── signed-comparison.ll │ │ │ │ ├── signext.ll │ │ │ │ ├── simplify-demanded-bits-pointer.ll │ │ │ │ ├── simplify-libcalls.ll │ │ │ │ ├── sincospi.ll │ │ │ │ ├── sink-into-catchswitch.ll │ │ │ │ ├── sink-zext.ll │ │ │ │ ├── sink_instruction.ll │ │ │ │ ├── sitofp.ll │ │ │ │ ├── smax-icmp.ll │ │ │ │ ├── smin-icmp.ll │ │ │ │ ├── sprintf-1.ll │ │ │ │ ├── sqrt-nofast.ll │ │ │ │ ├── sqrt.ll │ │ │ │ ├── srem-simplify-bug.ll │ │ │ │ ├── srem1.ll │ │ │ │ ├── stack-overalign.ll │ │ │ │ ├── stacksaverestore.ll │ │ │ │ ├── statepoint.ll │ │ │ │ ├── store-load-unaliased-gep.ll │ │ │ │ ├── store.ll │ │ │ │ ├── stpcpy-1.ll │ │ │ │ ├── stpcpy-2.ll │ │ │ │ ├── stpcpy_chk-1.ll │ │ │ │ ├── stpcpy_chk-2.ll │ │ │ │ ├── strcat-1.ll │ │ │ │ ├── strcat-2.ll │ │ │ │ ├── strcat-3.ll │ │ │ │ ├── strchr-1.ll │ │ │ │ ├── strchr-2.ll │ │ │ │ ├── strcmp-1.ll │ │ │ │ ├── strcmp-2.ll │ │ │ │ ├── strcpy-1.ll │ │ │ │ ├── strcpy-2.ll │ │ │ │ ├── strcpy_chk-1.ll │ │ │ │ ├── strcpy_chk-2.ll │ │ │ │ ├── strcpy_chk-64.ll │ │ │ │ ├── strcspn-1.ll │ │ │ │ ├── strcspn-2.ll │ │ │ │ ├── strlen-1.ll │ │ │ │ ├── strlen-2.ll │ │ │ │ ├── strncat-1.ll │ │ │ │ ├── strncat-2.ll │ │ │ │ ├── strncat-3.ll │ │ │ │ ├── strncmp-1.ll │ │ │ │ ├── strncmp-2.ll │ │ │ │ ├── strncmp-wrong-datalayout.ll │ │ │ │ ├── strncpy-1.ll │ │ │ │ ├── strncpy-2.ll │ │ │ │ ├── strncpy_chk-1.ll │ │ │ │ ├── strncpy_chk-2.ll │ │ │ │ ├── strpbrk-1.ll │ │ │ │ ├── strpbrk-2.ll │ │ │ │ ├── strrchr-1.ll │ │ │ │ ├── strrchr-2.ll │ │ │ │ ├── strspn-1.ll │ │ │ │ ├── strstr-1.ll │ │ │ │ ├── strstr-2.ll │ │ │ │ ├── strto-1.ll │ │ │ │ ├── struct-assign-tbaa.ll │ │ │ │ ├── sub-xor.ll │ │ │ │ ├── sub.ll │ │ │ │ ├── switch-constant-expr.ll │ │ │ │ ├── switch-truncate-crash.ll │ │ │ │ ├── tan-nofastmath.ll │ │ │ │ ├── tan.ll │ │ │ │ ├── tbaa-store-to-load.ll │ │ │ │ ├── toascii-1.ll │ │ │ │ ├── token.ll │ │ │ │ ├── trunc-binop-ext.ll │ │ │ │ ├── trunc.ll │ │ │ │ ├── type_pun.ll │ │ │ │ ├── udiv-simplify.ll │ │ │ │ ├── udiv_select_to_select_shift.ll │ │ │ │ ├── udivrem-change-width.ll │ │ │ │ ├── umax-icmp.ll │ │ │ │ ├── umin-icmp.ll │ │ │ │ ├── unordered-fcmp-select.ll │ │ │ │ ├── unpack-fca.ll │ │ │ │ ├── urem-simplify-bug.ll │ │ │ │ ├── vararg.ll │ │ │ │ ├── vec_demanded_elts.ll │ │ │ │ ├── vec_extract_2elts.ll │ │ │ │ ├── vec_extract_elt.ll │ │ │ │ ├── vec_extract_var_elt.ll │ │ │ │ ├── vec_insertelt.ll │ │ │ │ ├── vec_narrow.ll │ │ │ │ ├── vec_phi_extract.ll │ │ │ │ ├── vec_sext.ll │ │ │ │ ├── vec_shuffle.ll │ │ │ │ ├── vector-casts.ll │ │ │ │ ├── vector-mul.ll │ │ │ │ ├── vector-type.ll │ │ │ │ ├── vector-urem.ll │ │ │ │ ├── vector_gep1.ll │ │ │ │ ├── vector_gep2.ll │ │ │ │ ├── vector_insertelt_shuffle.ll │ │ │ │ ├── volatile_store.ll │ │ │ │ ├── wcslen-1.ll │ │ │ │ ├── wcslen-2.ll │ │ │ │ ├── wcslen-3.ll │ │ │ │ ├── wcslen-4.ll │ │ │ │ ├── weak-symbols.ll │ │ │ │ ├── win-math.ll │ │ │ │ ├── xor-undef.ll │ │ │ │ ├── xor.ll │ │ │ │ ├── xor2.ll │ │ │ │ ├── zero-point-zero-add.ll │ │ │ │ ├── zeroext-and-reduce.ll │ │ │ │ ├── zext-bool-add-sub.ll │ │ │ │ ├── zext-fold.ll │ │ │ │ ├── zext-or-icmp.ll │ │ │ │ ├── zext-phi.ll │ │ │ │ └── zext.ll │ │ │ ├── InstMerge │ │ │ │ ├── exceptions.ll │ │ │ │ ├── st_sink_barrier_call.ll │ │ │ │ ├── st_sink_bugfix_22613.ll │ │ │ │ ├── st_sink_no_barrier_call.ll │ │ │ │ ├── st_sink_no_barrier_load.ll │ │ │ │ ├── st_sink_no_barrier_store.ll │ │ │ │ ├── st_sink_two_stores.ll │ │ │ │ └── st_sink_with_barrier.ll │ │ │ ├── InstNamer │ │ │ │ └── basic.ll │ │ │ ├── InstSimplify │ │ │ │ ├── 2010-12-20-Boolean.ll │ │ │ │ ├── 2011-01-14-Thread.ll │ │ │ │ ├── 2011-02-01-Vector.ll │ │ │ │ ├── 2011-09-05-InsertExtractValue.ll │ │ │ │ ├── 2011-10-27-BinOpCrash.ll │ │ │ │ ├── 2011-11-23-MaskedBitsCrash.ll │ │ │ │ ├── 2013-04-19-ConstantFoldingCrash.ll │ │ │ │ ├── AndOrXor.ll │ │ │ │ ├── add-mask.ll │ │ │ │ ├── addsub.ll │ │ │ │ ├── and-icmps-same-ops.ll │ │ │ │ ├── assume.ll │ │ │ │ ├── bitcast-vector-fold.ll │ │ │ │ ├── bitreverse-fold.ll │ │ │ │ ├── bitreverse.ll │ │ │ │ ├── bswap.ll │ │ │ │ ├── call-callconv.ll │ │ │ │ ├── call.ll │ │ │ │ ├── cast.ll │ │ │ │ ├── compare.ll │ │ │ │ ├── dead-code-removal.ll │ │ │ │ ├── div.ll │ │ │ │ ├── exact-nsw-nuw.ll │ │ │ │ ├── exp-intrinsic.ll │ │ │ │ ├── exp2-intrinsic.ll │ │ │ │ ├── extract-element.ll │ │ │ │ ├── fast-math.ll │ │ │ │ ├── fdiv.ll │ │ │ │ ├── floating-point-arithmetic.ll │ │ │ │ ├── floating-point-compare.ll │ │ │ │ ├── fold-builtin-fma.ll │ │ │ │ ├── fold-intrinsics.ll │ │ │ │ ├── gep.ll │ │ │ │ ├── icmp-bool-constant.ll │ │ │ │ ├── icmp-constant.ll │ │ │ │ ├── icmp-ranges.ll │ │ │ │ ├── implies.ll │ │ │ │ ├── insertelement.ll │ │ │ │ ├── load-relative-32.ll │ │ │ │ ├── load-relative.ll │ │ │ │ ├── load.ll │ │ │ │ ├── log-intrinsic.ll │ │ │ │ ├── log2-intrinsic.ll │ │ │ │ ├── logic-of-fcmps.ll │ │ │ │ ├── maxmin.ll │ │ │ │ ├── mul.ll │ │ │ │ ├── negate.ll │ │ │ │ ├── noalias-ptr.ll │ │ │ │ ├── or-icmps-same-ops.ll │ │ │ │ ├── or.ll │ │ │ │ ├── past-the-end.ll │ │ │ │ ├── phi.ll │ │ │ │ ├── pr28725.ll │ │ │ │ ├── pr33957.ll │ │ │ │ ├── ptr_diff.ll │ │ │ │ ├── reassociate.ll │ │ │ │ ├── rem.ll │ │ │ │ ├── require-dominator.ll │ │ │ │ ├── returned.ll │ │ │ │ ├── select.ll │ │ │ │ ├── shift-128-kb.ll │ │ │ │ ├── shift-knownbits.ll │ │ │ │ ├── shr-nop.ll │ │ │ │ ├── shufflevector.ll │ │ │ │ ├── signed-div-rem.ll │ │ │ │ ├── simplify-nested-bitcast.ll │ │ │ │ ├── undef.ll │ │ │ │ ├── vec-cmp.ll │ │ │ │ ├── vector_gep.ll │ │ │ │ └── vector_ptr_bitcast.ll │ │ │ ├── InterleavedAccess │ │ │ │ ├── AArch64 │ │ │ │ │ ├── interleaved-accesses-extract-user.ll │ │ │ │ │ ├── interleaved-accesses.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ └── ARM │ │ │ │ │ ├── interleaved-accesses-extract-user.ll │ │ │ │ │ ├── interleaved-accesses.ll │ │ │ │ │ └── lit.local.cfg │ │ │ ├── Internalize │ │ │ │ ├── 2009-01-05-InternalizeAliases.ll │ │ │ │ ├── apifile │ │ │ │ ├── comdat.ll │ │ │ │ ├── lists.ll │ │ │ │ ├── local-visibility.ll │ │ │ │ ├── stackguard.ll │ │ │ │ └── used.ll │ │ │ ├── JumpThreading │ │ │ │ ├── 2008-11-27-EntryMunge.ll │ │ │ │ ├── 2010-08-26-and.ll │ │ │ │ ├── 2011-04-02-SimplifyDeadBlock.ll │ │ │ │ ├── 2011-04-14-InfLoop.ll │ │ │ │ ├── 2012-07-19-NoSuccessorIndirectBr.ll │ │ │ │ ├── and-and-cond.ll │ │ │ │ ├── and-cond.ll │ │ │ │ ├── assume-edge-dom.ll │ │ │ │ ├── assume.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── branch-no-const.ll │ │ │ │ ├── compare.ll │ │ │ │ ├── conservative-lvi.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── ddt-crash3.ll │ │ │ │ ├── ddt-crash4.ll │ │ │ │ ├── degenerate-phi.ll │ │ │ │ ├── fold-not-thread.ll │ │ │ │ ├── guards.ll │ │ │ │ ├── implied-cond.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── induction.ll │ │ │ │ ├── landing-pad.ll │ │ │ │ ├── lvi-load.ll │ │ │ │ ├── no-irreducible-loops.ll │ │ │ │ ├── or-undef.ll │ │ │ │ ├── phi-eq.ll │ │ │ │ ├── phi-known.ll │ │ │ │ ├── pr15851_hang.ll │ │ │ │ ├── pr22086.ll │ │ │ │ ├── pr26096.ll │ │ │ │ ├── pr27840.ll │ │ │ │ ├── pr33605.ll │ │ │ │ ├── pr33917.ll │ │ │ │ ├── pr9331.ll │ │ │ │ ├── range-compare.ll │ │ │ │ ├── select.ll │ │ │ │ ├── static-profile.ll │ │ │ │ ├── thread-cmp.ll │ │ │ │ ├── thread-loads.ll │ │ │ │ ├── threading_prof1.ll │ │ │ │ ├── threading_prof2.ll │ │ │ │ └── update-edge-weight.ll │ │ │ ├── LCSSA │ │ │ │ ├── 2006-06-03-IncorrectIDFPhis.ll │ │ │ │ ├── 2006-06-12-MultipleExitsSameBlock.ll │ │ │ │ ├── 2006-07-09-NoDominator.ll │ │ │ │ ├── 2006-10-31-UnreachableBlock-2.ll │ │ │ │ ├── 2006-10-31-UnreachableBlock.ll │ │ │ │ ├── 2007-07-12-LICM-2.ll │ │ │ │ ├── 2007-07-12-LICM-3.ll │ │ │ │ ├── 2007-07-12-LICM.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── invoke-dest.ll │ │ │ │ ├── mixed-catch.ll │ │ │ │ ├── pr28424.ll │ │ │ │ ├── pr28608.ll │ │ │ │ ├── unreachable-use.ll │ │ │ │ └── unused-phis.ll │ │ │ ├── LICM │ │ │ │ ├── 2003-02-26-LoopExitNotDominated.ll │ │ │ │ ├── 2003-02-27-NestedLoopExitBlocks.ll │ │ │ │ ├── 2003-02-27-PreheaderExitNodeUpdate.ll │ │ │ │ ├── 2003-02-27-PreheaderProblem.ll │ │ │ │ ├── 2003-02-27-StoreSinkPHIs.ll │ │ │ │ ├── 2003-02-28-PromoteDifferentType.ll │ │ │ │ ├── 2003-05-02-LoadHoist.ll │ │ │ │ ├── 2003-12-11-SinkingToPHI.ll │ │ │ │ ├── 2004-09-14-AliasAnalysisInvalidate.ll │ │ │ │ ├── 2004-11-17-UndefIndexCrash.ll │ │ │ │ ├── 2006-09-12-DeadUserOfSunkInstr.ll │ │ │ │ ├── 2007-05-22-VolatileSink.ll │ │ │ │ ├── 2007-07-30-AliasSet.ll │ │ │ │ ├── 2007-09-17-PromoteValue.ll │ │ │ │ ├── 2007-09-24-PromoteNullValue.ll │ │ │ │ ├── 2007-10-01-PromoteSafeValue.ll │ │ │ │ ├── 2008-05-20-AliasSetVAArg.ll │ │ │ │ ├── 2008-07-22-LoadGlobalConstant.ll │ │ │ │ ├── 2009-12-10-LICM-Indbr-Crash.ll │ │ │ │ ├── 2011-04-06-HoistMissedASTUpdate.ll │ │ │ │ ├── 2011-04-06-PromoteResultOfPromotion.ll │ │ │ │ ├── 2011-04-09-RAUW-AST.ll │ │ │ │ ├── 2011-07-06-Alignment.ll │ │ │ │ ├── 2014-09-10-doFinalizationAssert.ll │ │ │ │ ├── AliasSetMemSet.ll │ │ │ │ ├── PR19798.ll │ │ │ │ ├── PR21582.ll │ │ │ │ ├── PR24013.ll │ │ │ │ ├── Preserve-LCSSA.ll │ │ │ │ ├── alias-set-tracker-loss.ll │ │ │ │ ├── argmemonly-call.ll │ │ │ │ ├── assume.ll │ │ │ │ ├── atomics.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── bisect-state.ll │ │ │ │ ├── constexpr.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── debug-value.ll │ │ │ │ ├── dropped-tbaa.ll │ │ │ │ ├── extra-copies.ll │ │ │ │ ├── funclet.ll │ │ │ │ ├── hoist-bitcast-load.ll │ │ │ │ ├── hoist-deref-load.ll │ │ │ │ ├── hoist-fast-fdiv.ll │ │ │ │ ├── hoist-invariant-load.ll │ │ │ │ ├── hoist-nounwind.ll │ │ │ │ ├── hoist-round.ll │ │ │ │ ├── hoisting.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── lcssa-ssa-promoter.ll │ │ │ │ ├── loopsink.ll │ │ │ │ ├── no-preheader-test.ll │ │ │ │ ├── opt-remarks-conditional-load.ll │ │ │ │ ├── opt-remarks-intervening-store.ll │ │ │ │ ├── opt-remarks.ll │ │ │ │ ├── pr23608.ll │ │ │ │ ├── pr26843.ll │ │ │ │ ├── pr27262.ll │ │ │ │ ├── pr32129.ll │ │ │ │ ├── pr35342.ll │ │ │ │ ├── preheader-safe.ll │ │ │ │ ├── promote-order.ll │ │ │ │ ├── promote-tls.ll │ │ │ │ ├── scalar-promote-memmodel.ll │ │ │ │ ├── scalar-promote-unwind.ll │ │ │ │ ├── scalar-promote.ll │ │ │ │ ├── sink-foldable.ll │ │ │ │ ├── sink.ll │ │ │ │ ├── sinking.ll │ │ │ │ ├── speculate.ll │ │ │ │ ├── strlen.ll │ │ │ │ ├── unrolled-deeply-nested.ll │ │ │ │ ├── update-scev.ll │ │ │ │ └── volatile-alias.ll │ │ │ ├── LoadStoreVectorizer │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── aa-metadata.ll │ │ │ │ │ ├── adjust-alloca-alignment.ll │ │ │ │ │ ├── extended-index.ll │ │ │ │ │ ├── gep-bitcast.ll │ │ │ │ │ ├── insertion-point.ll │ │ │ │ │ ├── interleaved-mayalias-store.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── merge-stores-private.ll │ │ │ │ │ ├── merge-stores.ll │ │ │ │ │ ├── merge-vectors.ll │ │ │ │ │ ├── missing-alignment.ll │ │ │ │ │ ├── multiple_tails.ll │ │ │ │ │ ├── no-implicit-float.ll │ │ │ │ │ ├── optnone.ll │ │ │ │ │ ├── pointer-elements.ll │ │ │ │ │ ├── store_with_aliasing_load.ll │ │ │ │ │ └── weird-type-accesses.ll │ │ │ │ ├── NVPTX │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── merge-across-side-effects.ll │ │ │ │ │ ├── non-instr-bitcast.ll │ │ │ │ │ └── propagate-invariance-metadata.ll │ │ │ │ └── int_sideeffect.ll │ │ │ ├── LoopDataPrefetch │ │ │ │ ├── AArch64 │ │ │ │ │ ├── kryo-large-stride.ll │ │ │ │ │ ├── large-stride.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── opt-remark-with-hotness.ll │ │ │ │ │ └── opt-remark.ll │ │ │ │ └── PowerPC │ │ │ │ │ ├── basic.ll │ │ │ │ │ └── lit.local.cfg │ │ │ ├── LoopDeletion │ │ │ │ ├── 2007-07-23-InfiniteLoop.ll │ │ │ │ ├── 2008-05-06-Phi.ll │ │ │ │ ├── 2011-06-21-phioperands.ll │ │ │ │ ├── 2017-07-11-incremental-dt.ll │ │ │ │ ├── dcetest.ll │ │ │ │ ├── invalidation.ll │ │ │ │ ├── multiple-exit-conditions.ll │ │ │ │ ├── multiple-exits.ll │ │ │ │ ├── simplify-then-delete.ll │ │ │ │ ├── unreachable-loops.ll │ │ │ │ └── update-scev.ll │ │ │ ├── LoopDistribute │ │ │ │ ├── basic-with-memchecks.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── bounds-expansion-bug.ll │ │ │ │ ├── crash-in-memcheck-generation.ll │ │ │ │ ├── diagnostics-with-hotness.ll │ │ │ │ ├── diagnostics.ll │ │ │ │ ├── metadata.ll │ │ │ │ ├── no-if-convert.ll │ │ │ │ ├── outside-use.ll │ │ │ │ ├── pr28443.ll │ │ │ │ ├── program-order.ll │ │ │ │ ├── symbolic-stride.ll │ │ │ │ └── unknown-bounds-for-memchecks.ll │ │ │ ├── LoopIdiom │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── popcnt.ll │ │ │ │ ├── ARM │ │ │ │ │ └── ctlz.ll │ │ │ │ ├── basic-address-space.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── ctpop-multiple-users-crash.ll │ │ │ │ ├── debug-line.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── lir-heurs-multi-block-loop.ll │ │ │ │ ├── memset_noidiom.ll │ │ │ │ ├── non-canonical-loop.ll │ │ │ │ ├── non-integral-pointers.ll │ │ │ │ ├── nontemporal_store.ll │ │ │ │ ├── pr28196.ll │ │ │ │ ├── pr33114.ll │ │ │ │ ├── scev-invalidation.ll │ │ │ │ ├── struct.ll │ │ │ │ ├── struct_pattern.ll │ │ │ │ ├── unordered-atomic-memcpy-noarch.ll │ │ │ │ ├── unroll.ll │ │ │ │ ├── unsafe.ll │ │ │ │ └── unwind.ll │ │ │ ├── LoopInterchange │ │ │ │ ├── call-instructions.ll │ │ │ │ ├── current-limitations-lcssa.ll │ │ │ │ ├── currentLimitation.ll │ │ │ │ ├── interchange-flow-dep-outer.ll │ │ │ │ ├── interchange-insts-between-indvar.ll │ │ │ │ ├── interchange-not-profitable.ll │ │ │ │ ├── interchange-output-dependencies.ll │ │ │ │ ├── interchange-simple-count-down.ll │ │ │ │ ├── interchange-simple-count-up.ll │ │ │ │ ├── loop-interchange-optimization-remarks.ll │ │ │ │ ├── not-interchanged-dependencies-1.ll │ │ │ │ ├── not-interchanged-loop-nest-3.ll │ │ │ │ ├── not-interchanged-tightly-nested.ll │ │ │ │ ├── phi-ordering.ll │ │ │ │ ├── profitability.ll │ │ │ │ └── reductions.ll │ │ │ ├── LoopLoadElim │ │ │ │ ├── backward.ll │ │ │ │ ├── cond-load.ll │ │ │ │ ├── def-store-before-load.ll │ │ │ │ ├── forward.ll │ │ │ │ ├── loop-simplify-dep.ll │ │ │ │ ├── memcheck.ll │ │ │ │ ├── multiple-stores-same-block.ll │ │ │ │ ├── non-consecutive.ll │ │ │ │ ├── opt-size.ll │ │ │ │ ├── symbolic-stride.ll │ │ │ │ ├── type-mismatch.ll │ │ │ │ └── unknown-dep.ll │ │ │ ├── LoopPredication │ │ │ │ ├── basic.ll │ │ │ │ ├── nested.ll │ │ │ │ ├── reverse.ll │ │ │ │ ├── visited.ll │ │ │ │ └── widened.ll │ │ │ ├── LoopReroll │ │ │ │ ├── basic.ll │ │ │ │ ├── basic32iters.ll │ │ │ │ ├── complex_reroll.ll │ │ │ │ ├── indvar_with_ext.ll │ │ │ │ ├── negative.ll │ │ │ │ ├── nonconst_lb.ll │ │ │ │ ├── ptrindvar.ll │ │ │ │ ├── reduction.ll │ │ │ │ └── reroll_with_dbg.ll │ │ │ ├── LoopRotate │ │ │ │ ├── 2009-01-25-SingleEntryPhi.ll │ │ │ │ ├── PhiRename-1.ll │ │ │ │ ├── PhiSelfReference-1.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── catchret.ll │ │ │ │ ├── convergent.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── dbg-value-duplicates.ll │ │ │ │ ├── dbgvalue.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── multiple-exits.ll │ │ │ │ ├── nosimplifylatch.ll │ │ │ │ ├── oz-disable.ll │ │ │ │ ├── phi-dbgvalue.ll │ │ │ │ ├── phi-duplicate.ll │ │ │ │ ├── pr22337.ll │ │ │ │ ├── pr2639.ll │ │ │ │ ├── pr33701.ll │ │ │ │ ├── pr35210.ll │ │ │ │ ├── preserve-loop-simplify.ll │ │ │ │ ├── preserve-scev.ll │ │ │ │ ├── simplifylatch.ll │ │ │ │ └── vect.omp.persistence.ll │ │ │ ├── LoopSimplify │ │ │ │ ├── 2003-04-25-AssertFail.ll │ │ │ │ ├── 2003-05-12-PreheaderExitOfChild.ll │ │ │ │ ├── 2003-08-15-PreheadersFail.ll │ │ │ │ ├── 2003-12-10-ExitBlocksProblem.ll │ │ │ │ ├── 2004-02-05-DominatorInfoCorruption.ll │ │ │ │ ├── 2004-03-15-IncorrectDomUpdate.ll │ │ │ │ ├── 2004-04-01-IncorrectDomUpdate.ll │ │ │ │ ├── 2004-04-12-LoopSimplify-SwitchBackedges.ll │ │ │ │ ├── 2004-04-13-LoopSimplifyUpdateDomFrontier.ll │ │ │ │ ├── 2007-10-28-InvokeCrash.ll │ │ │ │ ├── 2010-07-15-IncorrectDomFrontierUpdate.ll │ │ │ │ ├── 2010-12-26-PHIInfiniteLoop.ll │ │ │ │ ├── 2011-12-14-LandingpadHeader.ll │ │ │ │ ├── 2012-03-20-indirectbr.ll │ │ │ │ ├── ashr-crash.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── dbg-loc.ll │ │ │ │ ├── dup-preds.ll │ │ │ │ ├── hardertest.ll │ │ │ │ ├── indirectbr-backedge.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── merge-exits.ll │ │ │ │ ├── notify-scev.ll │ │ │ │ ├── phi-node-simplify.ll │ │ │ │ ├── pr26682.ll │ │ │ │ ├── pr28272.ll │ │ │ │ ├── pr30454.ll │ │ │ │ ├── pr33494.ll │ │ │ │ ├── preserve-llvm-loop-metadata.ll │ │ │ │ ├── preserve-scev.ll │ │ │ │ ├── single-backedge.ll │ │ │ │ └── unreachable-loop-pred.ll │ │ │ ├── LoopSimplifyCFG │ │ │ │ └── merge-header.ll │ │ │ ├── LoopStrengthReduce │ │ │ │ ├── 2005-08-15-AddRecIV.ll │ │ │ │ ├── 2005-08-17-OutOfLoopVariant.ll │ │ │ │ ├── 2005-09-12-UsesOutOutsideOfLoop.ll │ │ │ │ ├── 2007-04-23-UseIterator.ll │ │ │ │ ├── 2008-08-13-CmpStride.ll │ │ │ │ ├── 2008-09-09-Overflow.ll │ │ │ │ ├── 2009-01-13-nonconstant-stride-outside-loop.ll │ │ │ │ ├── 2009-04-28-no-reduce-mul.ll │ │ │ │ ├── 2011-07-19-CritEdgeBreakCrash.ll │ │ │ │ ├── 2011-10-03-CritEdgeMerge.ll │ │ │ │ ├── 2011-10-06-ReusePhi.ll │ │ │ │ ├── 2011-10-13-SCEVChain.ll │ │ │ │ ├── 2011-10-14-IntPtr.ll │ │ │ │ ├── 2011-12-19-PostincQuadratic.ll │ │ │ │ ├── 2012-01-02-nopreheader.ll │ │ │ │ ├── 2012-01-16-nopreheader.ll │ │ │ │ ├── 2012-03-15-nopreheader.ll │ │ │ │ ├── 2012-03-26-constexpr.ll │ │ │ │ ├── 2012-07-13-ExpandUDiv.ll │ │ │ │ ├── 2012-07-18-LimitReassociate.ll │ │ │ │ ├── 2013-01-05-IndBr.ll │ │ │ │ ├── 2013-01-14-ReuseCast.ll │ │ │ │ ├── AArch64 │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── lsr-memcpy.ll │ │ │ │ │ ├── lsr-memset.ll │ │ │ │ │ ├── lsr-reuse.ll │ │ │ │ │ └── req-regs.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── atomics.ll │ │ │ │ │ ├── different-addrspace-addressing-mode-loops.ll │ │ │ │ │ ├── different-addrspace-crash.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── lsr-postinc-pos-addrspace.ll │ │ │ │ │ └── preserve-addrspace-assert.ll │ │ │ │ ├── ARM │ │ │ │ │ ├── 2012-06-15-lsr-noaddrmode.ll │ │ │ │ │ ├── addrec-is-loop-invariant.ll │ │ │ │ │ ├── ivchain-ARM.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── NVPTX │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── trunc.ll │ │ │ │ ├── addrec-gep-address-space.ll │ │ │ │ ├── addrec-gep.ll │ │ │ │ ├── address-space-loop.ll │ │ │ │ ├── count-to-zero.ll │ │ │ │ ├── dead-phi.ll │ │ │ │ ├── different-type-ivs.ll │ │ │ │ ├── dominate-assert.ll │ │ │ │ ├── dont-hoist-simple-loop-constants.ll │ │ │ │ ├── dont_insert_redundant_ops.ll │ │ │ │ ├── dont_reduce_bytes.ll │ │ │ │ ├── dont_reverse.ll │ │ │ │ ├── ephemeral.ll │ │ │ │ ├── exit_compare_live_range.ll │ │ │ │ ├── funclet.ll │ │ │ │ ├── hoist-parent-preheader.ll │ │ │ │ ├── illegal-addr-modes.ll │ │ │ │ ├── invariant_value_first.ll │ │ │ │ ├── invariant_value_first_arg.ll │ │ │ │ ├── ivchain.ll │ │ │ │ ├── negative-scale.ll │ │ │ │ ├── nested-reduce.ll │ │ │ │ ├── nonintegral.ll │ │ │ │ ├── nonlinear-postinc.ll │ │ │ │ ├── ops_after_indvar.ll │ │ │ │ ├── phi_node_update_multiple_preds.ll │ │ │ │ ├── post-inc-icmpzero.ll │ │ │ │ ├── post-inc-optsize.ll │ │ │ │ ├── pr12018.ll │ │ │ │ ├── pr12048.ll │ │ │ │ ├── pr12691.ll │ │ │ │ ├── pr18165.ll │ │ │ │ ├── pr2537.ll │ │ │ │ ├── pr25541.ll │ │ │ │ ├── pr2570.ll │ │ │ │ ├── pr27056.ll │ │ │ │ ├── pr3086.ll │ │ │ │ ├── pr31627.ll │ │ │ │ ├── pr3399.ll │ │ │ │ ├── pr3571.ll │ │ │ │ ├── preserve-gep-loop-variant.ll │ │ │ │ ├── related_indvars.ll │ │ │ │ ├── remove_indvar.ll │ │ │ │ ├── scaling_factor_cost_crash.ll │ │ │ │ ├── scev-insertpt-bug.ll │ │ │ │ ├── sext-ind-var.ll │ │ │ │ ├── share_code_in_preheader.ll │ │ │ │ ├── share_ivs.ll │ │ │ │ ├── shl.ll │ │ │ │ ├── uglygep-address-space.ll │ │ │ │ ├── uglygep.ll │ │ │ │ ├── use_postinc_value_outside_loop.ll │ │ │ │ ├── var_stride_used_by_compare.ll │ │ │ │ └── variable_stride.ll │ │ │ ├── LoopUnroll │ │ │ │ ├── 2004-05-13-DontUnrollTooMuch.ll │ │ │ │ ├── 2005-03-06-BadLoopInfoUpdate.ll │ │ │ │ ├── 2006-08-24-MultiBlockLoop.ll │ │ │ │ ├── 2007-04-16-PhiUpdate.ll │ │ │ │ ├── 2007-05-05-UnrollMiscomp.ll │ │ │ │ ├── 2007-05-09-UnknownTripCount.ll │ │ │ │ ├── 2007-11-05-Crash.ll │ │ │ │ ├── 2011-08-08-PhiUpdate.ll │ │ │ │ ├── 2011-08-09-IVSimplify.ll │ │ │ │ ├── 2011-08-09-PhiUpdate.ll │ │ │ │ ├── 2011-10-01-NoopTrunc.ll │ │ │ │ ├── 2012-04-09-unroll-indirectbr.ll │ │ │ │ ├── AArch64 │ │ │ │ │ ├── falkor-prefetch.ll │ │ │ │ │ ├── full-unroll-trip-count-upper-bound.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── partial.ll │ │ │ │ │ └── runtime-loop.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── unroll-barrier.ll │ │ │ │ │ └── unroll-for-private.ll │ │ │ │ ├── ARM │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── loop-unrolling.ll │ │ │ │ │ └── multi-blocks.ll │ │ │ │ ├── PowerPC │ │ │ │ │ ├── a2-high-cost-trip-count-computation.ll │ │ │ │ │ ├── a2-unrolling.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── p7-unrolling.ll │ │ │ │ │ └── p8-unrolling-legalize-vectors.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── convergent.ll │ │ │ │ ├── debug-info.ll │ │ │ │ ├── ephemeral.ll │ │ │ │ ├── epilog_const_phi.ll │ │ │ │ ├── full-unroll-bad-cost.ll │ │ │ │ ├── full-unroll-crashers.ll │ │ │ │ ├── full-unroll-heuristics-2.ll │ │ │ │ ├── full-unroll-heuristics-cmp.ll │ │ │ │ ├── full-unroll-heuristics-dce.ll │ │ │ │ ├── full-unroll-heuristics-geps.ll │ │ │ │ ├── full-unroll-heuristics-phi-prop.ll │ │ │ │ ├── full-unroll-heuristics.ll │ │ │ │ ├── full-unroll-keep-first-exit.ll │ │ │ │ ├── high-cost-trip-count-computation.ll │ │ │ │ ├── ignore-annotation-intrinsic-cost.ll │ │ │ │ ├── loop-remarks-with-hotness.ll │ │ │ │ ├── loop-remarks.ll │ │ │ │ ├── not-rotated.ll │ │ │ │ ├── partial-unroll-const-bounds.ll │ │ │ │ ├── peel-loop-irreducible.ll │ │ │ │ ├── peel-loop-negative.ll │ │ │ │ ├── peel-loop-not-forced.ll │ │ │ │ ├── peel-loop-pgo.ll │ │ │ │ ├── peel-loop.ll │ │ │ │ ├── peel-loop2.ll │ │ │ │ ├── pr10813.ll │ │ │ │ ├── pr11361.ll │ │ │ │ ├── pr14167.ll │ │ │ │ ├── pr18861.ll │ │ │ │ ├── pr27157.ll │ │ │ │ ├── pr28132.ll │ │ │ │ ├── pr31718.ll │ │ │ │ ├── pr33437.ll │ │ │ │ ├── rebuild_lcssa.ll │ │ │ │ ├── revisit.ll │ │ │ │ ├── runtime-epilog-debuginfo.ll │ │ │ │ ├── runtime-li.ll │ │ │ │ ├── runtime-loop-multiexit-dom-verify.ll │ │ │ │ ├── runtime-loop-multiple-exits.ll │ │ │ │ ├── runtime-loop.ll │ │ │ │ ├── runtime-loop1.ll │ │ │ │ ├── runtime-loop2.ll │ │ │ │ ├── runtime-loop3.ll │ │ │ │ ├── runtime-loop4.ll │ │ │ │ ├── runtime-loop5.ll │ │ │ │ ├── runtime-multiexit-heuristic.ll │ │ │ │ ├── runtime-unroll-remainder.ll │ │ │ │ ├── scevunroll.ll │ │ │ │ ├── shifted-tripcount.ll │ │ │ │ ├── tripcount-overflow.ll │ │ │ │ ├── unloop.ll │ │ │ │ ├── unroll-cleanup.ll │ │ │ │ ├── unroll-cleanuppad.ll │ │ │ │ ├── unroll-count.ll │ │ │ │ ├── unroll-heuristics-pgo.ll │ │ │ │ ├── unroll-loop-invalidation.ll │ │ │ │ ├── unroll-maxcount.ll │ │ │ │ ├── unroll-opt-attribute.ll │ │ │ │ ├── unroll-pragmas-disabled.ll │ │ │ │ ├── unroll-pragmas.ll │ │ │ │ └── update-loop-info-in-subloops.ll │ │ │ ├── LoopUnswitch │ │ │ │ ├── 2006-06-13-SingleEntryPHI.ll │ │ │ │ ├── 2006-06-27-DeadSwitchCase.ll │ │ │ │ ├── 2007-05-09-Unreachable.ll │ │ │ │ ├── 2007-05-09-tl.ll │ │ │ │ ├── 2007-07-12-ExitDomInfo.ll │ │ │ │ ├── 2007-07-13-DomInfo.ll │ │ │ │ ├── 2007-07-18-DomInfo.ll │ │ │ │ ├── 2007-08-01-Dom.ll │ │ │ │ ├── 2007-08-01-LCSSA.ll │ │ │ │ ├── 2007-10-04-DomFrontier.ll │ │ │ │ ├── 2008-06-02-DomInfo.ll │ │ │ │ ├── 2008-06-17-DomFrontier.ll │ │ │ │ ├── 2008-11-03-Invariant.ll │ │ │ │ ├── 2010-11-18-LCSSA.ll │ │ │ │ ├── 2011-06-02-CritSwitch.ll │ │ │ │ ├── 2011-09-26-EHCrash.ll │ │ │ │ ├── 2011-11-18-SimpleSwitch.ll │ │ │ │ ├── 2011-11-18-TwoSwitches-Threshold.ll │ │ │ │ ├── 2011-11-18-TwoSwitches.ll │ │ │ │ ├── 2012-04-02-IndirectBr.ll │ │ │ │ ├── 2012-04-30-LoopUnswitch-LPad-Crash.ll │ │ │ │ ├── 2012-05-20-Phi.ll │ │ │ │ ├── 2015-06-17-Metadata.ll │ │ │ │ ├── 2015-09-18-Addrspace.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── divergent-unswitch.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── LIV-loop-condtion.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── cleanuppad.ll │ │ │ │ ├── copy-metadata.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── elseif-non-exponential-behavior.ll │ │ │ │ ├── exponential-behavior.ll │ │ │ │ ├── guards.ll │ │ │ │ ├── infinite-loop.ll │ │ │ │ ├── msan.ll │ │ │ │ ├── pr32818.ll │ │ │ │ ├── preserve-analyses.ll │ │ │ │ ├── simplify-with-nonvalness.ll │ │ │ │ ├── trivial-unswitch.ll │ │ │ │ ├── unswitch-equality-undef.ll │ │ │ │ └── unswitch-select.ll │ │ │ ├── LoopVectorize │ │ │ │ ├── 12-12-11-if-conv.ll │ │ │ │ ├── 2012-10-20-infloop.ll │ │ │ │ ├── 2012-10-22-isconsec.ll │ │ │ │ ├── 2016-07-27-loop-vec.ll │ │ │ │ ├── AArch64 │ │ │ │ │ ├── aarch64-predication.ll │ │ │ │ │ ├── aarch64-unroll.ll │ │ │ │ │ ├── arbitrary-induction-step.ll │ │ │ │ │ ├── arm64-unroll.ll │ │ │ │ │ ├── backedge-overflow.ll │ │ │ │ │ ├── deterministic-type-shrinkage.ll │ │ │ │ │ ├── gather-cost.ll │ │ │ │ │ ├── induction-trunc.ll │ │ │ │ │ ├── interleaved-vs-scalar.ll │ │ │ │ │ ├── interleaved_cost.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── loop-vectorization-factors.ll │ │ │ │ │ ├── max-vf-for-interleaved.ll │ │ │ │ │ ├── no_vector_instructions.ll │ │ │ │ │ ├── pr31900.ll │ │ │ │ │ ├── pr33053.ll │ │ │ │ │ ├── predication_costs.ll │ │ │ │ │ ├── reduction-small-size.ll │ │ │ │ │ ├── sdiv-pow2.ll │ │ │ │ │ ├── smallest-and-widest-types.ll │ │ │ │ │ └── type-shrinkage-insertelt.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── divergent-runtime-check.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── packed-math.ll │ │ │ │ │ └── unroll-in-loop-vectorizer.ll │ │ │ │ ├── ARM │ │ │ │ │ ├── arm-ieee-vectorize.ll │ │ │ │ │ ├── arm-unroll.ll │ │ │ │ │ ├── gather-cost.ll │ │ │ │ │ ├── gcc-examples.ll │ │ │ │ │ ├── interleaved_cost.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── mul-cast-vect.ll │ │ │ │ │ ├── vector_cast.ll │ │ │ │ │ └── width-detect.ll │ │ │ │ ├── PowerPC │ │ │ │ │ ├── agg-interleave-a2.ll │ │ │ │ │ ├── large-loop-rdx.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── pr30990.ll │ │ │ │ │ ├── small-loop-rdx.ll │ │ │ │ │ ├── stride-vectorization.ll │ │ │ │ │ ├── vectorize-only-for-real.ll │ │ │ │ │ └── vsx-tsvc-s173.ll │ │ │ │ ├── SystemZ │ │ │ │ │ ├── addressing.ll │ │ │ │ │ ├── branch-for-predicated-block.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── load-store-scalarization-cost.ll │ │ │ │ │ └── mem-interleaving-costs.ll │ │ │ │ ├── XCore │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── no-vector-registers.ll │ │ │ │ ├── align.ll │ │ │ │ ├── bsd_regex.ll │ │ │ │ ├── bzip_reverse_loops.ll │ │ │ │ ├── calloc.ll │ │ │ │ ├── cast-induction.ll │ │ │ │ ├── conditional-assignment.ll │ │ │ │ ├── consec_no_gep.ll │ │ │ │ ├── consecutive-ptr-uniforms.ll │ │ │ │ ├── control-flow.ll │ │ │ │ ├── cpp-new-array.ll │ │ │ │ ├── dbg.value.ll │ │ │ │ ├── dead_instructions.ll │ │ │ │ ├── debugloc.ll │ │ │ │ ├── diag-missing-instr-debug-loc.ll │ │ │ │ ├── diag-with-hotness-info-2.ll │ │ │ │ ├── diag-with-hotness-info.ll │ │ │ │ ├── discriminator.ll │ │ │ │ ├── duplicated-metadata.ll │ │ │ │ ├── ee-crash.ll │ │ │ │ ├── exact.ll │ │ │ │ ├── fcmp-vectorize.ll │ │ │ │ ├── first-order-recurrence.ll │ │ │ │ ├── flags.ll │ │ │ │ ├── float-induction.ll │ │ │ │ ├── float-reduction.ll │ │ │ │ ├── funcall.ll │ │ │ │ ├── gcc-examples.ll │ │ │ │ ├── gep_with_bitcast.ll │ │ │ │ ├── global_alias.ll │ │ │ │ ├── hints-trans.ll │ │ │ │ ├── hoist-loads.ll │ │ │ │ ├── i8-induction.ll │ │ │ │ ├── icmp-uniforms.ll │ │ │ │ ├── if-conv-crash.ll │ │ │ │ ├── if-conversion-edgemasks.ll │ │ │ │ ├── if-conversion-nest.ll │ │ │ │ ├── if-conversion-reduction.ll │ │ │ │ ├── if-conversion.ll │ │ │ │ ├── if-pred-non-void.ll │ │ │ │ ├── if-pred-not-when-safe.ll │ │ │ │ ├── if-pred-stores.ll │ │ │ │ ├── incorrect-dom-info.ll │ │ │ │ ├── increment.ll │ │ │ │ ├── induction-step.ll │ │ │ │ ├── induction.ll │ │ │ │ ├── induction_plus.ll │ │ │ │ ├── infiniteloop.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── interleaved-accesses-1.ll │ │ │ │ ├── interleaved-accesses-2.ll │ │ │ │ ├── interleaved-accesses-3.ll │ │ │ │ ├── interleaved-accesses-alias.ll │ │ │ │ ├── interleaved-accesses-pred-stores.ll │ │ │ │ ├── interleaved-accesses.ll │ │ │ │ ├── intrinsic.ll │ │ │ │ ├── iv_outside_user.ll │ │ │ │ ├── lcssa-crash.ll │ │ │ │ ├── legal_preheader_check.ll │ │ │ │ ├── lifetime.ll │ │ │ │ ├── loop-form.ll │ │ │ │ ├── loop-scalars.ll │ │ │ │ ├── loop-vect-memdep.ll │ │ │ │ ├── memdep.ll │ │ │ │ ├── metadata-unroll.ll │ │ │ │ ├── metadata-width.ll │ │ │ │ ├── metadata.ll │ │ │ │ ├── miniters.ll │ │ │ │ ├── minmax_reduction.ll │ │ │ │ ├── multi-use-reduction-bug.ll │ │ │ │ ├── multiple-address-spaces.ll │ │ │ │ ├── multiple-strides-vectorization.ll │ │ │ │ ├── no_array_bounds.ll │ │ │ │ ├── no_idiv_reduction.ll │ │ │ │ ├── no_int_induction.ll │ │ │ │ ├── no_outside_user.ll │ │ │ │ ├── no_switch.ll │ │ │ │ ├── noalias-md-licm.ll │ │ │ │ ├── noalias-md.ll │ │ │ │ ├── nofloat.ll │ │ │ │ ├── non-const-n.ll │ │ │ │ ├── nontemporal.ll │ │ │ │ ├── nsw-crash.ll │ │ │ │ ├── opt.ll │ │ │ │ ├── optsize.ll │ │ │ │ ├── partial-lcssa.ll │ │ │ │ ├── phi-cost.ll │ │ │ │ ├── phi-hang.ll │ │ │ │ ├── pr25281.ll │ │ │ │ ├── pr28541.ll │ │ │ │ ├── pr30654-phiscev-sext-trunc.ll │ │ │ │ ├── pr31098.ll │ │ │ │ ├── pr31190.ll │ │ │ │ ├── pr32859.ll │ │ │ │ ├── pr33706.ll │ │ │ │ ├── pr34681.ll │ │ │ │ ├── pr35773.ll │ │ │ │ ├── ptr-induction.ll │ │ │ │ ├── ptr_loops.ll │ │ │ │ ├── read-only.ll │ │ │ │ ├── reduction-small-size.ll │ │ │ │ ├── reduction.ll │ │ │ │ ├── reverse_induction.ll │ │ │ │ ├── reverse_iter.ll │ │ │ │ ├── runtime-check-address-space.ll │ │ │ │ ├── runtime-check-readonly-address-space.ll │ │ │ │ ├── runtime-check-readonly.ll │ │ │ │ ├── runtime-check.ll │ │ │ │ ├── runtime-limit.ll │ │ │ │ ├── safegep.ll │ │ │ │ ├── same-base-access.ll │ │ │ │ ├── scalar-select.ll │ │ │ │ ├── scalar_after_vectorization.ll │ │ │ │ ├── scev-exitlim-crash.ll │ │ │ │ ├── simple-unroll.ll │ │ │ │ ├── small-loop.ll │ │ │ │ ├── start-non-zero.ll │ │ │ │ ├── store-shuffle-bug.ll │ │ │ │ ├── struct_access.ll │ │ │ │ ├── tbaa-nodep.ll │ │ │ │ ├── tripcount.ll │ │ │ │ ├── undef-inst-bug.ll │ │ │ │ ├── unroll-novec-memcheck-metadata.ll │ │ │ │ ├── unroll.ll │ │ │ │ ├── unroll_novec.ll │ │ │ │ ├── unsafe-dep-remark.ll │ │ │ │ ├── unsized-pointee-crash.ll │ │ │ │ ├── value-ptr-bug.ll │ │ │ │ ├── vect-phiscev-sext-trunc.ll │ │ │ │ ├── vect.omp.persistence.ll │ │ │ │ ├── vect.stats.ll │ │ │ │ ├── vector-geps.ll │ │ │ │ ├── vectorize-once.ll │ │ │ │ ├── version-mem-access.ll │ │ │ │ ├── write-only.ll │ │ │ │ └── zero-sized-pointee-crash.ll │ │ │ ├── LoopVersioning │ │ │ │ ├── basic.ll │ │ │ │ ├── exit-block-dominates-rt-check-block.ll │ │ │ │ ├── incorrect-phi.ll │ │ │ │ ├── lcssa.ll │ │ │ │ ├── loop-invariant-bound.ll │ │ │ │ ├── noalias-version-twice.ll │ │ │ │ └── noalias.ll │ │ │ ├── LoopVersioningLICM │ │ │ │ ├── loopversioningLICM1.ll │ │ │ │ ├── loopversioningLICM2.ll │ │ │ │ ├── loopversioningLICM3.ll │ │ │ │ └── metadata.ll │ │ │ ├── LowerAtomic │ │ │ │ ├── atomic-load.ll │ │ │ │ ├── atomic-swap.ll │ │ │ │ └── barrier.ll │ │ │ ├── LowerExpectIntrinsic │ │ │ │ ├── PR33346.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── expect_nonboolean.ll │ │ │ │ ├── phi_merge.ll │ │ │ │ ├── phi_or.ll │ │ │ │ └── phi_tern.ll │ │ │ ├── LowerGuardIntrinsic │ │ │ │ ├── basic.ll │ │ │ │ └── with-calling-conv.ll │ │ │ ├── LowerInvoke │ │ │ │ ├── 2003-12-10-Crash.ll │ │ │ │ └── lowerinvoke.ll │ │ │ ├── LowerSwitch │ │ │ │ ├── 2003-05-01-PHIProblem.ll │ │ │ │ ├── 2003-08-23-EmptySwitch.ll │ │ │ │ ├── 2004-03-13-SwitchIsDefaultCrash.ll │ │ │ │ ├── 2014-06-10-SwitchContiguousOpt.ll │ │ │ │ ├── 2014-06-11-SwitchDefaultUnreachableOpt.ll │ │ │ │ ├── 2014-06-23-PHIlowering.ll │ │ │ │ ├── delete-default-block-crash.ll │ │ │ │ ├── feature.ll │ │ │ │ ├── fold-popular-case-to-unreachable-default.ll │ │ │ │ └── phi-in-dead-block.ll │ │ │ ├── LowerTypeTests │ │ │ │ ├── Inputs │ │ │ │ │ ├── import-icall.yaml │ │ │ │ │ ├── import-unsat.yaml │ │ │ │ │ ├── import.yaml │ │ │ │ │ ├── use-typeid1-dead.yaml │ │ │ │ │ └── use-typeid1-typeid2.yaml │ │ │ │ ├── blockaddress-2.ll │ │ │ │ ├── blockaddress.ll │ │ │ │ ├── constant.ll │ │ │ │ ├── export-allones.ll │ │ │ │ ├── export-bytearray.ll │ │ │ │ ├── export-dead.ll │ │ │ │ ├── export-icall.ll │ │ │ │ ├── export-inline.ll │ │ │ │ ├── export-nothing.ll │ │ │ │ ├── export-single.ll │ │ │ │ ├── external-global.ll │ │ │ │ ├── function-arm-thumb.ll │ │ │ │ ├── function-disjoint.ll │ │ │ │ ├── function-ext.ll │ │ │ │ ├── function-weak.ll │ │ │ │ ├── function.ll │ │ │ │ ├── import-icall.ll │ │ │ │ ├── import-unsat.ll │ │ │ │ ├── import.ll │ │ │ │ ├── layout.ll │ │ │ │ ├── nonstring.ll │ │ │ │ ├── pr25902.ll │ │ │ │ ├── section.ll │ │ │ │ ├── simple.ll │ │ │ │ ├── simplify.ll │ │ │ │ ├── simplify_phi.ll │ │ │ │ ├── single-offset.ll │ │ │ │ ├── unnamed.ll │ │ │ │ └── unsat.ll │ │ │ ├── Mem2Reg │ │ │ │ ├── 2002-03-28-UninitializedVal.ll │ │ │ │ ├── 2002-05-01-ShouldNotPromoteThisAlloca.ll │ │ │ │ ├── 2003-04-10-DFNotFound.ll │ │ │ │ ├── 2003-04-18-DeadBlockProblem.ll │ │ │ │ ├── 2003-04-24-MultipleIdenticalSuccessors.ll │ │ │ │ ├── 2003-06-26-IterativePromote.ll │ │ │ │ ├── 2003-10-05-DeadPHIInsertion.ll │ │ │ │ ├── 2005-06-30-ReadBeforeWrite.ll │ │ │ │ ├── 2005-11-28-Crash.ll │ │ │ │ ├── 2007-08-27-VolatileLoadsStores.ll │ │ │ │ ├── ConvertDebugInfo.ll │ │ │ │ ├── ConvertDebugInfo2.ll │ │ │ │ ├── PromoteMemToRegister.ll │ │ │ │ ├── UndefValuesMerge.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── dbg-addr-inline-dse.ll │ │ │ │ ├── dbg-addr.ll │ │ │ │ ├── debug-alloca-phi.ll │ │ │ │ ├── ignore-lifetime.ll │ │ │ │ ├── optnone.ll │ │ │ │ ├── pr24179.ll │ │ │ │ └── preserve-nonnull-load-metadata.ll │ │ │ ├── MemCpyOpt │ │ │ │ ├── 2008-02-24-MultipleUseofSRet.ll │ │ │ │ ├── 2008-03-13-ReturnSlotBitcast.ll │ │ │ │ ├── 2011-06-02-CallSlotOverwritten.ll │ │ │ │ ├── align.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── callslot_aa.ll │ │ │ │ ├── callslot_deref.ll │ │ │ │ ├── callslot_throw.ll │ │ │ │ ├── capturing-func.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── fca2memcpy.ll │ │ │ │ ├── form-memset.ll │ │ │ │ ├── invariant.start.ll │ │ │ │ ├── lifetime.ll │ │ │ │ ├── load-store-to-memcpy.ll │ │ │ │ ├── loadstore-sret.ll │ │ │ │ ├── memcpy-to-memset-with-lifetimes.ll │ │ │ │ ├── memcpy-to-memset.ll │ │ │ │ ├── memcpy-undef.ll │ │ │ │ ├── memcpy.ll │ │ │ │ ├── memmove.ll │ │ │ │ ├── memset-memcpy-redundant-memset.ll │ │ │ │ ├── memset-memcpy-to-2x-memset.ll │ │ │ │ ├── nontemporal.ll │ │ │ │ ├── pr29105.ll │ │ │ │ ├── profitable-memset.ll │ │ │ │ ├── smaller.ll │ │ │ │ └── sret.ll │ │ │ ├── MergeFunc │ │ │ │ ├── 2011-02-08-RemoveEqual.ll │ │ │ │ ├── 2013-01-10-MergeFuncAssert.ll │ │ │ │ ├── address-spaces.ll │ │ │ │ ├── alloca.ll │ │ │ │ ├── apply_function_attributes.ll │ │ │ │ ├── call-and-invoke-with-ranges.ll │ │ │ │ ├── constant-entire-value.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── crash2.ll │ │ │ │ ├── fold-weak.ll │ │ │ │ ├── functions.ll │ │ │ │ ├── gep-base-type.ll │ │ │ │ ├── inttoptr-address-space.ll │ │ │ │ ├── inttoptr.ll │ │ │ │ ├── linkonce_odr.ll │ │ │ │ ├── merge-block-address-other-function.ll │ │ │ │ ├── merge-block-address.ll │ │ │ │ ├── merge-const-ptr-and-int.ll │ │ │ │ ├── merge-different-vector-types.ll │ │ │ │ ├── merge-ptr-and-int.ll │ │ │ │ ├── merge-small-unnamed-addr.ll │ │ │ │ ├── merge-unnamed-addr-bitcast.ll │ │ │ │ ├── merge-unnamed-addr.ll │ │ │ │ ├── merge-weak-crash.ll │ │ │ │ ├── mergefunc-preserve-debug-info.ll │ │ │ │ ├── mergefunc-struct-return.ll │ │ │ │ ├── no-merge-block-address-different-labels.ll │ │ │ │ ├── no-merge-block-address-other-function.ll │ │ │ │ ├── no-merge-ptr-different-sizes.ll │ │ │ │ ├── no-merge-ptr-int-different-values.ll │ │ │ │ ├── phi-check-blocks.ll │ │ │ │ ├── phi-speculation1.ll │ │ │ │ ├── phi-speculation2.ll │ │ │ │ ├── ptr-int-transitivity-1.ll │ │ │ │ ├── ptr-int-transitivity-2.ll │ │ │ │ ├── ptr-int-transitivity-3.ll │ │ │ │ ├── ranges-multiple.ll │ │ │ │ ├── ranges.ll │ │ │ │ ├── self-referential-global.ll │ │ │ │ ├── too-small.ll │ │ │ │ ├── undef-different-types.ll │ │ │ │ ├── vector-GEP-crash.ll │ │ │ │ ├── vector.ll │ │ │ │ └── vectors-and-arrays.ll │ │ │ ├── MergeICmps │ │ │ │ └── pair-int32-int32.ll │ │ │ ├── MetaRenamer │ │ │ │ ├── main.ll │ │ │ │ └── metarenamer.ll │ │ │ ├── NameAnonGlobals │ │ │ │ └── rename.ll │ │ │ ├── NaryReassociate │ │ │ │ ├── NVPTX │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── nary-gep.ll │ │ │ │ │ └── nary-slsr.ll │ │ │ │ ├── nary-add.ll │ │ │ │ ├── nary-mul.ll │ │ │ │ └── pr24301.ll │ │ │ ├── NewGVN │ │ │ │ ├── 2007-07-25-DominatedLoop.ll │ │ │ │ ├── 2007-07-25-InfiniteLoop.ll │ │ │ │ ├── 2007-07-25-Loop.ll │ │ │ │ ├── 2007-07-25-NestedLoop.ll │ │ │ │ ├── 2007-07-25-SinglePredecessor.ll │ │ │ │ ├── 2007-07-26-InterlockingLoops.ll │ │ │ │ ├── 2007-07-26-NonRedundant.ll │ │ │ │ ├── 2007-07-26-PhiErasure.ll │ │ │ │ ├── 2007-07-30-PredIDom.ll │ │ │ │ ├── 2007-07-31-NoDomInherit.ll │ │ │ │ ├── 2007-07-31-RedundantPhi.ll │ │ │ │ ├── 2008-02-12-UndefLoad.ll │ │ │ │ ├── 2008-02-13-NewPHI.ll │ │ │ │ ├── 2008-07-02-Unreachable.ll │ │ │ │ ├── 2008-12-09-SelfRemove.ll │ │ │ │ ├── 2008-12-12-RLE-Crash.ll │ │ │ │ ├── 2008-12-14-rle-reanalyze.ll │ │ │ │ ├── 2008-12-15-CacheVisited.ll │ │ │ │ ├── 2009-01-21-SortInvalidation.ll │ │ │ │ ├── 2009-01-22-SortInvalidation.ll │ │ │ │ ├── 2009-03-10-PREOnVoid.ll │ │ │ │ ├── 2009-07-13-MemDepSortFail.ll │ │ │ │ ├── 2009-11-12-MemDepMallocBitCast.ll │ │ │ │ ├── 2010-03-31-RedundantPHIs.ll │ │ │ │ ├── 2010-05-08-OneBit.ll │ │ │ │ ├── 2010-11-13-Simplify.ll │ │ │ │ ├── 2011-04-27-phioperands.ll │ │ │ │ ├── 2011-07-07-MatchIntrinsicExtract.ll │ │ │ │ ├── 2011-09-07-TypeIdFor.ll │ │ │ │ ├── 2012-05-22-PreCrash.ll │ │ │ │ ├── 2016-08-30-MaskedScatterGather.ll │ │ │ │ ├── MemdepMiscompile.ll │ │ │ │ ├── assume-equal.ll │ │ │ │ ├── basic-cyclic-opt.ll │ │ │ │ ├── basic-undef-test.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── big-endian.ll │ │ │ │ ├── bitcast-of-call.ll │ │ │ │ ├── br-identical.ll │ │ │ │ ├── calloc-load-removal.ll │ │ │ │ ├── calls-nonlocal.ll │ │ │ │ ├── calls-readonly.ll │ │ │ │ ├── commute.ll │ │ │ │ ├── completeness.ll │ │ │ │ ├── cond_br.ll │ │ │ │ ├── cond_br2.ll │ │ │ │ ├── condprop-xfail.ll │ │ │ │ ├── condprop.ll │ │ │ │ ├── crash-no-aa.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── cyclic-phi-handling.ll │ │ │ │ ├── dbg-redundant-load.ll │ │ │ │ ├── deadstore.ll │ │ │ │ ├── debugloc.ll │ │ │ │ ├── edge.ll │ │ │ │ ├── equivalent-phi.ll │ │ │ │ ├── fence.ll │ │ │ │ ├── flags.ll │ │ │ │ ├── fold-const-expr.ll │ │ │ │ ├── fpmath.ll │ │ │ │ ├── funclet.ll │ │ │ │ ├── int_sideeffect.ll │ │ │ │ ├── invariant.group.ll │ │ │ │ ├── invariant.start.ll │ │ │ │ ├── lifetime-simple.ll │ │ │ │ ├── load-constant-mem.ll │ │ │ │ ├── load-from-unreachable-predecessor.ll │ │ │ │ ├── loadforward.ll │ │ │ │ ├── malloc-load-removal.ll │ │ │ │ ├── memory-handling.ll │ │ │ │ ├── no_speculative_loads_with_asan.ll │ │ │ │ ├── noalias.ll │ │ │ │ ├── non-integral-pointers.ll │ │ │ │ ├── non-local-offset.ll │ │ │ │ ├── nonescaping-malloc.ll │ │ │ │ ├── null-aliases-nothing.ll │ │ │ │ ├── opt-remarks.ll │ │ │ │ ├── phi-edge-handling.ll │ │ │ │ ├── phi-translate-partial-alias.ll │ │ │ │ ├── pr10820.ll │ │ │ │ ├── pr12979.ll │ │ │ │ ├── pr14166.ll │ │ │ │ ├── pr17732.ll │ │ │ │ ├── pr17852.ll │ │ │ │ ├── pr24397.ll │ │ │ │ ├── pr24426.ll │ │ │ │ ├── pr25440.ll │ │ │ │ ├── pr28562.ll │ │ │ │ ├── pr31472.ll │ │ │ │ ├── pr31483.ll │ │ │ │ ├── pr31491.ll │ │ │ │ ├── pr31501.ll │ │ │ │ ├── pr31573.ll │ │ │ │ ├── pr31594.ll │ │ │ │ ├── pr31613.ll │ │ │ │ ├── pr31682.ll │ │ │ │ ├── pr31758.ll │ │ │ │ ├── pr32403.ll │ │ │ │ ├── pr32607.ll │ │ │ │ ├── pr32836.ll │ │ │ │ ├── pr32838.ll │ │ │ │ ├── pr32845.ll │ │ │ │ ├── pr32852.ll │ │ │ │ ├── pr32897.ll │ │ │ │ ├── pr32934.ll │ │ │ │ ├── pr32945.ll │ │ │ │ ├── pr32952.ll │ │ │ │ ├── pr33014.ll │ │ │ │ ├── pr33086.ll │ │ │ │ ├── pr33116.ll │ │ │ │ ├── pr33185.ll │ │ │ │ ├── pr33187.ll │ │ │ │ ├── pr33196.ll │ │ │ │ ├── pr33204.ll │ │ │ │ ├── pr33305.ll │ │ │ │ ├── pr33432.ll │ │ │ │ ├── pr33461.ll │ │ │ │ ├── pr33720.ll │ │ │ │ ├── pr34135.ll │ │ │ │ ├── pr34430.ll │ │ │ │ ├── pr34452.ll │ │ │ │ ├── pr35125.ll │ │ │ │ ├── pre-compare.ll │ │ │ │ ├── pre-new-inst.ll │ │ │ │ ├── predicates.ll │ │ │ │ ├── propagate-ir-flags.ll │ │ │ │ ├── range.ll │ │ │ │ ├── readattrs.ll │ │ │ │ ├── refine-stores.ll │ │ │ │ ├── rle-must-alias.ll │ │ │ │ ├── rle-no-phi-translate.ll │ │ │ │ ├── rle-nonlocal.ll │ │ │ │ ├── rle.ll │ │ │ │ ├── stale-loop-info.ll │ │ │ │ ├── storeoverstore.ll │ │ │ │ ├── tbaa.ll │ │ │ │ ├── unreachable_block_infinite_loop.ll │ │ │ │ ├── verify-memoryphi.ll │ │ │ │ └── volatile-nonvolatile.ll │ │ │ ├── ObjCARC │ │ │ │ ├── allocas.ll │ │ │ │ ├── apelim.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── cfg-hazards.ll │ │ │ │ ├── clang-arc-use-barrier.ll │ │ │ │ ├── comdat-ipo.ll │ │ │ │ ├── contract-end-of-use-list.ll │ │ │ │ ├── contract-marker.ll │ │ │ │ ├── contract-replace-arg-use.ll │ │ │ │ ├── contract-storestrong-ivar.ll │ │ │ │ ├── contract-storestrong.ll │ │ │ │ ├── contract-testcases.ll │ │ │ │ ├── contract.ll │ │ │ │ ├── empty-block.ll │ │ │ │ ├── ensure-that-exception-unwind-path-is-visited.ll │ │ │ │ ├── escape.ll │ │ │ │ ├── expand.ll │ │ │ │ ├── gvn.ll │ │ │ │ ├── intrinsic-use-isolated.ll │ │ │ │ ├── intrinsic-use.ll │ │ │ │ ├── invoke-2.ll │ │ │ │ ├── invoke.ll │ │ │ │ ├── move-and-form-retain-autorelease.ll │ │ │ │ ├── move-and-merge-autorelease.ll │ │ │ │ ├── nested.ll │ │ │ │ ├── path-overflow.ll │ │ │ │ ├── pointer-types.ll │ │ │ │ ├── post-inlining.ll │ │ │ │ ├── pr12270.ll │ │ │ │ ├── provenance.ll │ │ │ │ ├── retain-block-side-effects.ll │ │ │ │ ├── retain-not-declared.ll │ │ │ │ ├── rle-s2l.ll │ │ │ │ ├── rv.ll │ │ │ │ ├── split-backedge.ll │ │ │ │ ├── tail-call-invariant-enforcement.ll │ │ │ │ ├── unsafe-claim-rv.ll │ │ │ │ ├── weak-contract.ll │ │ │ │ ├── weak-copies.ll │ │ │ │ ├── weak-dce.ll │ │ │ │ └── weak.ll │ │ │ ├── PGOProfile │ │ │ │ ├── Inputs │ │ │ │ │ ├── PR28219.proftext │ │ │ │ │ ├── branch1.proftext │ │ │ │ │ ├── branch1_large_count.proftext │ │ │ │ │ ├── branch2.proftext │ │ │ │ │ ├── criticaledge.proftext │ │ │ │ │ ├── diag.proftext │ │ │ │ │ ├── diag_FE.proftext │ │ │ │ │ ├── indirect_call.proftext │ │ │ │ │ ├── indirectbr.proftext │ │ │ │ │ ├── irreducible.proftext │ │ │ │ │ ├── landingpad.proftext │ │ │ │ │ ├── loop1.proftext │ │ │ │ │ ├── loop2.proftext │ │ │ │ │ ├── memop_size_annotation.proftext │ │ │ │ │ ├── multiple_hash_profile.proftext │ │ │ │ │ ├── noreturncall.proftext │ │ │ │ │ ├── select1.proftext │ │ │ │ │ ├── select2.proftext │ │ │ │ │ ├── switch.proftext │ │ │ │ │ ├── thinlto_indirect_call_promotion.ll │ │ │ │ │ ├── thinlto_samplepgo_icp.ll │ │ │ │ │ ├── thinlto_samplepgo_icp2a.ll │ │ │ │ │ ├── thinlto_samplepgo_icp2b.ll │ │ │ │ │ ├── thinlto_samplepgo_icp3.ll │ │ │ │ │ └── unreachable_bb.proftext │ │ │ │ ├── PR28219.ll │ │ │ │ ├── branch1.ll │ │ │ │ ├── branch2.ll │ │ │ │ ├── comdat_internal.ll │ │ │ │ ├── comdat_rename.ll │ │ │ │ ├── counter_promo.ll │ │ │ │ ├── counter_promo_exit_merge.ll │ │ │ │ ├── counter_promo_mexits.ll │ │ │ │ ├── counter_promo_nest.ll │ │ │ │ ├── criticaledge.ll │ │ │ │ ├── diag_FE_profile.ll │ │ │ │ ├── diag_mismatch.ll │ │ │ │ ├── diag_no_funcprofdata.ll │ │ │ │ ├── diag_no_profile.ll │ │ │ │ ├── do-not-instrument.ll │ │ │ │ ├── icp_covariant_call_return.ll │ │ │ │ ├── icp_covariant_invoke_return.ll │ │ │ │ ├── icp_invoke.ll │ │ │ │ ├── icp_invoke_nouse.ll │ │ │ │ ├── icp_mismatch_msg.ll │ │ │ │ ├── icp_sample.ll │ │ │ │ ├── icp_vararg.ll │ │ │ │ ├── indirect_call_annotation.ll │ │ │ │ ├── indirect_call_profile.ll │ │ │ │ ├── indirect_call_promotion.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── infinite_loop.ll │ │ │ │ ├── infinite_loop_gen.ll │ │ │ │ ├── irreducible.ll │ │ │ │ ├── landingpad.ll │ │ │ │ ├── loop1.ll │ │ │ │ ├── loop2.ll │ │ │ │ ├── memcpy.ll │ │ │ │ ├── memop_clone.ll │ │ │ │ ├── memop_size_annotation.ll │ │ │ │ ├── memop_size_from_strlen.ll │ │ │ │ ├── memop_size_opt.ll │ │ │ │ ├── memop_size_opt_zero.ll │ │ │ │ ├── multiple_hash_profile.ll │ │ │ │ ├── noreturncall.ll │ │ │ │ ├── preinline.ll │ │ │ │ ├── select1.ll │ │ │ │ ├── select2.ll │ │ │ │ ├── single_bb.ll │ │ │ │ ├── split-indirectbr-critical-edges.ll │ │ │ │ ├── statics_counter_naming.ll │ │ │ │ ├── switch.ll │ │ │ │ ├── thinlto_indirect_call_promotion.ll │ │ │ │ ├── thinlto_samplepgo_icp.ll │ │ │ │ ├── thinlto_samplepgo_icp2.ll │ │ │ │ ├── thinlto_samplepgo_icp3.ll │ │ │ │ └── unreachable_bb.ll │ │ │ ├── PartiallyInlineLibCalls │ │ │ │ ├── bad-prototype.ll │ │ │ │ └── nobuiltin.ll │ │ │ ├── PhaseOrdering │ │ │ │ ├── 2010-03-22-empty-baseclass.ll │ │ │ │ ├── PR6627.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── gdce.ll │ │ │ │ ├── globalaa-retained.ll │ │ │ │ ├── scev.ll │ │ │ │ └── simplifycfg-options.ll │ │ │ ├── PlaceSafepoints │ │ │ │ ├── basic.ll │ │ │ │ ├── call-in-loop.ll │ │ │ │ ├── finite-loops.ll │ │ │ │ ├── libcall.ll │ │ │ │ ├── memset.ll │ │ │ │ ├── no-statepoints.ll │ │ │ │ ├── split-backedge.ll │ │ │ │ ├── statepoint-coreclr.ll │ │ │ │ └── statepoint-frameescape.ll │ │ │ ├── PreISelIntrinsicLowering │ │ │ │ └── load-relative.ll │ │ │ ├── PruneEH │ │ │ │ ├── 2008-06-02-Weak.ll │ │ │ │ ├── ipo-nounwind.ll │ │ │ │ ├── operand-bundles.ll │ │ │ │ ├── pr23971.ll │ │ │ │ ├── pr26263.ll │ │ │ │ ├── recursivetest.ll │ │ │ │ ├── seh-nounwind.ll │ │ │ │ ├── simplenoreturntest.ll │ │ │ │ └── simpletest.ll │ │ │ ├── Reassociate │ │ │ │ ├── 2002-05-15-AgressiveSubMove.ll │ │ │ │ ├── 2002-05-15-MissedTree.ll │ │ │ │ ├── 2002-05-15-SubReassociate.ll │ │ │ │ ├── 2002-07-09-DominanceProblem.ll │ │ │ │ ├── 2003-08-12-InfiniteLoop.ll │ │ │ │ ├── 2005-09-01-ArrayOutOfBounds.ll │ │ │ │ ├── 2006-04-27-ReassociateVector.ll │ │ │ │ ├── 2011-01-26-UseAfterFree.ll │ │ │ │ ├── 2012-05-08-UndefLeak.ll │ │ │ │ ├── 2012-06-08-InfiniteLoop.ll │ │ │ │ ├── absorption.ll │ │ │ │ ├── add_across_block_crash.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── canonicalize-neg-const.ll │ │ │ │ ├── commute.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── crash2.ll │ │ │ │ ├── deadcode.ll │ │ │ │ ├── erase_inst_made_change.ll │ │ │ │ ├── factorize-again.ll │ │ │ │ ├── fast-AgressiveSubMove.ll │ │ │ │ ├── fast-ArrayOutOfBounds.ll │ │ │ │ ├── fast-MissedTree.ll │ │ │ │ ├── fast-ReassociateVector.ll │ │ │ │ ├── fast-SubReassociate.ll │ │ │ │ ├── fast-basictest.ll │ │ │ │ ├── fast-fp-commute.ll │ │ │ │ ├── fast-mightymul.ll │ │ │ │ ├── fast-multistep.ll │ │ │ │ ├── fp-commute.ll │ │ │ │ ├── fp-expr.ll │ │ │ │ ├── inverses.ll │ │ │ │ ├── keep-debug-loc.ll │ │ │ │ ├── looptest.ll │ │ │ │ ├── mightymul.ll │ │ │ │ ├── min_int.ll │ │ │ │ ├── mixed-fast-nonfast-fp.ll │ │ │ │ ├── mulfactor.ll │ │ │ │ ├── multistep.ll │ │ │ │ ├── negation.ll │ │ │ │ ├── negation1.ll │ │ │ │ ├── no-op.ll │ │ │ │ ├── optional-flags.ll │ │ │ │ ├── otherops.ll │ │ │ │ ├── pr12245.ll │ │ │ │ ├── pr21205.ll │ │ │ │ ├── pr28367.ll │ │ │ │ ├── propagate-flags.ll │ │ │ │ ├── reassoc-intermediate-fnegs.ll │ │ │ │ ├── reassociate-deadinst.ll │ │ │ │ ├── repeats.ll │ │ │ │ ├── secondary.ll │ │ │ │ ├── shift-factor.ll │ │ │ │ ├── shifttest.ll │ │ │ │ ├── subtest.ll │ │ │ │ ├── vaarg_movable.ll │ │ │ │ ├── wrap-flags.ll │ │ │ │ └── xor_reassoc.ll │ │ │ ├── Reg2Mem │ │ │ │ └── crash.ll │ │ │ ├── RewriteStatepointsForGC │ │ │ │ ├── base-pointers-1.ll │ │ │ │ ├── base-pointers-10.ll │ │ │ │ ├── base-pointers-11.ll │ │ │ │ ├── base-pointers-12.ll │ │ │ │ ├── base-pointers-13.ll │ │ │ │ ├── base-pointers-2.ll │ │ │ │ ├── base-pointers-3.ll │ │ │ │ ├── base-pointers-4.ll │ │ │ │ ├── base-pointers-5.ll │ │ │ │ ├── base-pointers-6.ll │ │ │ │ ├── base-pointers-7.ll │ │ │ │ ├── base-pointers-8.ll │ │ │ │ ├── base-pointers-9.ll │ │ │ │ ├── base-pointers.ll │ │ │ │ ├── base-vector.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── basics.ll │ │ │ │ ├── call-gc-result.ll │ │ │ │ ├── check_traversal_order.ll │ │ │ │ ├── codegen-cond.ll │ │ │ │ ├── constants.ll │ │ │ │ ├── deopt-intrinsic-cconv.ll │ │ │ │ ├── deopt-intrinsic.ll │ │ │ │ ├── deopt-lowering-attrs.ll │ │ │ │ ├── deref-pointers.ll │ │ │ │ ├── drop-invalid-metadata.ll │ │ │ │ ├── gc-relocate-creation.ll │ │ │ │ ├── invokes.ll │ │ │ │ ├── leaf-function.ll │ │ │ │ ├── libcall.ll │ │ │ │ ├── live-vector-nosplit.ll │ │ │ │ ├── liveness-basics.ll │ │ │ │ ├── patchable-statepoints.ll │ │ │ │ ├── preprocess.ll │ │ │ │ ├── relocate-invoke-result.ll │ │ │ │ ├── relocation.ll │ │ │ │ ├── rematerialize-derived-pointers.ll │ │ │ │ ├── rewrite-invoke.ll │ │ │ │ ├── statepoint-attrs.ll │ │ │ │ ├── statepoint-calling-conventions.ll │ │ │ │ ├── statepoint-coreclr.ll │ │ │ │ ├── statepoint-format.ll │ │ │ │ ├── two-invokes-one-landingpad.ll │ │ │ │ └── vector-bitcast.ll │ │ │ ├── SCCP │ │ │ │ ├── 2002-05-02-MissSecondInst.ll │ │ │ │ ├── 2002-05-20-MissedIncomingValue.ll │ │ │ │ ├── 2002-05-21-InvalidSimplify.ll │ │ │ │ ├── 2002-08-30-GetElementPtrTest.ll │ │ │ │ ├── 2003-06-24-OverdefinedPHIValue.ll │ │ │ │ ├── 2003-08-26-InvokeHandling.ll │ │ │ │ ├── 2004-11-16-DeadInvoke.ll │ │ │ │ ├── 2004-12-10-UndefBranchBug.ll │ │ │ │ ├── 2006-10-23-IPSCCP-Crash.ll │ │ │ │ ├── 2006-12-04-PackedType.ll │ │ │ │ ├── 2006-12-19-UndefBug.ll │ │ │ │ ├── 2007-05-16-InvokeCrash.ll │ │ │ │ ├── 2008-01-27-UndefCorrelate.ll │ │ │ │ ├── 2008-04-22-multiple-ret-sccp.ll │ │ │ │ ├── 2008-05-23-UndefCallFold.ll │ │ │ │ ├── 2009-01-14-IPSCCP-Invoke.ll │ │ │ │ ├── 2009-05-27-VectorOperandZero.ll │ │ │ │ ├── apint-array.ll │ │ │ │ ├── apint-basictest.ll │ │ │ │ ├── apint-basictest2.ll │ │ │ │ ├── apint-basictest3.ll │ │ │ │ ├── apint-basictest4.ll │ │ │ │ ├── apint-bigarray.ll │ │ │ │ ├── apint-bigint.ll │ │ │ │ ├── apint-bigint2.ll │ │ │ │ ├── apint-ipsccp1.ll │ │ │ │ ├── apint-ipsccp2.ll │ │ │ │ ├── apint-ipsccp3.ll │ │ │ │ ├── apint-ipsccp4.ll │ │ │ │ ├── apint-load.ll │ │ │ │ ├── apint-phi.ll │ │ │ │ ├── apint-select.ll │ │ │ │ ├── atomic-load-store.ll │ │ │ │ ├── atomic.ll │ │ │ │ ├── bitcast.ll │ │ │ │ ├── calltest.ll │ │ │ │ ├── comdat-ipo.ll │ │ │ │ ├── constant-struct.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── definite-initializer.ll │ │ │ │ ├── dont-zap-return.ll │ │ │ │ ├── global-alias-constprop.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── ip-constant-ranges.ll │ │ │ │ ├── ipsccp-addr-taken.ll │ │ │ │ ├── ipsccp-basic.ll │ │ │ │ ├── loadtest.ll │ │ │ │ ├── logical-nuke.ll │ │ │ │ ├── overdefined-div.ll │ │ │ │ ├── pr27712.ll │ │ │ │ ├── pr35357.ll │ │ │ │ ├── retvalue-undef.ll │ │ │ │ ├── sccptest.ll │ │ │ │ ├── select.ll │ │ │ │ ├── switch-multiple-undef.ll │ │ │ │ ├── switch.ll │ │ │ │ ├── ub-shift.ll │ │ │ │ ├── undef-resolve.ll │ │ │ │ └── vector-bitcast.ll │ │ │ ├── SLPVectorizer │ │ │ │ ├── AArch64 │ │ │ │ │ ├── 64-bit-vector.ll │ │ │ │ │ ├── commute.ll │ │ │ │ │ ├── gather-reduce.ll │ │ │ │ │ ├── gather-root.ll │ │ │ │ │ ├── getelementptr.ll │ │ │ │ │ ├── horizontal.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── load-store-q.ll │ │ │ │ │ ├── minimum-sizes.ll │ │ │ │ │ ├── mismatched-intrinsics.ll │ │ │ │ │ ├── nontemporal.ll │ │ │ │ │ ├── remarks.ll │ │ │ │ │ └── sdiv-pow2.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── packed-math.ll │ │ │ │ ├── ARM │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── memory.ll │ │ │ │ │ └── sroa.ll │ │ │ │ ├── PowerPC │ │ │ │ │ ├── aggregate.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── pr27897.ll │ │ │ │ ├── SystemZ │ │ │ │ │ ├── SLP-cmp-cost-query.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── XCore │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── no-vector-registers.ll │ │ │ │ └── int_sideeffect.ll │ │ │ ├── SROA │ │ │ │ ├── address-spaces.ll │ │ │ │ ├── alignment.ll │ │ │ │ ├── alloca-address-space.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── big-endian.ll │ │ │ │ ├── dbg-addr-diamond.ll │ │ │ │ ├── dbg-single-piece.ll │ │ │ │ ├── dead-inst.ll │ │ │ │ ├── fca.ll │ │ │ │ ├── mem-par-metadata-sroa.ll │ │ │ │ ├── non-integral-pointers.ll │ │ │ │ ├── phi-and-select.ll │ │ │ │ ├── ppcf128-no-fold.ll │ │ │ │ ├── pr26972.ll │ │ │ │ ├── preserve-nonnull.ll │ │ │ │ ├── slice-order-independence.ll │ │ │ │ ├── slice-width.ll │ │ │ │ ├── vector-conversion.ll │ │ │ │ ├── vector-lifetime-intrinsic.ll │ │ │ │ ├── vector-promotion.ll │ │ │ │ └── vectors-of-pointers.ll │ │ │ ├── SafeStack │ │ │ │ ├── AArch64 │ │ │ │ │ ├── abi.ll │ │ │ │ │ ├── abi_ssp.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ └── ARM │ │ │ │ │ ├── abi.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── setjmp.ll │ │ │ ├── SampleProfile │ │ │ │ ├── Inputs │ │ │ │ │ ├── bad_discriminator_value.prof │ │ │ │ │ ├── bad_fn_header.prof │ │ │ │ │ ├── bad_line_values.prof │ │ │ │ │ ├── bad_mangle.prof │ │ │ │ │ ├── bad_sample_line.prof │ │ │ │ │ ├── bad_samples.prof │ │ │ │ │ ├── branch.prof │ │ │ │ │ ├── calls.prof │ │ │ │ │ ├── cov-zero-samples.prof │ │ │ │ │ ├── coverage-warning.prof │ │ │ │ │ ├── discriminator.prof │ │ │ │ │ ├── einline.prof │ │ │ │ │ ├── entry_counts.prof │ │ │ │ │ ├── fnptr.binprof │ │ │ │ │ ├── fnptr.prof │ │ │ │ │ ├── function_metadata.prof │ │ │ │ │ ├── gcc-simple.afdo │ │ │ │ │ ├── indirect-call.afdo │ │ │ │ │ ├── indirect-call.prof │ │ │ │ │ ├── inline-act.prof │ │ │ │ │ ├── inline-combine.prof │ │ │ │ │ ├── inline-coverage.prof │ │ │ │ │ ├── inline-hint.prof │ │ │ │ │ ├── inline.prof │ │ │ │ │ ├── nodebug.prof │ │ │ │ │ ├── nolocinfo.prof │ │ │ │ │ ├── offset.prof │ │ │ │ │ ├── propagate.prof │ │ │ │ │ ├── remarks.prof │ │ │ │ │ ├── summary.prof │ │ │ │ │ └── syntax.prof │ │ │ │ ├── branch.ll │ │ │ │ ├── calls.ll │ │ │ │ ├── cov-zero-samples.ll │ │ │ │ ├── coverage-warning.ll │ │ │ │ ├── discriminator.ll │ │ │ │ ├── early-inline.ll │ │ │ │ ├── entry_counts.ll │ │ │ │ ├── fnptr.ll │ │ │ │ ├── function_metadata.ll │ │ │ │ ├── gcc-simple.ll │ │ │ │ ├── indirect-call-gcc.ll │ │ │ │ ├── indirect-call.ll │ │ │ │ ├── inline-act.ll │ │ │ │ ├── inline-combine.ll │ │ │ │ ├── inline-coverage.ll │ │ │ │ ├── inline.ll │ │ │ │ ├── nodebug.ll │ │ │ │ ├── nolocinfo.ll │ │ │ │ ├── offset.ll │ │ │ │ ├── propagate.ll │ │ │ │ ├── remarks.ll │ │ │ │ ├── summary.ll │ │ │ │ └── syntax.ll │ │ │ ├── Scalarizer │ │ │ │ ├── basic.ll │ │ │ │ ├── cache-bug.ll │ │ │ │ ├── crash-bug.ll │ │ │ │ ├── dbginfo.ll │ │ │ │ ├── dbgloc-bug.ll │ │ │ │ ├── intrinsics.ll │ │ │ │ ├── store-bug.ll │ │ │ │ └── vector-gep.ll │ │ │ ├── SeparateConstOffsetFromGEP │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── split-gep-and-gvn-addrspace-addressing-modes.ll │ │ │ │ └── NVPTX │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── split-gep-and-gvn.ll │ │ │ │ │ └── split-gep.ll │ │ │ ├── SimpleLoopUnswitch │ │ │ │ ├── 2006-06-13-SingleEntryPHI.ll │ │ │ │ ├── 2006-06-27-DeadSwitchCase.ll │ │ │ │ ├── 2007-05-09-Unreachable.ll │ │ │ │ ├── 2007-05-09-tl.ll │ │ │ │ ├── 2007-07-12-ExitDomInfo.ll │ │ │ │ ├── 2007-07-13-DomInfo.ll │ │ │ │ ├── 2007-07-18-DomInfo.ll │ │ │ │ ├── 2007-08-01-Dom.ll │ │ │ │ ├── 2007-08-01-LCSSA.ll │ │ │ │ ├── 2007-10-04-DomFrontier.ll │ │ │ │ ├── 2008-06-02-DomInfo.ll │ │ │ │ ├── 2008-06-17-DomFrontier.ll │ │ │ │ ├── 2010-11-18-LCSSA.ll │ │ │ │ ├── 2011-06-02-CritSwitch.ll │ │ │ │ ├── 2011-09-26-EHCrash.ll │ │ │ │ ├── 2012-04-02-IndirectBr.ll │ │ │ │ ├── 2012-04-30-LoopUnswitch-LPad-Crash.ll │ │ │ │ ├── 2012-05-20-Phi.ll │ │ │ │ ├── 2015-09-18-Addrspace.ll │ │ │ │ ├── LIV-loop-condtion.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── cleanuppad.ll │ │ │ │ ├── copy-metadata.ll │ │ │ │ ├── crash.ll │ │ │ │ ├── exponential-behavior.ll │ │ │ │ ├── infinite-loop.ll │ │ │ │ ├── msan.ll │ │ │ │ ├── nontrivial-unswitch-cost.ll │ │ │ │ ├── nontrivial-unswitch.ll │ │ │ │ ├── preserve-analyses.ll │ │ │ │ └── trivial-unswitch.ll │ │ │ ├── SimplifyCFG │ │ │ │ ├── 2002-05-21-PHIElimination.ll │ │ │ │ ├── 2002-09-24-PHIAssertion.ll │ │ │ │ ├── 2003-03-07-DominateProblem.ll │ │ │ │ ├── 2003-08-05-InvokeCrash.ll │ │ │ │ ├── 2003-08-17-BranchFold.ll │ │ │ │ ├── 2003-08-17-BranchFoldOrdering.ll │ │ │ │ ├── 2003-08-17-FoldSwitch-dbg.ll │ │ │ │ ├── 2003-08-17-FoldSwitch.ll │ │ │ │ ├── 2004-12-10-SimplifyCFGCrash.ll │ │ │ │ ├── 2005-06-16-PHICrash.ll │ │ │ │ ├── 2005-08-01-PHIUpdateFail.ll │ │ │ │ ├── 2005-10-02-InvokeSimplify.ll │ │ │ │ ├── 2005-12-03-IncorrectPHIFold.ll │ │ │ │ ├── 2006-02-17-InfiniteUnroll.ll │ │ │ │ ├── 2006-06-12-InfLoop.ll │ │ │ │ ├── 2006-08-03-Crash.ll │ │ │ │ ├── 2006-10-19-UncondDiv.ll │ │ │ │ ├── 2006-12-08-Ptr-ICmp-Branch.ll │ │ │ │ ├── 2007-11-22-InvokeNoUnwind.ll │ │ │ │ ├── 2007-12-21-Crash.ll │ │ │ │ ├── 2008-01-02-hoist-fp-add.ll │ │ │ │ ├── 2008-05-16-PHIBlockMerge.ll │ │ │ │ ├── 2008-07-13-InfLoopMiscompile.ll │ │ │ │ ├── 2008-09-08-MultiplePred.ll │ │ │ │ ├── 2008-09-17-SpeculativeHoist.ll │ │ │ │ ├── 2008-10-03-SpeculativelyExecuteBeforePHI.ll │ │ │ │ ├── 2008-12-06-SingleEntryPhi.ll │ │ │ │ ├── 2008-12-16-DCECond.ll │ │ │ │ ├── 2009-01-18-PHIPropCrash.ll │ │ │ │ ├── 2009-05-12-externweak.ll │ │ │ │ ├── 2010-03-30-InvokeCrash.ll │ │ │ │ ├── 2011-03-08-UnreachableUse.ll │ │ │ │ ├── 2011-09-05-TrivialLPad.ll │ │ │ │ ├── AArch64 │ │ │ │ │ ├── cttz-ctlz.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── prefer-fma.ll │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── cttz-ctlz.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── ARM │ │ │ │ │ ├── cttz-ctlz.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── select-trunc-i64.ll │ │ │ │ │ ├── switch-to-lookup-table-constant-expr.ll │ │ │ │ │ └── switch-to-lookup-table.ll │ │ │ │ ├── BrUnwind.ll │ │ │ │ ├── ConditionalTrappingConstantExpr.ll │ │ │ │ ├── CoveredLookupTable.ll │ │ │ │ ├── DeadSetCC.ll │ │ │ │ ├── EmptyBlockMerge.ll │ │ │ │ ├── EqualPHIEdgeBlockMerge.ll │ │ │ │ ├── ForwardSwitchConditionToPHI.ll │ │ │ │ ├── Hexagon │ │ │ │ │ ├── disable-lookup-table.ll │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── switch-to-lookup-table.ll │ │ │ │ ├── HoistCode.ll │ │ │ │ ├── InfLoop.ll │ │ │ │ ├── MagicPointer.ll │ │ │ │ ├── Mips │ │ │ │ │ ├── cttz-ctlz.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── PHINode.ll │ │ │ │ ├── PR16069.ll │ │ │ │ ├── PR17073.ll │ │ │ │ ├── PR25267.ll │ │ │ │ ├── PR27615-simplify-cond-br.ll │ │ │ │ ├── PR29163.ll │ │ │ │ ├── PR30210.ll │ │ │ │ ├── PR9946.ll │ │ │ │ ├── PhiBlockMerge.ll │ │ │ │ ├── PhiBlockMerge2.ll │ │ │ │ ├── PhiEliminate.ll │ │ │ │ ├── PhiEliminate2.ll │ │ │ │ ├── PhiEliminate3.ll │ │ │ │ ├── PhiNoEliminate.ll │ │ │ │ ├── PowerPC │ │ │ │ │ ├── cttz-ctlz-spec.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── SPARC │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── switch_to_lookup_table.ll │ │ │ │ ├── SpeculativeExec.ll │ │ │ │ ├── UncondBranchToReturn.ll │ │ │ │ ├── UnreachableEliminate.ll │ │ │ │ ├── assume.ll │ │ │ │ ├── attr-convergent.ll │ │ │ │ ├── attr-noduplicate.ll │ │ │ │ ├── basictest.ll │ │ │ │ ├── branch-cond-merge.ll │ │ │ │ ├── branch-cond-prop.ll │ │ │ │ ├── branch-fold-dbg.ll │ │ │ │ ├── branch-fold-test.ll │ │ │ │ ├── branch-fold-threshold.ll │ │ │ │ ├── branch-fold.ll │ │ │ │ ├── branch-phi-thread.ll │ │ │ │ ├── bug-25299.ll │ │ │ │ ├── clamp.ll │ │ │ │ ├── combine-parallel-mem-md.ll │ │ │ │ ├── common-dest-folding.ll │ │ │ │ ├── critedge-assume.ll │ │ │ │ ├── dbginfo.ll │ │ │ │ ├── dce-cond-after-folding-terminator.ll │ │ │ │ ├── div-rem-pairs.ll │ │ │ │ ├── duplicate-landingpad.ll │ │ │ │ ├── duplicate-phis.ll │ │ │ │ ├── empty-catchpad.ll │ │ │ │ ├── empty-cleanuppad.ll │ │ │ │ ├── extract-cost.ll │ │ │ │ ├── gepcost.ll │ │ │ │ ├── guards.ll │ │ │ │ ├── hoist-common-code.ll │ │ │ │ ├── hoist-dbgvalue.ll │ │ │ │ ├── hoist-with-range.ll │ │ │ │ ├── implied-and-or.ll │ │ │ │ ├── implied-cond-matching-false-dest.ll │ │ │ │ ├── implied-cond-matching-imm.ll │ │ │ │ ├── implied-cond-matching.ll │ │ │ │ ├── implied-cond.ll │ │ │ │ ├── indirectbr.ll │ │ │ │ ├── inline-asm-sink.ll │ │ │ │ ├── invoke.ll │ │ │ │ ├── invoke_unwind.ll │ │ │ │ ├── iterative-simplify.ll │ │ │ │ ├── lifetime.ll │ │ │ │ ├── merge-cleanuppads.ll │ │ │ │ ├── merge-cond-stores-2.ll │ │ │ │ ├── merge-cond-stores.ll │ │ │ │ ├── multiple-phis.ll │ │ │ │ ├── no-md-sink.ll │ │ │ │ ├── no_speculative_loads_with_asan.ll │ │ │ │ ├── no_speculative_loads_with_tsan.ll │ │ │ │ ├── noreturn-call.ll │ │ │ │ ├── phi-undef-loadstore.ll │ │ │ │ ├── pr33605.ll │ │ │ │ ├── pr34131.ll │ │ │ │ ├── pr35774.ll │ │ │ │ ├── preserve-branchweights-partial.ll │ │ │ │ ├── preserve-branchweights-switch-create.ll │ │ │ │ ├── preserve-branchweights.ll │ │ │ │ ├── preserve-llvm-loop-metadata.ll │ │ │ │ ├── preserve-load-metadata-2.ll │ │ │ │ ├── preserve-load-metadata-3.ll │ │ │ │ ├── preserve-load-metadata.ll │ │ │ │ ├── preserve-make-implicit-on-switch-to-br.ll │ │ │ │ ├── preserve-store-alignment.ll │ │ │ │ ├── rangereduce.ll │ │ │ │ ├── remove-debug-2.ll │ │ │ │ ├── remove-debug.ll │ │ │ │ ├── return-merge.ll │ │ │ │ ├── seh-nounwind.ll │ │ │ │ ├── select-gep.ll │ │ │ │ ├── sink-common-code.ll │ │ │ │ ├── speculate-call.ll │ │ │ │ ├── speculate-dbgvalue.ll │ │ │ │ ├── speculate-math.ll │ │ │ │ ├── speculate-store.ll │ │ │ │ ├── speculate-vector-ops.ll │ │ │ │ ├── speculate-with-offset.ll │ │ │ │ ├── statepoint-invoke-unwind.ll │ │ │ │ ├── suppress-zero-branch-weights.ll │ │ │ │ ├── switch-dead-default.ll │ │ │ │ ├── switch-masked-bits.ll │ │ │ │ ├── switch-on-const-select.ll │ │ │ │ ├── switch-range-to-icmp.ll │ │ │ │ ├── switch-simplify-crash.ll │ │ │ │ ├── switch-to-br.ll │ │ │ │ ├── switch-to-icmp.ll │ │ │ │ ├── switch-to-select-multiple-edge-per-block-phi.ll │ │ │ │ ├── switch-to-select-two-case.ll │ │ │ │ ├── switch_create.ll │ │ │ │ ├── switch_switch_fold.ll │ │ │ │ ├── switch_thread.ll │ │ │ │ ├── switch_undef.ll │ │ │ │ ├── trap-debugloc.ll │ │ │ │ ├── trapping-load-unreachable.ll │ │ │ │ ├── two-entry-phi-return.ll │ │ │ │ ├── unreachable-blocks.ll │ │ │ │ ├── unreachable-cleanuppad.ll │ │ │ │ ├── volatile-phioper.ll │ │ │ │ └── wineh-unreachable.ll │ │ │ ├── Sink │ │ │ │ ├── badloadsink.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── call.ll │ │ │ │ ├── catchswitch.ll │ │ │ │ ├── convergent.ll │ │ │ │ ├── fence.ll │ │ │ │ └── landingpad.ll │ │ │ ├── SpeculateAroundPHIs │ │ │ │ └── basic-x86.ll │ │ │ ├── SpeculativeExecution │ │ │ │ ├── spec-calls.ll │ │ │ │ ├── spec-casts.ll │ │ │ │ ├── spec-compares.ll │ │ │ │ ├── spec-fp.ll │ │ │ │ └── spec.ll │ │ │ ├── StraightLineStrengthReduce │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── pr23975.ll │ │ │ │ │ └── reassociate-geps-and-slsr-addrspace.ll │ │ │ │ ├── NVPTX │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── reassociate-geps-and-slsr.ll │ │ │ │ │ └── speculative-slsr.ll │ │ │ │ ├── slsr-add.ll │ │ │ │ ├── slsr-gep.ll │ │ │ │ └── slsr-mul.ll │ │ │ ├── StripDeadPrototypes │ │ │ │ └── basic.ll │ │ │ ├── StripSymbols │ │ │ │ ├── 2007-01-15-llvm.used.ll │ │ │ │ ├── 2010-06-30-StripDebug.ll │ │ │ │ ├── 2010-08-25-crash.ll │ │ │ │ ├── block-address.ll │ │ │ │ ├── strip-cov.ll │ │ │ │ └── strip-dead-debug-info.ll │ │ │ ├── StructurizeCFG │ │ │ │ ├── AMDGPU │ │ │ │ │ ├── backedge-id-bug-xfail.ll │ │ │ │ │ ├── backedge-id-bug.ll │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── branch-on-argument.ll │ │ │ │ ├── bug36015.ll │ │ │ │ ├── invert-constantexpr.ll │ │ │ │ ├── loop-multiple-exits.ll │ │ │ │ ├── nested-loop-order.ll │ │ │ │ ├── no-branch-to-entry.ll │ │ │ │ ├── one-loop-multiple-backedges.ll │ │ │ │ ├── post-order-traversal-bug.ll │ │ │ │ ├── rebuild-ssa-infinite-loop.ll │ │ │ │ └── switch.ll │ │ │ ├── TailCallElim │ │ │ │ ├── 2010-06-26-MultipleReturnValues.ll │ │ │ │ ├── EraseBB.ll │ │ │ │ ├── accum_recursion.ll │ │ │ │ ├── ackermann.ll │ │ │ │ ├── basic.ll │ │ │ │ ├── deopt-bundle.ll │ │ │ │ ├── dont_reorder_load.ll │ │ │ │ ├── dup_tail.ll │ │ │ │ ├── inf-recursion.ll │ │ │ │ ├── notail.ll │ │ │ │ ├── opt-remarks-recursion.ll │ │ │ │ ├── reorder_load.ll │ │ │ │ └── setjmp.ll │ │ │ ├── ThinLTOBitcodeWriter │ │ │ │ ├── circular-reference.ll │ │ │ │ ├── comdat.ll │ │ │ │ ├── filter-alias.ll │ │ │ │ ├── new-pm.ll │ │ │ │ ├── no-type-md.ll │ │ │ │ ├── pr33536.ll │ │ │ │ ├── split-internal-typeid.ll │ │ │ │ ├── split-internal1.ll │ │ │ │ ├── split-internal2.ll │ │ │ │ ├── split-vfunc-internal.ll │ │ │ │ ├── split-vfunc.ll │ │ │ │ ├── split.ll │ │ │ │ └── unsplittable.ll │ │ │ ├── Util │ │ │ │ ├── PredicateInfo │ │ │ │ │ ├── condprop.ll │ │ │ │ │ ├── diamond.ll │ │ │ │ │ ├── edge.ll │ │ │ │ │ ├── pr33456.ll │ │ │ │ │ ├── pr33457.ll │ │ │ │ │ └── testandor.ll │ │ │ │ ├── clone-dicompileunit.ll │ │ │ │ ├── combine-alias-scope-metadata.ll │ │ │ │ ├── flattencfg.ll │ │ │ │ ├── libcalls-fast-math-inf-loop.ll │ │ │ │ ├── libcalls-opt-remarks.ll │ │ │ │ ├── libcalls-shrinkwrap-double.ll │ │ │ │ ├── libcalls-shrinkwrap-float.ll │ │ │ │ ├── libcalls-shrinkwrap-long-double.ll │ │ │ │ ├── lowerswitch.ll │ │ │ │ ├── simplify-dbg-declare-load.ll │ │ │ │ ├── split-bit-piece.ll │ │ │ │ ├── store-first-op.ll │ │ │ │ ├── strip-gc-relocates.ll │ │ │ │ ├── strip-nonlinetable-debuginfo-containingtypes.ll │ │ │ │ ├── strip-nonlinetable-debuginfo-cus.ll │ │ │ │ ├── strip-nonlinetable-debuginfo-localvars.ll │ │ │ │ ├── strip-nonlinetable-debuginfo-loops.ll │ │ │ │ └── strip-nonlinetable-debuginfo-subroutinetypes.ll │ │ │ └── WholeProgramDevirt │ │ │ │ ├── Inputs │ │ │ │ ├── export.yaml │ │ │ │ ├── import-indir.yaml │ │ │ │ ├── import-single-impl.yaml │ │ │ │ ├── import-uniform-ret-val.yaml │ │ │ │ ├── import-unique-ret-val0.yaml │ │ │ │ ├── import-unique-ret-val1.yaml │ │ │ │ └── import-vcp.yaml │ │ │ │ ├── bad-read-from-vtable.ll │ │ │ │ ├── constant-arg.ll │ │ │ │ ├── devirt-single-impl-check.ll │ │ │ │ ├── devirt-single-impl.ll │ │ │ │ ├── expand-check.ll │ │ │ │ ├── export-nothing.ll │ │ │ │ ├── export-single-impl.ll │ │ │ │ ├── export-uniform-ret-val.ll │ │ │ │ ├── export-unique-ret-val.ll │ │ │ │ ├── export-unsuccessful-checked.ll │ │ │ │ ├── export-vcp.ll │ │ │ │ ├── import-indir.ll │ │ │ │ ├── import-no-dominating-assume.ll │ │ │ │ ├── import.ll │ │ │ │ ├── non-constant-vtable.ll │ │ │ │ ├── pointer-vtable.ll │ │ │ │ ├── soa-vtable.ll │ │ │ │ ├── struct-vtable.ll │ │ │ │ ├── uniform-retval-invoke.ll │ │ │ │ ├── uniform-retval.ll │ │ │ │ ├── unique-retval.ll │ │ │ │ ├── vcp-accesses-memory.ll │ │ │ │ ├── vcp-decl.ll │ │ │ │ ├── vcp-no-this.ll │ │ │ │ ├── vcp-non-constant-arg.ll │ │ │ │ ├── vcp-too-wide-ints.ll │ │ │ │ ├── vcp-type-mismatch.ll │ │ │ │ ├── vcp-uses-this.ll │ │ │ │ ├── virtual-const-prop-begin.ll │ │ │ │ ├── virtual-const-prop-check.ll │ │ │ │ └── virtual-const-prop-end.ll │ │ ├── Unit │ │ │ ├── lit.cfg.py │ │ │ └── lit.site.cfg.py.in │ │ ├── Verifier │ │ │ ├── 2002-04-13-RetTypes.ll │ │ │ ├── 2002-11-05-GetelementptrPointers.ll │ │ │ ├── 2004-05-21-SwitchConstantMismatch.ll │ │ │ ├── 2006-07-11-StoreStruct.ll │ │ │ ├── 2006-10-15-AddrLabel.ll │ │ │ ├── 2006-12-12-IntrinsicDefine.ll │ │ │ ├── 2007-12-21-InvokeParamAttrs.ll │ │ │ ├── 2008-01-11-VarargAttrs.ll │ │ │ ├── 2008-03-01-AllocaSized.ll │ │ │ ├── 2008-08-22-MemCpyAlignment.ll │ │ │ ├── 2008-11-15-RetVoid.ll │ │ │ ├── 2009-05-29-InvokeResult1.ll │ │ │ ├── 2009-05-29-InvokeResult2.ll │ │ │ ├── 2009-05-29-InvokeResult3.ll │ │ │ ├── 2010-08-07-PointerIntrinsic.ll │ │ │ ├── AmbiguousPhi.ll │ │ │ ├── DILocation-parents.ll │ │ │ ├── DISubprogram.ll │ │ │ ├── PhiGrouping.ll │ │ │ ├── README.txt │ │ │ ├── SelfReferential.ll │ │ │ ├── alias.ll │ │ │ ├── align-md.ll │ │ │ ├── alloc-size-failedparse.ll │ │ │ ├── allocsize.ll │ │ │ ├── amdgpu-cc.ll │ │ │ ├── atomics.ll │ │ │ ├── bitcast-address-space-nested-global-cycle.ll │ │ │ ├── bitcast-address-space-nested-global.ll │ │ │ ├── bitcast-address-space-through-constant-inttoptr-inside-gep-instruction.ll │ │ │ ├── bitcast-address-space-through-constant-inttoptr.ll │ │ │ ├── bitcast-address-space-through-gep-2.ll │ │ │ ├── bitcast-address-space-through-gep.ll │ │ │ ├── bitcast-address-space-through-inttoptr.ll │ │ │ ├── bitcast-address-spaces.ll │ │ │ ├── bitcast-alias-address-space.ll │ │ │ ├── bitcast-vector-pointer-as.ll │ │ │ ├── byval-1.ll │ │ │ ├── byval-4.ll │ │ │ ├── callsite-dbgloc.ll │ │ │ ├── comdat-decl1.ll │ │ │ ├── comdat-decl2.ll │ │ │ ├── comdat.ll │ │ │ ├── comdat2.ll │ │ │ ├── comdat3.ll │ │ │ ├── cttz-undef-arg.ll │ │ │ ├── dbg-difile-crash.ll │ │ │ ├── dbg-invalid-compileunit.ll │ │ │ ├── dbg-invalid-named-metadata.ll │ │ │ ├── dbg-invalid-retaintypes.ll │ │ │ ├── dbg-line-without-file.ll │ │ │ ├── dbg-null-retained-type.ll │ │ │ ├── dbg-orphaned-compileunit.ll │ │ │ ├── dbg-typerefs.ll │ │ │ ├── dbg.ll │ │ │ ├── deoptimize-intrinsic.ll │ │ │ ├── dereferenceable-md.ll │ │ │ ├── diderivedtype-address-space-atomic-type.ll │ │ │ ├── diderivedtype-address-space-const-type.ll │ │ │ ├── diderivedtype-address-space-friend.ll │ │ │ ├── diderivedtype-address-space-inheritance.ll │ │ │ ├── diderivedtype-address-space-member.ll │ │ │ ├── diderivedtype-address-space-ptr-to-member-type.ll │ │ │ ├── diderivedtype-address-space-restrict-type.ll │ │ │ ├── diderivedtype-address-space-rvalue-reference-type.ll │ │ │ ├── diderivedtype-address-space-typedef.ll │ │ │ ├── diderivedtype-address-space-volatile-type.ll │ │ │ ├── diexpression-swap.ll │ │ │ ├── diglobalvariable.ll │ │ │ ├── dominates.ll │ │ │ ├── element-wise-atomic-memory-intrinsics.ll │ │ │ ├── fnarg-debuginfo.ll │ │ │ ├── fnarg-nodebug.ll │ │ │ ├── fp-intrinsics.ll │ │ │ ├── fpmath.ll │ │ │ ├── fragment.ll │ │ │ ├── frameescape.ll │ │ │ ├── func-dbg.ll │ │ │ ├── function-metadata-bad.ll │ │ │ ├── function-metadata-good.ll │ │ │ ├── gc_relocate_addrspace.ll │ │ │ ├── gc_relocate_operand.ll │ │ │ ├── gc_relocate_return.ll │ │ │ ├── gcread-ptrptr.ll │ │ │ ├── gcroot-alloca.ll │ │ │ ├── gcroot-meta.ll │ │ │ ├── gcroot-ptrptr.ll │ │ │ ├── gcwrite-ptrptr.ll │ │ │ ├── global-ctors.ll │ │ │ ├── guard-intrinsic.ll │ │ │ ├── ident-meta1.ll │ │ │ ├── ident-meta2.ll │ │ │ ├── ident-meta3.ll │ │ │ ├── ident-meta4.ll │ │ │ ├── inalloca-vararg.ll │ │ │ ├── inalloca1.ll │ │ │ ├── inalloca2.ll │ │ │ ├── inalloca3.ll │ │ │ ├── invalid-eh.ll │ │ │ ├── invalid-statepoint.ll │ │ │ ├── invalid-statepoint2.ll │ │ │ ├── invoke.ll │ │ │ ├── jumptable.ll │ │ │ ├── llvm.compiler_used-invalid-type.ll │ │ │ ├── llvm.dbg.declare-address.ll │ │ │ ├── llvm.dbg.declare-expression.ll │ │ │ ├── llvm.dbg.declare-variable.ll │ │ │ ├── llvm.dbg.intrinsic-dbg-attachment.ll │ │ │ ├── llvm.dbg.value-expression.ll │ │ │ ├── llvm.dbg.value-value.ll │ │ │ ├── llvm.dbg.value-variable.ll │ │ │ ├── llvm.used-invalid-init.ll │ │ │ ├── llvm.used-invalid-init2.ll │ │ │ ├── llvm.used-invalid-type.ll │ │ │ ├── llvm.used-invalid-type2.ll │ │ │ ├── llvm.used-ptr-type.ll │ │ │ ├── mdcompositetype-templateparams-tuple.ll │ │ │ ├── mdcompositetype-templateparams.ll │ │ │ ├── memcpy.ll │ │ │ ├── metadata-function-dbg.ll │ │ │ ├── metadata-function-prof.ll │ │ │ ├── module-flags-1.ll │ │ │ ├── module-flags-2.ll │ │ │ ├── module-flags-3.ll │ │ │ ├── musttail-invalid.ll │ │ │ ├── musttail-valid.ll │ │ │ ├── non-integer-gep-index.ll │ │ │ ├── non-integer-gep-index.ll.bc │ │ │ ├── non-integral-pointers.ll │ │ │ ├── operand-bundles.ll │ │ │ ├── pr34325.ll │ │ │ ├── range-1.ll │ │ │ ├── range-2.ll │ │ │ ├── recursive-struct-param.ll │ │ │ ├── recursive-type-1.ll │ │ │ ├── recursive-type-2.ll │ │ │ ├── recursive-type-3.ll │ │ │ ├── resume.ll │ │ │ ├── scatter_gather.ll │ │ │ ├── speculatable-callsite-invalid.ll │ │ │ ├── speculatable-callsite.ll │ │ │ ├── sret.ll │ │ │ ├── statepoint.ll │ │ │ ├── swifterror.ll │ │ │ ├── swifterror2.ll │ │ │ ├── swifterror3.ll │ │ │ ├── swiftself.ll │ │ │ ├── tbaa-allowed.ll │ │ │ ├── tbaa.ll │ │ │ ├── test_g_phi.mir │ │ │ ├── token1.ll │ │ │ ├── token2.ll │ │ │ ├── token3.ll │ │ │ ├── token4.ll │ │ │ ├── token5.ll │ │ │ ├── token6.ll │ │ │ ├── token7.ll │ │ │ ├── unsized-types.ll │ │ │ ├── varargs-intrinsic.ll │ │ │ └── writeonly.ll │ │ ├── YAMLParser │ │ │ ├── LICENSE.txt │ │ │ ├── bool.test │ │ │ ├── construct-bool.test │ │ │ ├── construct-custom.test │ │ │ ├── construct-float.test │ │ │ ├── construct-int.test │ │ │ ├── construct-map.test │ │ │ ├── construct-merge.test │ │ │ ├── construct-null.test │ │ │ ├── construct-omap.test │ │ │ ├── construct-pairs.test │ │ │ ├── construct-seq.test │ │ │ ├── construct-set.test │ │ │ ├── construct-str-ascii.test │ │ │ ├── construct-str.test │ │ │ ├── construct-timestamp.test │ │ │ ├── construct-value.test │ │ │ ├── duplicate-key.former-loader-error.test │ │ │ ├── duplicate-mapping-key.former-loader-error.test │ │ │ ├── duplicate-merge-key.former-loader-error.test │ │ │ ├── duplicate-value-key.former-loader-error.test │ │ │ ├── emit-block-scalar-in-simple-key-context-bug.test │ │ │ ├── empty-document-bug.test │ │ │ ├── float.test │ │ │ ├── int.test │ │ │ ├── invalid-single-quote-bug.test │ │ │ ├── merge.test │ │ │ ├── more-floats.test │ │ │ ├── negative-float-bug.test │ │ │ ├── null.test │ │ │ ├── resolver.test │ │ │ ├── run-parser-crash-bug.test │ │ │ ├── scan-document-end-bug.test │ │ │ ├── scan-line-break-bug.test │ │ │ ├── single-dot-is-not-float-bug.test │ │ │ ├── sloppy-indentation.test │ │ │ ├── spec-02-01.test │ │ │ ├── spec-02-02.test │ │ │ ├── spec-02-03.test │ │ │ ├── spec-02-04.test │ │ │ ├── spec-02-05.test │ │ │ ├── spec-02-06.test │ │ │ ├── spec-02-07.test │ │ │ ├── spec-02-08.test │ │ │ ├── spec-02-09.test │ │ │ ├── spec-02-10.test │ │ │ ├── spec-02-11.test │ │ │ ├── spec-02-12.test │ │ │ ├── spec-02-13.test │ │ │ ├── spec-02-14.test │ │ │ ├── spec-02-15.test │ │ │ ├── spec-02-16.test │ │ │ ├── spec-02-17.test │ │ │ ├── spec-02-18.test │ │ │ ├── spec-02-19.test │ │ │ ├── spec-02-20.test │ │ │ ├── spec-02-21.test │ │ │ ├── spec-02-22.test │ │ │ ├── spec-02-23.test │ │ │ ├── spec-02-24.test │ │ │ ├── spec-02-25.test │ │ │ ├── spec-02-26.test │ │ │ ├── spec-02-27.test │ │ │ ├── spec-02-28.test │ │ │ ├── spec-05-01-utf8.test │ │ │ ├── spec-05-02-utf8.test │ │ │ ├── spec-05-03.test │ │ │ ├── spec-05-04.test │ │ │ ├── spec-05-05.test │ │ │ ├── spec-05-06.test │ │ │ ├── spec-05-07.test │ │ │ ├── spec-05-08.test │ │ │ ├── spec-05-09.test │ │ │ ├── spec-05-10.test │ │ │ ├── spec-05-11.test │ │ │ ├── spec-05-12.test │ │ │ ├── spec-05-13.test │ │ │ ├── spec-05-14.test │ │ │ ├── spec-05-15.test │ │ │ ├── spec-06-01.test │ │ │ ├── spec-06-02.test │ │ │ ├── spec-06-03.test │ │ │ ├── spec-06-04.test │ │ │ ├── spec-06-05.test │ │ │ ├── spec-06-06.test │ │ │ ├── spec-06-07.test │ │ │ ├── spec-06-08.test │ │ │ ├── spec-07-01.test │ │ │ ├── spec-07-02.test │ │ │ ├── spec-07-03.test │ │ │ ├── spec-07-04.test │ │ │ ├── spec-07-05.test │ │ │ ├── spec-07-06.test │ │ │ ├── spec-07-07a.test │ │ │ ├── spec-07-07b.test │ │ │ ├── spec-07-08.test │ │ │ ├── spec-07-09.test │ │ │ ├── spec-07-10.test │ │ │ ├── spec-07-11.test │ │ │ ├── spec-07-12a.test │ │ │ ├── spec-07-12b.test │ │ │ ├── spec-07-13.test │ │ │ ├── spec-08-01.test │ │ │ ├── spec-08-02.test │ │ │ ├── spec-08-03.test │ │ │ ├── spec-08-04.test │ │ │ ├── spec-08-05.test │ │ │ ├── spec-08-06.test │ │ │ ├── spec-08-07.test │ │ │ ├── spec-08-08.test │ │ │ ├── spec-08-09.test │ │ │ ├── spec-08-10.test │ │ │ ├── spec-08-11.test │ │ │ ├── spec-08-12.test │ │ │ ├── spec-08-13.test │ │ │ ├── spec-08-14.test │ │ │ ├── spec-08-15.test │ │ │ ├── spec-09-01.test │ │ │ ├── spec-09-02.test │ │ │ ├── spec-09-03.test │ │ │ ├── spec-09-04.test │ │ │ ├── spec-09-05.test │ │ │ ├── spec-09-06.test │ │ │ ├── spec-09-07.test │ │ │ ├── spec-09-08.test │ │ │ ├── spec-09-09.test │ │ │ ├── spec-09-10.test │ │ │ ├── spec-09-11.test │ │ │ ├── spec-09-12.test │ │ │ ├── spec-09-13.test │ │ │ ├── spec-09-14.test │ │ │ ├── spec-09-15.test │ │ │ ├── spec-09-16.test │ │ │ ├── spec-09-17.test │ │ │ ├── spec-09-18.test │ │ │ ├── spec-09-19.test │ │ │ ├── spec-09-20.test │ │ │ ├── spec-09-21.test │ │ │ ├── spec-09-22.test │ │ │ ├── spec-09-23.test │ │ │ ├── spec-09-24.test │ │ │ ├── spec-09-25.test │ │ │ ├── spec-09-26.test │ │ │ ├── spec-09-29.test │ │ │ ├── spec-09-30.test │ │ │ ├── spec-09-31.test │ │ │ ├── spec-09-32.test │ │ │ ├── spec-09-33.test │ │ │ ├── spec-10-01.test │ │ │ ├── spec-10-02.test │ │ │ ├── spec-10-03.test │ │ │ ├── spec-10-04.test │ │ │ ├── spec-10-05.test │ │ │ ├── spec-10-06.test │ │ │ ├── spec-10-07.test │ │ │ ├── spec-10-08.test │ │ │ ├── spec-10-09.test │ │ │ ├── spec-10-10.test │ │ │ ├── spec-10-11.test │ │ │ ├── spec-10-12.test │ │ │ ├── spec-10-13.test │ │ │ ├── spec-10-14.test │ │ │ ├── spec-10-15.test │ │ │ ├── str.test │ │ │ ├── timestamp-bugs.test │ │ │ ├── timestamp.test │ │ │ ├── utf8-implicit.test │ │ │ ├── utf8.test │ │ │ ├── value.test │ │ │ └── yaml.test │ │ ├── lit.cfg.py │ │ ├── lit.site.cfg.py.in │ │ └── tools │ │ │ ├── dsymutil │ │ │ ├── ARM │ │ │ │ ├── dummy-debug-map-amr64.map │ │ │ │ ├── dummy-debug-map.map │ │ │ │ ├── empty-map.test │ │ │ │ ├── fat-arch-name.test │ │ │ │ ├── fat-arch-not-found.test │ │ │ │ ├── fat-threading.test │ │ │ │ ├── inlined-low_pc.c │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── scattered.c │ │ │ │ └── thumb.c │ │ │ ├── Inputs │ │ │ │ ├── Info.plist │ │ │ │ ├── absolute_sym.macho.i386 │ │ │ │ ├── absolute_sym.macho.i386.o │ │ │ │ ├── alias │ │ │ │ │ ├── bar.o │ │ │ │ │ ├── foo.o │ │ │ │ │ └── foobar │ │ │ │ ├── basic-archive.macho.x86_64 │ │ │ │ ├── basic-lto-dw4.macho.x86_64 │ │ │ │ ├── basic-lto-dw4.macho.x86_64.o │ │ │ │ ├── basic-lto.macho.x86_64 │ │ │ │ ├── basic-lto.macho.x86_64.o │ │ │ │ ├── basic-with-libfat-test.macho.x86_64 │ │ │ │ ├── basic.macho.i386 │ │ │ │ ├── basic.macho.x86_64 │ │ │ │ ├── basic1.c │ │ │ │ ├── basic1.macho.x86_64.o │ │ │ │ ├── basic2-custom-linetable.macho.x86_64.o │ │ │ │ ├── basic2.c │ │ │ │ ├── basic2.macho.x86_64.o │ │ │ │ ├── basic3.c │ │ │ │ ├── basic3.macho.x86_64.o │ │ │ │ ├── common.macho.x86_64 │ │ │ │ ├── common.macho.x86_64.o │ │ │ │ ├── dead-stripped │ │ │ │ │ └── 1.o │ │ │ │ ├── dwarf4.o │ │ │ │ ├── dwarf5.o │ │ │ │ ├── empty_range │ │ │ │ │ └── 1.o │ │ │ │ ├── fat-test.arm.dylib │ │ │ │ ├── fat-test.arm.o │ │ │ │ ├── fat-test.c │ │ │ │ ├── fat-test.dylib │ │ │ │ ├── fat-test.o │ │ │ │ ├── frame-dw2.ll │ │ │ │ ├── frame-dw4.ll │ │ │ │ ├── frame.c │ │ │ │ ├── inlined-low_pc │ │ │ │ │ └── 1.o │ │ │ │ ├── libbasic.a │ │ │ │ ├── libfat-test.a │ │ │ │ ├── mismatch │ │ │ │ │ ├── 1.o │ │ │ │ │ └── mismatch.pcm │ │ │ │ ├── module-warnings │ │ │ │ │ ├── 1.o │ │ │ │ │ ├── Bar.pcm │ │ │ │ │ ├── Foo.pcm │ │ │ │ │ └── libstatic.a │ │ │ │ ├── modules-dwarf-version │ │ │ │ │ └── 1.o │ │ │ │ ├── modules-empty │ │ │ │ │ ├── 1.o │ │ │ │ │ └── Empty.pcm │ │ │ │ ├── modules │ │ │ │ │ ├── 1.o │ │ │ │ │ ├── 2.o │ │ │ │ │ ├── Bar.pcm │ │ │ │ │ └── Foo.pcm │ │ │ │ ├── null_die.o │ │ │ │ ├── odr-anon-namespace │ │ │ │ │ ├── 1.o │ │ │ │ │ └── 2.o │ │ │ │ ├── odr-fwd-declaration │ │ │ │ │ ├── 1.o │ │ │ │ │ ├── 2.o │ │ │ │ │ └── 3.o │ │ │ │ ├── odr-fwd-declaration2 │ │ │ │ │ ├── 1.o │ │ │ │ │ ├── 2.o │ │ │ │ │ └── 3.o │ │ │ │ ├── odr-member-functions │ │ │ │ │ ├── 1.o │ │ │ │ │ ├── 2.o │ │ │ │ │ └── 3.o │ │ │ │ ├── odr-uniquing │ │ │ │ │ ├── 1.o │ │ │ │ │ └── 2.o │ │ │ │ ├── scattered-reloc │ │ │ │ │ ├── 1.o │ │ │ │ │ └── 1.s │ │ │ │ ├── submodules │ │ │ │ │ ├── 1.o │ │ │ │ │ └── Parent.pcm │ │ │ │ ├── swift-ast.macho.x86_64 │ │ │ │ ├── swift-ast.swiftmodule │ │ │ │ ├── swift-dwarf-loc.macho.x86_64 │ │ │ │ ├── swift-dwarf-loc.macho.x86_64.o │ │ │ │ ├── thumb.armv7m │ │ │ │ └── thumb.o │ │ │ ├── absolute_symbol.test │ │ │ ├── arch-option.test │ │ │ ├── archive-timestamp.test │ │ │ ├── basic-linking.test │ │ │ ├── cmdline.test │ │ │ ├── debug-map-parsing.test │ │ │ ├── dump-symtab.test │ │ │ ├── fat-binary-output.test │ │ │ ├── null-die.test │ │ │ └── yaml-object-address-rewrite.test │ │ │ ├── gold │ │ │ ├── PowerPC │ │ │ │ ├── lit.local.cfg │ │ │ │ └── mtriple.ll │ │ │ ├── invalid-dir.ll │ │ │ └── lit.local.cfg │ │ │ ├── llvm-ar │ │ │ ├── Inputs │ │ │ │ ├── coff.yaml │ │ │ │ ├── elf.yaml │ │ │ │ └── macho.yaml │ │ │ ├── absolute-paths.test │ │ │ ├── default-add.test │ │ │ ├── default-coff.test │ │ │ ├── default-elf.test │ │ │ ├── default-macho.test │ │ │ ├── empty-uid-gid.test │ │ │ ├── invalid-command-line.test │ │ │ └── override.test │ │ │ ├── llvm-config │ │ │ ├── booleans.test │ │ │ ├── cflags.test │ │ │ ├── ldflags.test │ │ │ ├── libs.test │ │ │ ├── paths.test │ │ │ ├── system-libs.test │ │ │ └── system-libs.windows.test │ │ │ ├── llvm-cov │ │ │ ├── Inputs │ │ │ │ ├── README │ │ │ │ ├── binary-formats.canonical.json │ │ │ │ ├── binary-formats.macho32b │ │ │ │ ├── binary-formats.macho32l │ │ │ │ ├── binary-formats.macho64l │ │ │ │ ├── binary-formats.proftext │ │ │ │ ├── binary-formats.v1.linux64l │ │ │ │ ├── binary-formats.v2.linux32l │ │ │ │ ├── binary-formats.v2.linux64l │ │ │ │ ├── combine_expansions.covmapping │ │ │ │ ├── combine_expansions.proftext │ │ │ │ ├── copy_block_helper.gcda │ │ │ │ ├── copy_block_helper.gcno │ │ │ │ ├── deferred-regions.covmapping │ │ │ │ ├── deferred-regions.profdata │ │ │ │ ├── dir-with-filtering.covmapping │ │ │ │ ├── dir-with-filtering.proftext │ │ │ │ ├── dir-with-filtering1.cpp │ │ │ │ ├── dir-with-filtering2.cpp │ │ │ │ ├── double_dots.covmapping │ │ │ │ ├── double_dots.proftext │ │ │ │ ├── elf_binary_comdat.profdata │ │ │ │ ├── gcov47_compatibility.gcda │ │ │ │ ├── gcov47_compatibility.gcno │ │ │ │ ├── hideUnexecutedSubviews.proftext │ │ │ │ ├── highlightedRanges.covmapping │ │ │ │ ├── highlightedRanges.json │ │ │ │ ├── highlightedRanges.profdata │ │ │ │ ├── ifdef.covmapping │ │ │ │ ├── ifdef.profdata │ │ │ │ ├── instrprof-comdat.h │ │ │ │ ├── lineExecutionCounts.covmapping │ │ │ │ ├── lineExecutionCounts.json │ │ │ │ ├── lineExecutionCounts.proftext │ │ │ │ ├── malformedRegions.covmapping │ │ │ │ ├── multiple-files.covmapping │ │ │ │ ├── multiple-files.proftext │ │ │ │ ├── multiple-files2.covmapping │ │ │ │ ├── multiple_objects │ │ │ │ │ ├── header.h │ │ │ │ │ ├── merged.profdata │ │ │ │ │ ├── use_1.cc │ │ │ │ │ ├── use_1.covmapping │ │ │ │ │ ├── use_2.cc │ │ │ │ │ └── use_2.covmapping │ │ │ │ ├── name_whitelist.covmapping │ │ │ │ ├── name_whitelist.cpp │ │ │ │ ├── name_whitelist.proftext │ │ │ │ ├── native_separators.covmapping │ │ │ │ ├── path_equivalence.covmapping │ │ │ │ ├── path_equivalence.proftext │ │ │ │ ├── prefer_used_to_unused.covmapping │ │ │ │ ├── prefer_used_to_unused.cpp │ │ │ │ ├── prefer_used_to_unused.proftext │ │ │ │ ├── prevent_false_instantiations.covmapping │ │ │ │ ├── prevent_false_instantiations.cpp │ │ │ │ ├── prevent_false_instantiations.proftext │ │ │ │ ├── range_based_for.gcda │ │ │ │ ├── range_based_for.gcno │ │ │ │ ├── regionMarkers.covmapping │ │ │ │ ├── regionMarkers.json │ │ │ │ ├── regionMarkers.proftext │ │ │ │ ├── report.covmapping │ │ │ │ ├── report.profdata │ │ │ │ ├── showExpansions.covmapping │ │ │ │ ├── showExpansions.json │ │ │ │ ├── showExpansions.profdata │ │ │ │ ├── showProjectSummary.covmapping │ │ │ │ ├── showProjectSummary.proftext │ │ │ │ ├── showProjectSummary.test │ │ │ │ ├── showTabsHTML.covmapping │ │ │ │ ├── showTabsHTML.proftext │ │ │ │ ├── sources_specified │ │ │ │ │ ├── abs.h │ │ │ │ │ ├── extra │ │ │ │ │ │ ├── dec.h │ │ │ │ │ │ └── inc.h │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── main.covmapping │ │ │ │ │ └── main.profdata │ │ │ │ ├── templateInstantiations.covmapping │ │ │ │ ├── templateInstantiations.profdata │ │ │ │ ├── test.cpp │ │ │ │ ├── test.gcda │ │ │ │ ├── test.gcno │ │ │ │ ├── test.h │ │ │ │ ├── test_-a.cpp.gcov │ │ │ │ ├── test_-a.h.gcov │ │ │ │ ├── test_-a_-b.cpp.gcov │ │ │ │ ├── test_-a_-b.h.gcov │ │ │ │ ├── test_-a_-b_-c_-u.cpp.gcov │ │ │ │ ├── test_-a_-b_-c_-u.h.gcov │ │ │ │ ├── test_-a_-b_-u.cpp.gcov │ │ │ │ ├── test_-a_-b_-u.h.gcov │ │ │ │ ├── test_-b.output │ │ │ │ ├── test_-b_-f.output │ │ │ │ ├── test_-f.output │ │ │ │ ├── test_exit_block_arcs.gcda │ │ │ │ ├── test_exit_block_arcs.gcno │ │ │ │ ├── test_file_checksum_fail.gcda │ │ │ │ ├── test_func_checksum_fail.gcda │ │ │ │ ├── test_long_file_names.output │ │ │ │ ├── test_long_paths.output │ │ │ │ ├── test_missing.cpp.gcov │ │ │ │ ├── test_missing.h.gcov │ │ │ │ ├── test_missing.output │ │ │ │ ├── test_no_gcda.cpp.gcov │ │ │ │ ├── test_no_gcda.h.gcov │ │ │ │ ├── test_no_gcda.output │ │ │ │ ├── test_no_options.cpp.gcov │ │ │ │ ├── test_no_options.h.gcov │ │ │ │ ├── test_no_options.output │ │ │ │ ├── test_no_output.output │ │ │ │ ├── test_no_preserve_paths.output │ │ │ │ ├── test_objdir.cpp.gcov │ │ │ │ ├── test_objdir.h.gcov │ │ │ │ ├── test_paths.cpp.gcov │ │ │ │ ├── test_paths.gcda │ │ │ │ ├── test_paths.gcno │ │ │ │ ├── test_paths.h.gcov │ │ │ │ ├── test_preserve_paths.output │ │ │ │ ├── test_read_fail.gcno │ │ │ │ ├── universal-binary │ │ │ │ ├── universal-binary.json │ │ │ │ ├── universal-binary.proftext │ │ │ │ ├── whitelist1.txt │ │ │ │ ├── whitelist2.txt │ │ │ │ ├── zeroFunctionFile.covmapping │ │ │ │ ├── zeroFunctionFile.h │ │ │ │ └── zeroFunctionFile.proftext │ │ │ ├── binary-formats.c │ │ │ ├── combine_expansions.cpp │ │ │ ├── copy_block_helper.m │ │ │ ├── cov-comdat.test │ │ │ ├── deferred-region.cpp │ │ │ ├── demangle.test │ │ │ ├── dir-with-filtering.test │ │ │ ├── double_dots.c │ │ │ ├── gcov47_compatibility.cpp │ │ │ ├── hideUnexecutedSubviews.test │ │ │ ├── ifdef.c │ │ │ ├── lit.local.cfg │ │ │ ├── llvm-cov.test │ │ │ ├── load-multiple-objects.test │ │ │ ├── multiple-files.test │ │ │ ├── multiple-objects.test │ │ │ ├── name_whitelist.test │ │ │ ├── native_separators.c │ │ │ ├── path_equivalence.c │ │ │ ├── prefer_used_to_unused.h │ │ │ ├── prevent_false_instantiations.h │ │ │ ├── range_based_for.cpp │ │ │ ├── report.cpp │ │ │ ├── scan-directory.test │ │ │ ├── showExpansions.cpp │ │ │ ├── showHighlightedRanges.cpp │ │ │ ├── showLineExecutionCounts.cpp │ │ │ ├── showProjectSummary.cpp │ │ │ ├── showRegionMarkers.cpp │ │ │ ├── showTabsHTML.cpp │ │ │ ├── showTemplateInstantiations.cpp │ │ │ ├── sources-specified.test │ │ │ ├── style.test │ │ │ ├── threads.c │ │ │ ├── universal-binary.c │ │ │ ├── warnings.h │ │ │ └── zeroFunctionFile.c │ │ │ ├── llvm-cvtres │ │ │ ├── Inputs │ │ │ │ ├── combined.obj.coff │ │ │ │ ├── cursor_small.bmp │ │ │ │ ├── languages.rc │ │ │ │ ├── languages.res │ │ │ │ ├── okay_small.bmp │ │ │ │ ├── test_resource.obj.coff │ │ │ │ ├── test_resource.obj.coff.arm │ │ │ │ ├── test_resource.obj.coff.x64 │ │ │ │ ├── test_resource.rc │ │ │ │ └── test_resource.res │ │ │ ├── combined.test │ │ │ ├── help.test │ │ │ ├── machine.test │ │ │ ├── object.test │ │ │ ├── parse.test │ │ │ └── symbols.test │ │ │ ├── llvm-cxxdump │ │ │ ├── Inputs │ │ │ │ ├── eh.obj.coff-i386 │ │ │ │ ├── mixed-archive.coff-i386 │ │ │ │ ├── trivial.obj.coff-i386 │ │ │ │ └── trivial.obj.elf-i386 │ │ │ ├── eh.test │ │ │ └── trivial.test │ │ │ ├── llvm-cxxfilt │ │ │ ├── coff-import.test │ │ │ ├── invalid.test │ │ │ ├── noargs.test │ │ │ ├── simple.test │ │ │ ├── types.test │ │ │ └── underscore.test │ │ │ ├── llvm-dlltool │ │ │ ├── coff-decorated.def │ │ │ ├── coff-exports.def │ │ │ ├── coff-weak-exports.def │ │ │ └── lit.local.cfg │ │ │ ├── llvm-dwarfdump │ │ │ ├── cmdline.test │ │ │ ├── lit.local.cfg │ │ │ ├── uuid.yaml │ │ │ └── uuid32.yaml │ │ │ ├── llvm-dwp │ │ │ └── Inputs │ │ │ │ ├── compress │ │ │ │ └── a.dwo │ │ │ │ ├── compressfail │ │ │ │ ├── a.dwo │ │ │ │ ├── compress.dwo │ │ │ │ └── compress.o │ │ │ │ ├── duplicate │ │ │ │ ├── ac.dwp │ │ │ │ ├── bc.dwp │ │ │ │ └── c.dwo │ │ │ │ ├── duplicate_dwo_name │ │ │ │ ├── ac.dwp │ │ │ │ ├── bc.dwp │ │ │ │ └── c.dwo │ │ │ │ ├── dwos_list_from_exec │ │ │ │ ├── a.dwo │ │ │ │ ├── b.dwo │ │ │ │ ├── c.dwo │ │ │ │ ├── d.dwo │ │ │ │ ├── e.dwo │ │ │ │ ├── libd.so │ │ │ │ └── main │ │ │ │ ├── empty.dwo │ │ │ │ ├── empty_compressed_section.dwo │ │ │ │ ├── gcc_type │ │ │ │ └── a.dwo │ │ │ │ ├── invalid_compressed.dwo │ │ │ │ ├── invalid_cu_index │ │ │ │ └── x.dwp │ │ │ │ ├── invalid_string_form.dwo │ │ │ │ ├── merge │ │ │ │ └── notypes │ │ │ │ │ ├── ab.dwp │ │ │ │ │ └── c.dwo │ │ │ │ ├── missing_tu_index │ │ │ │ └── x.dwp │ │ │ │ ├── multiple_type_sections.dwp │ │ │ │ ├── non_cu_top_level.dwo │ │ │ │ ├── simple │ │ │ │ ├── notypes │ │ │ │ │ ├── a.dwo │ │ │ │ │ └── b.dwo │ │ │ │ └── types │ │ │ │ │ ├── a.dwo │ │ │ │ │ └── b.dwo │ │ │ │ └── type_dedup │ │ │ │ ├── a.dwo │ │ │ │ └── b.dwo │ │ │ ├── llvm-extract │ │ │ └── recursive.ll │ │ │ ├── llvm-isel-fuzzer │ │ │ ├── aarch64-empty-bc.ll │ │ │ ├── aarch64-empty.ll │ │ │ ├── aarch64-execname-options.ll │ │ │ ├── execname-options.ll │ │ │ ├── missing-triple.ll │ │ │ ├── x86-empty-bc.ll │ │ │ └── x86-empty.ll │ │ │ ├── llvm-lib │ │ │ ├── Inputs │ │ │ │ ├── a.s │ │ │ │ ├── b.s │ │ │ │ └── resource.res │ │ │ ├── infer-output-path.test │ │ │ ├── invalid.test │ │ │ ├── libpath.test │ │ │ ├── lit.local.cfg │ │ │ ├── no-inputs.test │ │ │ ├── resource.test │ │ │ ├── thin.test │ │ │ └── use-paths.test │ │ │ ├── llvm-lit │ │ │ └── chain.c │ │ │ ├── llvm-lto │ │ │ ├── Inputs │ │ │ │ ├── empty.bc │ │ │ │ └── thinlto.ll │ │ │ ├── error.ll │ │ │ └── thinlto.ll │ │ │ ├── llvm-lto2 │ │ │ └── errors.ll │ │ │ ├── llvm-mc │ │ │ ├── basic.test │ │ │ ├── fatal_warnings.test │ │ │ ├── line_end_with_space.test │ │ │ ├── lit.local.cfg │ │ │ └── no_warnings.test │ │ │ ├── llvm-modextract │ │ │ └── single.ll │ │ │ ├── llvm-mt │ │ │ ├── Inputs │ │ │ │ ├── additional.manifest │ │ │ │ ├── assembly_identity.manifest │ │ │ │ ├── bad.manifest │ │ │ │ ├── compatibility.manifest │ │ │ │ ├── conflicting.manifest │ │ │ │ ├── empty.manifest │ │ │ │ ├── expected_big.manifest │ │ │ │ ├── test_manifest.manifest │ │ │ │ ├── trust_and_identity.manifest │ │ │ │ ├── trust_info.manifest │ │ │ │ └── windows_settings.manifest │ │ │ ├── big_merge.test │ │ │ ├── conflicting.test │ │ │ ├── help.test │ │ │ ├── simple_merge.test │ │ │ ├── single_file.test │ │ │ └── xml_error.test │ │ │ ├── llvm-nm │ │ │ ├── ARM │ │ │ │ ├── Inputs │ │ │ │ │ └── print-size.macho-armv7m │ │ │ │ ├── lit.local.cfg │ │ │ │ └── macho-print-size.test │ │ │ ├── invalid-input.test │ │ │ ├── lit.local.cfg │ │ │ └── wasm │ │ │ │ ├── exports.yaml │ │ │ │ ├── imports.yaml │ │ │ │ ├── local-symbols.ll │ │ │ │ └── weak-symbols.yaml │ │ │ ├── llvm-objcopy │ │ │ ├── Inputs │ │ │ │ ├── dwarf.dwo │ │ │ │ ├── dynamic.so │ │ │ │ ├── dynrel.elf │ │ │ │ ├── dynsym.so │ │ │ │ └── pt-phdr.elf │ │ │ ├── abs-symbol.test │ │ │ ├── add-section-remove.test │ │ │ ├── add-section.test │ │ │ ├── adjacent-segments.test │ │ │ ├── basic-align-copy.test │ │ │ ├── basic-binary-copy.test │ │ │ ├── basic-copy.test │ │ │ ├── basic-keep.test │ │ │ ├── basic-only-keep.test │ │ │ ├── basic-relocations.test │ │ │ ├── binary-first-seg-offset-zero.test │ │ │ ├── binary-remove-all-but-one.test │ │ │ ├── binary-remove-end.test │ │ │ ├── binary-remove-middle.test │ │ │ ├── cannot-delete-dest.test │ │ │ ├── check-addr-offset-align-binary.test │ │ │ ├── check-addr-offset-align.test │ │ │ ├── common-symbol.test │ │ │ ├── drawf-fission.test │ │ │ ├── dump-section.test │ │ │ ├── dynamic-relocations.test │ │ │ ├── dynamic.test │ │ │ ├── dynstr.test │ │ │ ├── dynsym-error-remove-strtab.test │ │ │ ├── dynsym.test │ │ │ ├── elf32be.test │ │ │ ├── elf32le.test │ │ │ ├── elf64be.test │ │ │ ├── empty-section.test │ │ │ ├── explicit-keep-remove.test │ │ │ ├── explicit-only-keep-remove.test │ │ │ ├── fail-no-output-directory.test │ │ │ ├── hexagon-unsupported-on-x86.test │ │ │ ├── identical-segments.test │ │ │ ├── keep-many.test │ │ │ ├── keep-only-keep.test │ │ │ ├── no-symbol-relocation.test │ │ │ ├── only-keep-many.test │ │ │ ├── only-keep-remove-strtab.test │ │ │ ├── only-keep-strip-non-alloc.test │ │ │ ├── overlap-chain.test │ │ │ ├── parent-loop-check.test │ │ │ ├── program-headers.test │ │ │ ├── pt-phdr.test │ │ │ ├── reloc-error-remove-symtab.test │ │ │ ├── remove-multiple-sections.test │ │ │ ├── remove-section-with-symbol.test │ │ │ ├── remove-section.test │ │ │ ├── remove-shstrtab-error.test │ │ │ ├── remove-symtab.test │ │ │ ├── section-index-unsupported.test │ │ │ ├── sectionless-segment.test │ │ │ ├── segment-shift-section-remove.test │ │ │ ├── segment-shift.test │ │ │ ├── segment-test-remove-section.test │ │ │ ├── strip-all-gnu.test │ │ │ ├── strip-all.test │ │ │ ├── strip-debug.test │ │ │ ├── strip-non-alloc.test │ │ │ ├── strip-sections-keep.test │ │ │ ├── strip-sections-only-keep.test │ │ │ ├── strip-sections.test │ │ │ ├── symbol-copy.test │ │ │ ├── symtab-error-on-remove-strtab.test │ │ │ ├── triple-overlap.test │ │ │ ├── two-seg-remove-end.test │ │ │ ├── two-seg-remove-first.test │ │ │ └── two-seg-remove-third-sec.test │ │ │ ├── llvm-objdump │ │ │ ├── AArch64 │ │ │ │ ├── Inputs │ │ │ │ │ ├── ObjC.exe.macho-aarch64 │ │ │ │ │ ├── ObjC.obj.macho-aarch64 │ │ │ │ │ ├── fat.macho-armv7s-arm64 │ │ │ │ │ ├── hello.exe.macho-aarch64 │ │ │ │ │ ├── hello.obj.macho-aarch64 │ │ │ │ │ ├── kextbundle.macho-aarch64 │ │ │ │ │ ├── link-opt-hints.macho-aarch64 │ │ │ │ │ ├── print-armv8crypto.obj.macho-aarch64 │ │ │ │ │ ├── print-mrs.obj.macho-aarch64 │ │ │ │ │ ├── reloc-addend.obj.macho-aarch64 │ │ │ │ │ └── thread.macho-aarch64 │ │ │ │ ├── elf-aarch64-mapping-symbols.test │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── mach-print-armv8crypto.test │ │ │ │ ├── macho-fat-arm-disasm.test │ │ │ │ ├── macho-kextbundle.test │ │ │ │ ├── macho-link-opt-hints.test │ │ │ │ ├── macho-print-mrs.test │ │ │ │ ├── macho-print-thread.test │ │ │ │ ├── macho-private-headers.test │ │ │ │ ├── macho-reloc-addend.test │ │ │ │ └── macho-symbolized-disassembly.test │ │ │ ├── AMDGPU │ │ │ │ ├── Inputs │ │ │ │ │ └── source-lines.cl │ │ │ │ ├── lit.local.cfg │ │ │ │ └── source-lines.ll │ │ │ ├── ARM │ │ │ │ ├── Inputs │ │ │ │ │ ├── data-in-code.macho-arm │ │ │ │ │ ├── divs.macho-armv7s │ │ │ │ │ ├── fat-armv7m.o │ │ │ │ │ ├── hello.exe.macho-arm │ │ │ │ │ ├── hello.obj.macho-arm │ │ │ │ │ ├── mh_dylib_header.macho-arm │ │ │ │ │ ├── reloc-half.obj.macho-arm │ │ │ │ │ └── thumb.armv7m │ │ │ │ ├── disassemble-code-data-mix.s │ │ │ │ ├── invalid-instruction.s │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── macho-arch-armv7m-flag.test │ │ │ │ ├── macho-arm-and-thumb.test │ │ │ │ ├── macho-data-in-code.test │ │ │ │ ├── macho-mattr-arm.test │ │ │ │ ├── macho-mcpu-arm.test │ │ │ │ ├── macho-nomcpu-armv7s.test │ │ │ │ ├── macho-private-headers.test │ │ │ │ ├── macho-reloc-half.test │ │ │ │ ├── macho-symbolized-disassembly.test │ │ │ │ ├── macho-symbolized-subtractor.test │ │ │ │ ├── macho-v7m.test │ │ │ │ ├── mh_dylib_header.test │ │ │ │ ├── v5t-subarch.s │ │ │ │ ├── v5te-subarch.s │ │ │ │ ├── v5tej-subarch.s │ │ │ │ ├── v6-neg-subfeatures.s │ │ │ │ ├── v6-subarch.s │ │ │ │ ├── v6-subfeatures.s │ │ │ │ ├── v6k-subarch.s │ │ │ │ ├── v6m-subarch.s │ │ │ │ ├── v6t2-subarch.s │ │ │ │ ├── v7a-neg-subfeature.s │ │ │ │ ├── v7a-subfeature.s │ │ │ │ ├── v7m-neg-subfeatures.s │ │ │ │ ├── v7m-subarch.s │ │ │ │ ├── v7m-subfeatures.s │ │ │ │ └── v7r-subfeatures.s │ │ │ ├── Hexagon │ │ │ │ ├── Inputs │ │ │ │ │ └── source-interleave-hexagon.c │ │ │ │ ├── lit.local.cfg │ │ │ │ └── source-interleave-hexagon.ll │ │ │ ├── Inputs │ │ │ │ ├── LLVM-bundle.macho-x86_64 │ │ │ │ ├── bad-ordinal.macho-x86_64 │ │ │ │ ├── bind.macho-x86_64 │ │ │ │ ├── bind2.macho-x86_64 │ │ │ │ ├── common-symbol-elf │ │ │ │ ├── compact-unwind.macho-i386 │ │ │ │ ├── compact-unwind.macho-x86_64 │ │ │ │ ├── corrupt-section.wasm │ │ │ │ ├── eh_frame.elf-mipsel │ │ │ │ ├── eh_frame.macho-arm64 │ │ │ │ ├── eh_frame_zero_cie.o │ │ │ │ ├── empty.macho-armv7 │ │ │ │ ├── export.dll.coff-i386 │ │ │ │ ├── exports-trie.macho-x86_64 │ │ │ │ ├── file-aux-record.yaml │ │ │ │ ├── file.obj.coff-arm │ │ │ │ ├── large-bss.obj.coff-i386 │ │ │ │ ├── lazy-bind.macho-x86_64 │ │ │ │ ├── libbogus1.a │ │ │ │ ├── libbogus10.a │ │ │ │ ├── libbogus11.a │ │ │ │ ├── libbogus12.a │ │ │ │ ├── libbogus13.a │ │ │ │ ├── libbogus14.a │ │ │ │ ├── libbogus2.a │ │ │ │ ├── libbogus3.a │ │ │ │ ├── libbogus4.a │ │ │ │ ├── libbogus5.a │ │ │ │ ├── libbogus6.a │ │ │ │ ├── libbogus7.a │ │ │ │ ├── libbogus8.a │ │ │ │ ├── libbogus9.a │ │ │ │ ├── macho-bind-add-addr-imm-scaled │ │ │ │ ├── macho-bind-add_addr_uleb │ │ │ │ ├── macho-bind-bad-opcode-value │ │ │ │ ├── macho-bind-bind-add-addr-uleb │ │ │ │ ├── macho-bind-do-bind-no-segIndex │ │ │ │ ├── macho-bind-dylib-ordinal-uleb │ │ │ │ ├── macho-bind-dylib-ordinal-uleb-malformed-uleb128 │ │ │ │ ├── macho-bind-dylib-ordinal-uleb-too-big │ │ │ │ ├── macho-bind-dylib-special-imm │ │ │ │ ├── macho-bind-seg-too-big │ │ │ │ ├── macho-bind-segoff-too-big │ │ │ │ ├── macho-bind-set-addend-sleb │ │ │ │ ├── macho-bind-set-symbol │ │ │ │ ├── macho-bind-set-type-imm │ │ │ │ ├── macho-bind-uleb-times-skipping-uleb │ │ │ │ ├── macho-do-bind-no-dylib-ordinal │ │ │ │ ├── macho-do-bind-no-symbol │ │ │ │ ├── macho-inconsistant-export │ │ │ │ ├── macho-lazy-do-bind-add-addr-imm-scaled │ │ │ │ ├── macho-lazy-do-bind-uleb-times-skipping-uleb │ │ │ │ ├── macho-lazy-do_bind_add_addr_uleb │ │ │ │ ├── macho-rebase-add-addr-imm-scaled │ │ │ │ ├── macho-rebase-add-addr-uleb │ │ │ │ ├── macho-rebase-add-addr-uleb-too-big │ │ │ │ ├── macho-rebase-bad-opcode-value │ │ │ │ ├── macho-rebase-imm-times │ │ │ │ ├── macho-rebase-seg-too-big │ │ │ │ ├── macho-rebase-segoff-too-big │ │ │ │ ├── macho-rebase-set-type-imm │ │ │ │ ├── macho-rebase-uleb-malformed-uleb128 │ │ │ │ ├── macho-rebase-uleb-times │ │ │ │ ├── macho-rebase-uleb-times-skipping-uleb │ │ │ │ ├── macho-trie-bad-export-info-malformed-uleb128 │ │ │ │ ├── macho-trie-bad-export-info-malformed-uleb128_too_big │ │ │ │ ├── macho-trie-bad-kind │ │ │ │ ├── macho-trie-bad-library-ordinal │ │ │ │ ├── macho-trie-children-count-byte │ │ │ │ ├── macho-trie-edge-string-end │ │ │ │ ├── macho-trie-export-info-size-too-big │ │ │ │ ├── macho-trie-import-name-end │ │ │ │ ├── macho-trie-import-name-start │ │ │ │ ├── macho-trie-node-loop │ │ │ │ ├── macho-trie-not-export-node │ │ │ │ ├── macho-weak-bind-set-dylib-ordinal-imm │ │ │ │ ├── macho-weak-bind-set-dylib-ordinal-uleb │ │ │ │ ├── macho-weak-bind-set-dylib-special-imm │ │ │ │ ├── malformed-macho.bin │ │ │ │ ├── malformed-unwind.macho-x86_64 │ │ │ │ ├── many-relocs.obj-i386 │ │ │ │ ├── nop.exe.coff-i386 │ │ │ │ ├── out-of-section-sym.s │ │ │ │ ├── proc-specific-section-elf │ │ │ │ ├── rebase.macho-x86_64 │ │ │ │ ├── section.macho-armv7 │ │ │ │ ├── tls.exe.coff-x86_64 │ │ │ │ ├── trivial.ll │ │ │ │ ├── trivial.obj.wasm │ │ │ │ ├── unwind-info-no-relocs.macho-x86_64 │ │ │ │ ├── unwind-info.macho-arm64 │ │ │ │ ├── unwind-info.macho-x86_64 │ │ │ │ ├── weak-bind.macho-x86_64 │ │ │ │ └── win64-unwind.exe.coff-x86_64.asm │ │ │ ├── Mips │ │ │ │ ├── disassemble-all.test │ │ │ │ └── lit.local.cfg │ │ │ ├── WebAssembly │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── relocations.test │ │ │ │ └── symbol-table.test │ │ │ ├── coff-file.test │ │ │ ├── coff-import-library.test │ │ │ ├── coff-large-bss.test │ │ │ ├── coff-many-relocs.test │ │ │ ├── coff-non-null-terminated-file.test │ │ │ ├── coff-private-headers.test │ │ │ ├── common-symbol-elf.test │ │ │ ├── eh_frame-arm64.test │ │ │ ├── eh_frame-mipsel.test │ │ │ ├── eh_frame_zero_cie.test │ │ │ ├── hex-relocation-addr.test │ │ │ ├── invalid-input.test │ │ │ ├── macho-LLVM-bundle.test │ │ │ ├── macho-bad-bind.test │ │ │ ├── macho-bad-ordinal.test │ │ │ ├── macho-bad-trie.test │ │ │ ├── macho-bind.test │ │ │ ├── macho-bind2.test │ │ │ ├── macho-compact-unwind-i386.test │ │ │ ├── macho-compact-unwind-x86_64.test │ │ │ ├── macho-exports-trie.test │ │ │ ├── macho-lazy-bind.test │ │ │ ├── macho-objc-meta-data.test │ │ │ ├── macho-rebase.test │ │ │ ├── macho-sections.test │ │ │ ├── macho-unwind-info-arm64.test │ │ │ ├── macho-unwind-info-no-relocs.test │ │ │ ├── macho-unwind-info-x86_64.test │ │ │ ├── macho-weak-bind.test │ │ │ ├── malformed-archives.test │ │ │ ├── malformed-macho.test │ │ │ ├── malformed-unwind-x86_64.test │ │ │ ├── proc-specific-section-elf.test │ │ │ ├── section-filter.test │ │ │ ├── wasm-corrupt-section.test │ │ │ ├── wasm.txt │ │ │ └── win64-unwind-data.test │ │ │ ├── llvm-opt-fuzzer │ │ │ ├── command-line.ll │ │ │ ├── exec-options.ll │ │ │ ├── simple-fail.ll │ │ │ └── simple-run.ll │ │ │ ├── llvm-opt-report │ │ │ ├── Inputs │ │ │ │ ├── dm.c │ │ │ │ ├── dm.yaml │ │ │ │ ├── or.c │ │ │ │ ├── or.h │ │ │ │ ├── or.yaml │ │ │ │ ├── q.c │ │ │ │ ├── q.cpp │ │ │ │ ├── q.yaml │ │ │ │ ├── q2.c │ │ │ │ ├── q2.yaml │ │ │ │ ├── q3.c │ │ │ │ ├── q3.yaml │ │ │ │ ├── qx.yaml │ │ │ │ ├── sr2.c │ │ │ │ ├── sr2.yaml │ │ │ │ ├── unrl.c │ │ │ │ └── unrl.yaml │ │ │ ├── basic.test │ │ │ ├── func-2.test │ │ │ ├── func-3.test │ │ │ ├── func-dm.test │ │ │ ├── func-x.test │ │ │ ├── func.test │ │ │ ├── mlineopt.test │ │ │ └── unrl.test │ │ │ ├── llvm-pdbdump │ │ │ ├── Inputs │ │ │ │ ├── ClassLayoutTest.cpp │ │ │ │ ├── ComplexPaddingTest.cpp │ │ │ │ ├── FilterTest.cpp │ │ │ │ ├── LoadAddressTest.cpp │ │ │ │ └── SimplePaddingTest.cpp │ │ │ ├── class-layout.test │ │ │ ├── complex-padding-graphical.test │ │ │ ├── enum-layout.test │ │ │ ├── lit.local.cfg │ │ │ ├── load-address.test │ │ │ ├── partial-type-stream.test │ │ │ ├── regex-filter.test │ │ │ ├── simple-padding-graphical.test │ │ │ └── symbol-filters.test │ │ │ ├── llvm-profdata │ │ │ ├── Inputs │ │ │ │ ├── IR_profile.proftext │ │ │ │ ├── bad-hash.proftext │ │ │ │ ├── bar3-1.proftext │ │ │ │ ├── basic.proftext │ │ │ │ ├── c-general.profraw │ │ │ │ ├── clang_profile.proftext │ │ │ │ ├── compat.profdata.v1 │ │ │ │ ├── compat.profdata.v2 │ │ │ │ ├── compat.profdata.v4 │ │ │ │ ├── compressed.profraw │ │ │ │ ├── counter-mismatch-1.proftext │ │ │ │ ├── counter-mismatch-2.proftext │ │ │ │ ├── counter-mismatch-3.proftext │ │ │ │ ├── counter-mismatch-4.proftext │ │ │ │ ├── empty.proftext │ │ │ │ ├── extra-word.proftext │ │ │ │ ├── foo3-1.proftext │ │ │ │ ├── foo3-2.proftext │ │ │ │ ├── foo3bar3-1.proftext │ │ │ │ ├── gcc-sample-profile.gcov │ │ │ │ ├── inline-samples.afdo │ │ │ │ ├── invalid-count-later.proftext │ │ │ │ ├── multiple-profdata-merge.proftext │ │ │ │ ├── no-counts.proftext │ │ │ │ ├── overflow-instr.proftext │ │ │ │ ├── overflow-sample.proftext │ │ │ │ ├── sample-profile.proftext │ │ │ │ ├── text-format-errors.text.bin │ │ │ │ ├── vp-malform.proftext │ │ │ │ ├── vp-malform2.proftext │ │ │ │ ├── vp-truncate.proftext │ │ │ │ ├── weight-instr-bar.profdata │ │ │ │ ├── weight-instr-foo.profdata │ │ │ │ ├── weight-sample-bar.proftext │ │ │ │ └── weight-sample-foo.proftext │ │ │ ├── c-general.test │ │ │ ├── compat.proftext │ │ │ ├── count-mismatch.proftext │ │ │ ├── gcc-gcov-sample-profile.test │ │ │ ├── general.proftext │ │ │ ├── hash-mismatch.proftext │ │ │ ├── inline-samples.test │ │ │ ├── input-dir.test │ │ │ ├── input-filenames.test │ │ │ ├── lit.local.cfg │ │ │ ├── memop-size-prof.proftext │ │ │ ├── merge_empty_profile.test │ │ │ ├── multiple-inputs.test │ │ │ ├── multiple-profdata-merge.test │ │ │ ├── nocompress.test │ │ │ ├── overflow-instr.test │ │ │ ├── overflow-sample.test │ │ │ ├── raw-32-bits-be.test │ │ │ ├── raw-32-bits-le.test │ │ │ ├── raw-64-bits-be.test │ │ │ ├── raw-64-bits-le.test │ │ │ ├── raw-magic-but-no-header.test │ │ │ ├── raw-two-profiles.test │ │ │ ├── sample-profile-basic.test │ │ │ ├── show-instr-level.test │ │ │ ├── text-dump.test │ │ │ ├── text-format-errors.test │ │ │ ├── threaded-count-mismatch.test │ │ │ ├── value-prof.proftext │ │ │ ├── weight-instr.test │ │ │ └── weight-sample.test │ │ │ ├── llvm-rc │ │ │ ├── Inputs │ │ │ │ ├── bitmap.bmp │ │ │ │ ├── deep-include.rc │ │ │ │ ├── include.rc │ │ │ │ ├── nested │ │ │ │ │ └── nested-bitmap.bmp │ │ │ │ ├── parser-accelerators-bad-flag.rc │ │ │ │ ├── parser-accelerators-bad-int-or-string.rc │ │ │ │ ├── parser-accelerators-no-comma-2.rc │ │ │ │ ├── parser-accelerators-no-comma.rc │ │ │ │ ├── parser-correct-everything.rc │ │ │ │ ├── parser-dialog-cant-give-helpid.rc │ │ │ │ ├── parser-dialog-simple-font.rc │ │ │ │ ├── parser-dialog-too-few-args.rc │ │ │ │ ├── parser-dialog-too-many-args.rc │ │ │ │ ├── parser-dialog-unknown-type.rc │ │ │ │ ├── parser-dialog-unnecessary-string.rc │ │ │ │ ├── parser-eof.rc │ │ │ │ ├── parser-expr-bad-binary-1.rc │ │ │ │ ├── parser-expr-bad-binary-2.rc │ │ │ │ ├── parser-expr-bad-binary-3.rc │ │ │ │ ├── parser-expr-bad-unary.rc │ │ │ │ ├── parser-expr-unbalanced-1.rc │ │ │ │ ├── parser-expr-unbalanced-2.rc │ │ │ │ ├── parser-expr-unbalanced-3.rc │ │ │ │ ├── parser-expr.rc │ │ │ │ ├── parser-html-bad-string.rc │ │ │ │ ├── parser-html-extra-comma.rc │ │ │ │ ├── parser-language-no-comma.rc │ │ │ │ ├── parser-language-too-many-commas.rc │ │ │ │ ├── parser-menu-bad-flag.rc │ │ │ │ ├── parser-menu-bad-id.rc │ │ │ │ ├── parser-menu-missing-block.rc │ │ │ │ ├── parser-menu-misspelled-separator.rc │ │ │ │ ├── parser-no-characteristics-arg.rc │ │ │ │ ├── parser-nonsense-token.rc │ │ │ │ ├── parser-nonsense-type-eof.rc │ │ │ │ ├── parser-nonsense-type.rc │ │ │ │ ├── parser-stringtable-no-string.rc │ │ │ │ ├── parser-stringtable-weird-option.rc │ │ │ │ ├── parser-user-invalid-contents.rc │ │ │ │ ├── parser-versioninfo-bad-type.rc │ │ │ │ ├── parser-versioninfo-named-main-block.rc │ │ │ │ ├── parser-versioninfo-repeated-fixed.rc │ │ │ │ ├── parser-versioninfo-unnamed-inner-block.rc │ │ │ │ ├── parser-versioninfo-unnamed-value.rc │ │ │ │ ├── parser-versioninfo-wrong-fixed.rc │ │ │ │ ├── tag-accelerators-ascii-alt.rc │ │ │ │ ├── tag-accelerators-ascii-control.rc │ │ │ │ ├── tag-accelerators-ascii-shift.rc │ │ │ │ ├── tag-accelerators-ascii-virtkey.rc │ │ │ │ ├── tag-accelerators-bad-id.rc │ │ │ │ ├── tag-accelerators-bad-key-id.rc │ │ │ │ ├── tag-accelerators-control-nonalpha.rc │ │ │ │ ├── tag-accelerators-long-virtkey.rc │ │ │ │ ├── tag-accelerators-no-caret.rc │ │ │ │ ├── tag-accelerators-no-type.rc │ │ │ │ ├── tag-accelerators-only-caret.rc │ │ │ │ ├── tag-accelerators-too-long.rc │ │ │ │ ├── tag-accelerators-too-short.rc │ │ │ │ ├── tag-accelerators-virtual-nonalpha.rc │ │ │ │ ├── tag-accelerators.rc │ │ │ │ ├── tag-dialog-bad-style.rc │ │ │ │ ├── tag-dialog-ctl-large-coord-neg.rc │ │ │ │ ├── tag-dialog-ctl-large-coord.rc │ │ │ │ ├── tag-dialog-ctl-large-id.rc │ │ │ │ ├── tag-dialog-ctl-large-ref-id.rc │ │ │ │ ├── tag-dialog-ctl-large-size.rc │ │ │ │ ├── tag-dialog-ctl-negative-size.rc │ │ │ │ ├── tag-dialog-headers.rc │ │ │ │ ├── tag-dialog-large-coord-neg.rc │ │ │ │ ├── tag-dialog-large-coord.rc │ │ │ │ ├── tag-dialog-large-size.rc │ │ │ │ ├── tag-dialog-negative-size.rc │ │ │ │ ├── tag-dialog.rc │ │ │ │ ├── tag-escape.rc │ │ │ │ ├── tag-html-wrong.rc │ │ │ │ ├── tag-html.rc │ │ │ │ ├── tag-icon-cursor-bad-offset.rc │ │ │ │ ├── tag-icon-cursor-bad-type.rc │ │ │ │ ├── tag-icon-cursor-eof.rc │ │ │ │ ├── tag-icon-cursor-nonexistent.rc │ │ │ │ ├── tag-icon-cursor-nonsense.rc │ │ │ │ ├── tag-icon-cursor.rc │ │ │ │ ├── tag-menu-bad-menuitem-id.rc │ │ │ │ ├── tag-menu.rc │ │ │ │ ├── tag-stringtable-basic.rc │ │ │ │ ├── tag-stringtable-same-ids.rc │ │ │ │ ├── tag-user.rc │ │ │ │ ├── tag-versioninfo-mixed-ints-strings.rc │ │ │ │ ├── tag-versioninfo-word-too-large.rc │ │ │ │ ├── tag-versioninfo.rc │ │ │ │ ├── tokens.rc │ │ │ │ ├── webpage1.html │ │ │ │ └── webpage2.html │ │ │ ├── helpmsg.test │ │ │ ├── include-paths.test │ │ │ ├── parser-expr.test │ │ │ ├── parser.test │ │ │ ├── tag-accelerators.test │ │ │ ├── tag-dialog.test │ │ │ ├── tag-escape.test │ │ │ ├── tag-html.test │ │ │ ├── tag-icon-cursor.test │ │ │ ├── tag-menu.test │ │ │ ├── tag-stringtable.test │ │ │ ├── tag-user.test │ │ │ ├── tag-versioninfo.test │ │ │ └── tokenizer.test │ │ │ ├── llvm-readobj │ │ │ ├── ARM │ │ │ │ ├── attribute-0.s │ │ │ │ ├── attribute-1.s │ │ │ │ ├── attribute-10.s │ │ │ │ ├── attribute-11.s │ │ │ │ ├── attribute-12.s │ │ │ │ ├── attribute-13.s │ │ │ │ ├── attribute-136.s │ │ │ │ ├── attribute-14.s │ │ │ │ ├── attribute-15.s │ │ │ │ ├── attribute-2.s │ │ │ │ ├── attribute-3.s │ │ │ │ ├── attribute-4.s │ │ │ │ ├── attribute-5.s │ │ │ │ ├── attribute-6.s │ │ │ │ ├── attribute-7.s │ │ │ │ ├── attribute-8.s │ │ │ │ ├── attribute-9.s │ │ │ │ ├── attribute-A.s │ │ │ │ ├── attribute-M.s │ │ │ │ ├── attribute-R.s │ │ │ │ ├── attribute-S.s │ │ │ │ ├── attribute-conformance-1.s │ │ │ │ ├── attribute-conformance-2.s │ │ │ │ ├── lit.local.cfg │ │ │ │ └── unwind.s │ │ │ ├── Inputs │ │ │ │ ├── abiflags.obj.elf-mips │ │ │ │ ├── abiflags.obj.elf-mipsel │ │ │ │ ├── bad-relocs.obj.coff-i386 │ │ │ │ ├── basereloc.obj.coff-i386 │ │ │ │ ├── bigobj.coff-x86-64 │ │ │ │ ├── codeview-inlining.obj.coff │ │ │ │ ├── codeview-vftable.obj.coff │ │ │ │ ├── comdat-function-linetables.obj.coff-2012-i386 │ │ │ │ ├── comdat-function-linetables.obj.coff-2013-i386 │ │ │ │ ├── compression.zlib.style.elf-x86-64 │ │ │ │ ├── cxx-cli-aux.cpp │ │ │ │ ├── cxx-cli-aux.obj.coff-i386 │ │ │ │ ├── directives.obj.coff-x86_64 │ │ │ │ ├── dtflags.elf-x86-64 │ │ │ │ ├── dynamic-table-exe.mips │ │ │ │ ├── dynamic-table-exe.x86 │ │ │ │ ├── dynamic-table-so.aarch64 │ │ │ │ ├── dynamic-table-so.mips │ │ │ │ ├── dynamic-table-so.x86 │ │ │ │ ├── dynamic-table.c │ │ │ │ ├── elf-groups.x86_64 │ │ │ │ ├── elf-packed-relocs1.s │ │ │ │ ├── elf-packed-relocs2.s │ │ │ │ ├── file-aux-record.yaml │ │ │ │ ├── file-multiple-aux-records.yaml │ │ │ │ ├── gnuhash.so.elf-i386 │ │ │ │ ├── gnuhash.so.elf-ppc │ │ │ │ ├── gnuhash.so.elf-ppc64 │ │ │ │ ├── gnuhash.so.elf-x86_64 │ │ │ │ ├── got-empty.exe.mipsel │ │ │ │ ├── got-over.exe.elf-mips │ │ │ │ ├── got-plt.exe.elf-mipsel │ │ │ │ ├── got-static.exe.mips │ │ │ │ ├── got-tls.so.elf-mips64el │ │ │ │ ├── imports.exe.coff-i386 │ │ │ │ ├── imports.exe.coff-x86-64 │ │ │ │ ├── macho-universal-archive.x86_64.i386 │ │ │ │ ├── macho-universal.x86_64.i386 │ │ │ │ ├── magic.coff-importlib │ │ │ │ ├── magic.coff-unknown │ │ │ │ ├── mips-options.elf-mips64el │ │ │ │ ├── mips-rld-map-rel.elf-mipsel │ │ │ │ ├── multifile-linetables.obj.coff-2012-i368 │ │ │ │ ├── multifile-linetables.obj.coff-2012-x86_64 │ │ │ │ ├── multifile-linetables.obj.coff-2013-i368 │ │ │ │ ├── multifile-linetables.obj.coff-2013-x86_64 │ │ │ │ ├── multifunction-linetables.obj.coff-2012-i368 │ │ │ │ ├── multifunction-linetables.obj.coff-2012-x86_64 │ │ │ │ ├── multifunction-linetables.obj.coff-2013-i368 │ │ │ │ ├── multifunction-linetables.obj.coff-2013-x86_64 │ │ │ │ ├── needed-libs.obj.coff-am64 │ │ │ │ ├── nop.exe.coff-x86-64 │ │ │ │ ├── options.obj.elf-mipsel │ │ │ │ ├── phdrs-elf.exe-i386 │ │ │ │ ├── phdrs-elf.exe-x86_64 │ │ │ │ ├── reginfo.obj.elf-mipsel │ │ │ │ ├── relocs-no-symtab.obj.coff-i386 │ │ │ │ ├── relocs.obj.coff-i386 │ │ │ │ ├── relocs.obj.coff-x86_64 │ │ │ │ ├── relocs.obj.elf-aarch64 │ │ │ │ ├── relocs.obj.elf-aarch64-ilp32 │ │ │ │ ├── relocs.obj.elf-arm │ │ │ │ ├── relocs.obj.elf-i386 │ │ │ │ ├── relocs.obj.elf-lanai │ │ │ │ ├── relocs.obj.elf-mips │ │ │ │ ├── relocs.obj.elf-mips64el │ │ │ │ ├── relocs.obj.elf-ppc64 │ │ │ │ ├── relocs.obj.elf-x86_64 │ │ │ │ ├── relocs.obj.macho-arm │ │ │ │ ├── relocs.obj.macho-i386 │ │ │ │ ├── relocs.obj.macho-x86_64 │ │ │ │ ├── relocs.py │ │ │ │ ├── resources │ │ │ │ │ ├── cursor_small.bmp │ │ │ │ │ ├── okay_small.bmp │ │ │ │ │ ├── test_resource.obj.coff │ │ │ │ │ ├── test_resource.rc │ │ │ │ │ └── test_resource.res │ │ │ │ ├── rpath.exe.elf-x86_64 │ │ │ │ ├── st-other.obj.elf-mips │ │ │ │ ├── st-other.obj.elf-mips16 │ │ │ │ ├── symbols-proc-specific.elf-hexagon │ │ │ │ ├── trivial.exe.coff-arm │ │ │ │ ├── trivial.exe.coff-i386 │ │ │ │ ├── trivial.ll │ │ │ │ ├── trivial.obj.coff-arm │ │ │ │ ├── trivial.obj.coff-arm64 │ │ │ │ ├── trivial.obj.coff-i386 │ │ │ │ ├── trivial.obj.coff-x86-64 │ │ │ │ ├── trivial.obj.elf-amdhsa-gfx803 │ │ │ │ ├── trivial.obj.elf-i386 │ │ │ │ ├── trivial.obj.elf-lanai │ │ │ │ ├── trivial.obj.elf-mipsel │ │ │ │ ├── trivial.obj.elf-x86-64 │ │ │ │ ├── trivial.obj.macho-arm │ │ │ │ ├── trivial.obj.macho-i386 │ │ │ │ ├── trivial.obj.macho-ppc │ │ │ │ ├── trivial.obj.macho-ppc64 │ │ │ │ ├── trivial.obj.macho-x86-64 │ │ │ │ ├── trivial.obj.wasm │ │ │ │ ├── verdef.elf-x86-64 │ │ │ │ ├── verneed.elf-x86-64 │ │ │ │ └── zero-string-table.obj.coff-i386 │ │ │ ├── amdgpu-elf-definitions.test │ │ │ ├── basic.test │ │ │ ├── bigobj.test │ │ │ ├── broken-group.test │ │ │ ├── codeview-inlinees.test │ │ │ ├── codeview-inlining.test │ │ │ ├── codeview-label.test │ │ │ ├── codeview-linetables.test │ │ │ ├── codeview-merging-anon.test │ │ │ ├── codeview-merging-cycle.test │ │ │ ├── codeview-merging-unsorted.test │ │ │ ├── codeview-merging.test │ │ │ ├── codeview-types.test │ │ │ ├── codeview-vftable.test │ │ │ ├── coff-arm-baserelocs.test │ │ │ ├── coff-basereloc.test │ │ │ ├── coff-const-import.test │ │ │ ├── coff-debug-directory.test │ │ │ ├── coff-directives.test │ │ │ ├── coff-exports-implib.test │ │ │ ├── coff-exports.test │ │ │ ├── coff-file-sections-reading.test │ │ │ ├── coff-load-config.test │ │ │ ├── coff-needed-libs.test │ │ │ ├── coff-non-null-terminated-file.test │ │ │ ├── coff-resources.test │ │ │ ├── coff-zero-string-table.test │ │ │ ├── cxx-cli-aux.test │ │ │ ├── dynamic.test │ │ │ ├── elf-dtflags.test │ │ │ ├── elf-gnuhash.test │ │ │ ├── elf-groups.test │ │ │ ├── elf-hash-histogram.test │ │ │ ├── elf-packed-relocs-empty.s │ │ │ ├── elf-packed-relocs-error1.s │ │ │ ├── elf-packed-relocs-error2.s │ │ │ ├── elf-packed-relocs-error3.s │ │ │ ├── elf-packed-relocs-error4.s │ │ │ ├── elf-packed-relocs-error5.s │ │ │ ├── elf-packed-relocs.test │ │ │ ├── elf-sec-compressed.test │ │ │ ├── elf-sec-flags.test │ │ │ ├── elf-versioninfo.test │ │ │ ├── file-headers.test │ │ │ ├── gnu-file-headers.test │ │ │ ├── gnu-notes.test │ │ │ ├── gnu-phdrs.test │ │ │ ├── gnu-relocations.test │ │ │ ├── gnu-sections.test │ │ │ ├── gnu-symbols.test │ │ │ ├── imports.test │ │ │ ├── macho-needed-libs.test │ │ │ ├── macho-universal-x86_64.i386.test │ │ │ ├── mips-abiflags.test │ │ │ ├── mips-got-overlapped.test │ │ │ ├── mips-got.test │ │ │ ├── mips-options-sec.test │ │ │ ├── mips-options.test │ │ │ ├── mips-plt.test │ │ │ ├── mips-reginfo.test │ │ │ ├── mips-rld-map-rel.test │ │ │ ├── mips-st-other.test │ │ │ ├── peplus.test │ │ │ ├── program-headers.test │ │ │ ├── reloc-types.test │ │ │ ├── relocations.test │ │ │ ├── res-resources.test │ │ │ ├── rpath.test │ │ │ ├── sections-ext.test │ │ │ ├── sections.test │ │ │ ├── symbols.test │ │ │ └── wasm-invalid.test │ │ │ ├── llvm-size │ │ │ ├── Inputs │ │ │ │ ├── darwin-m.o │ │ │ │ └── darwin-m1.o │ │ │ ├── basic.test │ │ │ └── darwin-m.test │ │ │ ├── llvm-split │ │ │ ├── alias.ll │ │ │ ├── blockaddress.ll │ │ │ ├── comdat.ll │ │ │ ├── extern_linkage.ll │ │ │ ├── function.ll │ │ │ ├── global.ll │ │ │ ├── internal.ll │ │ │ ├── personality.ll │ │ │ ├── preserve-locals.ll │ │ │ ├── scc-alias.ll │ │ │ ├── scc-callchain.ll │ │ │ ├── scc-comdat.ll │ │ │ ├── scc-const-alias.ll │ │ │ ├── scc-constants.ll │ │ │ ├── scc-cycle.ll │ │ │ ├── scc-global-alias.ll │ │ │ ├── scc-global2global.ll │ │ │ └── unnamed.ll │ │ │ ├── llvm-strings │ │ │ ├── Inputs │ │ │ │ ├── abcd │ │ │ │ ├── numbers │ │ │ │ └── variable-length │ │ │ ├── all-sections.test │ │ │ ├── archive-filename.test │ │ │ ├── file-filename.test │ │ │ ├── length.test │ │ │ ├── nested-archives.test │ │ │ ├── radix.test │ │ │ ├── stdin-filename.test │ │ │ ├── terminator-neg.test │ │ │ └── terminator.test │ │ │ ├── llvm-symbolizer │ │ │ ├── Inputs │ │ │ │ ├── addr.inp │ │ │ │ ├── coff-dwarf.cpp │ │ │ │ ├── coff-exports.cpp │ │ │ │ ├── discrim │ │ │ │ ├── discrim.c │ │ │ │ ├── discrim.inp │ │ │ │ ├── dsym-test-exe │ │ │ │ ├── dsym-test-exe-differentname.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── Resources │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ └── dsym-test-exe-second │ │ │ │ ├── dsym-test-exe-second │ │ │ │ ├── dsym-test-exe.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── Resources │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ └── dsym-test-exe │ │ │ │ ├── dsym-test.c │ │ │ │ ├── fat.c │ │ │ │ ├── fat.o │ │ │ │ ├── ppc64 │ │ │ │ └── print_context.o │ │ │ ├── coff-dwarf.test │ │ │ ├── coff-exports.test │ │ │ ├── dsym.test │ │ │ ├── fat.test │ │ │ ├── padding-x86_64.ll │ │ │ ├── pdb │ │ │ │ ├── Inputs │ │ │ │ │ └── test.cpp │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── missing_pdb.test │ │ │ │ └── pdb.test │ │ │ ├── ppc64.test │ │ │ ├── print_context.c │ │ │ ├── sym-verbose.test │ │ │ └── sym.test │ │ │ ├── lto │ │ │ ├── hide-linkonce-odr.ll │ │ │ ├── lit.local.cfg │ │ │ ├── no-bitcode.s │ │ │ ├── opt-level.ll │ │ │ └── print-stats.ll │ │ │ ├── obj2yaml │ │ │ ├── Inputs │ │ │ │ └── crt1.o │ │ │ ├── invalid_input_file.test │ │ │ └── missing_symtab.test │ │ │ ├── opt-viewer │ │ │ ├── Inputs │ │ │ │ ├── basic │ │ │ │ │ ├── or.c │ │ │ │ │ ├── or.h │ │ │ │ │ └── or.yaml │ │ │ │ ├── suppress │ │ │ │ │ ├── s.opt.yaml │ │ │ │ │ └── s.swift │ │ │ │ └── unicode-function-name │ │ │ │ │ ├── s.opt.yaml │ │ │ │ │ └── s.swift │ │ │ ├── Outputs │ │ │ │ ├── basic │ │ │ │ │ ├── basic_or.c.html │ │ │ │ │ ├── basic_or.h.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── suppress │ │ │ │ │ ├── index.html │ │ │ │ │ └── s.swift.html │ │ │ │ └── unicode-function-name │ │ │ │ │ ├── index.html │ │ │ │ │ └── s.swift.html │ │ │ ├── basic.test │ │ │ ├── lit.local.cfg │ │ │ ├── suppress.test │ │ │ └── unicode-function-name.test │ │ │ ├── sancov │ │ │ ├── AArch64 │ │ │ │ └── print_coverage_pcs.test │ │ │ ├── Inputs │ │ │ │ ├── foo.cpp │ │ │ │ ├── fun_blacklist.txt │ │ │ │ ├── src_blacklist.txt │ │ │ │ ├── test-darwin_x86_64 │ │ │ │ ├── test-linux_android_aarch64 │ │ │ │ ├── test-linux_x86_64 │ │ │ │ ├── test-linux_x86_64.0.sancov │ │ │ │ ├── test-linux_x86_64.0.symcov │ │ │ │ ├── test-linux_x86_64.1.sancov │ │ │ │ ├── test-linux_x86_64.1.symcov │ │ │ │ ├── test-windows_x86_64 │ │ │ │ └── test.cpp │ │ │ ├── blacklist.test │ │ │ ├── covered_functions.test │ │ │ ├── lit.local.cfg │ │ │ ├── merge.test │ │ │ ├── not_covered_functions.test │ │ │ ├── print.test │ │ │ ├── print_coverage_pcs.test │ │ │ ├── stats.test │ │ │ ├── symbolize.test │ │ │ ├── symbolize_noskip_dead_files.test │ │ │ └── validation.test │ │ │ ├── sanstats │ │ │ └── elf.test │ │ │ └── yaml2obj │ │ │ ├── dynamic-symbols.yaml │ │ │ ├── empty-symbols.yaml │ │ │ ├── invalid-symboless-relocation.yaml │ │ │ ├── invalid_output_file.test │ │ │ ├── lit.local.cfg │ │ │ ├── missing_document_tag.yaml │ │ │ ├── program-header-align.yaml │ │ │ ├── program-header-nobits.yaml │ │ │ ├── program-header.yaml │ │ │ ├── section-ordering.yaml │ │ │ ├── symbol-index-invalid.yaml │ │ │ ├── symbol-index.yaml │ │ │ ├── symboless-relocation.yaml │ │ │ ├── unnamed-section.yaml │ │ │ └── unsupported_document_tag.yaml │ ├── tools │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── bugpoint-passes │ │ │ ├── CMakeLists.txt │ │ │ ├── TestPasses.cpp │ │ │ └── bugpoint.exports │ │ ├── bugpoint │ │ │ ├── BugDriver.cpp │ │ │ ├── BugDriver.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CrashDebugger.cpp │ │ │ ├── ExecutionDriver.cpp │ │ │ ├── ExtractFunction.cpp │ │ │ ├── FindBugs.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── ListReducer.h │ │ │ ├── Miscompilation.cpp │ │ │ ├── OptimizerDriver.cpp │ │ │ ├── ToolRunner.cpp │ │ │ ├── ToolRunner.h │ │ │ └── bugpoint.cpp │ │ ├── dsymutil │ │ │ ├── BinaryHolder.cpp │ │ │ ├── BinaryHolder.h │ │ │ ├── CFBundle.cpp │ │ │ ├── CFBundle.h │ │ │ ├── CMakeLists.txt │ │ │ ├── DebugMap.cpp │ │ │ ├── DebugMap.h │ │ │ ├── DwarfLinker.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── MachODebugMapParser.cpp │ │ │ ├── MachOUtils.cpp │ │ │ ├── MachOUtils.h │ │ │ ├── NonRelocatableStringpool.h │ │ │ ├── dsymutil.cpp │ │ │ └── dsymutil.h │ │ ├── gold │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── gold-plugin.cpp │ │ │ └── gold.exports │ │ ├── llc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llc.cpp │ │ ├── lli │ │ │ ├── CMakeLists.txt │ │ │ ├── ChildTarget │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ChildTarget.cpp │ │ │ │ └── LLVMBuild.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── OrcLazyJIT.cpp │ │ │ ├── OrcLazyJIT.h │ │ │ ├── RemoteJITUtils.h │ │ │ └── lli.cpp │ │ ├── llvm-ar │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-ar.cpp │ │ ├── llvm-as-fuzzer │ │ │ ├── CMakeLists.txt │ │ │ └── llvm-as-fuzzer.cpp │ │ ├── llvm-as │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-as.cpp │ │ ├── llvm-bcanalyzer │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-bcanalyzer.cpp │ │ ├── llvm-c-test │ │ │ ├── CMakeLists.txt │ │ │ ├── attributes.c │ │ │ ├── calc.c │ │ │ ├── debuginfo.c │ │ │ ├── diagnostic.c │ │ │ ├── disassemble.c │ │ │ ├── echo.cpp │ │ │ ├── helpers.c │ │ │ ├── include-all.c │ │ │ ├── llvm-c-test.h │ │ │ ├── main.c │ │ │ ├── metadata.c │ │ │ ├── module.c │ │ │ ├── object.c │ │ │ └── targets.c │ │ ├── llvm-cat │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-cat.cpp │ │ ├── llvm-cfi-verify │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FileAnalysis.cpp │ │ │ │ ├── FileAnalysis.h │ │ │ │ ├── GraphBuilder.cpp │ │ │ │ ├── GraphBuilder.h │ │ │ │ └── LLVMBuild.txt │ │ │ └── llvm-cfi-verify.cpp │ │ ├── llvm-config │ │ │ ├── BuildVariables.inc.in │ │ │ ├── CMakeLists.txt │ │ │ └── llvm-config.cpp │ │ ├── llvm-cov │ │ │ ├── CMakeLists.txt │ │ │ ├── CodeCoverage.cpp │ │ │ ├── CoverageExporterJson.cpp │ │ │ ├── CoverageFilters.cpp │ │ │ ├── CoverageFilters.h │ │ │ ├── CoverageReport.cpp │ │ │ ├── CoverageReport.h │ │ │ ├── CoverageSummaryInfo.cpp │ │ │ ├── CoverageSummaryInfo.h │ │ │ ├── CoverageViewOptions.h │ │ │ ├── LLVMBuild.txt │ │ │ ├── RenderingSupport.h │ │ │ ├── SourceCoverageView.cpp │ │ │ ├── SourceCoverageView.h │ │ │ ├── SourceCoverageViewHTML.cpp │ │ │ ├── SourceCoverageViewHTML.h │ │ │ ├── SourceCoverageViewText.cpp │ │ │ ├── SourceCoverageViewText.h │ │ │ ├── TestingSupport.cpp │ │ │ ├── gcov.cpp │ │ │ └── llvm-cov.cpp │ │ ├── llvm-cvtres │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── Opts.td │ │ │ └── llvm-cvtres.cpp │ │ ├── llvm-cxxdump │ │ │ ├── CMakeLists.txt │ │ │ ├── Error.cpp │ │ │ ├── Error.h │ │ │ ├── LLVMBuild.txt │ │ │ ├── llvm-cxxdump.cpp │ │ │ └── llvm-cxxdump.h │ │ ├── llvm-cxxfilt │ │ │ ├── CMakeLists.txt │ │ │ └── llvm-cxxfilt.cpp │ │ ├── llvm-demangle-fuzzer │ │ │ ├── CMakeLists.txt │ │ │ ├── DummyDemanglerFuzzer.cpp │ │ │ └── llvm-demangle-fuzzer.cpp │ │ ├── llvm-diff │ │ │ ├── CMakeLists.txt │ │ │ ├── DiffConsumer.cpp │ │ │ ├── DiffConsumer.h │ │ │ ├── DiffLog.cpp │ │ │ ├── DiffLog.h │ │ │ ├── DifferenceEngine.cpp │ │ │ ├── DifferenceEngine.h │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-diff.cpp │ │ ├── llvm-dis │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-dis.cpp │ │ ├── llvm-dwarfdump │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── Statistics.cpp │ │ │ ├── fuzzer │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── llvm-dwarfdump-fuzzer.cpp │ │ │ └── llvm-dwarfdump.cpp │ │ ├── llvm-dwp │ │ │ ├── CMakeLists.txt │ │ │ ├── DWPError.cpp │ │ │ ├── DWPError.h │ │ │ ├── DWPStringPool.h │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-dwp.cpp │ │ ├── llvm-extract │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-extract.cpp │ │ ├── llvm-go │ │ │ ├── CMakeLists.txt │ │ │ └── llvm-go.go │ │ ├── llvm-isel-fuzzer │ │ │ ├── CMakeLists.txt │ │ │ ├── DummyISelFuzzer.cpp │ │ │ └── llvm-isel-fuzzer.cpp │ │ ├── llvm-jitlistener │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-jitlistener.cpp │ │ ├── llvm-link │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-link.cpp │ │ ├── llvm-lto │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-lto.cpp │ │ ├── llvm-lto2 │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-lto2.cpp │ │ ├── llvm-mc-assemble-fuzzer │ │ │ ├── CMakeLists.txt │ │ │ └── llvm-mc-assemble-fuzzer.cpp │ │ ├── llvm-mc-disassemble-fuzzer │ │ │ ├── CMakeLists.txt │ │ │ └── llvm-mc-disassemble-fuzzer.cpp │ │ ├── llvm-mc │ │ │ ├── CMakeLists.txt │ │ │ ├── Disassembler.cpp │ │ │ ├── Disassembler.h │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-mc.cpp │ │ ├── llvm-mcmarkup │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-mcmarkup.cpp │ │ ├── llvm-modextract │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-modextract.cpp │ │ ├── llvm-mt │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── Opts.td │ │ │ └── llvm-mt.cpp │ │ ├── llvm-nm │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-nm.cpp │ │ ├── llvm-objcopy │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── Object.cpp │ │ │ ├── Object.h │ │ │ ├── llvm-objcopy.cpp │ │ │ └── llvm-objcopy.h │ │ ├── llvm-objdump │ │ │ ├── CMakeLists.txt │ │ │ ├── COFFDump.cpp │ │ │ ├── ELFDump.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── MachODump.cpp │ │ │ ├── WasmDump.cpp │ │ │ ├── llvm-objdump.cpp │ │ │ └── llvm-objdump.h │ │ ├── llvm-opt-fuzzer │ │ │ ├── CMakeLists.txt │ │ │ ├── DummyOptFuzzer.cpp │ │ │ └── llvm-opt-fuzzer.cpp │ │ ├── llvm-opt-report │ │ │ ├── CMakeLists.txt │ │ │ └── OptReport.cpp │ │ ├── llvm-pdbutil │ │ │ ├── Analyze.cpp │ │ │ ├── Analyze.h │ │ │ ├── BytesOutputStyle.cpp │ │ │ ├── BytesOutputStyle.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Diff.cpp │ │ │ ├── Diff.h │ │ │ ├── DiffPrinter.cpp │ │ │ ├── DiffPrinter.h │ │ │ ├── DumpOutputStyle.cpp │ │ │ ├── DumpOutputStyle.h │ │ │ ├── FormatUtil.cpp │ │ │ ├── FormatUtil.h │ │ │ ├── InputFile.cpp │ │ │ ├── InputFile.h │ │ │ ├── LLVMBuild.txt │ │ │ ├── LinePrinter.cpp │ │ │ ├── LinePrinter.h │ │ │ ├── MinimalSymbolDumper.cpp │ │ │ ├── MinimalSymbolDumper.h │ │ │ ├── MinimalTypeDumper.cpp │ │ │ ├── MinimalTypeDumper.h │ │ │ ├── OutputStyle.h │ │ │ ├── PdbYaml.cpp │ │ │ ├── PdbYaml.h │ │ │ ├── PrettyBuiltinDumper.cpp │ │ │ ├── PrettyBuiltinDumper.h │ │ │ ├── PrettyClassDefinitionDumper.cpp │ │ │ ├── PrettyClassDefinitionDumper.h │ │ │ ├── PrettyClassLayoutGraphicalDumper.cpp │ │ │ ├── PrettyClassLayoutGraphicalDumper.h │ │ │ ├── PrettyCompilandDumper.cpp │ │ │ ├── PrettyCompilandDumper.h │ │ │ ├── PrettyEnumDumper.cpp │ │ │ ├── PrettyEnumDumper.h │ │ │ ├── PrettyExternalSymbolDumper.cpp │ │ │ ├── PrettyExternalSymbolDumper.h │ │ │ ├── PrettyFunctionDumper.cpp │ │ │ ├── PrettyFunctionDumper.h │ │ │ ├── PrettyTypeDumper.cpp │ │ │ ├── PrettyTypeDumper.h │ │ │ ├── PrettyTypedefDumper.cpp │ │ │ ├── PrettyTypedefDumper.h │ │ │ ├── PrettyVariableDumper.cpp │ │ │ ├── PrettyVariableDumper.h │ │ │ ├── StreamUtil.cpp │ │ │ ├── StreamUtil.h │ │ │ ├── YAMLOutputStyle.cpp │ │ │ ├── YAMLOutputStyle.h │ │ │ ├── llvm-pdbutil.cpp │ │ │ └── llvm-pdbutil.h │ │ ├── llvm-profdata │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-profdata.cpp │ │ ├── llvm-rc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── Opts.td │ │ │ ├── ResourceFileWriter.cpp │ │ │ ├── ResourceFileWriter.h │ │ │ ├── ResourceScriptParser.cpp │ │ │ ├── ResourceScriptParser.h │ │ │ ├── ResourceScriptStmt.cpp │ │ │ ├── ResourceScriptStmt.h │ │ │ ├── ResourceScriptToken.cpp │ │ │ ├── ResourceScriptToken.h │ │ │ ├── ResourceScriptTokenList.def │ │ │ ├── ResourceVisitor.h │ │ │ └── llvm-rc.cpp │ │ ├── llvm-readobj │ │ │ ├── ARMEHABIPrinter.h │ │ │ ├── ARMWinEHPrinter.cpp │ │ │ ├── ARMWinEHPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ ├── COFFDumper.cpp │ │ │ ├── COFFImportDumper.cpp │ │ │ ├── ELFDumper.cpp │ │ │ ├── Error.cpp │ │ │ ├── Error.h │ │ │ ├── LLVMBuild.txt │ │ │ ├── MachODumper.cpp │ │ │ ├── ObjDumper.cpp │ │ │ ├── ObjDumper.h │ │ │ ├── StackMapPrinter.h │ │ │ ├── WasmDumper.cpp │ │ │ ├── Win64EHDumper.cpp │ │ │ ├── Win64EHDumper.h │ │ │ ├── WindowsResourceDumper.cpp │ │ │ ├── WindowsResourceDumper.h │ │ │ ├── llvm-readobj.cpp │ │ │ └── llvm-readobj.h │ │ ├── llvm-rtdyld │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-rtdyld.cpp │ │ ├── llvm-shlib │ │ │ ├── CMakeLists.txt │ │ │ ├── libllvm.cpp │ │ │ └── simple_version_script.map.in │ │ ├── llvm-size │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-size.cpp │ │ ├── llvm-special-case-list-fuzzer │ │ │ ├── CMakeLists.txt │ │ │ ├── DummySpecialCaseListFuzzer.cpp │ │ │ └── special-case-list-fuzzer.cpp │ │ ├── llvm-split │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-split.cpp │ │ ├── llvm-stress │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-stress.cpp │ │ ├── llvm-strings │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── llvm-strings.cpp │ │ ├── llvm-symbolizer │ │ │ ├── CMakeLists.txt │ │ │ └── llvm-symbolizer.cpp │ │ ├── llvm-xray │ │ │ ├── CMakeLists.txt │ │ │ ├── func-id-helper.cc │ │ │ ├── func-id-helper.h │ │ │ ├── llvm-xray.cc │ │ │ ├── trie-node.h │ │ │ ├── xray-account.cc │ │ │ ├── xray-account.h │ │ │ ├── xray-color-helper.cc │ │ │ ├── xray-color-helper.h │ │ │ ├── xray-converter.cc │ │ │ ├── xray-converter.h │ │ │ ├── xray-extract.cc │ │ │ ├── xray-graph-diff.cc │ │ │ ├── xray-graph-diff.h │ │ │ ├── xray-graph.cc │ │ │ ├── xray-graph.h │ │ │ ├── xray-registry.cc │ │ │ ├── xray-registry.h │ │ │ └── xray-stacks.cc │ │ ├── lto │ │ │ ├── CMakeLists.txt │ │ │ ├── LTODisassembler.cpp │ │ │ ├── lto.cpp │ │ │ └── lto.exports │ │ ├── msbuild │ │ │ ├── CMakeLists.txt │ │ │ ├── Microsoft.Cpp.Win32.LLVM-vs2010.targets │ │ │ ├── Microsoft.Cpp.Win32.LLVM-vs2012.targets │ │ │ ├── Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets │ │ │ ├── Microsoft.Cpp.Win32.llvm.props.in │ │ │ ├── install.bat │ │ │ ├── toolset-vs2013.targets │ │ │ ├── toolset-vs2013_xp.targets │ │ │ ├── toolset-vs2014.targets │ │ │ ├── toolset-vs2014_xp.targets │ │ │ └── uninstall.bat │ │ ├── obj2yaml │ │ │ ├── CMakeLists.txt │ │ │ ├── Error.cpp │ │ │ ├── Error.h │ │ │ ├── coff2yaml.cpp │ │ │ ├── dwarf2yaml.cpp │ │ │ ├── elf2yaml.cpp │ │ │ ├── macho2yaml.cpp │ │ │ ├── obj2yaml.cpp │ │ │ ├── obj2yaml.h │ │ │ └── wasm2yaml.cpp │ │ ├── opt-viewer │ │ │ ├── CMakeLists.txt │ │ │ ├── opt-diff.py │ │ │ ├── opt-stats.py │ │ │ ├── opt-viewer.py │ │ │ ├── optpmap.py │ │ │ ├── optrecord.py │ │ │ └── style.css │ │ ├── opt │ │ │ ├── AnalysisWrappers.cpp │ │ │ ├── BreakpointPrinter.cpp │ │ │ ├── BreakpointPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Debugify.cpp │ │ │ ├── GraphPrinters.cpp │ │ │ ├── LLVMBuild.txt │ │ │ ├── NewPMDriver.cpp │ │ │ ├── NewPMDriver.h │ │ │ ├── PassPrinters.cpp │ │ │ ├── PassPrinters.h │ │ │ ├── PrintSCC.cpp │ │ │ └── opt.cpp │ │ ├── sancov │ │ │ ├── CMakeLists.txt │ │ │ ├── coverage-report-server.py │ │ │ └── sancov.cc │ │ ├── sanstats │ │ │ ├── CMakeLists.txt │ │ │ └── sanstats.cpp │ │ ├── verify-uselistorder │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── verify-uselistorder.cpp │ │ ├── xcode-toolchain │ │ │ └── CMakeLists.txt │ │ └── yaml2obj │ │ │ ├── CMakeLists.txt │ │ │ ├── yaml2coff.cpp │ │ │ ├── yaml2elf.cpp │ │ │ ├── yaml2macho.cpp │ │ │ ├── yaml2obj.cpp │ │ │ ├── yaml2obj.h │ │ │ └── yaml2wasm.cpp │ ├── unittests │ │ ├── ADT │ │ │ ├── APFloatTest.cpp │ │ │ ├── APIntTest.cpp │ │ │ ├── APSIntTest.cpp │ │ │ ├── ArrayRefTest.cpp │ │ │ ├── BitVectorTest.cpp │ │ │ ├── BitmaskEnumTest.cpp │ │ │ ├── BreadthFirstIteratorTest.cpp │ │ │ ├── BumpPtrListTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── DAGDeltaAlgorithmTest.cpp │ │ │ ├── DeltaAlgorithmTest.cpp │ │ │ ├── DenseMapTest.cpp │ │ │ ├── DenseSetTest.cpp │ │ │ ├── DepthFirstIteratorTest.cpp │ │ │ ├── EquivalenceClassesTest.cpp │ │ │ ├── FoldingSet.cpp │ │ │ ├── FunctionRefTest.cpp │ │ │ ├── HashingTest.cpp │ │ │ ├── IListBaseTest.cpp │ │ │ ├── IListIteratorTest.cpp │ │ │ ├── IListNodeBaseTest.cpp │ │ │ ├── IListNodeTest.cpp │ │ │ ├── IListSentinelTest.cpp │ │ │ ├── IListTest.cpp │ │ │ ├── ImmutableMapTest.cpp │ │ │ ├── ImmutableSetTest.cpp │ │ │ ├── IntEqClassesTest.cpp │ │ │ ├── IntervalMapTest.cpp │ │ │ ├── IntrusiveRefCntPtrTest.cpp │ │ │ ├── IteratorTest.cpp │ │ │ ├── MakeUniqueTest.cpp │ │ │ ├── MapVectorTest.cpp │ │ │ ├── MappedIteratorTest.cpp │ │ │ ├── OptionalTest.cpp │ │ │ ├── PackedVectorTest.cpp │ │ │ ├── PointerEmbeddedIntTest.cpp │ │ │ ├── PointerIntPairTest.cpp │ │ │ ├── PointerSumTypeTest.cpp │ │ │ ├── PointerUnionTest.cpp │ │ │ ├── PostOrderIteratorTest.cpp │ │ │ ├── PriorityWorklistTest.cpp │ │ │ ├── RangeAdapterTest.cpp │ │ │ ├── SCCIteratorTest.cpp │ │ │ ├── STLExtrasTest.cpp │ │ │ ├── ScopeExitTest.cpp │ │ │ ├── SequenceTest.cpp │ │ │ ├── SetVectorTest.cpp │ │ │ ├── SimpleIListTest.cpp │ │ │ ├── SmallPtrSetTest.cpp │ │ │ ├── SmallStringTest.cpp │ │ │ ├── SmallVectorTest.cpp │ │ │ ├── SparseBitVectorTest.cpp │ │ │ ├── SparseMultiSetTest.cpp │ │ │ ├── SparseSetTest.cpp │ │ │ ├── StringExtrasTest.cpp │ │ │ ├── StringMapTest.cpp │ │ │ ├── StringRefTest.cpp │ │ │ ├── StringSwitchTest.cpp │ │ │ ├── TestGraph.h │ │ │ ├── TinyPtrVectorTest.cpp │ │ │ ├── TripleTest.cpp │ │ │ ├── TwineTest.cpp │ │ │ └── VariadicFunctionTest.cpp │ │ ├── Analysis │ │ │ ├── AliasAnalysisTest.cpp │ │ │ ├── AliasSetTrackerTest.cpp │ │ │ ├── BlockFrequencyInfoTest.cpp │ │ │ ├── BranchProbabilityInfoTest.cpp │ │ │ ├── CFGTest.cpp │ │ │ ├── CGSCCPassManagerTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CallGraphTest.cpp │ │ │ ├── GlobalsModRefTest.cpp │ │ │ ├── LazyCallGraphTest.cpp │ │ │ ├── LoopInfoTest.cpp │ │ │ ├── MemoryBuiltinsTest.cpp │ │ │ ├── MemorySSA.cpp │ │ │ ├── OrderedBasicBlockTest.cpp │ │ │ ├── ProfileSummaryInfoTest.cpp │ │ │ ├── ScalarEvolutionTest.cpp │ │ │ ├── SparsePropagation.cpp │ │ │ ├── TBAATest.cpp │ │ │ ├── TargetLibraryInfoTest.cpp │ │ │ ├── UnrollAnalyzer.cpp │ │ │ ├── ValueLatticeTest.cpp │ │ │ └── ValueTrackingTest.cpp │ │ ├── AsmParser │ │ │ ├── AsmParserTest.cpp │ │ │ └── CMakeLists.txt │ │ ├── BinaryFormat │ │ │ ├── CMakeLists.txt │ │ │ ├── DwarfTest.cpp │ │ │ └── TestFileMagic.cpp │ │ ├── Bitcode │ │ │ ├── BitReaderTest.cpp │ │ │ ├── BitstreamReaderTest.cpp │ │ │ ├── BitstreamWriterTest.cpp │ │ │ └── CMakeLists.txt │ │ ├── CMakeLists.txt │ │ ├── CodeGen │ │ │ ├── CMakeLists.txt │ │ │ ├── DIEHashTest.cpp │ │ │ ├── GlobalISel │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── LegalizerInfoTest.cpp │ │ │ ├── LowLevelTypeTest.cpp │ │ │ ├── MachineInstrBundleIteratorTest.cpp │ │ │ ├── MachineInstrTest.cpp │ │ │ ├── MachineOperandTest.cpp │ │ │ └── ScalableVectorMVTsTest.cpp │ │ ├── DebugInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── CodeView │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── RandomAccessVisitorTest.cpp │ │ │ │ ├── TypeHashingTest.cpp │ │ │ │ └── TypeIndexDiscoveryTest.cpp │ │ │ ├── DWARF │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DWARFDebugInfoTest.cpp │ │ │ │ ├── DWARFFormValueTest.cpp │ │ │ │ ├── DwarfGenerator.cpp │ │ │ │ └── DwarfGenerator.h │ │ │ ├── MSF │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MSFBuilderTest.cpp │ │ │ │ ├── MSFCommonTest.cpp │ │ │ │ └── MappedBlockStreamTest.cpp │ │ │ └── PDB │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── HashTableTest.cpp │ │ │ │ ├── PDBApiTest.cpp │ │ │ │ └── StringTableBuilderTest.cpp │ │ ├── ExecutionEngine │ │ │ ├── CMakeLists.txt │ │ │ ├── ExecutionEngineTest.cpp │ │ │ ├── MCJIT │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MCJITCAPITest.cpp │ │ │ │ ├── MCJITMemoryManagerTest.cpp │ │ │ │ ├── MCJITMultipleModuleTest.cpp │ │ │ │ ├── MCJITObjectCacheTest.cpp │ │ │ │ ├── MCJITTest.cpp │ │ │ │ ├── MCJITTestAPICommon.h │ │ │ │ ├── MCJITTestBase.h │ │ │ │ └── MCJITTests.def │ │ │ └── Orc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CompileOnDemandLayerTest.cpp │ │ │ │ ├── GlobalMappingLayerTest.cpp │ │ │ │ ├── IndirectionUtilsTest.cpp │ │ │ │ ├── LazyEmittingLayerTest.cpp │ │ │ │ ├── ObjectTransformLayerTest.cpp │ │ │ │ ├── OrcCAPITest.cpp │ │ │ │ ├── OrcTestCommon.cpp │ │ │ │ ├── OrcTestCommon.h │ │ │ │ ├── QueueChannel.cpp │ │ │ │ ├── QueueChannel.h │ │ │ │ ├── RPCUtilsTest.cpp │ │ │ │ ├── RTDyldObjectLinkingLayerTest.cpp │ │ │ │ ├── RemoteObjectLayerTest.cpp │ │ │ │ └── SymbolStringPoolTest.cpp │ │ ├── FuzzMutate │ │ │ ├── CMakeLists.txt │ │ │ ├── OperationsTest.cpp │ │ │ ├── RandomIRBuilderTest.cpp │ │ │ ├── ReservoirSamplerTest.cpp │ │ │ └── StrategiesTest.cpp │ │ ├── IR │ │ │ ├── AsmWriterTest.cpp │ │ │ ├── AttributesTest.cpp │ │ │ ├── BasicBlockTest.cpp │ │ │ ├── CFGBuilder.cpp │ │ │ ├── CFGBuilder.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ConstantRangeTest.cpp │ │ │ ├── ConstantsTest.cpp │ │ │ ├── DebugInfoTest.cpp │ │ │ ├── DebugTypeODRUniquingTest.cpp │ │ │ ├── DominatorTreeBatchUpdatesTest.cpp │ │ │ ├── DominatorTreeTest.cpp │ │ │ ├── FunctionTest.cpp │ │ │ ├── IRBuilderTest.cpp │ │ │ ├── InstructionsTest.cpp │ │ │ ├── IntrinsicsTest.cpp │ │ │ ├── LegacyPassManagerTest.cpp │ │ │ ├── MDBuilderTest.cpp │ │ │ ├── MetadataTest.cpp │ │ │ ├── ModuleTest.cpp │ │ │ ├── PassBuilderCallbacksTest.cpp │ │ │ ├── PassManagerTest.cpp │ │ │ ├── PatternMatch.cpp │ │ │ ├── TypeBuilderTest.cpp │ │ │ ├── TypesTest.cpp │ │ │ ├── UseTest.cpp │ │ │ ├── UserTest.cpp │ │ │ ├── ValueHandleTest.cpp │ │ │ ├── ValueMapTest.cpp │ │ │ ├── ValueTest.cpp │ │ │ ├── VerifierTest.cpp │ │ │ └── WaymarkTest.cpp │ │ ├── LineEditor │ │ │ ├── CMakeLists.txt │ │ │ └── LineEditor.cpp │ │ ├── Linker │ │ │ ├── CMakeLists.txt │ │ │ └── LinkModulesTest.cpp │ │ ├── MC │ │ │ ├── CMakeLists.txt │ │ │ ├── Disassembler.cpp │ │ │ ├── DwarfLineTables.cpp │ │ │ ├── StringTableBuilderTest.cpp │ │ │ └── TargetRegistry.cpp │ │ ├── MI │ │ │ ├── CMakeLists.txt │ │ │ └── LiveIntervalTest.cpp │ │ ├── Object │ │ │ ├── CMakeLists.txt │ │ │ ├── SymbolSizeTest.cpp │ │ │ └── SymbolicFileTest.cpp │ │ ├── ObjectYAML │ │ │ ├── CMakeLists.txt │ │ │ └── YAMLTest.cpp │ │ ├── Option │ │ │ ├── CMakeLists.txt │ │ │ ├── OptionParsingTest.cpp │ │ │ └── Opts.td │ │ ├── ProfileData │ │ │ ├── CMakeLists.txt │ │ │ ├── CoverageMappingTest.cpp │ │ │ ├── InstrProfTest.cpp │ │ │ └── SampleProfTest.cpp │ │ ├── Support │ │ │ ├── ARMAttributeParser.cpp │ │ │ ├── AlignOfTest.cpp │ │ │ ├── AllocatorTest.cpp │ │ │ ├── ArrayRecyclerTest.cpp │ │ │ ├── BinaryStreamTest.cpp │ │ │ ├── BlockFrequencyTest.cpp │ │ │ ├── BranchProbabilityTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CachePruningTest.cpp │ │ │ ├── Casting.cpp │ │ │ ├── Chrono.cpp │ │ │ ├── CommandLineTest.cpp │ │ │ ├── CompressionTest.cpp │ │ │ ├── ConvertUTFTest.cpp │ │ │ ├── CrashRecoveryTest.cpp │ │ │ ├── DataExtractorTest.cpp │ │ │ ├── DebugTest.cpp │ │ │ ├── DynamicLibrary │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DynamicLibraryTest.cpp │ │ │ │ ├── ExportedFuncs.cxx │ │ │ │ ├── PipSqueak.cxx │ │ │ │ └── PipSqueak.h │ │ │ ├── EndianStreamTest.cpp │ │ │ ├── EndianTest.cpp │ │ │ ├── ErrnoTest.cpp │ │ │ ├── ErrorOrTest.cpp │ │ │ ├── ErrorTest.cpp │ │ │ ├── FileOutputBufferTest.cpp │ │ │ ├── FormatVariadicTest.cpp │ │ │ ├── GlobPatternTest.cpp │ │ │ ├── Host.cpp │ │ │ ├── LEB128Test.cpp │ │ │ ├── LineIteratorTest.cpp │ │ │ ├── LockFileManagerTest.cpp │ │ │ ├── MD5Test.cpp │ │ │ ├── ManagedStatic.cpp │ │ │ ├── MathExtrasTest.cpp │ │ │ ├── MemoryBufferTest.cpp │ │ │ ├── MemoryTest.cpp │ │ │ ├── NativeFormatTests.cpp │ │ │ ├── ParallelTest.cpp │ │ │ ├── Path.cpp │ │ │ ├── ProcessTest.cpp │ │ │ ├── ProgramTest.cpp │ │ │ ├── RegexTest.cpp │ │ │ ├── ReplaceFileTest.cpp │ │ │ ├── ReverseIterationTest.cpp │ │ │ ├── ScaledNumberTest.cpp │ │ │ ├── SourceMgrTest.cpp │ │ │ ├── SpecialCaseListTest.cpp │ │ │ ├── StringPool.cpp │ │ │ ├── SwapByteOrderTest.cpp │ │ │ ├── TarWriterTest.cpp │ │ │ ├── TargetParserTest.cpp │ │ │ ├── ThreadLocalTest.cpp │ │ │ ├── ThreadPool.cpp │ │ │ ├── Threading.cpp │ │ │ ├── TimerTest.cpp │ │ │ ├── TrailingObjectsTest.cpp │ │ │ ├── TrigramIndexTest.cpp │ │ │ ├── TypeNameTest.cpp │ │ │ ├── UnicodeTest.cpp │ │ │ ├── YAMLIOTest.cpp │ │ │ ├── YAMLParserTest.cpp │ │ │ ├── formatted_raw_ostream_test.cpp │ │ │ ├── raw_ostream_test.cpp │ │ │ ├── raw_pwrite_stream_test.cpp │ │ │ ├── raw_sha1_ostream_test.cpp │ │ │ └── xxhashTest.cpp │ │ ├── Target │ │ │ ├── AArch64 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── InstSizes.cpp │ │ │ └── CMakeLists.txt │ │ ├── Transforms │ │ │ ├── CMakeLists.txt │ │ │ ├── IPO │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LowerTypeTests.cpp │ │ │ │ └── WholeProgramDevirt.cpp │ │ │ ├── Scalar │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── LoopPassManagerTest.cpp │ │ │ └── Utils │ │ │ │ ├── ASanStackFrameLayoutTest.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Cloning.cpp │ │ │ │ ├── CodeExtractor.cpp │ │ │ │ ├── FunctionComparator.cpp │ │ │ │ ├── IntegerDivision.cpp │ │ │ │ ├── Local.cpp │ │ │ │ ├── OrderedInstructions.cpp │ │ │ │ └── ValueMapperTest.cpp │ │ ├── XRay │ │ │ ├── CMakeLists.txt │ │ │ └── GraphTest.cpp │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ └── llvm-cfi-verify │ │ │ ├── CMakeLists.txt │ │ │ ├── FileAnalysis.cpp │ │ │ └── GraphBuilder.cpp │ └── utils │ │ ├── DSAclean.py │ │ ├── DSAextract.py │ │ ├── FileCheck │ │ ├── CMakeLists.txt │ │ └── FileCheck.cpp │ │ ├── GenLibDeps.pl │ │ ├── GetRepositoryPath │ │ ├── GetSourceVersion │ │ ├── KillTheDoctor │ │ ├── CMakeLists.txt │ │ └── KillTheDoctor.cpp │ │ ├── LLVMBuild.txt │ │ ├── LLVMVisualizers │ │ ├── CMakeLists.txt │ │ └── llvm.natvis │ │ ├── Misc │ │ └── zkill │ │ ├── PerfectShuffle │ │ ├── CMakeLists.txt │ │ └── PerfectShuffle.cpp │ │ ├── TableGen │ │ ├── AsmMatcherEmitter.cpp │ │ ├── AsmWriterEmitter.cpp │ │ ├── AsmWriterInst.cpp │ │ ├── AsmWriterInst.h │ │ ├── Attributes.cpp │ │ ├── CMakeLists.txt │ │ ├── CTagsEmitter.cpp │ │ ├── CallingConvEmitter.cpp │ │ ├── CodeEmitterGen.cpp │ │ ├── CodeGenDAGPatterns.cpp │ │ ├── CodeGenDAGPatterns.h │ │ ├── CodeGenHwModes.cpp │ │ ├── CodeGenHwModes.h │ │ ├── CodeGenInstruction.cpp │ │ ├── CodeGenInstruction.h │ │ ├── CodeGenIntrinsics.h │ │ ├── CodeGenMapTable.cpp │ │ ├── CodeGenRegisters.cpp │ │ ├── CodeGenRegisters.h │ │ ├── CodeGenSchedule.cpp │ │ ├── CodeGenSchedule.h │ │ ├── CodeGenTarget.cpp │ │ ├── CodeGenTarget.h │ │ ├── DAGISelEmitter.cpp │ │ ├── DAGISelMatcher.cpp │ │ ├── DAGISelMatcher.h │ │ ├── DAGISelMatcherEmitter.cpp │ │ ├── DAGISelMatcherGen.cpp │ │ ├── DAGISelMatcherOpt.cpp │ │ ├── DFAPacketizerEmitter.cpp │ │ ├── DisassemblerEmitter.cpp │ │ ├── FastISelEmitter.cpp │ │ ├── FixedLenDecoderEmitter.cpp │ │ ├── GlobalISelEmitter.cpp │ │ ├── InfoByHwMode.cpp │ │ ├── InfoByHwMode.h │ │ ├── InstrDocsEmitter.cpp │ │ ├── InstrInfoEmitter.cpp │ │ ├── IntrinsicEmitter.cpp │ │ ├── LLVMBuild.txt │ │ ├── OptParserEmitter.cpp │ │ ├── PseudoLoweringEmitter.cpp │ │ ├── RegisterBankEmitter.cpp │ │ ├── RegisterInfoEmitter.cpp │ │ ├── SDNodeProperties.cpp │ │ ├── SDNodeProperties.h │ │ ├── SearchableTableEmitter.cpp │ │ ├── SequenceToOffsetTable.h │ │ ├── SubtargetEmitter.cpp │ │ ├── SubtargetFeatureInfo.cpp │ │ ├── SubtargetFeatureInfo.h │ │ ├── TableGen.cpp │ │ ├── TableGenBackends.h │ │ ├── Types.cpp │ │ ├── Types.h │ │ ├── X86DisassemblerShared.h │ │ ├── X86DisassemblerTables.cpp │ │ ├── X86DisassemblerTables.h │ │ ├── X86EVEX2VEXTablesEmitter.cpp │ │ ├── X86FoldTablesEmitter.cpp │ │ ├── X86ModRMFilters.cpp │ │ ├── X86ModRMFilters.h │ │ ├── X86RecognizableInstr.cpp │ │ ├── X86RecognizableInstr.h │ │ └── tdtags │ │ ├── Target │ │ └── ARM │ │ │ └── analyze-match-table.py │ │ ├── UpdateCMakeLists.pl │ │ ├── abtest.py │ │ ├── bisect │ │ ├── bisect-skip-count │ │ ├── bugpoint │ │ └── RemoteRunSafely.sh │ │ ├── check-each-file │ │ ├── clang-parse-diagnostics-file │ │ ├── codegen-diff │ │ ├── count │ │ ├── CMakeLists.txt │ │ └── count.c │ │ ├── countloc.sh │ │ ├── create_ladder_graph.py │ │ ├── crosstool │ │ ├── ARM │ │ │ ├── README │ │ │ └── build-install-linux.sh │ │ └── create-snapshots.sh │ │ ├── docker │ │ ├── README │ │ ├── build_docker_image.sh │ │ ├── debian8 │ │ │ └── build │ │ │ │ └── Dockerfile │ │ ├── example │ │ │ └── build │ │ │ │ └── Dockerfile │ │ ├── nvidia-cuda │ │ │ └── build │ │ │ │ └── Dockerfile │ │ └── scripts │ │ │ ├── build_install_llvm.sh │ │ │ └── llvm_checksum │ │ │ ├── llvm_checksum.py │ │ │ └── project_tree.py │ │ ├── emacs │ │ ├── README │ │ ├── emacs.el │ │ ├── llvm-mode.el │ │ └── tablegen-mode.el │ │ ├── extract_symbols.py │ │ ├── findmisopt │ │ ├── findoptdiff │ │ ├── findsym.pl │ │ ├── fpcmp │ │ └── fpcmp.cpp │ │ ├── gdb-scripts │ │ └── prettyprinters.py │ │ ├── getsrcs.sh │ │ ├── git-svn │ │ ├── git-llvm │ │ ├── git-svnrevert │ │ └── git-svnup │ │ ├── git │ │ └── find-rev │ │ ├── jedit │ │ ├── README │ │ └── tablegen.xml │ │ ├── kate │ │ ├── README │ │ └── llvm.xml │ │ ├── lint │ │ ├── common_lint.py │ │ ├── cpp_lint.py │ │ ├── generic_lint.py │ │ └── remove_trailing_whitespace.sh │ │ ├── lit │ │ ├── CMakeLists.txt │ │ ├── MANIFEST.in │ │ ├── README.txt │ │ ├── examples │ │ │ ├── README.txt │ │ │ └── many-tests │ │ │ │ ├── README.txt │ │ │ │ └── lit.cfg │ │ ├── lit.py │ │ ├── lit │ │ │ ├── BooleanExpression.py │ │ │ ├── ExampleTests.ObjDir │ │ │ │ └── lit.site.cfg │ │ │ ├── LitConfig.py │ │ │ ├── LitTestCase.py │ │ │ ├── ProgressBar.py │ │ │ ├── ShCommands.py │ │ │ ├── ShUtil.py │ │ │ ├── Test.py │ │ │ ├── TestRunner.py │ │ │ ├── TestingConfig.py │ │ │ ├── __init__.py │ │ │ ├── discovery.py │ │ │ ├── formats │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── googletest.py │ │ │ │ └── shtest.py │ │ │ ├── llvm │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ └── subst.py │ │ │ ├── main.py │ │ │ ├── run.py │ │ │ └── util.py │ │ ├── setup.py │ │ ├── tests │ │ │ ├── .coveragerc │ │ │ ├── Inputs │ │ │ │ ├── config-map-discovery │ │ │ │ │ ├── driver.py │ │ │ │ │ ├── invalid-test.txt │ │ │ │ │ ├── lit.alt.cfg │ │ │ │ │ ├── main-config │ │ │ │ │ │ └── lit.cfg │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test1.txt │ │ │ │ │ │ └── test2.txt │ │ │ │ ├── discovery │ │ │ │ │ ├── lit.cfg │ │ │ │ │ ├── subdir │ │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ │ └── test-three.py │ │ │ │ │ ├── subsuite │ │ │ │ │ │ ├── lit.cfg │ │ │ │ │ │ ├── test-one.txt │ │ │ │ │ │ └── test-two.txt │ │ │ │ │ ├── test-one.txt │ │ │ │ │ └── test-two.txt │ │ │ │ ├── exec-discovery-in-tree │ │ │ │ │ ├── lit.cfg │ │ │ │ │ └── test-one.txt │ │ │ │ ├── exec-discovery │ │ │ │ │ └── lit.site.cfg │ │ │ │ ├── googletest-format │ │ │ │ │ ├── DummySubDir │ │ │ │ │ │ └── OneTest.py │ │ │ │ │ └── lit.cfg │ │ │ │ ├── googletest-timeout │ │ │ │ │ ├── DummySubDir │ │ │ │ │ │ └── OneTest.py │ │ │ │ │ └── lit.cfg │ │ │ │ ├── googletest-upstream-format │ │ │ │ │ ├── DummySubDir │ │ │ │ │ │ └── OneTest.py │ │ │ │ │ └── lit.cfg │ │ │ │ ├── max-failures │ │ │ │ │ └── lit.cfg │ │ │ │ ├── progress-bar │ │ │ │ │ ├── lit.cfg │ │ │ │ │ ├── test-1.txt │ │ │ │ │ ├── test-2.txt │ │ │ │ │ ├── test-3.txt │ │ │ │ │ └── test-4.txt │ │ │ │ ├── py-config-discovery │ │ │ │ │ └── lit.site.cfg.py │ │ │ │ ├── shtest-env │ │ │ │ │ ├── env-u.txt │ │ │ │ │ ├── env.txt │ │ │ │ │ ├── lit.cfg │ │ │ │ │ ├── mixed.txt │ │ │ │ │ ├── print_environment.py │ │ │ │ │ └── shtest-env.py │ │ │ │ ├── shtest-format │ │ │ │ │ ├── argv0.txt │ │ │ │ │ ├── external_shell │ │ │ │ │ │ ├── fail.txt │ │ │ │ │ │ ├── fail_with_bad_encoding.txt │ │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ │ ├── pass.txt │ │ │ │ │ │ └── write-bad-encoding.py │ │ │ │ │ ├── fail.txt │ │ │ │ │ ├── lit.cfg │ │ │ │ │ ├── no-test-line.txt │ │ │ │ │ ├── pass.txt │ │ │ │ │ ├── requires-any-missing.txt │ │ │ │ │ ├── requires-any-present.txt │ │ │ │ │ ├── requires-missing.txt │ │ │ │ │ ├── requires-present.txt │ │ │ │ │ ├── requires-star.txt │ │ │ │ │ ├── requires-triple.txt │ │ │ │ │ ├── unsupported-expr-false.txt │ │ │ │ │ ├── unsupported-expr-true.txt │ │ │ │ │ ├── unsupported-star.txt │ │ │ │ │ ├── unsupported_dir │ │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ │ └── some-test.txt │ │ │ │ │ ├── xfail-expr-false.txt │ │ │ │ │ ├── xfail-expr-true.txt │ │ │ │ │ ├── xfail-feature.txt │ │ │ │ │ ├── xfail-target.txt │ │ │ │ │ ├── xfail.txt │ │ │ │ │ └── xpass.txt │ │ │ │ ├── shtest-output-printing │ │ │ │ │ ├── basic.txt │ │ │ │ │ └── lit.cfg │ │ │ │ ├── shtest-shell │ │ │ │ │ ├── check_path.py │ │ │ │ │ ├── diff-error-0.txt │ │ │ │ │ ├── diff-error-1.txt │ │ │ │ │ ├── diff-error-2.txt │ │ │ │ │ ├── diff-error-3.txt │ │ │ │ │ ├── diff-error-4.txt │ │ │ │ │ ├── diff-error-5.txt │ │ │ │ │ ├── diff-error-6.txt │ │ │ │ │ ├── error-0.txt │ │ │ │ │ ├── error-1.txt │ │ │ │ │ ├── error-2.txt │ │ │ │ │ ├── lit.cfg │ │ │ │ │ ├── mkdir-error-0.txt │ │ │ │ │ ├── mkdir-error-1.txt │ │ │ │ │ ├── mkdir-error-2.txt │ │ │ │ │ ├── redirects.txt │ │ │ │ │ ├── rm-error-0.txt │ │ │ │ │ ├── rm-error-1.txt │ │ │ │ │ ├── rm-error-2.txt │ │ │ │ │ ├── rm-error-3.txt │ │ │ │ │ ├── sequencing-0.txt │ │ │ │ │ ├── sequencing-1.txt │ │ │ │ │ ├── valid-shell.txt │ │ │ │ │ ├── write-to-stderr.py │ │ │ │ │ └── write-to-stdout-and-stderr.py │ │ │ │ ├── shtest-timeout │ │ │ │ │ ├── infinite_loop.py │ │ │ │ │ ├── lit.cfg │ │ │ │ │ ├── quick_then_slow.py │ │ │ │ │ ├── short.py │ │ │ │ │ └── slow.py │ │ │ │ ├── test-data │ │ │ │ │ ├── dummy_format.py │ │ │ │ │ ├── lit.cfg │ │ │ │ │ └── metrics.ini │ │ │ │ ├── testrunner-custom-parsers │ │ │ │ │ ├── lit.cfg │ │ │ │ │ └── test.txt │ │ │ │ └── unittest-adaptor │ │ │ │ │ ├── lit.cfg │ │ │ │ │ ├── test-one.txt │ │ │ │ │ └── test-two.txt │ │ │ ├── boolean-parsing.py │ │ │ ├── discovery.py │ │ │ ├── googletest-format.py │ │ │ ├── googletest-timeout.py │ │ │ ├── googletest-upstream-format.py │ │ │ ├── lit.cfg │ │ │ ├── lit.site.cfg.in │ │ │ ├── max-failures.py │ │ │ ├── progress-bar.py │ │ │ ├── selecting.py │ │ │ ├── shell-parsing.py │ │ │ ├── shtest-encoding.py │ │ │ ├── shtest-format.py │ │ │ ├── shtest-output-printing.py │ │ │ ├── shtest-shell.py │ │ │ ├── shtest-timeout.py │ │ │ ├── test-data.py │ │ │ ├── test-output.py │ │ │ ├── unit │ │ │ │ ├── ShUtil.py │ │ │ │ └── TestRunner.py │ │ │ ├── unittest-adaptor.py │ │ │ ├── usage.py │ │ │ └── xunit-output.py │ │ └── utils │ │ │ ├── README.txt │ │ │ ├── check-coverage │ │ │ └── check-sdist │ │ ├── lldbDataFormatters.py │ │ ├── llvm-build │ │ ├── README.txt │ │ ├── llvm-build │ │ └── llvmbuild │ │ │ ├── __init__.py │ │ │ ├── componentinfo.py │ │ │ ├── configutil.py │ │ │ ├── main.py │ │ │ └── util.py │ │ ├── llvm-compilers-check │ │ ├── llvm-gisel-cov.py │ │ ├── llvm-lit │ │ ├── CMakeLists.txt │ │ └── llvm-lit.in │ │ ├── llvm-native-gxx │ │ ├── llvm.grm │ │ ├── llvmdo │ │ ├── llvmgrep │ │ ├── makellvm │ │ ├── not │ │ ├── CMakeLists.txt │ │ └── not.cpp │ │ ├── prepare-code-coverage-artifact.py │ │ ├── sanitizers │ │ └── ubsan_blacklist.txt │ │ ├── schedcover.py │ │ ├── shuffle_fuzz.py │ │ ├── shuffle_select_fuzz_tester.py │ │ ├── sort_includes.py │ │ ├── testgen │ │ └── mc-bundling-x86-gen.py │ │ ├── textmate │ │ ├── README │ │ └── TableGen.tmbundle │ │ │ ├── Syntaxes │ │ │ └── TableGen.tmLanguage │ │ │ └── info.plist │ │ ├── unittest │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── UnitTestMain │ │ │ ├── CMakeLists.txt │ │ │ └── TestMain.cpp │ │ ├── googlemock │ │ │ ├── LICENSE.txt │ │ │ ├── README.LLVM │ │ │ ├── include │ │ │ │ └── gmock │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ ├── gmock.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ └── gmock-port.h │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ └── gmock-port.h │ │ │ └── src │ │ │ │ ├── gmock-all.cc │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ ├── gmock-matchers.cc │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ └── gmock.cc │ │ └── googletest │ │ │ ├── LICENSE.TXT │ │ │ ├── README.LLVM │ │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ └── gtest-type-util.h │ │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ └── gtest.cc │ │ ├── update_llc_test_checks.py │ │ ├── update_mir_test_checks.py │ │ ├── update_test_checks.py │ │ ├── valgrind │ │ ├── i386-pc-linux-gnu.supp │ │ └── x86_64-pc-linux-gnu.supp │ │ ├── vim │ │ ├── README │ │ ├── ftdetect │ │ │ ├── llvm-lit.vim │ │ │ ├── llvm.vim │ │ │ └── tablegen.vim │ │ ├── ftplugin │ │ │ ├── llvm.vim │ │ │ └── tablegen.vim │ │ ├── indent │ │ │ └── llvm.vim │ │ ├── syntax │ │ │ ├── llvm.vim │ │ │ └── tablegen.vim │ │ └── vimrc │ │ ├── vscode │ │ ├── README │ │ └── tablegen │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── syntaxes │ │ │ └── TableGen.tmLanguage │ │ │ └── vsc-extension-quickstart.md │ │ ├── wciia.py │ │ └── yaml-bench │ │ ├── CMakeLists.txt │ │ └── YAMLBench.cpp ├── llvm-build-debug │ └── setup.bat ├── llvm-build-release │ └── setup.bat ├── llvm-install-debug │ └── README └── llvm-install-release │ ├── README │ └── lib │ └── dump-def.bat ├── src ├── VBLLVM.def ├── VBLLVM.sln ├── VBLLVM.vcxproj ├── build_def.bat ├── dllmain.c ├── llvm_ext.cpp └── typelib │ ├── VBLLVM.idl │ └── build.bat └── test ├── .gitignore ├── basic ├── Module1.bas └── Project1.vbp └── kscope ├── README.md ├── bin ├── README.md └── lib │ ├── linux │ ├── i386 │ │ ├── Scrt1.o │ │ ├── cbits.o │ │ └── libc.so │ └── x86_64 │ │ ├── Scrt1.o │ │ ├── cbits.o │ │ └── libc.so │ └── windows │ ├── i386 │ ├── kernel32.lib │ └── startup.obj │ └── x86_64 │ ├── kernel32.lib │ └── startup.obj ├── compile_parser.bat ├── kscope.peg ├── src ├── cCodegen.cls ├── cJIT.cls ├── cParser.cls ├── cTargetMachine.cls ├── kscope.vbp ├── mdMain.bas ├── mdRuntime.bas ├── runtime │ ├── README.md │ ├── build.bat │ ├── cbits.c │ ├── kernel32.def │ ├── kernel32_x64.def │ └── startup.c └── shared │ ├── mdConsole.bas │ ├── mdGlobals.bas │ └── mdJson.bas └── test ├── 1.ks ├── 2.ks └── mandel.ks /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/README.md -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/debug/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/release/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/typelib/VBLLVM.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/bin/typelib/VBLLVM.tlb -------------------------------------------------------------------------------- /lib/gen_idl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/gen_idl/README.md -------------------------------------------------------------------------------- /lib/gen_idl/compile_parser.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/gen_idl/compile_parser.bat -------------------------------------------------------------------------------- /lib/gen_idl/gen_idl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/gen_idl/gen_idl.exe -------------------------------------------------------------------------------- /lib/gen_idl/gen_idl.peg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/gen_idl/gen_idl.peg -------------------------------------------------------------------------------- /lib/gen_idl/gen_idl.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/gen_idl/gen_idl.vbp -------------------------------------------------------------------------------- /lib/gen_idl/mdGlobals.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/gen_idl/mdGlobals.bas -------------------------------------------------------------------------------- /lib/gen_idl/mdJson.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/gen_idl/mdJson.bas -------------------------------------------------------------------------------- /lib/gen_idl/mdMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/gen_idl/mdMain.bas -------------------------------------------------------------------------------- /lib/gen_idl/mdParser.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/gen_idl/mdParser.bas -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/.arcconfig -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/.gitignore -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/CODE_OWNERS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/CODE_OWNERS.TXT -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Chunks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Chunks.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Chunks.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Config.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/DLL.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/DLL.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Driver.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Driver.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/DriverUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/DriverUtils.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/ICF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/ICF.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/InputFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/InputFiles.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/InputFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/InputFiles.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/LTO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/LTO.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/LTO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/LTO.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/MapFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/MapFile.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/MapFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/MapFile.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/MarkLive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/MarkLive.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/MinGW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/MinGW.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/MinGW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/MinGW.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Options.td -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/PDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/PDB.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/PDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/PDB.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/README.md: -------------------------------------------------------------------------------- 1 | See docs/NewLLD.rst 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Strings.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Strings.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/SymbolTable.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/SymbolTable.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Symbols.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Symbols.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Writer.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/COFF/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/COFF/Writer.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/Common/Args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/Common/Args.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/Common/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/Common/ErrorHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/Common/ErrorHandler.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/Common/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/Common/Memory.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/Common/Reproduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/Common/Reproduce.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/Common/Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/Common/Strings.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/Common/Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/Common/Threads.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/Common/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/Common/Version.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/AArch64ErrataFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/AArch64ErrataFix.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/AArch64ErrataFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/AArch64ErrataFix.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/AArch64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/AArch64.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/AMDGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/AMDGPU.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/ARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/ARM.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/AVR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/AVR.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/Mips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/Mips.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/PPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/PPC.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/PPC64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/PPC64.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/SPARCV9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/SPARCV9.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/X86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/X86.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Arch/X86_64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Arch/X86_64.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Bits.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Config.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Driver.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Driver.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/DriverUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/DriverUtils.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/EhFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/EhFrame.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/EhFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/EhFrame.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Filesystem.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Filesystem.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/GdbIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/GdbIndex.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/GdbIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/GdbIndex.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/ICF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/ICF.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/ICF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/ICF.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/InputFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/InputFiles.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/InputFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/InputFiles.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/InputSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/InputSection.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/InputSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/InputSection.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/LTO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/LTO.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/LTO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/LTO.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/LinkerScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/LinkerScript.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/LinkerScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/LinkerScript.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/MapFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/MapFile.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/MapFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/MapFile.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/MarkLive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/MarkLive.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Options.td -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/OutputSections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/OutputSections.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/OutputSections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/OutputSections.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/README.md: -------------------------------------------------------------------------------- 1 | See docs/NewLLD.rst 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Relocations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Relocations.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Relocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Relocations.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/ScriptLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/ScriptLexer.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/ScriptLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/ScriptLexer.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/ScriptParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/ScriptParser.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/ScriptParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/ScriptParser.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Strings.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Strings.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/SymbolTable.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/SymbolTable.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Symbols.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Symbols.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/SyntheticSections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/SyntheticSections.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Target.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Target.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Thunks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Thunks.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Thunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Thunks.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Writer.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/ELF/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/ELF/Writer.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/LICENSE.TXT -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/MinGW/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/MinGW/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/MinGW/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/MinGW/Driver.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/MinGW/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/MinGW/Options.td -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/README.md -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/AtomLLD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/AtomLLD.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/Driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/Driver.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/NewLLD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/NewLLD.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/README.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/Readers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/Readers.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/ReleaseNotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/ReleaseNotes.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/WebAssembly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/WebAssembly.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/_static/favicon.ico -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/conf.py -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/design.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/development.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/getting_started.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/hello.png -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/index.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/make.bat -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/open_projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/open_projects.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/sphinx_intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/sphinx_intro.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/docs/windows_support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/docs/windows_support.rst -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/include/lld/Core/Atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/include/lld/Core/Atom.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/include/lld/Core/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/include/lld/Core/Error.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/include/lld/Core/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/include/lld/Core/File.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/include/lld/Core/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/include/lld/Core/Node.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/include/lld/Core/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/include/lld/Core/Pass.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/lib/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/lib/Core/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/lib/Core/DefinedAtom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/lib/Core/DefinedAtom.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/lib/Core/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/lib/Core/Error.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/lib/Core/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/lib/Core/File.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/lib/Core/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/lib/Core/Reader.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/lib/Core/Resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/lib/Core/Resolver.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/lib/Core/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/lib/Core/SymbolTable.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/lib/Core/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/lib/Core/Writer.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/bar.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/Inputs/bar.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/beta.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/Inputs/beta.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/default.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | f 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/extension.def: -------------------------------------------------------------------------------- 1 | LIBRARY library.ext 2 | EXPORTS 3 | f 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/library2.def: -------------------------------------------------------------------------------- 1 | LIBRARY library2 2 | EXPORTS 3 | function2 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/locally-imported-def.s: -------------------------------------------------------------------------------- 1 | .text 2 | .globl f 3 | f: 4 | ret 5 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/locally-imported-imp.s: -------------------------------------------------------------------------------- 1 | .text 2 | call __imp_f 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/lto-chkstk-foo.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | ret 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/msvclto.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | ret 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/Inputs/named.def: -------------------------------------------------------------------------------- 1 | LIBRARY library 2 | EXPORTS 3 | f 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/ar-comdat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/ar-comdat.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/base.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/base.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/baserel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/baserel.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/cl-gl.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/cl-gl.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/common.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/common.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/conflict.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/conflict.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/constant.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/constant.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/debug.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/debug.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/def-name.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/def-name.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/defparser.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/defparser.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/dll.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/dll.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/driver.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/driver.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/duplicate.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/duplicate.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/entrylib.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/entrylib.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/export-all.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/export-all.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/export.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/export.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/export32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/export32.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/filetype.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/filetype.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/force.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/force.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/guardcf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/guardcf.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/heap.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/heap.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/hello32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/hello32.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/help.test: -------------------------------------------------------------------------------- 1 | # RUN: lld-link /help | FileCheck %s 2 | 3 | CHECK: OVERVIEW: LLVM Linker 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/icf-data.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/icf-data.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/icf-local.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/icf-local.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/icf-xdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/icf-xdata.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/imports.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/imports.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/include-lto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/include-lto.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/include.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/include.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/lib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/lib.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/lldmap.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/lldmap.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/loadcfg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/loadcfg.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/lto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/lto.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/merge.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/merge.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/msvclto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/msvclto.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/opt.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/opt.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/order.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/order.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/out.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/out.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/pdb-lib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/pdb-lib.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/pdb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/pdb.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/rsds.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/rsds.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/safeseh.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/safeseh.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/seh.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/seh.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/stack.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/stack.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/symtab.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/symtab.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/thinlto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/thinlto.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/tls.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/tls.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/tls32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/tls32.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/unwind.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/unwind.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/COFF/wx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/COFF/wx.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/Driver/Inputs/libtest.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/Driver/Inputs/usr/lib/i386/libtest.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/Driver/Inputs/usr/lib/libtest.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/abs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/Inputs/abs.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/abs255.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo = 255 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/abs256.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo = 256 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/abs257.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo = 257 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/archive2.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo: 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/archive3.s: -------------------------------------------------------------------------------- 1 | .global bar 2 | bar: 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/archive4.s: -------------------------------------------------------------------------------- 1 | .quad bar 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/as-needed-lazy.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo: 3 | nop 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/comment-gc.s: -------------------------------------------------------------------------------- 1 | .ident "bar" 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/dynamic-list-weak-archive.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/eh-frame-end.s: -------------------------------------------------------------------------------- 1 | .section ".eh_frame", "a", @progbits 2 | .long 0 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/empty-ver.ver: -------------------------------------------------------------------------------- 1 | ver { 2 | }; 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/exclude-libs.s: -------------------------------------------------------------------------------- 1 | .globl fn 2 | fn: 3 | nop 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/map-file3.s: -------------------------------------------------------------------------------- 1 | .global bah 2 | bah: 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/mips-nonalloc.s: -------------------------------------------------------------------------------- 1 | .section .debug_info 2 | .word __start 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/progname-ver.s: -------------------------------------------------------------------------------- 1 | .global bar 2 | bar: 3 | .quad __progname@GOT 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/relocatable-tls.s: -------------------------------------------------------------------------------- 1 | callq __tls_get_addr@PLT 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/shlib-undefined-ref.s: -------------------------------------------------------------------------------- 1 | .globl f 2 | f: 3 | call should_not_be_exported@PLT 4 | ret 5 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/start-lib1.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | call bar 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/start-lib2.s: -------------------------------------------------------------------------------- 1 | .globl bar 2 | bar: 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/symver-archive2.s: -------------------------------------------------------------------------------- 1 | call xx@PLT 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/undefined-error.s: -------------------------------------------------------------------------------- 1 | callq fmod@PLT 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/unknown-reloc.s: -------------------------------------------------------------------------------- 1 | .global und 2 | und: 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/use-bar.s: -------------------------------------------------------------------------------- 1 | .section .bar,"a" 2 | .quad _bar 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/version-script-no-warn2.s: -------------------------------------------------------------------------------- 1 | call foo@plt 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/Inputs/wrap-dynamic-undef.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo: 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/abs-hidden.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/abs-hidden.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/archive.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/archive.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/arm-bl-v6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/arm-bl-v6.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/arm-blx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/arm-blx.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/arm-branch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/arm-branch.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/arm-copy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/arm-copy.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/arm-gotoff.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/arm-gotoff.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/as-needed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/as-needed.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/auxiliary.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/auxiliary.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/basic-avr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/basic-avr.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/basic-mips.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/basic-mips.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/basic-ppc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/basic-ppc.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/basic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/basic.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/basic32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/basic32.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/basic64be.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/basic64be.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/bss.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/bsymbolic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/bsymbolic.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/build-id.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/build-id.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/chroot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/chroot.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/combrelocs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/combrelocs.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/comdat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/comdat.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/comment-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/comment-gc.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/common-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/common-gc.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/common-gc2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/common-gc2.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/common-gc3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/common-gc3.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/common.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/common.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/conflict.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/conflict.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/debug-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/debug-gc.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/defsym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/defsym.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/driver.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/driver.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/dso_handle.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/dso_handle.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/dt_flags.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/dt_flags.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/dt_tags.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/dt_tags.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/dynamic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/dynamic.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/dynsym-pie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/dynsym-pie.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/eh-frame.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/eh-frame.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/ehdr_start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/ehdr_start.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/empty-ver.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/empty-ver.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/emulation.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/emulation.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/end-abs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/end-abs.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/end-update.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/end-update.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/end.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/end.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/entry.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/exclude.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/exclude.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/file-sym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/file-sym.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/fill-trap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/fill-trap.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/filter.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/filter.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/gdb-index.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/gdb-index.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/gnu-ifunc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/gnu-ifunc.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/gnu-unique.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/gnu-unique.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/gnustack.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/gnustack.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/got-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/got-i386.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/got.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/got32-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/got32-i386.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/gotpcrelx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/gotpcrelx.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/help.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/help.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/i386-gotpc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/i386-gotpc.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/i386-merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/i386-merge.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/i386-pc8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/i386-pc8.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf-comdat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf-comdat.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf-i386.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf-merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf-merge.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf-none.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf-none.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf1.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf2.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf3.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf4.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf5.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf6.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf7.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf8.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/icf9.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/icf9.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/image-base.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/image-base.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/init-fini.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/init-fini.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/invalid-z.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/invalid-z.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/libsearch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/libsearch.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/linkerscript/Inputs/filename-spec.s: -------------------------------------------------------------------------------- 1 | .section .foo,"a" 2 | .quad 0x11 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/linkerscript/Inputs/lazy-symbols.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/local-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/local-got.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/local.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/local.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/lto/Inputs/dynsym.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | ret 4 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/lto/Inputs/tls-mixed.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | .section .tbss,"awT",@nobits 3 | foo: 4 | .long 0 5 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/lto/cache.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/lto/cache.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/lto/ctors.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/lto/ctors.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/lto/pic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/lto/pic.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/lto/undef.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/lto/undef.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/lto/weak.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/lto/weak.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/map-file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/map-file.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/merge-sym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/merge-sym.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/merge.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/mips-26.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/mips-26.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/mips-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/mips-32.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/mips-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/mips-64.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/mips-got16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/mips-got16.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/mips-hilo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/mips-hilo.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/mips-tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/mips-tls.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/no-merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/no-merge.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/no-obj.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/no-obj.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/no-soname.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/no-soname.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/no-symtab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/no-symtab.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/noplt-pie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/noplt-pie.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/note.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/note.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/phdr-align.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/phdr-align.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/pie-weak.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/pie-weak.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/pie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/pie.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/plt-i686.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/plt-i686.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/plt.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/ppc-relocs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/ppc-relocs.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/pr34660.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/pr34660.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/pr34872.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/pr34872.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/progname.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/progname.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/rel-offset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/rel-offset.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/relocation.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/relocation.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/relro-tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/relro-tls.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/relro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/relro.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/reproduce.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/reproduce.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/resolution.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/resolution.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/retain-und.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/retain-und.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/rodynamic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/rodynamic.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/segments.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/segments.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/shared-be.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/shared-be.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/shared.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/shared.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/soname.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/soname.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/soname2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/soname2.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/start-lib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/start-lib.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/startstop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/startstop.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/string-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/string-gc.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/strip-all.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/strip-all.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/symbols.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/symbols.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/sysroot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/sysroot.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/tls-align.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/tls-align.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/tls-error.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/tls-error.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/tls-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/tls-got.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/tls-i686.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/tls-i686.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/tls-offset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/tls-offset.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/tls-opt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/tls-opt.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/tls-static.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/tls-static.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/tls.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/trace-ar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/trace-ar.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/trace.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/trace.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/undef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/undef.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/verdef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/verdef.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/verneed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/verneed.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/visibility.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/visibility.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/weak-entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/weak-entry.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/weak-undef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/weak-undef.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/wrap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/wrap.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/ELF/zdefs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/ELF/zdefs.s -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/MinGW/lib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/MinGW/lib.test -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/Unit/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/Unit/lit.cfg.py -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/lit.cfg.py -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/mach-o/Inputs/hw.raw_bytes: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/mach-o/PIE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/mach-o/PIE.yaml -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/wasm/archive.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/wasm/archive.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/wasm/entry.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/wasm/entry.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/test/wasm/version.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/test/wasm/version.ll -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/tools/lld/lld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/tools/lld/lld.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/utils/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/utils/benchmark.py -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/utils/link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/utils/link.yaml -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/Config.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/Driver.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/InputFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/InputFiles.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/InputFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/InputFiles.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/InputSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/InputSegment.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/InputSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/InputSegment.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/Options.td -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/OutputSections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/OutputSections.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/OutputSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/OutputSegment.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/SymbolTable.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/SymbolTable.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/Symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/Symbols.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/Symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/Symbols.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/Writer.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/Writer.h -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/WriterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/WriterUtils.cpp -------------------------------------------------------------------------------- /lib/lld-6.0.1.src/wasm/WriterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-6.0.1.src/wasm/WriterUtils.h -------------------------------------------------------------------------------- /lib/lld-build-debug/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-build-debug/setup.bat -------------------------------------------------------------------------------- /lib/lld-build-release/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/lld-build-release/setup.bat -------------------------------------------------------------------------------- /lib/lld-install-debug/README: -------------------------------------------------------------------------------- 1 | LLD release build goes here 2 | -------------------------------------------------------------------------------- /lib/lld-install-release/README: -------------------------------------------------------------------------------- 1 | LLD debug build goes here 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/.arcconfig: -------------------------------------------------------------------------------- 1 | { 2 | "conduit_uri" : "https://reviews.llvm.org/" 3 | } 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/.clang-tidy -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/.gitattributes -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/.gitignore -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/CMakeLists.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/CODE_OWNERS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/CODE_OWNERS.TXT -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/CREDITS.TXT -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/LICENSE.TXT -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/README.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/RELEASE_TESTERS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/RELEASE_TESTERS.TXT -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/bindings/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/bindings/README.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/bindings/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/bindings/go/build.sh -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/bindings/python/llvm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/bindings/python/llvm/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/cmake/README -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/cmake/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/cmake/config.guess -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/cmake/dummy.cpp: -------------------------------------------------------------------------------- 1 | typedef int dummy; 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/cmake/nsis_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/cmake/nsis_icon.ico -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/cmake/nsis_logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/cmake/nsis_logo.bmp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/configure -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/AMDGPUUsage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/AMDGPUUsage.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/ARM-BE-ld1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/ARM-BE-ld1.png -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/ARM-BE-ldr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/ARM-BE-ldr.png -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Atomics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Atomics.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Bugpoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Bugpoint.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/CFIVerify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/CFIVerify.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/CMake.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/CMake.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/CMakeLists.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/CMakePrimer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/CMakePrimer.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/CommandLine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/CommandLine.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Coroutines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Coroutines.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Docker.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Extensions.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/FAQ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/FAQ.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/FaultMaps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/FaultMaps.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/FuzzingLLVM.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/FuzzingLLVM.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/GlobalISel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/GlobalISel.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/GoldPlugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/GoldPlugin.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/InAlloca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/InAlloca.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/LLVMBuild.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/LLVMBuild.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/LangRef.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/LangRef.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Lexicon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Lexicon.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/LibFuzzer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/LibFuzzer.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/MCJIT-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/MCJIT-load.png -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/MIRLangRef.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/MIRLangRef.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Makefile.sphinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Makefile.sphinx -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/MemorySSA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/MemorySSA.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/NVPTXUsage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/NVPTXUsage.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/OptBisect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/OptBisect.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/PDB/MsfFile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/PDB/MsfFile.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/PDB/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/PDB/index.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Packaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Packaging.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Passes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Passes.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Phabricator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Phabricator.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Projects.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/README.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/StackMaps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/StackMaps.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Statepoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Statepoints.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/Vectorizers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/Vectorizers.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/XRay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/XRay.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/XRayExample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/XRayExample.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/YamlIO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/YamlIO.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/conf.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/doxygen.cfg.in -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/gcc-loops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/gcc-loops.png -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/index.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/linpack-pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/linpack-pc.png -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/make.bat -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/re_format.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/re_format.7 -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/docs/yaml2obj.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/docs/yaml2obj.rst -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/include/llvm-c/lto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/include/llvm-c/lto.h -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/include/llvm/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/include/llvm/Pass.h -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Analysis/CFG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Analysis/CFG.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Fuzzer/README.txt: -------------------------------------------------------------------------------- 1 | libFuzzer was moved to compiler-rt in https://reviews.llvm.org/D36908. 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/AsmWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/AsmWriter.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/AttributesCompatFunc.td: -------------------------------------------------------------------------------- 1 | include "llvm/IR/Attributes.td" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Comdat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Comdat.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Constants.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Core.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/DIBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/DIBuilder.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/DebugInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/DebugInfo.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/DebugLoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/DebugLoc.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Function.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Globals.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/IRBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/IRBuilder.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/InlineAsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/InlineAsm.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/MDBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/MDBuilder.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Mangler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Mangler.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Metadata.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Module.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Operator.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/OptBisect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/OptBisect.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Pass.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Type.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Use.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/User.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Value.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/IR/Verifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/IR/Verifier.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/LTO/Caching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/LTO/Caching.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/LTO/LTO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/LTO/LTO.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCAsmInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCAsmInfo.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCContext.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCDwarf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCDwarf.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCExpr.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCInst.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCLabel.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCSection.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCSymbol.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCValue.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCWin64EH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCWin64EH.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/MC/MCWinEH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/MC/MCWinEH.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Object/ELF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Object/ELF.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Object/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Object/Error.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Option/Arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Option/Arg.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Support/COM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Support/COM.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Support/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Support/Host.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Support/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Support/MD5.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Support/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Support/Path.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Support/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Support/SHA1.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Support/regex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Support/regex2.h -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Target/ARC/ARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Target/ARC/ARC.h -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Target/ARM/ARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Target/ARM/ARM.h -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Target/AVR/AVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Target/AVR/AVR.h -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Target/BPF/BPF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/Target/BPF/BPF.h -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Support) 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/Transforms/Hello/Hello.exports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/lib/XRay/Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/lib/XRay/Trace.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/llvm.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/llvm.spec.in -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | ColumnLimit: 0 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Analysis/Delinearization/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.ll'] 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Analysis/Lint/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.ll'] 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Bitcode/Inputs/invalid-empty.bc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/CMakeLists.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/DebugInfo/Inputs/dwarfdump-macro-cmd.h: -------------------------------------------------------------------------------- 1 | #define M4 Value4 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/DebugInfo/Inputs/dwarfdump-test2-helper.cc: -------------------------------------------------------------------------------- 1 | extern "C" int a() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/DebugInfo/Inputs/dwarfdump-test3-decl2.h: -------------------------------------------------------------------------------- 1 | void do2() { } 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/DebugInfo/Inputs/dwarfdump-test4-decl.h: -------------------------------------------------------------------------------- 1 | inline void a(){} 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/DebugInfo/Inputs/dwarfdump-test4-part2.cc: -------------------------------------------------------------------------------- 1 | #include "dwarfdump-test4-decl.h" 2 | int d(){a();} 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/DebugInfo/MIR/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.mir'] 2 | 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/DebugInfo/member-pointers.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/DebugInfo/missing-abstract-variable.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Examples/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.unsupported = True 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/ExecutionEngine/RuntimeDyld/SystemZ/Inputs/rtdyld-globals.ll: -------------------------------------------------------------------------------- 1 | @foo = global i8 0 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Feature/cold.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/Feature/cold.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/PR8300.a.ll: -------------------------------------------------------------------------------- 1 | %foo2 = type { [8 x i8] } 2 | declare void @zed(%foo2*) 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/apple-version/2.ll: -------------------------------------------------------------------------------- 1 | target triple = "x86_64-apple-macosx10.8.0" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/apple-version/3.ll: -------------------------------------------------------------------------------- 1 | target triple = "i386-apple-macosx10.9.0" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/apple-version/4.ll: -------------------------------------------------------------------------------- 1 | target triple = "x86_64h-apple-macosx10.9.0" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/datalayout-a.ll: -------------------------------------------------------------------------------- 1 | target datalayout = "e" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/datalayout-b.ll: -------------------------------------------------------------------------------- 1 | target datalayout = "e-p:16:16" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/module-flags-pic-1-b.ll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/targettriple-a.ll: -------------------------------------------------------------------------------- 1 | target triple = "x86_64-unknown-linux-gnu" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/targettriple-b.ll: -------------------------------------------------------------------------------- 1 | target triple = "i386-unknown-linux-gnu" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/Inputs/targettriple-c.ll: -------------------------------------------------------------------------------- 1 | target triple = "x86_64h-unknown-linux-gnu" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/alias.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/Linker/alias.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/ctors.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/Linker/ctors.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/dllstorage-b.ll: -------------------------------------------------------------------------------- 1 | ; RUN: true 2 | 3 | @foo = dllexport global i32 42 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/ident.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/Linker/ident.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Linker/odr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/Linker/odr.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/AMDGPU/ds.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/AMDGPU/ds.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/AMDGPU/exp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/AMDGPU/exp.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/AMDGPU/hsa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/AMDGPU/hsa.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/AMDGPU/pal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/AMDGPU/pal.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/Inputs/ident.s: -------------------------------------------------------------------------------- 1 | .ident "LLVM ARM Compiler" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/bkpt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/bkpt.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/cps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/cps.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/crc32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/crc32.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/d16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/d16.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/dfb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/dfb.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/fconst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/fconst.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/idiv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/idiv.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/ltorg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/ltorg.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/mul-v4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/mul-v4.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/pool.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/pool.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/thumb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/thumb.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/twice.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/twice.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ARM/vfp4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ARM/vfp4.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/AsmParser/Inputs/function.x: -------------------------------------------------------------------------------- 1 | 2 | FUNCTION = 1 3 | 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/AsmParser/Inputs/module.x: -------------------------------------------------------------------------------- 1 | 2 | MODULE = 1 3 | 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/AsmParser/incbin_abcd: -------------------------------------------------------------------------------- 1 | abcd 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/COFF/alias.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/COFF/alias.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/COFF/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/COFF/bss.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/COFF/comm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/COFF/comm.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/COFF/comm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/COFF/comm.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/COFF/diff.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/COFF/diff.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/COFF/file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/COFF/file.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/COFF/lset0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/COFF/lset0.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/COFF/seh.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/COFF/seh.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/COFF/weak.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/COFF/weak.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/abs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/abs.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/alias.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/alias.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/align.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/align.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/bss.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/bss.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/cfi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/cfi.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/comdat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/comdat.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/common.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/common.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/diff.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/diff.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/diff2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/diff2.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/empty.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/fde.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/fde.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/file.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/got.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/ident.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/ident.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/lcomm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/lcomm.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/leb128.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/leb128.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/merge.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/noexec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/noexec.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/offset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/offset.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/org.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/org.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/plt.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/pr9292.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/pr9292.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/relax.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/relax.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/rename.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/rename.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/set.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/set.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/size.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/size.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/sleb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/sleb.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/symver.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/symver.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/tls.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/type.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/type.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/uleb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/uleb.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/undef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/undef.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/weak.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/weak.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/ELF/zero.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/ELF/zero.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/Lanai/v11.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/Lanai/v11.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/MachO/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/MachO/bss.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/MachO/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/MachO/data.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/MachO/file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/MachO/file.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/MachO/jcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/MachO/jcc.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/MachO/loc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/MachO/loc.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/MachO/tbss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/MachO/tbss.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/MachO/tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/MachO/tls.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/MachO/tlv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/MachO/tlv.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/Markup/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.mc'] 2 | 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/Mips/cfi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/Mips/cfi.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/Mips/expr1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/Mips/expr1.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/MC/Mips/xgot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/MC/Mips/xgot.s -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Object/Inputs/WASM/missing-version.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Object/Inputs/archive-test.a-empty: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Object/Inputs/evenlen: -------------------------------------------------------------------------------- 1 | evenlen 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Object/Inputs/mri-crlf.mri: -------------------------------------------------------------------------------- 1 | ; this file intentionally has crlf line endings 2 | end 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Object/Inputs/oddlen: -------------------------------------------------------------------------------- 1 | oddlen 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Object/mri-crlf.test: -------------------------------------------------------------------------------- 1 | ; RUN: llvm-ar -M < %S/Inputs/mri-crlf.mri 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/ObjectYAML/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.yaml'] 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Other/Inputs/TestProg/TestProg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | false 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Other/Inputs/glob-input: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Other/Inputs/new-pm-pgo.prof: -------------------------------------------------------------------------------- 1 | foo:0:0 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Other/Inputs/new-pm-pgo.proftext: -------------------------------------------------------------------------------- 1 | :ir 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Other/Inputs/utf8-bom-response: -------------------------------------------------------------------------------- 1 | -help 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Other/Inputs/utf8-response: -------------------------------------------------------------------------------- 1 | -help 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Other/lint.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/Other/lint.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Other/lit-quoting.txt: -------------------------------------------------------------------------------- 1 | RUN: echo "\"" | FileCheck %s 2 | CHECK: {{^"$}} 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Other/umask.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/Other/umask.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/TableGen/Dag.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/TableGen/Dag.td -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/TableGen/eq.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/TableGen/eq.td -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/TableGen/if.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/TableGen/if.td -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/TableGen/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.td'] 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/TestRunner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/TestRunner.sh -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Transforms/Internalize/apifile: -------------------------------------------------------------------------------- 1 | foo 2 | j 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Transforms/SampleProfile/Inputs/bad_discriminator_value.prof: -------------------------------------------------------------------------------- 1 | empty:100:0 2 | 1.-3: 10 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Transforms/SampleProfile/Inputs/bad_line_values.prof: -------------------------------------------------------------------------------- 1 | empty:100:0 2 | -1: 10 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Transforms/SampleProfile/Inputs/bad_samples.prof: -------------------------------------------------------------------------------- 1 | empty:100:0 2 | 1.3: -10 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Unit/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/Unit/lit.cfg.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Verifier/byval-1.ll: -------------------------------------------------------------------------------- 1 | ; RUN: not llvm-as < %s > /dev/null 2>&1 2 | declare void @h(i32 byval %num) 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/Verifier/dbg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/Verifier/dbg.ll -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/construct-str.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | string: abcd 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/empty-document-bug.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/merge.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | - << 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/negative-float-bug.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | -1.0 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/single-dot-is-not-float-bug.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | . 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/spec-05-01-utf8.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | # Comment only. 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/spec-05-05.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | # Comment only. 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/spec-05-09.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | %YAML 1.1 4 | --- text 5 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/spec-09-06.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | 'here''s to "quotes"' 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/str.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | - abcd 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/utf8-implicit.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | --- implicit UTF-8 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/utf8.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | --- UTF-8 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/YAMLParser/value.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | - = 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/test/lit.cfg.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/dsymutil/Inputs/swift-ast.swiftmodule: -------------------------------------------------------------------------------- 1 | SWIFTMODULE DATA 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-cov/Inputs/sources_specified/extra/dec.h: -------------------------------------------------------------------------------- 1 | int dec(int x) { 2 | return x + 1; 3 | } 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-cov/Inputs/sources_specified/extra/inc.h: -------------------------------------------------------------------------------- 1 | int inc(int x) { 2 | return x + 1; 3 | } 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-cov/Inputs/test.h: -------------------------------------------------------------------------------- 1 | struct A { 2 | virtual void B(); 3 | }; 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-dlltool/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.def'] 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-lib/Inputs/a.s: -------------------------------------------------------------------------------- 1 | .globl a 2 | a: 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-lib/Inputs/b.s: -------------------------------------------------------------------------------- 1 | .globl b 2 | b: 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-lto/Inputs/empty.bc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-mc/line_end_with_space.test: -------------------------------------------------------------------------------- 1 | RUN: llvm-mc -disassemble %s 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-mt/Inputs/bad.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-mt/Inputs/empty.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-profdata/Inputs/empty.proftext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-profdata/Inputs/extra-word.proftext: -------------------------------------------------------------------------------- 1 | extra 1 word 2 | 1 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-profdata/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes.add('.proftext') 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-accelerators-no-comma-2.rc: -------------------------------------------------------------------------------- 1 | 1 ACCELERATORS { 2 | "^C" 10 3 | } 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-dialog-cant-give-helpid.rc: -------------------------------------------------------------------------------- 1 | 3 DIALOG 1, 2, 3, 4, 500 {} 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-eof.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-expr-bad-binary-1.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0, & 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-expr-bad-binary-2.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 3||0, 0 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-expr-bad-binary-3.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 3+-+3, 0 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-expr-bad-unary.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 1~1, 0 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-expr-unbalanced-1.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE (1+2, 0 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-expr-unbalanced-2.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 1+2)+3+4(, 0 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-expr-unbalanced-3.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE (1+2+3)), 0 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-html-extra-comma.rc: -------------------------------------------------------------------------------- 1 | 1 HTML, "index.html" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-language-no-comma.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 5 7 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-language-too-many-commas.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 5,, 7 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-nonsense-token.rc: -------------------------------------------------------------------------------- 1 | & ICON "WeirdResourceName.ico" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-nonsense-type-eof.rc: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-nonsense-type.rc: -------------------------------------------------------------------------------- 1 | HELLO WORLD 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/parser-versioninfo-wrong-fixed.rc: -------------------------------------------------------------------------------- 1 | 1 VERSIONINFO 2 | WEIRDFIXED 5 3 | BEGIN END 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-accelerators-bad-key-id.rc: -------------------------------------------------------------------------------- 1 | 9 ACCELERATORS { 2 | 1234567, 0, VIRTKEY 3 | } 4 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-accelerators-no-caret.rc: -------------------------------------------------------------------------------- 1 | 50 ACCELERATORS { 2 | "XY", 1, ASCII 3 | } 4 | 5 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-accelerators-no-type.rc: -------------------------------------------------------------------------------- 1 | 5 ACCELERATORS { 2 | 10, 42 3 | } 4 | 5 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-accelerators-only-caret.rc: -------------------------------------------------------------------------------- 1 | 555 ACCELERATORS { 2 | "^", 100 3 | } 4 | 5 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-dialog-bad-style.rc: -------------------------------------------------------------------------------- 1 | 1 DIALOG 1, 2, 3, 4 2 | STYLE 0xFFFF0001 {} 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-html-wrong.rc: -------------------------------------------------------------------------------- 1 | 1 HTML "some-really-nonexistent-file.html" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-icon-cursor-bad-offset.rc: -------------------------------------------------------------------------------- 1 | 50 CURSOR "cursor-bad-offset.cur" 2 | 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-icon-cursor-bad-type.rc: -------------------------------------------------------------------------------- 1 | 100 ICON "cursor.cur" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-icon-cursor-eof.rc: -------------------------------------------------------------------------------- 1 | 72 CURSOR "cursor-eof.cur" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-icon-cursor-nonexistent.rc: -------------------------------------------------------------------------------- 1 | 500 CURSOR "this-file-does-not-exist.cur" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/tag-icon-cursor-nonsense.rc: -------------------------------------------------------------------------------- 1 | 1 ICON "tag-icon-cursor-nonsense.rc" 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-rc/Inputs/webpage2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-readobj/Inputs/relocs.obj.elf-aarch64-ilp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/llvm-strings/Inputs/abcd: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/sancov/Inputs/fun_blacklist.txt: -------------------------------------------------------------------------------- 1 | fun:bar* 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/test/tools/yaml2obj/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.yaml'] 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/tools/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/tools/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/tools/bugpoint-passes/bugpoint.exports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/tools/gold/gold.exports: -------------------------------------------------------------------------------- 1 | onload 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/tools/llc/llc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/tools/llc/llc.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/tools/lli/lli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/tools/lli/lli.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/tools/lto/lto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/tools/lto/lto.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/tools/opt/opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/tools/opt/opt.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/unittests/ExecutionEngine/MCJIT/MCJITTests.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/DSAclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/DSAclean.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/DSAextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/DSAextract.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/GenLibDeps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/GenLibDeps.pl -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/Misc/zkill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/Misc/zkill -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/abtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/abtest.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/bisect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/bisect -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/codegen-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/codegen-diff -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/count/count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/count/count.c -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/countloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/countloc.sh -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/docker/README: -------------------------------------------------------------------------------- 1 | See llvm/docs/Docker.rst for details 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/emacs/README -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/emacs/emacs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/emacs/emacs.el -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/findmisopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/findmisopt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/findoptdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/findoptdiff -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/findsym.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/findsym.pl -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/getsrcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/getsrcs.sh -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/git/find-rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/git/find-rev -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/jedit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/jedit/README -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/kate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/kate/README -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/kate/llvm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/kate/llvm.xml -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/lit/README.txt -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/lit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/lit/lit.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/lit/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/lit/lit/run.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/lit/setup.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/config-map-discovery/invalid-test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/config-map-discovery/main-config/lit.cfg: -------------------------------------------------------------------------------- 1 | print("ERROR: lit.cfg invoked!") -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/config-map-discovery/tests/test1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/config-map-discovery/tests/test2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/discovery/subdir/test-three.py: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/discovery/subsuite/test-one.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/discovery/subsuite/test-two.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/discovery/test-one.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/discovery/test-two.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/exec-discovery-in-tree/test-one.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/progress-bar/test-1.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/progress-bar/test-2.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/progress-bar/test-3.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/progress-bar/test-4.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-format/external_shell/pass.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-format/no-test-line.txt: -------------------------------------------------------------------------------- 1 | # Empty! 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-format/pass.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-format/unsupported_dir/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.unsupported = True 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-format/unsupported_dir/some-test.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-format/xfail-feature.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | # XFAIL: a-present-feature 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-format/xfail-target.txt: -------------------------------------------------------------------------------- 1 | RUN: false 2 | XFAIL: x86_64 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-format/xfail.txt: -------------------------------------------------------------------------------- 1 | RUN: false 2 | XFAIL: * 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-format/xpass.txt: -------------------------------------------------------------------------------- 1 | RUN: true 2 | XFAIL: x86_64 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/shtest-shell/sequencing-1.txt: -------------------------------------------------------------------------------- 1 | # RUN: false && true 2 | # XFAIL: * 3 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/unittest-adaptor/test-one.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/lit/tests/Inputs/unittest-adaptor/test-two.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/llvm.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/llvm.grm -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/llvmdo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/llvmdo -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/llvmgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/llvmgrep -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/makellvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/makellvm -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/not/not.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/not/not.cpp -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/schedcover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/schedcover.py -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/vim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/vim/README -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/vim/vimrc -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/vscode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/vscode/README -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/vscode/tablegen/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | - Initial release 4 | 5 | -------------------------------------------------------------------------------- /lib/llvm-6.0.0.src/utils/wciia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-6.0.0.src/utils/wciia.py -------------------------------------------------------------------------------- /lib/llvm-build-debug/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-build-debug/setup.bat -------------------------------------------------------------------------------- /lib/llvm-build-release/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/lib/llvm-build-release/setup.bat -------------------------------------------------------------------------------- /lib/llvm-install-debug/README: -------------------------------------------------------------------------------- 1 | LLVM debug build goes here 2 | -------------------------------------------------------------------------------- /lib/llvm-install-release/README: -------------------------------------------------------------------------------- 1 | LLVM release build goes here 2 | -------------------------------------------------------------------------------- /src/VBLLVM.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/src/VBLLVM.def -------------------------------------------------------------------------------- /src/VBLLVM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/src/VBLLVM.sln -------------------------------------------------------------------------------- /src/VBLLVM.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/src/VBLLVM.vcxproj -------------------------------------------------------------------------------- /src/build_def.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/src/build_def.bat -------------------------------------------------------------------------------- /src/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/src/dllmain.c -------------------------------------------------------------------------------- /src/llvm_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/src/llvm_ext.cpp -------------------------------------------------------------------------------- /src/typelib/VBLLVM.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/src/typelib/VBLLVM.idl -------------------------------------------------------------------------------- /src/typelib/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/src/typelib/build.bat -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.ll 3 | -------------------------------------------------------------------------------- /test/basic/Module1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/basic/Module1.bas -------------------------------------------------------------------------------- /test/basic/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/basic/Project1.vbp -------------------------------------------------------------------------------- /test/kscope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/README.md -------------------------------------------------------------------------------- /test/kscope/bin/README.md: -------------------------------------------------------------------------------- 1 | `kscope.exe` goes here -------------------------------------------------------------------------------- /test/kscope/bin/lib/linux/i386/Scrt1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/bin/lib/linux/i386/Scrt1.o -------------------------------------------------------------------------------- /test/kscope/bin/lib/linux/i386/cbits.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/bin/lib/linux/i386/cbits.o -------------------------------------------------------------------------------- /test/kscope/bin/lib/linux/i386/libc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/bin/lib/linux/i386/libc.so -------------------------------------------------------------------------------- /test/kscope/compile_parser.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/compile_parser.bat -------------------------------------------------------------------------------- /test/kscope/kscope.peg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/kscope.peg -------------------------------------------------------------------------------- /test/kscope/src/cCodegen.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/cCodegen.cls -------------------------------------------------------------------------------- /test/kscope/src/cJIT.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/cJIT.cls -------------------------------------------------------------------------------- /test/kscope/src/cParser.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/cParser.cls -------------------------------------------------------------------------------- /test/kscope/src/cTargetMachine.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/cTargetMachine.cls -------------------------------------------------------------------------------- /test/kscope/src/kscope.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/kscope.vbp -------------------------------------------------------------------------------- /test/kscope/src/mdMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/mdMain.bas -------------------------------------------------------------------------------- /test/kscope/src/mdRuntime.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/mdRuntime.bas -------------------------------------------------------------------------------- /test/kscope/src/runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/runtime/README.md -------------------------------------------------------------------------------- /test/kscope/src/runtime/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/runtime/build.bat -------------------------------------------------------------------------------- /test/kscope/src/runtime/cbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/runtime/cbits.c -------------------------------------------------------------------------------- /test/kscope/src/runtime/kernel32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/runtime/kernel32.def -------------------------------------------------------------------------------- /test/kscope/src/runtime/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/runtime/startup.c -------------------------------------------------------------------------------- /test/kscope/src/shared/mdConsole.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/shared/mdConsole.bas -------------------------------------------------------------------------------- /test/kscope/src/shared/mdGlobals.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/shared/mdGlobals.bas -------------------------------------------------------------------------------- /test/kscope/src/shared/mdJson.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/src/shared/mdJson.bas -------------------------------------------------------------------------------- /test/kscope/test/1.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/test/1.ks -------------------------------------------------------------------------------- /test/kscope/test/2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/test/2.ks -------------------------------------------------------------------------------- /test/kscope/test/mandel.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wqweto/VBLLVM/HEAD/test/kscope/test/mandel.ks --------------------------------------------------------------------------------