├── .arcconfig ├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── CODE_OWNERS.TXT ├── COFF ├── CMakeLists.txt ├── Chunks.cpp ├── Chunks.h ├── Config.h ├── DLL.cpp ├── DLL.h ├── DebugTypes.cpp ├── DebugTypes.h ├── Driver.cpp ├── Driver.h ├── DriverUtils.cpp ├── ICF.cpp ├── ICF.h ├── InputFiles.cpp ├── InputFiles.h ├── LTO.cpp ├── LTO.h ├── MapFile.cpp ├── MapFile.h ├── MarkLive.cpp ├── MarkLive.h ├── MinGW.cpp ├── MinGW.h ├── Options.td ├── PDB.cpp ├── PDB.h ├── README.md ├── SymbolTable.cpp ├── SymbolTable.h ├── Symbols.cpp ├── Symbols.h ├── TypeMerger.h ├── Writer.cpp └── Writer.h ├── Common ├── Args.cpp ├── CMakeLists.txt ├── DWARF.cpp ├── ErrorHandler.cpp ├── Filesystem.cpp ├── Memory.cpp ├── Reproduce.cpp ├── Strings.cpp ├── TargetOptionsCommandFlags.cpp ├── Threads.cpp ├── Timer.cpp └── Version.cpp ├── ELF ├── AArch64ErrataFix.cpp ├── AArch64ErrataFix.h ├── ARMErrataFix.cpp ├── ARMErrataFix.h ├── Arch │ ├── AArch64.cpp │ ├── AMDGPU.cpp │ ├── ARM.cpp │ ├── AVR.cpp │ ├── Hexagon.cpp │ ├── MSP430.cpp │ ├── Mips.cpp │ ├── MipsArchTree.cpp │ ├── PPC.cpp │ ├── PPC64.cpp │ ├── RISCV.cpp │ ├── SPARCV9.cpp │ ├── X86.cpp │ └── X86_64.cpp ├── CMakeLists.txt ├── CallGraphSort.cpp ├── CallGraphSort.h ├── Config.h ├── DWARF.cpp ├── DWARF.h ├── Driver.cpp ├── Driver.h ├── DriverUtils.cpp ├── EhFrame.cpp ├── EhFrame.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 ├── MarkLive.h ├── Options.td ├── OutputSections.cpp ├── OutputSections.h ├── README.md ├── Relocations.cpp ├── Relocations.h ├── ScriptLexer.cpp ├── ScriptLexer.h ├── ScriptParser.cpp ├── ScriptParser.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 ├── Partitions.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 ├── ld.lld.1 ├── llvm-theme │ ├── layout.html │ ├── static │ │ ├── contents.png │ │ ├── llvm.css │ │ ├── logo.png │ │ └── navigation.png │ └── theme.conf ├── make.bat ├── missingkeyfunction.rst ├── open_projects.rst ├── partitions.dot ├── partitions.svg ├── sphinx_intro.rst └── windows_support.rst ├── include └── lld │ ├── Common │ ├── Args.h │ ├── DWARF.h │ ├── Driver.h │ ├── ErrorHandler.h │ ├── Filesystem.h │ ├── LLVM.h │ ├── Memory.h │ ├── Reproduce.h │ ├── Strings.h │ ├── TargetOptionsCommandFlags.h │ ├── Threads.h │ ├── Timer.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 │ ├── 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 │ │ ├── alias-implib.lib │ │ ├── alpha.ll │ │ ├── armnt-executable.obj.yaml │ │ ├── armnt-executable.s │ │ ├── associative-comdat-2.s │ │ ├── associative-comdat-mingw-2.s │ │ ├── bad-block-size.pdb │ │ ├── bar.ll │ │ ├── beta.ll │ │ ├── cl-gl.obj │ │ ├── combined-resources-2.rc │ │ ├── combined-resources-2.res │ │ ├── combined-resources-2.yaml │ │ ├── combined-resources-cursor.bmp │ │ ├── combined-resources-okay.bmp │ │ ├── combined-resources.rc │ │ ├── combined-resources.res │ │ ├── combined-resources.yaml │ │ ├── comdat-jumptable2.s │ │ ├── common-replacement.s │ │ ├── conflict.ll │ │ ├── constant-export.ll │ │ ├── constant-import.s │ │ ├── crt-dyn-initializer-order_1.yaml │ │ ├── crt-dyn-initializer-order_2.yaml │ │ ├── default.def │ │ ├── delayimports-error.yaml │ │ ├── delayimporttables-dll1.yaml │ │ ├── delayimporttables-dll2.yaml │ │ ├── eh_frame_terminator-crtend.s │ │ ├── eh_frame_terminator-otherfunc.s │ │ ├── empty.yaml │ │ ├── entry-mangled.ll │ │ ├── except_handler3.lib │ │ ├── export.ll │ │ ├── export.yaml │ │ ├── export2.yaml │ │ ├── extension.def │ │ ├── failmismatch1.ll │ │ ├── failmismatch2.ll │ │ ├── far-arm64-abs.s │ │ ├── gamma.ll │ │ ├── generic.yaml │ │ ├── globals-dia-func-collision3.obj │ │ ├── globals-dia-vfunc-collision.obj │ │ ├── globals-dia-vfunc-collision2.obj │ │ ├── globals-dia-vfunc-simple.obj │ │ ├── gnu-implib-data.s │ │ ├── gnu-implib-func.s │ │ ├── gnu-implib-head.s │ │ ├── gnu-implib-tail.s │ │ ├── gnu-weak.o │ │ ├── gnu-weak2.o │ │ ├── guardcf-align-foobar.yaml │ │ ├── hello32.yaml │ │ ├── hello64.asm │ │ ├── hello64.obj │ │ ├── icf-safe.s │ │ ├── id.res │ │ ├── id.res.o │ │ ├── import.yaml │ │ ├── imports-mangle.lib │ │ ├── include1a.yaml │ │ ├── include1b.yaml │ │ ├── include1c.yaml │ │ ├── inline-weak.o │ │ ├── inline-weak2.o │ │ ├── libcall-archive.ll │ │ ├── libcall-archive.s │ │ ├── library-arm64.lib │ │ ├── library.def │ │ ├── library.lib │ │ ├── library2-arm64.lib │ │ ├── library2.def │ │ ├── loadconfig-cfg-x64.s │ │ ├── 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 │ │ ├── mangled-symbol.s │ │ ├── manifest-lang0.res │ │ ├── manifest-lang0.yaml │ │ ├── manifest-lang1.res │ │ ├── manifest-lang1.yaml │ │ ├── manifest-lang2.res │ │ ├── manifest-lang2.yaml │ │ ├── manifestinput.test │ │ ├── msvclto-order-a.ll │ │ ├── msvclto-order-b.ll │ │ ├── msvclto.s │ │ ├── named.def │ │ ├── natvis-1.natvis │ │ ├── natvis-2.natvis │ │ ├── natvis-3.natvis │ │ ├── no-ipi-stream-obj.obj.yaml │ │ ├── no-ipi-stream-pdb.pdb.yaml │ │ ├── object.s │ │ ├── oldname.yaml │ │ ├── order.yaml │ │ ├── ordinal-only-implib.def │ │ ├── otherFunc.s │ │ ├── pdb-diff-cl.pdb │ │ ├── pdb-diff.cpp │ │ ├── pdb-diff.obj │ │ ├── pdb-file-statics-a.yaml │ │ ├── pdb-file-statics-b.yaml │ │ ├── pdb-global-constants-a.s │ │ ├── pdb-global-constants-b.s │ │ ├── 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-invalid-path.yaml │ │ ├── pdb-type-server-missing-2.yaml │ │ ├── pdb-type-server-simple-a.yaml │ │ ├── pdb-type-server-simple-b.yaml │ │ ├── pdb-type-server-simple-ts.yaml │ │ ├── pdb-type-server-valid-signature.yaml │ │ ├── pdb1.yaml │ │ ├── pdb2.yaml │ │ ├── pdb_comdat_bar.yaml │ │ ├── pdb_comdat_main.yaml │ │ ├── pdb_lines_1.yaml │ │ ├── pdb_lines_1_relative.yaml │ │ ├── pdb_lines_2.yaml │ │ ├── pdb_lines_2_relative.yaml │ │ ├── precomp-a.obj │ │ ├── precomp-b.obj │ │ ├── precomp-invalid.obj │ │ ├── precomp.obj │ │ ├── precompa │ │ │ ├── precomp.obj │ │ │ └── useprecomp.obj │ │ ├── precompb │ │ │ ├── precomp.obj │ │ │ └── useprecomp.obj │ │ ├── resource.res │ │ ├── ret42.lib │ │ ├── ret42.obj │ │ ├── ret42.yaml │ │ ├── start-lib1.ll │ │ ├── start-lib2.ll │ │ ├── std32.lib │ │ ├── std64.lib │ │ ├── thinlto-empty.ll │ │ ├── thinlto-mangled-qux.ll │ │ ├── thinlto.ll │ │ ├── tlssup.s │ │ ├── undefined-symbol-lto-a.ll │ │ ├── undefined-symbol-lto-b.ll │ │ ├── weak-external.ll │ │ ├── weak-external2.ll │ │ └── weak-external3.ll │ ├── alias-implib.s │ ├── align.s │ ├── allow-unknown-debug-info.test │ ├── alternatename.test │ ├── ar-comdat.test │ ├── arm-thumb-branch20-error.s │ ├── arm-thumb-thunks-multipass.s │ ├── arm-thumb-thunks-pdb.s │ ├── arm-thumb-thunks.s │ ├── arm64-delayimport.yaml │ ├── arm64-dynamicbase.s │ ├── arm64-import2.test │ ├── arm64-localimport-align.s │ ├── arm64-magic.yaml │ ├── arm64-relocs-imports.test │ ├── arm64-thunks.s │ ├── armnt-blx23t.test │ ├── armnt-branch24t.test │ ├── armnt-dynamicbase.test │ ├── armnt-entry-point.test │ ├── armnt-imports.test │ ├── armnt-mov32t-exec.test │ ├── armnt-movt32t.test │ ├── armnt-rel32.yaml │ ├── associative-comdat-empty.test │ ├── associative-comdat-mingw-i386.s │ ├── associative-comdat-mingw.s │ ├── associative-comdat-order.test │ ├── associative-comdat.s │ ├── autoimport-arm-code.s │ ├── autoimport-arm-data.s │ ├── autoimport-arm64-code.s │ ├── autoimport-arm64-data.s │ ├── autoimport-gnu-implib.s │ ├── autoimport-list-ptrs.s │ ├── autoimport-refptr.s │ ├── autoimport-x86.s │ ├── base.test │ ├── baserel.test │ ├── broken-arm-reloc.yaml │ ├── cl-gl.test │ ├── color-diagnostics.test │ ├── combined-resources.test │ ├── comdat-jumptable.s │ ├── comdat-selection-associative-largest.s │ ├── comdat-selection.s │ ├── comdat-weak.test │ ├── common-alignment.test │ ├── common-replacement.s │ ├── common.test │ ├── conflict-mangled.test │ ├── conflict.test │ ├── constant-export.test │ ├── constant.test │ ├── could-not-open.test │ ├── crt-chars.test │ ├── crt-dyn-initializer-order.test │ ├── ctors_dtors_priority.s │ ├── debug-dwarf.test │ ├── debug-fastlink.test │ ├── debug-reloc.s │ ├── debug.test │ ├── def-export-stdcall.s │ ├── def-name.test │ ├── default-alignment.test │ ├── defparser.test │ ├── delayimports-armnt.yaml │ ├── delayimports-error.test │ ├── delayimports.test │ ├── delayimports32.test │ ├── delayimporttables.yaml │ ├── directives.s │ ├── dll.test │ ├── dllexport-mingw.s │ ├── dllexport.s │ ├── dllimport-gc.test │ ├── driver-windows.test │ ├── driver.test │ ├── duplicate-cv.s │ ├── duplicate-dwarf.s │ ├── duplicate-imp-func.s │ ├── duplicate.test │ ├── edata.s │ ├── eh_frame_suffix_sorting.s │ ├── eh_frame_terminator.s │ ├── entry-drectve.test │ ├── entry-inference-mingw.s │ ├── entry-inference.test │ ├── entry-inference2.test │ ├── entry-inference3.test │ ├── entry-inference32.test │ ├── entry-inference332.test │ ├── entry-inference4.test │ ├── entry-mangled.test │ ├── entrylib.ll │ ├── error-limit.test │ ├── exclude-all.s │ ├── export-all.s │ ├── export-arm64.yaml │ ├── export-armnt.yaml │ ├── export-exe.test │ ├── export-stdcall.s │ ├── export-weak-alias.s │ ├── export.test │ ├── export32.test │ ├── failifmismatch.test │ ├── filealign.test │ ├── filename-casing.s │ ├── filetype.test │ ├── fixed.test │ ├── force-multiple.test │ ├── force-multipleres.test │ ├── force.test │ ├── functionpadmin.test │ ├── gfids-corrupt.s │ ├── gfids-export.s │ ├── gfids-fallback.s │ ├── gfids-gc.s │ ├── gfids-icf.s │ ├── gfids-relocations32.s │ ├── gfids-relocations64.s │ ├── gnu-weak.test │ ├── guard-longjmp.s │ ├── guardcf-align.s │ ├── guardcf-lto.ll │ ├── guardcf-thunk.s │ ├── guardcf.test │ ├── header-size.s │ ├── 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-pdata.s │ ├── icf-safe.s │ ├── icf-simple.test │ ├── icf-vtables.s │ ├── icf-xdata.s │ ├── ignore-many.test │ ├── ignore4217.yaml │ ├── implib-name-mingw.test │ ├── implib-name.test │ ├── imports-gnu-autoexport.s │ ├── imports-gnu-only.s │ ├── imports-gnu.test │ ├── imports-mangle.test │ ├── imports-ordinal-only.s │ ├── imports.test │ ├── include-lto.ll │ ├── include.test │ ├── include2.test │ ├── includeoptional.yaml │ ├── includeoptional2.yaml │ ├── incremental.test │ ├── internal.test │ ├── invalid-debug-type.test │ ├── invalid-debug.test │ ├── invalid-obj.test │ ├── invalid-section-number.test │ ├── largeaddressaware.test │ ├── lib-module-asm.ll │ ├── lib.test │ ├── libcall-archive.ll │ ├── libname-mingw.test │ ├── libpath.test │ ├── line-error.yaml │ ├── 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-cpu-string.ll │ ├── lto-debug-pass-arguments.ll │ ├── lto-icf.ll │ ├── lto-lazy-reference.ll │ ├── lto-linker-opts.ll │ ├── lto-new-symbol.ll │ ├── lto-obj-path.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-resource-manifest.test │ ├── merge.test │ ├── mixed-resource-obj.yaml │ ├── multiple-resource-objs.test │ ├── no-idata.s │ ├── no-ipi-stream.test │ ├── nodefaultlib.test │ ├── noentry.test │ ├── opt.test │ ├── options.test │ ├── order-i386.test │ ├── order.test │ ├── out.test │ ├── output-chars.test │ ├── pdata-arm64.yaml │ ├── pdb-comdat.test │ ├── pdb-debug-f.s │ ├── pdb-exe-path-dots.test │ ├── pdb-file-static.test │ ├── pdb-framedata.yaml │ ├── pdb-global-constants.test │ ├── pdb-global-gc.yaml │ ├── pdb-global-hashes.test │ ├── pdb-globals-dia-func-collision3.test │ ├── pdb-globals-dia-vfunc-collision.test │ ├── pdb-globals-dia-vfunc-collision2.test │ ├── pdb-globals-dia-vfunc-simple.test │ ├── pdb-globals.test │ ├── pdb-heapsite.yaml │ ├── pdb-import-gc.yaml │ ├── pdb-inlinees-extrafiles.s │ ├── pdb-inlinees.s │ ├── pdb-invalid-func-type.yaml │ ├── pdb-lib.s │ ├── pdb-linker-module.test │ ├── pdb-natvis.test │ ├── pdb-none.test │ ├── pdb-options.test │ ├── pdb-procid-remapping.test │ ├── pdb-publics-import.test │ ├── pdb-relative-source-lines.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-tpi-hash-size.test │ ├── pdb-type-server-invalid-signature.yaml │ ├── pdb-type-server-missing.yaml │ ├── pdb-type-server-native-errors.yaml │ ├── pdb-type-server-simple.test │ ├── pdb-unknown-subsection.s │ ├── pdb.test │ ├── pdbaltpath.test │ ├── pending-comdat.s │ ├── precomp-link-samename.test │ ├── precomp-link.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-objs.test │ ├── resource.test │ ├── responsefile.test │ ├── rsds.test │ ├── s_udt.s │ ├── safeseh-diag-feat.test │ ├── safeseh-md.s │ ├── safeseh-no.s │ ├── safeseh-notable.s │ ├── safeseh.s │ ├── savetemps.ll │ ├── secidx-absolute.s │ ├── secrel-absolute.s │ ├── secrel-common.s │ ├── section-order.test │ ├── section-size.s │ ├── section.test │ ├── seh-comdat.test │ ├── seh.test │ ├── sort-debug.test │ ├── stack.test │ ├── start-lib-cmd-diagnostics.ll │ ├── start-lib.ll │ ├── string-tail-merge.s │ ├── strtab-size.s │ ├── subsystem-drectve.test │ ├── subsystem-inference-mingw.s │ ├── subsystem-inference.test │ ├── subsystem-inference2.test │ ├── subsystem-inference32.test │ ├── subsystem.test │ ├── symtab-gc.s │ ├── symtab.test │ ├── thin-archive.s │ ├── thinlto-archivecollision.ll │ ├── thinlto-archives.ll │ ├── thinlto-emit-imports.ll │ ├── thinlto-index-only.ll │ ├── thinlto-mangled.ll │ ├── thinlto-object-suffix-replace.ll │ ├── thinlto-prefix-replace.ll │ ├── thinlto-whole-archives.ll │ ├── thinlto.ll │ ├── thunk-replace.s │ ├── timestamp.test │ ├── tls.test │ ├── tls32.test │ ├── tls_suffix_sorting.s │ ├── undefined-symbol-cv.s │ ├── undefined-symbol-dwarf.s │ ├── undefined-symbol-itanium-i386.s │ ├── undefined-symbol-itanium.s │ ├── undefined-symbol-lto.test │ ├── undefined-symbol-multi.s │ ├── undefined-symbol.s │ ├── unresolved-lto-bitcode.ll │ ├── unresolved-lto.ll │ ├── unwind.test │ ├── used-lto.ll │ ├── 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-addrifunc.s │ │ ├── aarch64-bti1.s │ │ ├── aarch64-btipac1.s │ │ ├── aarch64-condb-reloc.s │ │ ├── aarch64-copy2.s │ │ ├── aarch64-func2.s │ │ ├── aarch64-func3-bti.s │ │ ├── aarch64-func3-btipac.s │ │ ├── aarch64-func3-pac.s │ │ ├── aarch64-func3.s │ │ ├── aarch64-nobti.s │ │ ├── aarch64-nopac.s │ │ ├── aarch64-pac1.s │ │ ├── aarch64-tls-gdie.s │ │ ├── aarch64-tls-ie.s │ │ ├── aarch64-tstbr14-reloc.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 │ │ ├── archive.s │ │ ├── archive2.s │ │ ├── archive3.s │ │ ├── archive4.s │ │ ├── arm-attributes1.s │ │ ├── arm-exidx-cantunwind.s │ │ ├── arm-long-thunk-converge.lds │ │ ├── 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 │ │ ├── arm-vfp-arg-base.s │ │ ├── arm-vfp-arg-compat.s │ │ ├── arm-vfp-arg-toolchain.s │ │ ├── arm-vfp-arg-vfp.s │ │ ├── as-needed-lazy.s │ │ ├── canonical-plt-pcrel.s │ │ ├── comdat-discarded-reloc.s │ │ ├── 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-tls.s │ │ ├── copy-rel-version.s │ │ ├── copy-rel.s │ │ ├── copy-relocation-zero-abs-addr.s │ │ ├── copy-relocation-zero-nonabs-addr.s │ │ ├── copy-relocation-zero-nonabs-addr.script │ │ ├── corrupt-version-reference.so │ │ ├── ctors_dtors_priority1.s │ │ ├── ctors_dtors_priority2.s │ │ ├── ctors_dtors_priority3.s │ │ ├── deplibs-lib_bar.s │ │ ├── deplibs-lib_foo.s │ │ ├── discard-merge-unnamed.o │ │ ├── dso-undef-size.s │ │ ├── dummy-shared.s │ │ ├── duplicated-plt-entry.s │ │ ├── dynamic-list-weak-archive.s │ │ ├── dynamic-reloc-weak.s │ │ ├── dynamic-reloc.s │ │ ├── eh-frame-end.s │ │ ├── eh-frame-pcrel-overflow.s │ │ ├── eh-frame.s │ │ ├── empty-ver.ver │ │ ├── exclude-libs.ll │ │ ├── exclude-libs.s │ │ ├── far-arm-abs.s │ │ ├── far-arm-thumb-abs.s │ │ ├── far-long-arm-abs.s │ │ ├── gc-sections-shared.s │ │ ├── gc-sections-shared2.s │ │ ├── gc-sections-weak.s │ │ ├── gdb-index-invalid-ranges.obj.s │ │ ├── gdb-index-multiple-cu-2.s │ │ ├── gdb-index.s │ │ ├── gnu-ifunc-canon-ro-abs.s │ │ ├── gnu-ifunc-canon-ro-pcrel.s │ │ ├── gnu-ifunc-canon-rw-addend.s │ │ ├── gnu-ifunc-dso.s │ │ ├── gotpc-relax-und-dso.s │ │ ├── hexagon-shared.s │ │ ├── hexagon.s │ │ ├── hidden-shared-err.s │ │ ├── hidden-shared-err2.s │ │ ├── i386-cet1.s │ │ ├── i386-cet2.s │ │ ├── i386-cet3.s │ │ ├── i386-cet4.s │ │ ├── i386-got32x-baseless.elf │ │ ├── i386-linkonce.s │ │ ├── i386-pic-plt.s │ │ ├── i386-static-tls-model1.s │ │ ├── i386-static-tls-model2.s │ │ ├── i386-static-tls-model3.s │ │ ├── i386-static-tls-model4.s │ │ ├── i386-tls-got.s │ │ ├── icf-absolute.s │ │ ├── icf-absolute2.s │ │ ├── icf-merge-sec.s │ │ ├── icf-merge.s │ │ ├── icf-merge2.s │ │ ├── icf-merge3.s │ │ ├── icf-non-mergeable.s │ │ ├── icf-safe.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-64-got-load.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-mgot-1.s │ │ ├── mips-mgot-2.s │ │ ├── mips-micro-gp0-non-zero.o │ │ ├── mips-micro.s │ │ ├── mips-n64-gp0-non-zero.o │ │ ├── mips-nonalloc.s │ │ ├── mips-options.o │ │ ├── mips-pic.s │ │ ├── mips-tls.s │ │ ├── multiple-cu.s │ │ ├── no-symtab.o │ │ ├── plt-aarch64.s │ │ ├── ppc64-addr16-error.s │ │ ├── ppc64-bsymbolic-local-def.s │ │ ├── ppc64-func-global-entry.s │ │ ├── ppc64-func-local-entry.s │ │ ├── ppc64-func.s │ │ ├── ppc64-no-split-stack.s │ │ ├── ppc64-sort-small-cm-relocs-input2.s │ │ ├── ppc64-sort-small-cm-relocs-input3.s │ │ ├── ppc64-sort-small-cm-relocs-input4.s │ │ ├── ppc64-tls-ie-le.s │ │ ├── ppc64-tls.s │ │ ├── ppc64-toc-relax-shared.s │ │ ├── ppc64-toc-relax.s │ │ ├── ppc64le-quadword-ldst.o │ │ ├── print-icf.s │ │ ├── protected-data-access.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 │ │ ├── symbol-ordering-file-warnings1.s │ │ ├── symbol-ordering-file-warnings2.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 │ │ ├── undef-bad-debug.s │ │ ├── undef-debug.s │ │ ├── undef-shared2.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-use.script │ │ ├── version-use.so │ │ ├── versiondef.s │ │ ├── visibility.s │ │ ├── vs-diagnostics-duplicate2.s │ │ ├── vs-diagnostics-duplicate3.s │ │ ├── warn-common.s │ │ ├── warn-common2.s │ │ ├── weak-undef-lazy.s │ │ ├── whole-archive.s │ │ ├── wrap-dynamic-undef.s │ │ ├── wrap-no-real.s │ │ ├── wrap-no-real2.s │ │ ├── wrap-with-archive.s │ │ ├── wrap.s │ │ ├── writable-sec-plt-reloc.s │ │ ├── x86-64-cet1.s │ │ ├── x86-64-cet2.s │ │ ├── x86-64-cet3.s │ │ ├── x86-64-cet4.s │ │ ├── x86-64-pcrel.s │ │ ├── x86-64-relax-offset.s │ │ ├── x86-64-reloc-error.s │ │ ├── x86-64-split-stack-extra.s │ │ ├── x86-64-split-stack-main.s │ │ ├── x86-64-tls-gd-got.s │ │ ├── znotext-copy-relocations.s │ │ ├── znotext-plt-relocations-protected.s │ │ ├── znotext-plt-relocations.s │ │ └── ztext.s │ ├── aarch64-abs16.s │ ├── aarch64-abs32-dyn.s │ ├── aarch64-abs32.s │ ├── aarch64-abs64-dyn.s │ ├── aarch64-bti-pac-cli-error.s │ ├── aarch64-call26-thunk.s │ ├── aarch64-combined-dynrel-ifunc.s │ ├── aarch64-combined-dynrel.s │ ├── aarch64-condb-reloc.s │ ├── aarch64-copy.s │ ├── aarch64-cortex-a53-843419-abs-mapsyms.s │ ├── aarch64-cortex-a53-843419-address.s │ ├── aarch64-cortex-a53-843419-cli.s │ ├── aarch64-cortex-a53-843419-large.s │ ├── aarch64-cortex-a53-843419-large2.s │ ├── aarch64-cortex-a53-843419-nopatch.s │ ├── aarch64-cortex-a53-843419-recognize.s │ ├── aarch64-cortex-a53-843419-thunk.s │ ├── aarch64-cortex-a53-843419-tlsrelax.s │ ├── aarch64-data-relocs.s │ ├── aarch64-feature-bti.s │ ├── aarch64-feature-btipac.s │ ├── aarch64-feature-pac.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-address.s │ ├── aarch64-gnu-ifunc-nonpreemptable.s │ ├── aarch64-gnu-ifunc-nonpreemptable2.s │ ├── aarch64-gnu-ifunc-nosym.s │ ├── aarch64-gnu-ifunc-plt.s │ ├── aarch64-gnu-ifunc.s │ ├── aarch64-gnu-ifunc2.s │ ├── aarch64-got-relocations.s │ ├── aarch64-got-weak-undef.s │ ├── aarch64-hi21-error.s │ ├── aarch64-hi21-nc.s │ ├── aarch64-ifunc-bti.s │ ├── aarch64-jump26-thunk.s │ ├── aarch64-ldprel-lo19-invalid.s │ ├── aarch64-lo12-alignment.s │ ├── aarch64-lo21-error.s │ ├── aarch64-load-alignment.s │ ├── aarch64-movw-error.s │ ├── aarch64-movw-tprel.s │ ├── aarch64-nopic-plt.s │ ├── aarch64-plt.s │ ├── aarch64-prel16.s │ ├── aarch64-prel32.s │ ├── aarch64-property-relocatable.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-vaddr-align.s │ ├── aarch64-tlsdesc.s │ ├── aarch64-tlsld-ldst.s │ ├── aarch64-tstbr14-reloc.s │ ├── aarch64-undefined-weak.s │ ├── abs-conflict.s │ ├── abs-hidden.s │ ├── allow-multiple-definition.s │ ├── allow-shlib-undefined.s │ ├── amdgpu-abi-version-err.s │ ├── amdgpu-abi-version.s │ ├── amdgpu-elf-flags-err.s │ ├── amdgpu-elf-flags.s │ ├── amdgpu-globals.s │ ├── amdgpu-kernels.s │ ├── amdgpu-relocs.s │ ├── apply-dynamic-relocs.s │ ├── archive-fetch.s │ ├── archive-no-index.s │ ├── archive-thin-missing-member.s │ ├── archive.s │ ├── arm-abs32-dyn.s │ ├── arm-attributes.s │ ├── arm-bl-v6-inrange.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-combined-dynrel-ifunc.s │ ├── arm-copy.s │ ├── arm-data-prel.s │ ├── arm-eabi-version.s │ ├── arm-execute-only.s │ ├── arm-exidx-add-missing.s │ ├── arm-exidx-canunwind.s │ ├── arm-exidx-dedup-and-sentinel.s │ ├── arm-exidx-dedup.s │ ├── arm-exidx-emit-relocs.s │ ├── arm-exidx-gc.s │ ├── arm-exidx-link.s │ ├── arm-exidx-order.s │ ├── arm-exidx-output.s │ ├── arm-exidx-partial-discard.s │ ├── arm-exidx-relocatable.s │ ├── arm-exidx-sentinel-norelocatable.s │ ├── arm-exidx-sentinel-orphan.s │ ├── arm-exidx-shared.s │ ├── arm-exidx-synthetic-link.s │ ├── arm-extreme-range-pi-thunk.s │ ├── arm-fix-cortex-a8-blx.s │ ├── arm-fix-cortex-a8-nopatch.s │ ├── arm-fix-cortex-a8-plt.s │ ├── arm-fix-cortex-a8-recognize.s │ ├── arm-fix-cortex-a8-thunk.s │ ├── arm-fix-cortex-a8-toolarge.s │ ├── arm-force-pi-thunk.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-long-thunk-converge.s │ ├── arm-mov-relocs.s │ ├── arm-pie-relative.s │ ├── arm-plt-reloc.s │ ├── arm-reloc-abs32.s │ ├── arm-sbrel32.s │ ├── arm-static-defines.s │ ├── arm-symbol-ordering-file.s │ ├── arm-tag-vfp-args-errs.s │ ├── arm-tag-vfp-args-illegal.s │ ├── arm-tag-vfp-args.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-v5.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-thunk-v6m.s │ ├── arm-thumb-undefined-weak-narrow.test │ ├── 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-many-passes.s │ ├── arm-thunk-multipass-plt.s │ ├── arm-thunk-multipass.s │ ├── arm-thunk-nosuitable.s │ ├── arm-thunk-re-add.s │ ├── arm-thunk-section-too-large.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 │ ├── arm-v4bx.test │ ├── arm-v5-reloc-error.s │ ├── as-needed-in-regular.s │ ├── as-needed-lazy.s │ ├── as-needed-no-reloc.s │ ├── as-needed-not-in-regular.s │ ├── as-needed-weak.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-i386.s │ ├── basic-mips.s │ ├── basic-ppc.s │ ├── basic-ppc64.s │ ├── basic-sparcv9.s │ ├── basic.s │ ├── bss-start-common.s │ ├── bss.s │ ├── bsymbolic-undef.s │ ├── bsymbolic.s │ ├── build-id.s │ ├── canonical-plt-pcrel.s │ ├── canonical-plt-symbolic.s │ ├── cgprofile-bad-clusters.s │ ├── cgprofile-err.s │ ├── cgprofile-icf.s │ ├── cgprofile-obj.s │ ├── cgprofile-print.s │ ├── cgprofile-reproduce.s │ ├── cgprofile-shared-warn.s │ ├── cgprofile-txt.s │ ├── cgprofile-txt2.s │ ├── cgprofile-warn.s │ ├── chroot.s │ ├── color-diagnostics.test │ ├── combreloc.s │ ├── comdat-discarded-error.s │ ├── comdat-discarded-gdb-index.s │ ├── comdat-discarded-ppc64.s │ ├── comdat-discarded-reloc.s │ ├── comdat-linkonce.s │ ├── comdat.s │ ├── comment-gc.s │ ├── common-gc.s │ ├── common-gc2.s │ ├── common-gc3.s │ ├── common-page.s │ ├── common.s │ ├── compatible-section-types.s │ ├── compress-debug-sections-reloc.s │ ├── compress-debug-sections.s │ ├── compressed-debug-conflict.s │ ├── compressed-debug-input-err.s │ ├── compressed-debug-input.s │ ├── compressed-input-alignment.test │ ├── conflict-debug-variable-file-index.s │ ├── conflict-debug-variable.s │ ├── conflict-debug-variable2.s │ ├── conflict-variable-linkage-name.s │ ├── conflict.s │ ├── copy-errors.s │ ├── copy-in-shared.s │ ├── copy-rel-abs.s │ ├── copy-rel-corrupted.s │ ├── copy-rel-large.s │ ├── copy-rel-tls.s │ ├── copy-rel-version.s │ ├── copy-rel.s │ ├── copy-relocation-zero-abs-addr.s │ ├── copy-relocation-zero-nonabs-addr.s │ ├── corrupted-version-reference.s │ ├── cref.s │ ├── ctors_dtors_priority.s │ ├── debug-gc.s │ ├── debug-gnu-pubnames.s │ ├── debug-line-obj.s │ ├── debug-line-str.s │ ├── debug-relocation-none.test │ ├── default-fill.s │ ├── default-output.s │ ├── defined-tls_get_addr.s │ ├── defsym-dynamic.s │ ├── defsym-reserved-syms.s │ ├── defsym.s │ ├── deplibs-colon-prefix.s │ ├── deplibs-corrupt.s │ ├── deplibs.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 │ ├── duplicated-plt-entry.s │ ├── duplicated-synthetic-sym.s │ ├── dynamic-got.s │ ├── dynamic-linker.s │ ├── dynamic-list-archive.s │ ├── dynamic-list-empty.s │ ├── dynamic-list-extern.s │ ├── dynamic-list-locals.s │ ├── dynamic-list-preempt-replace-symbol.s │ ├── dynamic-list-preempt.s │ ├── dynamic-list-preempt2.s │ ├── dynamic-list-unexpected-end.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-negative-pcrel-sdata2.s │ ├── eh-frame-negative-pcrel-sdata4.s │ ├── eh-frame-negative-pcrel-sdata8.s │ ├── eh-frame-padding-no-rosegment.s │ ├── eh-frame-pcrel-overflow.s │ ├── eh-frame-plt.s │ ├── eh-frame-rel.s │ ├── eh-frame-type.test │ ├── eh-frame-value-format1.s │ ├── eh-frame-value-format2.s │ ├── eh-frame-value-format3.s │ ├── eh-frame-value-format4.s │ ├── eh-frame-value-format5.s │ ├── eh-frame-value-format6.s │ ├── eh-frame-value-format7.s │ ├── eh-frame-value-format8.s │ ├── eh-frame-value-format9.s │ ├── eh-frame.s │ ├── ehdr_start.s │ ├── ehframe-relocation.s │ ├── elf-header.s │ ├── emit-relocs-eh-frame.s │ ├── emit-relocs-gc.s │ ├── emit-relocs-icf.s │ ├── emit-relocs-icf1.s │ ├── emit-relocs-icf2.s │ ├── emit-relocs-merge.s │ ├── emit-relocs-mergeable-i386.s │ ├── emit-relocs-mergeable.s │ ├── emit-relocs-mergeable2.s │ ├── emit-relocs.s │ ├── empty-archive.s │ ├── empty-pack-dyn-relocs.s │ ├── empty-pt-load.s │ ├── empty-ver.s │ ├── empty-ver2.s │ ├── emulation-aarch64.s │ ├── emulation-arm.s │ ├── emulation-mips.s │ ├── emulation-ppc.s │ ├── emulation-riscv.s │ ├── emulation-x86.s │ ├── end-abs.s │ ├── end-dso-defined.s │ ├── end-preserve.s │ ├── end-update.s │ ├── end.s │ ├── entry.s │ ├── error-limit-no-newlines.s │ ├── error-limit.test │ ├── exclude-discarded-error.s │ ├── exclude-discarded-error2.s │ ├── exclude-libs.s │ ├── exclude.s │ ├── executable-undefined-ignoreall.s │ ├── executable-undefined-protected-ignoreall.s │ ├── execute-only-mixed-data.s │ ├── execute-only.s │ ├── export-dynamic-symbol.s │ ├── fatal-warnings.s │ ├── file-access.s │ ├── fill-trap-ppc.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-err.s │ ├── gc-sections-metadata-startstop.s │ ├── gc-sections-metadata.s │ ├── gc-sections-metadata2.s │ ├── gc-sections-no-undef-error.s │ ├── gc-sections-non-alloc-to-merge.s │ ├── gc-sections-print.s │ ├── gc-sections-protected.s │ ├── gc-sections-shared.s │ ├── gc-sections-string.s │ ├── gc-sections-synthetic.s │ ├── gc-sections-undefined.s │ ├── gc-sections-weak.s │ ├── gc-sections.s │ ├── gdb-index-base-addr.s │ ├── gdb-index-dwarf5-low-high.s │ ├── gdb-index-empty.s │ ├── gdb-index-gc-sections.s │ ├── gdb-index-invalid-ranges.s │ ├── gdb-index-invalid-section-index.yaml │ ├── gdb-index-multiple-cu-2.s │ ├── gdb-index-multiple-cu.s │ ├── gdb-index-no-debug.s │ ├── gdb-index-noranges.s │ ├── gdb-index-parse-fail.s │ ├── gdb-index-ranges-discarded.s │ ├── gdb-index-ranges.s │ ├── gdb-index-rng-lists.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-redef-err.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-canon.s │ ├── gnu-ifunc-dso.s │ ├── gnu-ifunc-dynsym.s │ ├── gnu-ifunc-dyntags.s │ ├── gnu-ifunc-empty.s │ ├── gnu-ifunc-i386.s │ ├── gnu-ifunc-noplt-i386.s │ ├── gnu-ifunc-noplt.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-i386.s │ ├── got.s │ ├── got32-i386-pie-rw.s │ ├── got32-i386.s │ ├── got32x-i386.s │ ├── help.s │ ├── hexagon-eflag.s │ ├── hexagon-gotrel.s │ ├── hexagon-jump-error.s │ ├── hexagon-plt.s │ ├── hexagon-shared.s │ ├── hexagon.s │ ├── hidden-shared-err.s │ ├── hidden-vis-shared.s │ ├── i386-cet.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-linkonce.s │ ├── i386-merge.s │ ├── i386-pc16.test │ ├── i386-pc8-pc16-addend.s │ ├── i386-pc8.s │ ├── i386-pic-plt.s │ ├── i386-plt.s │ ├── i386-relative.s │ ├── i386-relax-reloc.s │ ├── i386-reloc-16-large-addend.s │ ├── i386-reloc-16.s │ ├── i386-reloc-8-large-addend.s │ ├── i386-reloc-8.s │ ├── i386-reloc-large-addend.s │ ├── i386-reloc-range.s │ ├── i386-reloc8-reloc16-addend.s │ ├── i386-retpoline-nopic-linkerscript.s │ ├── i386-retpoline-nopic.s │ ├── i386-retpoline-pic-linkerscript.s │ ├── i386-retpoline-pic.s │ ├── i386-static-tls-model.s │ ├── i386-tls-dynamic.s │ ├── i386-tls-gdiele.s │ ├── i386-tls-got.s │ ├── i386-tls-ie-local.s │ ├── i386-tls-ie-shared.s │ ├── i386-tls-ld-preemptable.s │ ├── i386-tls-le-align.s │ ├── i386-tls-le-undef.s │ ├── i386-tls-le.s │ ├── i386-tls-opt-iele-nopic.s │ ├── i386-tls-opt.s │ ├── i386-tls-vaddr-align.s │ ├── icf-absolute.s │ ├── icf-absolute2.s │ ├── icf-c-identifier.s │ ├── icf-comdat.s │ ├── icf-different-output-sections.s │ ├── icf-i386.s │ ├── icf-keep-unique.s │ ├── icf-link-order.s │ ├── icf-many-sections.s │ ├── icf-merge-sec.s │ ├── icf-merge.s │ ├── icf-merge2.s │ ├── icf-merged-sections.s │ ├── icf-non-mergeable.s │ ├── icf-none.s │ ├── icf-relro.s │ ├── icf-safe.s │ ├── icf-symbol-type.s │ ├── icf1.s │ ├── icf10.s │ ├── icf11.test │ ├── icf12.s │ ├── icf13.s │ ├── icf14.s │ ├── icf15.s │ ├── icf16.s │ ├── icf17.s │ ├── icf2.s │ ├── icf3.s │ ├── icf4.s │ ├── icf5.s │ ├── icf6.s │ ├── icf7.s │ ├── icf8.s │ ├── icf9.s │ ├── ignore-plugin.test │ ├── 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-eh-frame.s │ ├── invalid-eh-frame2.s │ ├── invalid-eh-frame3.s │ ├── invalid-eh-frame4.s │ ├── invalid-eh-frame5.s │ ├── invalid-eh-frame6.s │ ├── invalid-eh-frame7.s │ ├── invalid-eh-frame8.s │ ├── invalid-eh-frame9.s │ ├── invalid-fde-rel.s │ ├── invalid-linkerscript.test │ ├── invalid-local-symbol-in-dso.s │ ├── invalid-relocations.test │ ├── invalid │ │ ├── bad-arm-attributes.s │ │ ├── bad-arm-attributes2.s │ │ ├── bad-reloc-target.test │ │ ├── broken-relaxation-x64.test │ │ ├── comdat-broken.test │ │ ├── common-symbol-alignment.test │ │ ├── data-encoding.test │ │ ├── dynamic-section-broken.test │ │ ├── eh-frame-hdr-no-out.s │ │ ├── ehframe-broken-relocation.test │ │ ├── executable.s │ │ ├── invalid-binding.test │ │ ├── invalid-debug-relocations.test │ │ ├── invalid-e_shnum.test │ │ ├── invalid-elf.test │ │ ├── invalid-file-class.test │ │ ├── invalid-relocation-aarch64.test │ │ ├── invalid-relocation-x64.test │ │ ├── invalid-soname.test │ │ ├── linkorder-invalid-sec.test │ │ ├── linkorder-invalid-sec2.test │ │ ├── merge-invalid-size.s │ │ ├── merge-writable.s │ │ ├── merge-zero-size.test │ │ ├── mips-invalid-options-descriptor.test │ │ ├── multiple-relocations-sections.test │ │ ├── non-terminated-string.test │ │ ├── reloc-section-reordered.test │ │ ├── section-alignment.test │ │ ├── section-alignment2.s │ │ ├── section-index.test │ │ ├── sht-group-wrong-section.test │ │ ├── sht-group.test │ │ ├── symbol-name.test │ │ ├── symtab-sh-info.s │ │ ├── symtab-symbols.test │ │ ├── tls-symbol.s │ │ ├── undefined-local-symbol-in-dso.test │ │ ├── verdef-no-symtab.test │ │ └── x86-64-tlsdesc-gd.s │ ├── just-symbols-cref.s │ ├── just-symbols.s │ ├── lazy-arch-conflict.s │ ├── libsearch.s │ ├── linkerscript │ │ ├── Inputs │ │ │ ├── addr.s │ │ │ ├── align.s │ │ │ ├── alignof.s │ │ │ ├── arm-thunk-many-passes.s │ │ │ ├── at2.s │ │ │ ├── at3.s │ │ │ ├── at6.s │ │ │ ├── at7.s │ │ │ ├── at8.s │ │ │ ├── comdat-gc.s │ │ │ ├── common-filespec1.s │ │ │ ├── common-filespec2.s │ │ │ ├── compress-debug-sections.s │ │ │ ├── copy-rel-symbol-value.s │ │ │ ├── data-commands.s │ │ │ ├── data-segment-relro.s │ │ │ ├── define.s │ │ │ ├── eh-frame-reloc-out-of-range.s │ │ │ ├── exclude-multiple1.s │ │ │ ├── exclude-multiple2.s │ │ │ ├── extend-pt-load.s │ │ │ ├── filename-spec.s │ │ │ ├── fill.s │ │ │ ├── include.s │ │ │ ├── insert-after.s │ │ │ ├── insert-after.script │ │ │ ├── keep.s │ │ │ ├── lazy-symbols.s │ │ │ ├── libsearch-dyn.s │ │ │ ├── libsearch-st.s │ │ │ ├── map-file2.s │ │ │ ├── merge-sections-reloc.s │ │ │ ├── notinclude.s │ │ │ ├── provide-shared.s │ │ │ ├── provide-shared2.s │ │ │ ├── sections-va-overflow.s │ │ │ ├── segment-start.script │ │ │ ├── shared.s │ │ │ ├── sort-nested.s │ │ │ ├── sort.s │ │ │ ├── symbol-reserved.script │ │ │ └── synthetic-symbols.s │ │ ├── absolute-expr.test │ │ ├── absolute.s │ │ ├── absolute2.s │ │ ├── addr-zero.test │ │ ├── addr.test │ │ ├── address-expr-symbols.s │ │ ├── align-empty.test │ │ ├── align-r.test │ │ ├── align-section-offset.test │ │ ├── align-section.test │ │ ├── align1.test │ │ ├── align2.test │ │ ├── align3.test │ │ ├── align4.test │ │ ├── align5.test │ │ ├── alignof.test │ │ ├── alternate-sections.s │ │ ├── arm-exidx-discard-all.s │ │ ├── arm-exidx-discard.s │ │ ├── arm-exidx-order.test │ │ ├── arm-exidx-phdrs.test │ │ ├── arm-exidx-sentinel-and-assignment.s │ │ ├── arm-lscript.test │ │ ├── assert.s │ │ ├── at-addr.s │ │ ├── at-self-reference.s │ │ ├── at.s │ │ ├── at2.test │ │ ├── at3.test │ │ ├── at4.s │ │ ├── at5.test │ │ ├── at6.test │ │ ├── at7.test │ │ ├── at8.test │ │ ├── broken-memory-declaration.s │ │ ├── bss-fill.test │ │ ├── comdat-gc.s │ │ ├── common-assign.s │ │ ├── common-exclude.s │ │ ├── common-filespec.test │ │ ├── common.s │ │ ├── compress-debug-sections-custom.s │ │ ├── compress-debug-sections.s │ │ ├── constructor.test │ │ ├── copy-rel-symbol-value-err.s │ │ ├── copy-rel-symbol-value.s │ │ ├── data-commands-gc.s │ │ ├── data-commands1.test │ │ ├── data-commands2.test │ │ ├── data-segment-relro.test │ │ ├── define.test │ │ ├── defsym.s │ │ ├── diag1.test │ │ ├── diag2.test │ │ ├── diag3.test │ │ ├── diag4.test │ │ ├── diag5.test │ │ ├── diag6.test │ │ ├── discard-gnu-hash.s │ │ ├── discard-interp.test │ │ ├── discard-phdr.s │ │ ├── discard-print-gc.s │ │ ├── discard-section-err.s │ │ ├── discard-section-metadata.s │ │ ├── discard-section.s │ │ ├── dot-is-not-abs.s │ │ ├── double-bss.test │ │ ├── dynamic-sym.s │ │ ├── dynamic.s │ │ ├── early-assign-symbol.s │ │ ├── edata-etext.s │ │ ├── eh-frame-emit-relocs.s │ │ ├── eh-frame-hdr.s │ │ ├── eh-frame-merge.s │ │ ├── eh-frame-reloc-out-of-range.test │ │ ├── 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-link-order.test │ │ ├── empty-load.s │ │ ├── empty-relaplt-dyntags.test │ │ ├── empty-section-size.test │ │ ├── empty-sections-expressions.s │ │ ├── empty-sections-expressions.test │ │ ├── empty-synthetic-removed-flags.s │ │ ├── empty-tls.test │ │ ├── entry.s │ │ ├── exclude-multiple.s │ │ ├── excludefile.s │ │ ├── exidx-crash.test │ │ ├── expr-invalid-sec.test │ │ ├── expr-sections.test │ │ ├── extend-pt-load1.test │ │ ├── extend-pt-load2.test │ │ ├── extend-pt-load3.test │ │ ├── filename-spec.s │ │ ├── fill-exec-sections.s │ │ ├── fill.test │ │ ├── got-write-offset.s │ │ ├── group.s │ │ ├── header-addr.test │ │ ├── header-phdr.test │ │ ├── header-phdr2.s │ │ ├── huge-temporary-file.s │ │ ├── i386-sections-max-va-overflow.s │ │ ├── icf-output-sections.s │ │ ├── icf.s │ │ ├── image-base.s │ │ ├── implicit-program-header.test │ │ ├── include-cycle.s │ │ ├── info-section-type.s │ │ ├── input-order.s │ │ ├── input-sec-dup.s │ │ ├── insert-after.test │ │ ├── insert-before.test │ │ ├── insert-broken.test │ │ ├── lazy-symbols.test │ │ ├── linker-script-in-search-path.s │ │ ├── linkerscript.s │ │ ├── lma-overflow.test │ │ ├── loadaddr.s │ │ ├── locationcountererr.test │ │ ├── locationcountererr2.s │ │ ├── map-file.test │ │ ├── map-file2.test │ │ ├── memory-at.test │ │ ├── memory-data-commands.test │ │ ├── memory-err.s │ │ ├── memory-gap-explicit-expr.test │ │ ├── memory-include.test │ │ ├── memory-loc-counter.test │ │ ├── memory-region-alignment.test │ │ ├── memory.s │ │ ├── memory2.s │ │ ├── memory3.s │ │ ├── memory4.test │ │ ├── memory5.test │ │ ├── merge-header-load.s │ │ ├── merge-nonalloc.s │ │ ├── merge-output-sections.s │ │ ├── merge-sections-reloc.s │ │ ├── merge-sections-syms.s │ │ ├── merge-sections.s │ │ ├── multi-sections-constraint.s │ │ ├── multiple-tbss.s │ │ ├── nmagic-alignment.test │ │ ├── no-filename-spec.s │ │ ├── no-pt-load.test │ │ ├── no-space.s │ │ ├── nobits-offset.s │ │ ├── noload.s │ │ ├── non-absolute.s │ │ ├── non-absolute2.test │ │ ├── non-alloc-segment.s │ │ ├── non-alloc.s │ │ ├── numbers.s │ │ ├── obj-symbol-value.s │ │ ├── openbsd-bootdata.test │ │ ├── openbsd-randomize.s │ │ ├── openbsd-wxneeded.test │ │ ├── operators.test │ │ ├── orphan-align.s │ │ ├── orphan-discard.s │ │ ├── orphan-end.s │ │ ├── orphan-first-cmd.test │ │ ├── orphan-live-only.s │ │ ├── orphan-phdrs.s │ │ ├── orphan-report.s │ │ ├── orphan.s │ │ ├── orphans.s │ │ ├── out-of-order-section-in-region.test │ │ ├── out-of-order.s │ │ ├── output-section-include.test │ │ ├── output-too-large-32bit.s │ │ ├── output-too-large.s │ │ ├── outputarch.test │ │ ├── outsections-addr.s │ │ ├── overlapping-sections.s │ │ ├── overlay-reject.test │ │ ├── overlay-reject2.test │ │ ├── overlay.test │ │ ├── page-size-align.test │ │ ├── page-size.s │ │ ├── parse-section-in-addr.test │ │ ├── phdr-check.s │ │ ├── phdrs-flags.s │ │ ├── phdrs.s │ │ ├── provide-empty-section.s │ │ ├── provide-shared.s │ │ ├── provide-shared2.s │ │ ├── pt-interp.test │ │ ├── pt_gnu_eh_frame.s │ │ ├── quoted-section-name.test │ │ ├── region-alias.s │ │ ├── relocatable-discard.s │ │ ├── repsection-symbol.s │ │ ├── repsection-va.s │ │ ├── rosegment.test │ │ ├── searchdir.s │ │ ├── section-align.s │ │ ├── section-include.test │ │ ├── section-metadata.s │ │ ├── section-metadata2.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-max-va-overflow.s │ │ ├── sections-padding.s │ │ ├── sections-sort.s │ │ ├── sections-va-overflow.test │ │ ├── sections.s │ │ ├── segment-headers.s │ │ ├── segment-none.s │ │ ├── segment-start.s │ │ ├── sizeof.s │ │ ├── sizeofheaders.s │ │ ├── sort-constructors.test │ │ ├── sort-init.s │ │ ├── sort-nested.s │ │ ├── sort-non-script.s │ │ ├── sort.s │ │ ├── sort2.s │ │ ├── start-end.test │ │ ├── subalign.s │ │ ├── symbol-alias-relocation.s │ │ ├── symbol-assign-many-passes.test │ │ ├── symbol-assign-many-passes2.test │ │ ├── symbol-assign-not-converge.test │ │ ├── symbol-assignexpr.s │ │ ├── symbol-conflict.s │ │ ├── symbol-location.s │ │ ├── symbol-memoryexpr.s │ │ ├── symbol-only-align.test │ │ ├── symbol-only-flags.test │ │ ├── symbol-only.test │ │ ├── symbol-ordering-file.s │ │ ├── symbol-ordering-file2.s │ │ ├── symbol-pie.s │ │ ├── symbol-reserved.s │ │ ├── symbolreferenced.s │ │ ├── symbols-non-alloc.test │ │ ├── symbols.s │ │ ├── synthetic-relsec-layout.s │ │ ├── synthetic-symbols1.test │ │ ├── synthetic-symbols2.test │ │ ├── synthetic-symbols3.test │ │ ├── synthetic-symbols4.test │ │ ├── target.s │ │ ├── tbss.s │ │ ├── thunk-gen-mips.s │ │ ├── ttext-script.s │ │ ├── undef.s │ │ ├── unused-synthetic.s │ │ ├── unused-synthetic2.test │ │ ├── va.s │ │ ├── version-linker-symbol.s │ │ ├── version-script.s │ │ ├── visibility.s │ │ ├── wildcards.s │ │ └── wildcards2.s │ ├── linkorder-forward-ref.test │ ├── lit.local.cfg │ ├── llvm33-rela-outside-group.s │ ├── local-dynamic.s │ ├── local-got-pie.s │ ├── local-got-shared.s │ ├── local-got.s │ ├── local-symbols-order.s │ ├── local-undefined-symbol.s │ ├── local.s │ ├── lto-plugin-ignore.s │ ├── lto │ │ ├── Inputs │ │ │ ├── absolute.s │ │ │ ├── archive-2.ll │ │ │ ├── archive-3.ll │ │ │ ├── archive.ll │ │ │ ├── asmundef.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 │ │ │ ├── i386-empty.ll │ │ │ ├── internalize-exportdyn.ll │ │ │ ├── internalize-undef.ll │ │ │ ├── irmover-error.ll │ │ │ ├── irmover-warning.ll │ │ │ ├── lazy-internal.ll │ │ │ ├── libcall-archive.ll │ │ │ ├── libcall-archive.s │ │ │ ├── linker-script-symbols-ipo.ll │ │ │ ├── linkonce-odr.ll │ │ │ ├── linkonce.ll │ │ │ ├── obj-path.ll │ │ │ ├── relocation-model-pic.ll │ │ │ ├── resolution.s │ │ │ ├── sample-profile.prof │ │ │ ├── save-temps.ll │ │ │ ├── shared.s │ │ │ ├── start-lib1.ll │ │ │ ├── start-lib2.ll │ │ │ ├── symbol-ordering-lto.ll │ │ │ ├── thin1.ll │ │ │ ├── thin2.ll │ │ │ ├── thinlto.ll │ │ │ ├── thinlto_empty.ll │ │ │ ├── tls-mixed.s │ │ │ ├── type-merge.ll │ │ │ ├── type-merge2.ll │ │ │ ├── undef-mixed.s │ │ │ ├── undef.ll │ │ │ ├── unnamed-addr-drop.ll │ │ │ ├── unnamed-addr-lib.s │ │ │ ├── visibility.s │ │ │ ├── weakodr-visibility.ll │ │ │ └── wrap-bar.ll │ │ ├── abs-resol.ll │ │ ├── amdgcn.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 │ │ ├── common4.ll │ │ ├── cpu-string.ll │ │ ├── ctors.ll │ │ ├── debugger-tune.ll │ │ ├── defsym.ll │ │ ├── deplibs.s │ │ ├── discard-value-names.ll │ │ ├── drop-debug-info.ll │ │ ├── drop-linkage.ll │ │ ├── duplicated-name.ll │ │ ├── duplicated.ll │ │ ├── dynamic-list.ll │ │ ├── dynsym.ll │ │ ├── emit-llvm.ll │ │ ├── inline-asm.ll │ │ ├── internalize-basic.ll │ │ ├── internalize-exportdyn.ll │ │ ├── internalize-llvmused.ll │ │ ├── internalize-undef.ll │ │ ├── internalize-version-script.ll │ │ ├── irmover-error.ll │ │ ├── irmover-warning.ll │ │ ├── keep-undefined.ll │ │ ├── lazy-internal.ll │ │ ├── libcall-archive.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 │ │ ├── mix-platforms2.ll │ │ ├── module-asm.ll │ │ ├── new-pass-manager.ll │ │ ├── obj-path.ll │ │ ├── opt-level.ll │ │ ├── opt-remarks.ll │ │ ├── parallel-internalize.ll │ │ ├── parallel.ll │ │ ├── pic.ll │ │ ├── ppc64le.ll │ │ ├── r600.ll │ │ ├── relax-relocs.ll │ │ ├── relocatable.ll │ │ ├── relocation-model.ll │ │ ├── resolution.ll │ │ ├── riscv32.ll │ │ ├── riscv64.ll │ │ ├── sample-profile.ll │ │ ├── save-temps.ll │ │ ├── section-name.ll │ │ ├── setting-dso-local.ll │ │ ├── shlib-undefined.ll │ │ ├── start-lib.ll │ │ ├── symbol-ordering-data.s │ │ ├── symbol-ordering-function.s │ │ ├── thin-archivecollision.ll │ │ ├── thinlto-cant-write-index.ll │ │ ├── thinlto-debug-fission.ll │ │ ├── thinlto-emit-imports.ll │ │ ├── thinlto-index-file.ll │ │ ├── thinlto-index-only.ll │ │ ├── thinlto-no-index.ll │ │ ├── thinlto-obj-path.ll │ │ ├── thinlto-object-suffix-replace.ll │ │ ├── thinlto-prefix-replace.ll │ │ ├── thinlto.ll │ │ ├── timepasses.ll │ │ ├── tls-mixed.ll │ │ ├── tls-preserve.ll │ │ ├── type-merge.ll │ │ ├── type-merge2.ll │ │ ├── undef-mixed.ll │ │ ├── undef-weak-lazy.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 │ │ ├── version-script2.ll │ │ ├── visibility.ll │ │ ├── weak.ll │ │ ├── weakodr-visibility.ll │ │ ├── wrap-1.ll │ │ └── wrap-2.ll │ ├── magic-page-combo-warn.s │ ├── many-alloc-sections.s │ ├── many-sections.s │ ├── map-file-i686.s │ ├── map-file.s │ ├── map-gc-sections.s │ ├── merge-align.s │ ├── merge-align2.s │ ├── merge-entsize.s │ ├── merge-entsize2.s │ ├── merge-gc-piece.s │ ├── merge-gc-piece2.s │ ├── merge-reloc.s │ ├── merge-shared-str.s │ ├── merge-shared.s │ ├── merge-string-align.s │ ├── merge-string-align2.s │ ├── merge-string-empty.s │ ├── merge-string-error.s │ ├── merge-string-no-null.s │ ├── merge-string.s │ ├── merge-sym.s │ ├── merge-to-non-alloc.s │ ├── merge.s │ ├── mergeable-errors.s │ ├── mips-26-mask.s │ ├── mips-26.s │ ├── mips-32.s │ ├── mips-64-disp.s │ ├── mips-64-got-overflow.s │ ├── mips-64-got.s │ ├── mips-64-gprel-so.s │ ├── mips-64-rels.s │ ├── mips-64.s │ ├── mips-abs-got.s │ ├── mips-align-err.s │ ├── mips-call-hilo.s │ ├── mips-call16.s │ ├── mips-dynamic.s │ ├── mips-dynsym-sort.s │ ├── mips-elf-abi.s │ ├── mips-elf-flags-binary.s │ ├── mips-elf-flags-err.s │ ├── mips-elf-flags-err.test │ ├── mips-elf-flags.s │ ├── mips-fp-flags-err.test │ ├── 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.s │ ├── mips-lo16-not-relative.s │ ├── mips-merge-abiflags.s │ ├── mips-mgot.s │ ├── mips-micro-bad-cross-calls.s │ ├── mips-micro-cross-calls.s │ ├── mips-micro-got.s │ ├── mips-micro-jal.s │ ├── mips-micro-plt.s │ ├── mips-micro-relocs.s │ ├── mips-micro-thunks.s │ ├── mips-micror6-relocs.s │ ├── mips-n32-emul.s │ ├── mips-n32-rels.s │ ├── mips-no-objects.s │ ├── mips-non-zero-gp0.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-n32.s │ ├── mips-plt-n64.s │ ├── mips-plt-r6.s │ ├── mips-reginfo.s │ ├── mips-relocatable.s │ ├── mips-sto-pic-flag.s │ ├── mips-sto-plt.s │ ├── mips-tls-64-pic-local-variable.s │ ├── mips-tls-64.s │ ├── mips-tls-hilo.s │ ├── mips-tls-static-64.s │ ├── mips-tls-static.s │ ├── mips-tls.s │ ├── mips-traps.s │ ├── mips-xgot-order.s │ ├── mips64-eh-abs-reloc.s │ ├── msp430.s │ ├── multiple-cu.s │ ├── new-dtags.test │ ├── nmagic.s │ ├── no-augmentation.s │ ├── no-discard-this_module.s │ ├── no-inhibit-exec.s │ ├── no-line-parser-errors-if-empty-section.s │ ├── no-line-parser-errors-if-no-section.s │ ├── no-merge.s │ ├── no-obj.s │ ├── no-plt-shared.s │ ├── no-soname.s │ ├── no-symtab.s │ ├── no-undefined.s │ ├── nobits-offset.s │ ├── non-abs-reloc.s │ ├── non-alloc-link-order-gc.s │ ├── noplt-pie.s │ ├── note-alignment.s │ ├── note-contiguous.s │ ├── note-first-page.s │ ├── note-loadaddr.s │ ├── note-multiple.s │ ├── note-noalloc.s │ ├── note-noalloc2.s │ ├── note.s │ ├── oformat-binary-ttext.s │ ├── oformat-binary.s │ ├── openbsd-randomize.s │ ├── openbsd-wxneeded.s │ ├── output-section.s │ ├── pack-dyn-relocs-arm2.s │ ├── pack-dyn-relocs-loop.s │ ├── pack-dyn-relocs-relr-loop.s │ ├── pack-dyn-relocs-tls-aarch64.s │ ├── pack-dyn-relocs-tls-x86-64.s │ ├── pack-dyn-relocs.s │ ├── partition-dynamic-linker.s │ ├── partition-errors.s │ ├── partition-exidx.s │ ├── partition-icf.s │ ├── partition-move-to-main-startstop.s │ ├── partition-move-to-main.s │ ├── partition-notes.s │ ├── partition-pack-dyn-relocs.s │ ├── partition-synthetic-sections.s │ ├── partition-thunk-reuse.s │ ├── partitions.s │ ├── phdr-align.s │ ├── pie.s │ ├── ppc32-abs-pic.s │ ├── ppc32-call-stub-nopic.s │ ├── ppc32-call-stub-pic.s │ ├── ppc32-gnu-ifunc-nonpreemptable.s │ ├── ppc32-gnu-ifunc.s │ ├── ppc32-local-branch.s │ ├── ppc32-reloc-addr.s │ ├── ppc32-reloc-got.s │ ├── ppc32-reloc-rel.s │ ├── ppc32-tls-gd.s │ ├── ppc32-tls-ie.s │ ├── ppc32-tls-ld.s │ ├── ppc32-tls-le.s │ ├── ppc32-weak-undef-call.s │ ├── ppc64-abi-version.s │ ├── ppc64-abs32-dyn.s │ ├── ppc64-abs64-dyn.s │ ├── ppc64-bsymbolic-toc-restore.s │ ├── ppc64-call-reach.s │ ├── ppc64-dq.s │ ├── ppc64-dtprel.s │ ├── ppc64-entry-point.s │ ├── ppc64-error-missaligned-dq.s │ ├── ppc64-error-missaligned-ds.s │ ├── ppc64-error-toc-restore.s │ ├── ppc64-error-toc-tail-call.s │ ├── ppc64-func-entry-points.s │ ├── ppc64-got-off.s │ ├── ppc64-ifunc.s │ ├── ppc64-ld-got-dtprel.s │ ├── ppc64-local-dynamic.s │ ├── ppc64-local-entry.s │ ├── ppc64-local-exec-tls.s │ ├── ppc64-long-branch-init.s │ ├── ppc64-long-branch-localentry-offset.s │ ├── ppc64-long-branch.s │ ├── ppc64-plt-stub.s │ ├── ppc64-rel-calls.s │ ├── ppc64-rel-so-local-calls.s │ ├── ppc64-reloc-addr.s │ ├── ppc64-reloc-rel.s │ ├── ppc64-relocs.s │ ├── ppc64-shared-long_branch.s │ ├── ppc64-sort-small-cm-relocs.s │ ├── ppc64-split-stack-adjust-fail.s │ ├── ppc64-split-stack-adjust-overflow.s │ ├── ppc64-split-stack-adjust-size-success.s │ ├── ppc64-split-stack-prologue-adjust-success.s │ ├── ppc64-tls-gd.s │ ├── ppc64-tls-ie.s │ ├── ppc64-tls-ld-le.s │ ├── ppc64-tls-ld-preemptable.s │ ├── ppc64-tls-vaddr-align.s │ ├── ppc64-toc-addis-nop-lqsq.s │ ├── ppc64-toc-addis-nop.s │ ├── ppc64-toc-rel.s │ ├── ppc64-toc-relax-constants.s │ ├── ppc64-toc-relax-ifunc.s │ ├── ppc64-toc-relax-jumptable.s │ ├── ppc64-toc-relax.s │ ├── ppc64-toc-restore-recursive-call.s │ ├── ppc64-toc-restore.s │ ├── ppc64-tocopt-option.s │ ├── ppc64-weak-undef-call-shared.s │ ├── ppc64-weak-undef-call.s │ ├── pr34660.s │ ├── pr34872.s │ ├── pr36475.s │ ├── pr37735.s │ ├── pre_init_fini_array.s │ ├── pre_init_fini_array_missing.s │ ├── print-icf.s │ ├── progname.s │ ├── program-header-layout.s │ ├── protected-data-access.s │ ├── protected-function-access.s │ ├── protected-shared.s │ ├── push-state.s │ ├── rel-addend-with-rela-input.s │ ├── rel-offset.s │ ├── relative-dynamic-reloc-pie.s │ ├── relative-dynamic-reloc.s │ ├── relocatable-bss.s │ ├── relocatable-build-id.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-ehframe.s │ ├── relocatable-empty-archive.s │ ├── relocatable-linkorder.s │ ├── relocatable-local-sym.s │ ├── relocatable-many-sections.s │ ├── relocatable-non-alloc.s │ ├── relocatable-rel-iplt.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-before-merge-start.s │ ├── 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-group.test │ ├── relocation-i686.s │ ├── relocation-in-merge.s │ ├── relocation-nocopy.s │ ├── relocation-non-alloc.s │ ├── relocation-none-aarch64.s │ ├── relocation-none-arm.s │ ├── relocation-none-i386.s │ ├── relocation-none-x86-64.s │ ├── relocation-past-merge-end.s │ ├── relocation-relative-absolute.s │ ├── relocation-relative-synthetic.s │ ├── relocation-relative-weak.s │ ├── relocation-size-err.s │ ├── relocation-undefined-weak.s │ ├── relocation.s │ ├── relro-bss.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-shared.s │ ├── resolution.s │ ├── retain-symbols-file.s │ ├── retain-und.s │ ├── riscv-branch.s │ ├── riscv-call.s │ ├── riscv-gp-no-sdata.s │ ├── riscv-gp.s │ ├── riscv-hi20-lo12.s │ ├── riscv-jal.s │ ├── riscv-pcrel-hilo-error.s │ ├── riscv-pcrel-hilo.s │ ├── riscv-plt.s │ ├── riscv-reloc-64-pic.s │ ├── riscv-reloc-add.s │ ├── riscv-reloc-copy.s │ ├── riscv-reloc-got.s │ ├── riscv-tls-gd.s │ ├── riscv-tls-ie.s │ ├── riscv-tls-ld.s │ ├── riscv-tls-le.s │ ├── riscv32-reloc-32-pic.s │ ├── riscv64-reloc-64-pic.s │ ├── rodynamic.s │ ├── section-align-0.test │ ├── section-layout.s │ ├── section-metadata-err.s │ ├── section-metadata-err2.s │ ├── section-metadata-err3.s │ ├── section-name.s │ ├── section-symbol.s │ ├── section-symbols.test │ ├── sectionstart-noallochdr.s │ ├── sectionstart.s │ ├── segments.s │ ├── separate-segments.s │ ├── shared-lazy.s │ ├── shared-ppc64.s │ ├── shared.s │ ├── shf-info-link.test │ ├── shlib-undefined-archive.s │ ├── shlib-undefined-local.s │ ├── shlib-undefined-shared.s │ ├── sht-group-empty.test │ ├── sht-group-gold-r.test │ ├── silent-ignore.test │ ├── soname.s │ ├── soname2.s │ ├── sort-norosegment.s │ ├── start-lib-comdat.s │ ├── start-lib.s │ ├── startstop-gccollect.s │ ├── startstop-shared.s │ ├── startstop-shared2.s │ ├── startstop.s │ ├── static-error.s │ ├── static-with-export-dynamic.s │ ├── stdout.s │ ├── string-table.s │ ├── strip-all.s │ ├── strip-debug.s │ ├── symbol-ordering-file-cgprofile-conflicts.s │ ├── symbol-ordering-file-icf.s │ ├── symbol-ordering-file-warnings.s │ ├── symbol-ordering-file.s │ ├── symbol-override.s │ ├── symbols.s │ ├── symver-archive.s │ ├── synthetic-got.s │ ├── sysroot.s │ ├── sysv-hash-no-rosegment.s │ ├── tail-merge-string-align.s │ ├── text-section-prefix.s │ ├── textrel.s │ ├── tls-archive.s │ ├── tls-got-entry.s │ ├── tls-in-archive.s │ ├── tls-mismatch.s │ ├── tls-offset.s │ ├── tls-opt.s │ ├── tls-relocatable.s │ ├── tls-two-relocs.s │ ├── tls-weak-undef.s │ ├── tls.s │ ├── trace-ar.s │ ├── trace-symbols.s │ ├── trace.s │ ├── ttext-tdata-tbss.s │ ├── undef-broken-debug.test │ ├── undef-multi.s │ ├── undef-shared.s │ ├── undef-shared2.s │ ├── undef-spell-corrector.s │ ├── undef-start.s │ ├── undef-version-script.s │ ├── undef-with-plt-addr-i686.s │ ├── undef-with-plt-addr.s │ ├── undef.s │ ├── undefined-glob.s │ ├── undefined-opt.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-exclude-libs.s │ ├── version-script-complex-wildcards.s │ ├── version-script-err.s │ ├── version-script-extern-exact.s │ ├── version-script-extern-undefined.s │ ├── version-script-extern-wildcards-anon.s │ ├── version-script-extern-wildcards.s │ ├── version-script-extern.s │ ├── version-script-extern2.s │ ├── version-script-glob.s │ ├── version-script-hide-so-symbol.s │ ├── version-script-in-search-path.s │ ├── version-script-local-preemptible.s │ ├── version-script-locals-extern.s │ ├── version-script-locals.s │ ├── version-script-noundef.s │ ├── version-script-reassign-glob.s │ ├── version-script-reassign.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-symbol-undef.s │ ├── version-use.s │ ├── visibility.s │ ├── vs-diagnostics-duplicate-split.s │ ├── vs-diagnostics-duplicate.s │ ├── vs-diagnostics-dynamic-relocation.s │ ├── vs-diagnostics-undefined-hidden.s │ ├── vs-diagnostics-undefined-symbol-1.s │ ├── vs-diagnostics-undefined-symbol-2.s │ ├── vs-diagnostics-undefined-symbol-3.s │ ├── vs-diagnostics-versionscript.s │ ├── warn-backrefs.s │ ├── warn-common.s │ ├── warn-unresolved-symbols-hidden.s │ ├── warn-unresolved-symbols.s │ ├── weak-and-strong-undef.s │ ├── weak-entry.s │ ├── weak-shared-gc.s │ ├── weak-undef-got-pie.s │ ├── weak-undef-hidden.s │ ├── weak-undef-lazy.s │ ├── weak-undef-lib.s │ ├── weak-undef-no-shared-libs.s │ ├── weak-undef-rw.s │ ├── weak-undef-shared.s │ ├── weak-undef-shared2.s │ ├── weak-undef.s │ ├── whole-archive-name.s │ ├── whole-archive.s │ ├── wrap-dynamic-undef.s │ ├── wrap-entry.s │ ├── wrap-no-real.s │ ├── wrap-plt.s │ ├── wrap-with-archive.s │ ├── wrap.s │ ├── writable-sec-plt-reloc.s │ ├── x86-64-cet.s │ ├── x86-64-combined-dynrel.s │ ├── x86-64-dyn-rel-error.s │ ├── x86-64-dyn-rel-error2.s │ ├── x86-64-dyn-rel-error3.s │ ├── x86-64-dyn-rel-error5.s │ ├── x86-64-got-plt-header.s │ ├── x86-64-gotpc-relax-nopic.s │ ├── x86-64-gotpc-relax-und-dso.s │ ├── x86-64-gotpc-relax.s │ ├── x86-64-pcrel.s │ ├── x86-64-plt-high-addr.s │ ├── x86-64-plt.s │ ├── x86-64-rela.s │ ├── x86-64-relax-got-abs.s │ ├── x86-64-relax-offset.s │ ├── x86-64-reloc-32-fpic.s │ ├── x86-64-reloc-8-16.s │ ├── x86-64-reloc-debug-overflow.s │ ├── x86-64-reloc-error-reporting.s │ ├── x86-64-reloc-error.s │ ├── x86-64-reloc-error2.s │ ├── x86-64-reloc-gotoff64.s │ ├── x86-64-reloc-gotpc64.s │ ├── x86-64-reloc-pc32-fpic.s │ ├── x86-64-reloc-range-debug-loc.s │ ├── x86-64-reloc-range.s │ ├── x86-64-reloc-size-shared.s │ ├── x86-64-reloc-size.s │ ├── x86-64-reloc-tpoff32-error.s │ ├── x86-64-reloc-tpoff32-fpic.s │ ├── x86-64-retpoline-linkerscript.s │ ├── x86-64-retpoline-znow-linkerscript.s │ ├── x86-64-retpoline-znow-static-iplt.s │ ├── x86-64-retpoline-znow.s │ ├── x86-64-retpoline.s │ ├── x86-64-split-stack-prologue-adjust-fail.s │ ├── x86-64-split-stack-prologue-adjust-shared.s │ ├── x86-64-split-stack-prologue-adjust-silent.s │ ├── x86-64-split-stack-prologue-adjust-success.s │ ├── x86-64-static-tls-model.s │ ├── x86-64-tls-dynamic.s │ ├── x86-64-tls-gd-got.s │ ├── x86-64-tls-gd-local.s │ ├── x86-64-tls-gdie.s │ ├── x86-64-tls-ie-local.s │ ├── x86-64-tls-ie-opt-local.s │ ├── x86-64-tls-ie.s │ ├── x86-64-tls-ld-local.s │ ├── x86-64-tls-ld-preemptable.s │ ├── x86-64-tls-le-align.s │ ├── x86-64-tls-le-undef.s │ ├── x86-64-tls-opt-noplt.s │ ├── x86-64-tls-pie.s │ ├── x86-64-tlsdesc-gd.s │ ├── x86-64-tlsdesc-ld.s │ ├── x86-property-relocatable.s │ ├── zdefs.s │ ├── znotext-copy-relocation.s │ ├── znotext-plt-relocations-protected.s │ ├── znotext-plt-relocations.s │ ├── znotext-weak-undef.s │ ├── zstack-size.s │ └── ztext.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-lto_library.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 │ ├── empty-sections.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 │ ├── load-commands-size.yaml │ ├── 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 │ ├── archive3.ll │ ├── call-indirect.ll │ ├── call-ret32.ll │ ├── comdat1.ll │ ├── comdat2.ll │ ├── custom.ll │ ├── debuginfo1.ll │ ├── debuginfo2.ll │ ├── disallow-feature-foo.yaml │ ├── event-section1.ll │ ├── event-section2.ll │ ├── explicit-section.ll │ ├── global-ctor-dtor.ll │ ├── globals.yaml │ ├── hello.ll │ ├── hidden.ll │ ├── import-attributes.ll │ ├── locals-duplicate1.ll │ ├── locals-duplicate2.ll │ ├── many-funcs.ll │ ├── no-feature-foo.yaml │ ├── optional-symbol.ll │ ├── require-feature-foo.yaml │ ├── ret32.ll │ ├── ret64.ll │ ├── start.ll │ ├── strong-symbol.ll │ ├── undefined-globals.yaml │ ├── use-feature-foo.yaml │ ├── weak-alias.ll │ ├── weak-symbol1.ll │ └── weak-symbol2.ll │ ├── alias.ll │ ├── archive-export.ll │ ├── archive-no-index.ll │ ├── archive-weak-undefined.ll │ ├── archive.ll │ ├── bss-only.ll │ ├── call-indirect.ll │ ├── comdats.ll │ ├── compress-relocs.ll │ ├── conflict.test │ ├── corrupted.wasm.test │ ├── custom-section-name.ll │ ├── custom-sections.ll │ ├── cxx-mangling.ll │ ├── data-layout.ll │ ├── data-segment-merging.ll │ ├── data-segments.ll │ ├── debug-removed-fn.ll │ ├── debuginfo-relocs.s │ ├── debuginfo.test │ ├── demangle.ll │ ├── driver.ll │ ├── emit-relocs-fpic.s │ ├── emit-relocs.ll │ ├── entry-signature.ll │ ├── entry.ll │ ├── event-section.ll │ ├── export-all.ll │ ├── export-optional-lazy.ll │ ├── export-table.test │ ├── export.ll │ ├── fatal-warnings.ll │ ├── function-imports-first.ll │ ├── function-imports.ll │ ├── function-index.test │ ├── gc-imports.ll │ ├── gc-sections.ll │ ├── global-base.test │ ├── growable-table.test │ ├── import-attribute-mismatch.ll │ ├── import-memory.test │ ├── import-module.ll │ ├── import-names.ll │ ├── import-table.test │ ├── init-fini-gc.ll │ ├── init-fini.ll │ ├── invalid-stack-size.test │ ├── large-memory.test │ ├── lit.local.cfg │ ├── load-undefined.test │ ├── local-symbols.ll │ ├── locals-duplicate.test │ ├── lto │ ├── Inputs │ │ ├── archive.ll │ │ ├── cache.ll │ │ ├── save-temps.ll │ │ ├── thinlto.ll │ │ └── used.ll │ ├── archive.ll │ ├── atomics.ll │ ├── cache.ll │ ├── comdat.ll │ ├── diagnostics.ll │ ├── export.ll │ ├── import-attributes.ll │ ├── incompatible.ll │ ├── internalize-basic.ll │ ├── lto-start.ll │ ├── opt-level.ll │ ├── parallel.ll │ ├── relocatable-undefined.ll │ ├── relocatable.ll │ ├── save-temps.ll │ ├── signature-mismatch.ll │ ├── thinlto.ll │ ├── undef.ll │ ├── used.ll │ ├── verify-invalid.ll │ ├── weak-undefined.ll │ └── weak.ll │ ├── many-functions.ll │ ├── no-tls.test │ ├── optional-symbol.ll │ ├── pic-static.ll │ ├── pie.ll │ ├── reloc-addend.ll │ ├── relocatable.ll │ ├── reproduce.ll │ ├── responsefile.test │ ├── section-symbol-relocs.yaml │ ├── shared-export-dynamic.ll │ ├── shared-memory-no-atomics.yaml │ ├── shared-memory.yaml │ ├── shared-needed.ll │ ├── shared.ll │ ├── signature-mismatch-export.ll │ ├── signature-mismatch-unknown.ll │ ├── signature-mismatch-weak.ll │ ├── signature-mismatch.ll │ ├── stack-first.test │ ├── stack-pointer.ll │ ├── startstop.ll │ ├── strip-all.test │ ├── strip-debug.test │ ├── symbol-type-mismatch.ll │ ├── target-feature-disallowed.yaml │ ├── target-feature-none.yaml │ ├── target-feature-required.yaml │ ├── target-feature-used.yaml │ ├── tls-align.ll │ ├── tls.ll │ ├── trace-symbol.ll │ ├── trace.test │ ├── undefined-data.ll │ ├── undefined-entry.test │ ├── undefined-weak-call.ll │ ├── undefined.ll │ ├── version.ll │ ├── visibility-hidden.ll │ ├── weak-alias-overide.ll │ ├── weak-alias.ll │ ├── weak-symbols.ll │ ├── weak-undefined.ll │ ├── whole-archive.test │ └── wrap.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 ├── InputChunks.cpp ├── InputChunks.h ├── InputEvent.h ├── InputFiles.cpp ├── InputFiles.h ├── InputGlobal.h ├── LTO.cpp ├── LTO.h ├── MarkLive.cpp ├── MarkLive.h ├── Options.td ├── OutputSections.cpp ├── OutputSections.h ├── OutputSegment.h ├── Relocations.cpp ├── Relocations.h ├── SymbolTable.cpp ├── SymbolTable.h ├── Symbols.cpp ├── Symbols.h ├── SyntheticSections.cpp ├── SyntheticSections.h ├── Writer.cpp ├── Writer.h ├── WriterUtils.cpp └── WriterUtils.h /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/.arcconfig -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OWNERS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/CODE_OWNERS.TXT -------------------------------------------------------------------------------- /COFF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/CMakeLists.txt -------------------------------------------------------------------------------- /COFF/Chunks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Chunks.cpp -------------------------------------------------------------------------------- /COFF/Chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Chunks.h -------------------------------------------------------------------------------- /COFF/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Config.h -------------------------------------------------------------------------------- /COFF/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/DLL.cpp -------------------------------------------------------------------------------- /COFF/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/DLL.h -------------------------------------------------------------------------------- /COFF/DebugTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/DebugTypes.cpp -------------------------------------------------------------------------------- /COFF/DebugTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/DebugTypes.h -------------------------------------------------------------------------------- /COFF/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Driver.cpp -------------------------------------------------------------------------------- /COFF/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Driver.h -------------------------------------------------------------------------------- /COFF/DriverUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/DriverUtils.cpp -------------------------------------------------------------------------------- /COFF/ICF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/ICF.cpp -------------------------------------------------------------------------------- /COFF/ICF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/ICF.h -------------------------------------------------------------------------------- /COFF/InputFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/InputFiles.cpp -------------------------------------------------------------------------------- /COFF/InputFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/InputFiles.h -------------------------------------------------------------------------------- /COFF/LTO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/LTO.cpp -------------------------------------------------------------------------------- /COFF/LTO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/LTO.h -------------------------------------------------------------------------------- /COFF/MapFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/MapFile.cpp -------------------------------------------------------------------------------- /COFF/MapFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/MapFile.h -------------------------------------------------------------------------------- /COFF/MarkLive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/MarkLive.cpp -------------------------------------------------------------------------------- /COFF/MarkLive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/MarkLive.h -------------------------------------------------------------------------------- /COFF/MinGW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/MinGW.cpp -------------------------------------------------------------------------------- /COFF/MinGW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/MinGW.h -------------------------------------------------------------------------------- /COFF/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Options.td -------------------------------------------------------------------------------- /COFF/PDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/PDB.cpp -------------------------------------------------------------------------------- /COFF/PDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/PDB.h -------------------------------------------------------------------------------- /COFF/README.md: -------------------------------------------------------------------------------- 1 | See docs/NewLLD.rst 2 | -------------------------------------------------------------------------------- /COFF/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/SymbolTable.cpp -------------------------------------------------------------------------------- /COFF/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/SymbolTable.h -------------------------------------------------------------------------------- /COFF/Symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Symbols.cpp -------------------------------------------------------------------------------- /COFF/Symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Symbols.h -------------------------------------------------------------------------------- /COFF/TypeMerger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/TypeMerger.h -------------------------------------------------------------------------------- /COFF/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Writer.cpp -------------------------------------------------------------------------------- /COFF/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/COFF/Writer.h -------------------------------------------------------------------------------- /Common/Args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/Args.cpp -------------------------------------------------------------------------------- /Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/CMakeLists.txt -------------------------------------------------------------------------------- /Common/DWARF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/DWARF.cpp -------------------------------------------------------------------------------- /Common/ErrorHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/ErrorHandler.cpp -------------------------------------------------------------------------------- /Common/Filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/Filesystem.cpp -------------------------------------------------------------------------------- /Common/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/Memory.cpp -------------------------------------------------------------------------------- /Common/Reproduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/Reproduce.cpp -------------------------------------------------------------------------------- /Common/Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/Strings.cpp -------------------------------------------------------------------------------- /Common/Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/Threads.cpp -------------------------------------------------------------------------------- /Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/Timer.cpp -------------------------------------------------------------------------------- /Common/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/Common/Version.cpp -------------------------------------------------------------------------------- /ELF/AArch64ErrataFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/AArch64ErrataFix.cpp -------------------------------------------------------------------------------- /ELF/AArch64ErrataFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/AArch64ErrataFix.h -------------------------------------------------------------------------------- /ELF/ARMErrataFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/ARMErrataFix.cpp -------------------------------------------------------------------------------- /ELF/ARMErrataFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/ARMErrataFix.h -------------------------------------------------------------------------------- /ELF/Arch/AArch64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/AArch64.cpp -------------------------------------------------------------------------------- /ELF/Arch/AMDGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/AMDGPU.cpp -------------------------------------------------------------------------------- /ELF/Arch/ARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/ARM.cpp -------------------------------------------------------------------------------- /ELF/Arch/AVR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/AVR.cpp -------------------------------------------------------------------------------- /ELF/Arch/Hexagon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/Hexagon.cpp -------------------------------------------------------------------------------- /ELF/Arch/MSP430.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/MSP430.cpp -------------------------------------------------------------------------------- /ELF/Arch/Mips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/Mips.cpp -------------------------------------------------------------------------------- /ELF/Arch/MipsArchTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/MipsArchTree.cpp -------------------------------------------------------------------------------- /ELF/Arch/PPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/PPC.cpp -------------------------------------------------------------------------------- /ELF/Arch/PPC64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/PPC64.cpp -------------------------------------------------------------------------------- /ELF/Arch/RISCV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/RISCV.cpp -------------------------------------------------------------------------------- /ELF/Arch/SPARCV9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/SPARCV9.cpp -------------------------------------------------------------------------------- /ELF/Arch/X86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/X86.cpp -------------------------------------------------------------------------------- /ELF/Arch/X86_64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Arch/X86_64.cpp -------------------------------------------------------------------------------- /ELF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/CMakeLists.txt -------------------------------------------------------------------------------- /ELF/CallGraphSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/CallGraphSort.cpp -------------------------------------------------------------------------------- /ELF/CallGraphSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/CallGraphSort.h -------------------------------------------------------------------------------- /ELF/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Config.h -------------------------------------------------------------------------------- /ELF/DWARF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/DWARF.cpp -------------------------------------------------------------------------------- /ELF/DWARF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/DWARF.h -------------------------------------------------------------------------------- /ELF/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Driver.cpp -------------------------------------------------------------------------------- /ELF/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Driver.h -------------------------------------------------------------------------------- /ELF/DriverUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/DriverUtils.cpp -------------------------------------------------------------------------------- /ELF/EhFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/EhFrame.cpp -------------------------------------------------------------------------------- /ELF/EhFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/EhFrame.h -------------------------------------------------------------------------------- /ELF/ICF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/ICF.cpp -------------------------------------------------------------------------------- /ELF/ICF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/ICF.h -------------------------------------------------------------------------------- /ELF/InputFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/InputFiles.cpp -------------------------------------------------------------------------------- /ELF/InputFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/InputFiles.h -------------------------------------------------------------------------------- /ELF/InputSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/InputSection.cpp -------------------------------------------------------------------------------- /ELF/InputSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/InputSection.h -------------------------------------------------------------------------------- /ELF/LTO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/LTO.cpp -------------------------------------------------------------------------------- /ELF/LTO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/LTO.h -------------------------------------------------------------------------------- /ELF/LinkerScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/LinkerScript.cpp -------------------------------------------------------------------------------- /ELF/LinkerScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/LinkerScript.h -------------------------------------------------------------------------------- /ELF/MapFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/MapFile.cpp -------------------------------------------------------------------------------- /ELF/MapFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/MapFile.h -------------------------------------------------------------------------------- /ELF/MarkLive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/MarkLive.cpp -------------------------------------------------------------------------------- /ELF/MarkLive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/MarkLive.h -------------------------------------------------------------------------------- /ELF/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Options.td -------------------------------------------------------------------------------- /ELF/OutputSections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/OutputSections.cpp -------------------------------------------------------------------------------- /ELF/OutputSections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/OutputSections.h -------------------------------------------------------------------------------- /ELF/README.md: -------------------------------------------------------------------------------- 1 | See docs/NewLLD.rst 2 | -------------------------------------------------------------------------------- /ELF/Relocations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Relocations.cpp -------------------------------------------------------------------------------- /ELF/Relocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Relocations.h -------------------------------------------------------------------------------- /ELF/ScriptLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/ScriptLexer.cpp -------------------------------------------------------------------------------- /ELF/ScriptLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/ScriptLexer.h -------------------------------------------------------------------------------- /ELF/ScriptParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/ScriptParser.cpp -------------------------------------------------------------------------------- /ELF/ScriptParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/ScriptParser.h -------------------------------------------------------------------------------- /ELF/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/SymbolTable.cpp -------------------------------------------------------------------------------- /ELF/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/SymbolTable.h -------------------------------------------------------------------------------- /ELF/Symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Symbols.cpp -------------------------------------------------------------------------------- /ELF/Symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Symbols.h -------------------------------------------------------------------------------- /ELF/SyntheticSections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/SyntheticSections.cpp -------------------------------------------------------------------------------- /ELF/SyntheticSections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/SyntheticSections.h -------------------------------------------------------------------------------- /ELF/Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Target.cpp -------------------------------------------------------------------------------- /ELF/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Target.h -------------------------------------------------------------------------------- /ELF/Thunks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Thunks.cpp -------------------------------------------------------------------------------- /ELF/Thunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Thunks.h -------------------------------------------------------------------------------- /ELF/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Writer.cpp -------------------------------------------------------------------------------- /ELF/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/ELF/Writer.h -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /MinGW/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/MinGW/CMakeLists.txt -------------------------------------------------------------------------------- /MinGW/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/MinGW/Driver.cpp -------------------------------------------------------------------------------- /MinGW/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/MinGW/Options.td -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/AddLLD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/cmake/modules/AddLLD.cmake -------------------------------------------------------------------------------- /docs/AtomLLD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/AtomLLD.rst -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/Driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/Driver.rst -------------------------------------------------------------------------------- /docs/NewLLD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/NewLLD.rst -------------------------------------------------------------------------------- /docs/Partitions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/Partitions.rst -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/Readers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/Readers.rst -------------------------------------------------------------------------------- /docs/ReleaseNotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/ReleaseNotes.rst -------------------------------------------------------------------------------- /docs/WebAssembly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/WebAssembly.rst -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/design.rst -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/hello.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/ld.lld.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/ld.lld.1 -------------------------------------------------------------------------------- /docs/llvm-theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/llvm-theme/theme.conf -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/open_projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/open_projects.rst -------------------------------------------------------------------------------- /docs/partitions.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/partitions.dot -------------------------------------------------------------------------------- /docs/partitions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/partitions.svg -------------------------------------------------------------------------------- /docs/sphinx_intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/sphinx_intro.rst -------------------------------------------------------------------------------- /docs/windows_support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/docs/windows_support.rst -------------------------------------------------------------------------------- /include/lld/Common/Args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Common/Args.h -------------------------------------------------------------------------------- /include/lld/Common/DWARF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Common/DWARF.h -------------------------------------------------------------------------------- /include/lld/Common/LLVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Common/LLVM.h -------------------------------------------------------------------------------- /include/lld/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Common/Timer.h -------------------------------------------------------------------------------- /include/lld/Core/Atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Core/Atom.h -------------------------------------------------------------------------------- /include/lld/Core/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Core/Error.h -------------------------------------------------------------------------------- /include/lld/Core/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Core/File.h -------------------------------------------------------------------------------- /include/lld/Core/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Core/Node.h -------------------------------------------------------------------------------- /include/lld/Core/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Core/Pass.h -------------------------------------------------------------------------------- /include/lld/Core/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Core/Reader.h -------------------------------------------------------------------------------- /include/lld/Core/Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Core/Simple.h -------------------------------------------------------------------------------- /include/lld/Core/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/include/lld/Core/Writer.h -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/Core/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Core/DefinedAtom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/Core/DefinedAtom.cpp -------------------------------------------------------------------------------- /lib/Core/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/Core/Error.cpp -------------------------------------------------------------------------------- /lib/Core/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/Core/File.cpp -------------------------------------------------------------------------------- /lib/Core/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/Core/Reader.cpp -------------------------------------------------------------------------------- /lib/Core/Resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/Core/Resolver.cpp -------------------------------------------------------------------------------- /lib/Core/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/Core/SymbolTable.cpp -------------------------------------------------------------------------------- /lib/Core/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/Core/Writer.cpp -------------------------------------------------------------------------------- /lib/Driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/lib/Driver/CMakeLists.txt -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/COFF/Inputs/alpha.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/alpha.ll -------------------------------------------------------------------------------- /test/COFF/Inputs/bad-block-size.pdb: -------------------------------------------------------------------------------- 1 | Microsoft C/C++ MSF 7.00 2 | DS -------------------------------------------------------------------------------- /test/COFF/Inputs/bar.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/bar.ll -------------------------------------------------------------------------------- /test/COFF/Inputs/beta.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/beta.ll -------------------------------------------------------------------------------- /test/COFF/Inputs/cl-gl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/cl-gl.obj -------------------------------------------------------------------------------- /test/COFF/Inputs/default.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | f 3 | -------------------------------------------------------------------------------- /test/COFF/Inputs/export.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/export.ll -------------------------------------------------------------------------------- /test/COFF/Inputs/extension.def: -------------------------------------------------------------------------------- 1 | LIBRARY library.ext 2 | EXPORTS 3 | f 4 | -------------------------------------------------------------------------------- /test/COFF/Inputs/gamma.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/gamma.ll -------------------------------------------------------------------------------- /test/COFF/Inputs/id.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/id.res -------------------------------------------------------------------------------- /test/COFF/Inputs/id.res.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/id.res.o -------------------------------------------------------------------------------- /test/COFF/Inputs/library2.def: -------------------------------------------------------------------------------- 1 | LIBRARY library2 2 | EXPORTS 3 | function2 4 | -------------------------------------------------------------------------------- /test/COFF/Inputs/locally-imported-def.s: -------------------------------------------------------------------------------- 1 | .text 2 | .globl f 3 | f: 4 | ret 5 | -------------------------------------------------------------------------------- /test/COFF/Inputs/locally-imported-imp.s: -------------------------------------------------------------------------------- 1 | .text 2 | call __imp_f 3 | -------------------------------------------------------------------------------- /test/COFF/Inputs/lto-chkstk-foo.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | ret 4 | -------------------------------------------------------------------------------- /test/COFF/Inputs/msvclto.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | ret 4 | -------------------------------------------------------------------------------- /test/COFF/Inputs/named.def: -------------------------------------------------------------------------------- 1 | LIBRARY library 2 | EXPORTS 3 | f 4 | -------------------------------------------------------------------------------- /test/COFF/Inputs/natvis-1.natvis: -------------------------------------------------------------------------------- 1 | 1st Natvis Test 2 | -------------------------------------------------------------------------------- /test/COFF/Inputs/natvis-2.natvis: -------------------------------------------------------------------------------- 1 | Second Natvis Test 2 | -------------------------------------------------------------------------------- /test/COFF/Inputs/natvis-3.natvis: -------------------------------------------------------------------------------- 1 | Third Natvis Test 2 | -------------------------------------------------------------------------------- /test/COFF/Inputs/object.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/object.s -------------------------------------------------------------------------------- /test/COFF/Inputs/pdb1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/pdb1.yaml -------------------------------------------------------------------------------- /test/COFF/Inputs/pdb2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/pdb2.yaml -------------------------------------------------------------------------------- /test/COFF/Inputs/ret42.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/ret42.lib -------------------------------------------------------------------------------- /test/COFF/Inputs/ret42.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/ret42.obj -------------------------------------------------------------------------------- /test/COFF/Inputs/std32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/std32.lib -------------------------------------------------------------------------------- /test/COFF/Inputs/std64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/std64.lib -------------------------------------------------------------------------------- /test/COFF/Inputs/tlssup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/Inputs/tlssup.s -------------------------------------------------------------------------------- /test/COFF/alias-implib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/alias-implib.s -------------------------------------------------------------------------------- /test/COFF/align.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/align.s -------------------------------------------------------------------------------- /test/COFF/ar-comdat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/ar-comdat.test -------------------------------------------------------------------------------- /test/COFF/arm64-magic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/arm64-magic.yaml -------------------------------------------------------------------------------- /test/COFF/arm64-thunks.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/arm64-thunks.s -------------------------------------------------------------------------------- /test/COFF/armnt-rel32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/armnt-rel32.yaml -------------------------------------------------------------------------------- /test/COFF/autoimport-x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/autoimport-x86.s -------------------------------------------------------------------------------- /test/COFF/base.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/base.test -------------------------------------------------------------------------------- /test/COFF/baserel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/baserel.test -------------------------------------------------------------------------------- /test/COFF/cl-gl.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/cl-gl.test -------------------------------------------------------------------------------- /test/COFF/comdat-weak.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/comdat-weak.test -------------------------------------------------------------------------------- /test/COFF/common.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/common.test -------------------------------------------------------------------------------- /test/COFF/conflict.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/conflict.test -------------------------------------------------------------------------------- /test/COFF/constant.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/constant.test -------------------------------------------------------------------------------- /test/COFF/crt-chars.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/crt-chars.test -------------------------------------------------------------------------------- /test/COFF/debug-dwarf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/debug-dwarf.test -------------------------------------------------------------------------------- /test/COFF/debug-reloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/debug-reloc.s -------------------------------------------------------------------------------- /test/COFF/debug.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/debug.test -------------------------------------------------------------------------------- /test/COFF/def-name.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/def-name.test -------------------------------------------------------------------------------- /test/COFF/defparser.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/defparser.test -------------------------------------------------------------------------------- /test/COFF/directives.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/directives.s -------------------------------------------------------------------------------- /test/COFF/dll.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/dll.test -------------------------------------------------------------------------------- /test/COFF/dllexport.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/dllexport.s -------------------------------------------------------------------------------- /test/COFF/driver.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/driver.test -------------------------------------------------------------------------------- /test/COFF/duplicate-cv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/duplicate-cv.s -------------------------------------------------------------------------------- /test/COFF/duplicate.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/duplicate.test -------------------------------------------------------------------------------- /test/COFF/edata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/edata.s -------------------------------------------------------------------------------- /test/COFF/entrylib.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/entrylib.ll -------------------------------------------------------------------------------- /test/COFF/error-limit.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/error-limit.test -------------------------------------------------------------------------------- /test/COFF/exclude-all.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/exclude-all.s -------------------------------------------------------------------------------- /test/COFF/export-all.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/export-all.s -------------------------------------------------------------------------------- /test/COFF/export-exe.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/export-exe.test -------------------------------------------------------------------------------- /test/COFF/export-stdcall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/export-stdcall.s -------------------------------------------------------------------------------- /test/COFF/export.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/export.test -------------------------------------------------------------------------------- /test/COFF/export32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/export32.test -------------------------------------------------------------------------------- /test/COFF/filealign.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/filealign.test -------------------------------------------------------------------------------- /test/COFF/filetype.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/filetype.test -------------------------------------------------------------------------------- /test/COFF/fixed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/fixed.test -------------------------------------------------------------------------------- /test/COFF/force.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/force.test -------------------------------------------------------------------------------- /test/COFF/gfids-corrupt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/gfids-corrupt.s -------------------------------------------------------------------------------- /test/COFF/gfids-export.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/gfids-export.s -------------------------------------------------------------------------------- /test/COFF/gfids-fallback.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/gfids-fallback.s -------------------------------------------------------------------------------- /test/COFF/gfids-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/gfids-gc.s -------------------------------------------------------------------------------- /test/COFF/gfids-icf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/gfids-icf.s -------------------------------------------------------------------------------- /test/COFF/gnu-weak.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/gnu-weak.test -------------------------------------------------------------------------------- /test/COFF/guard-longjmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/guard-longjmp.s -------------------------------------------------------------------------------- /test/COFF/guardcf-align.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/guardcf-align.s -------------------------------------------------------------------------------- /test/COFF/guardcf-lto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/guardcf-lto.ll -------------------------------------------------------------------------------- /test/COFF/guardcf-thunk.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/guardcf-thunk.s -------------------------------------------------------------------------------- /test/COFF/guardcf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/guardcf.test -------------------------------------------------------------------------------- /test/COFF/header-size.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/header-size.s -------------------------------------------------------------------------------- /test/COFF/heap.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/heap.test -------------------------------------------------------------------------------- /test/COFF/hello32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/hello32.test -------------------------------------------------------------------------------- /test/COFF/help.test: -------------------------------------------------------------------------------- 1 | # RUN: lld-link /help | FileCheck %s 2 | 3 | CHECK: OVERVIEW: LLVM Linker 4 | -------------------------------------------------------------------------------- /test/COFF/icf-data.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/icf-data.test -------------------------------------------------------------------------------- /test/COFF/icf-executable.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/icf-executable.s -------------------------------------------------------------------------------- /test/COFF/icf-local.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/icf-local.test -------------------------------------------------------------------------------- /test/COFF/icf-pdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/icf-pdata.s -------------------------------------------------------------------------------- /test/COFF/icf-safe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/icf-safe.s -------------------------------------------------------------------------------- /test/COFF/icf-simple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/icf-simple.test -------------------------------------------------------------------------------- /test/COFF/icf-vtables.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/icf-vtables.s -------------------------------------------------------------------------------- /test/COFF/icf-xdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/icf-xdata.s -------------------------------------------------------------------------------- /test/COFF/ignore-many.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/ignore-many.test -------------------------------------------------------------------------------- /test/COFF/ignore4217.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/ignore4217.yaml -------------------------------------------------------------------------------- /test/COFF/implib-name.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/implib-name.test -------------------------------------------------------------------------------- /test/COFF/imports-gnu.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/imports-gnu.test -------------------------------------------------------------------------------- /test/COFF/imports.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/imports.test -------------------------------------------------------------------------------- /test/COFF/include-lto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/include-lto.ll -------------------------------------------------------------------------------- /test/COFF/include.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/include.test -------------------------------------------------------------------------------- /test/COFF/include2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/include2.test -------------------------------------------------------------------------------- /test/COFF/incremental.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/incremental.test -------------------------------------------------------------------------------- /test/COFF/internal.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/internal.test -------------------------------------------------------------------------------- /test/COFF/invalid-obj.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/invalid-obj.test -------------------------------------------------------------------------------- /test/COFF/lib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lib.test -------------------------------------------------------------------------------- /test/COFF/libpath.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/libpath.test -------------------------------------------------------------------------------- /test/COFF/line-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/line-error.yaml -------------------------------------------------------------------------------- /test/COFF/linkenv.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/linkenv.test -------------------------------------------------------------------------------- /test/COFF/linkrepro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/linkrepro.test -------------------------------------------------------------------------------- /test/COFF/lldmap.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lldmap.test -------------------------------------------------------------------------------- /test/COFF/loadcfg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/loadcfg.ll -------------------------------------------------------------------------------- /test/COFF/loadcfg.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/loadcfg.test -------------------------------------------------------------------------------- /test/COFF/loadcfg32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/loadcfg32.test -------------------------------------------------------------------------------- /test/COFF/lto-cache.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lto-cache.ll -------------------------------------------------------------------------------- /test/COFF/lto-chkstk.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lto-chkstk.ll -------------------------------------------------------------------------------- /test/COFF/lto-comdat.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lto-comdat.ll -------------------------------------------------------------------------------- /test/COFF/lto-icf.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lto-icf.ll -------------------------------------------------------------------------------- /test/COFF/lto-obj-path.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lto-obj-path.ll -------------------------------------------------------------------------------- /test/COFF/lto-opt-level.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lto-opt-level.ll -------------------------------------------------------------------------------- /test/COFF/lto-parallel.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lto-parallel.ll -------------------------------------------------------------------------------- /test/COFF/lto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/lto.ll -------------------------------------------------------------------------------- /test/COFF/machine.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/machine.test -------------------------------------------------------------------------------- /test/COFF/manifest.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/manifest.test -------------------------------------------------------------------------------- /test/COFF/merge.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/merge.test -------------------------------------------------------------------------------- /test/COFF/no-idata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/no-idata.s -------------------------------------------------------------------------------- /test/COFF/noentry.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/noentry.test -------------------------------------------------------------------------------- /test/COFF/opt.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/opt.test -------------------------------------------------------------------------------- /test/COFF/options.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/options.test -------------------------------------------------------------------------------- /test/COFF/order-i386.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/order-i386.test -------------------------------------------------------------------------------- /test/COFF/order.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/order.test -------------------------------------------------------------------------------- /test/COFF/out.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/out.test -------------------------------------------------------------------------------- /test/COFF/pdata-arm64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdata-arm64.yaml -------------------------------------------------------------------------------- /test/COFF/pdb-comdat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-comdat.test -------------------------------------------------------------------------------- /test/COFF/pdb-debug-f.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-debug-f.s -------------------------------------------------------------------------------- /test/COFF/pdb-globals.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-globals.test -------------------------------------------------------------------------------- /test/COFF/pdb-inlinees.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-inlinees.s -------------------------------------------------------------------------------- /test/COFF/pdb-lib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-lib.s -------------------------------------------------------------------------------- /test/COFF/pdb-natvis.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-natvis.test -------------------------------------------------------------------------------- /test/COFF/pdb-none.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-none.test -------------------------------------------------------------------------------- /test/COFF/pdb-options.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-options.test -------------------------------------------------------------------------------- /test/COFF/pdb-safeseh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-safeseh.yaml -------------------------------------------------------------------------------- /test/COFF/pdb-scopes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-scopes.test -------------------------------------------------------------------------------- /test/COFF/pdb-thunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb-thunk.yaml -------------------------------------------------------------------------------- /test/COFF/pdb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdb.test -------------------------------------------------------------------------------- /test/COFF/pdbaltpath.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pdbaltpath.test -------------------------------------------------------------------------------- /test/COFF/pending-comdat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/pending-comdat.s -------------------------------------------------------------------------------- /test/COFF/reloc-arm.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/reloc-arm.test -------------------------------------------------------------------------------- /test/COFF/reloc-oob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/reloc-oob.yaml -------------------------------------------------------------------------------- /test/COFF/reloc-x64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/reloc-x64.test -------------------------------------------------------------------------------- /test/COFF/reloc-x86.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/reloc-x86.test -------------------------------------------------------------------------------- /test/COFF/resource.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/resource.test -------------------------------------------------------------------------------- /test/COFF/rsds.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/rsds.test -------------------------------------------------------------------------------- /test/COFF/s_udt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/s_udt.s -------------------------------------------------------------------------------- /test/COFF/safeseh-md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/safeseh-md.s -------------------------------------------------------------------------------- /test/COFF/safeseh-no.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/safeseh-no.s -------------------------------------------------------------------------------- /test/COFF/safeseh.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/safeseh.s -------------------------------------------------------------------------------- /test/COFF/savetemps.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/savetemps.ll -------------------------------------------------------------------------------- /test/COFF/secrel-common.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/secrel-common.s -------------------------------------------------------------------------------- /test/COFF/section-size.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/section-size.s -------------------------------------------------------------------------------- /test/COFF/section.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/section.test -------------------------------------------------------------------------------- /test/COFF/seh-comdat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/seh-comdat.test -------------------------------------------------------------------------------- /test/COFF/seh.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/seh.test -------------------------------------------------------------------------------- /test/COFF/sort-debug.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/sort-debug.test -------------------------------------------------------------------------------- /test/COFF/stack.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/stack.test -------------------------------------------------------------------------------- /test/COFF/start-lib.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/start-lib.ll -------------------------------------------------------------------------------- /test/COFF/strtab-size.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/strtab-size.s -------------------------------------------------------------------------------- /test/COFF/subsystem.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/subsystem.test -------------------------------------------------------------------------------- /test/COFF/symtab-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/symtab-gc.s -------------------------------------------------------------------------------- /test/COFF/symtab.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/symtab.test -------------------------------------------------------------------------------- /test/COFF/thin-archive.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/thin-archive.s -------------------------------------------------------------------------------- /test/COFF/thinlto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/thinlto.ll -------------------------------------------------------------------------------- /test/COFF/thunk-replace.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/thunk-replace.s -------------------------------------------------------------------------------- /test/COFF/timestamp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/timestamp.test -------------------------------------------------------------------------------- /test/COFF/tls.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/tls.test -------------------------------------------------------------------------------- /test/COFF/tls32.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/tls32.test -------------------------------------------------------------------------------- /test/COFF/unwind.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/unwind.test -------------------------------------------------------------------------------- /test/COFF/used-lto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/used-lto.ll -------------------------------------------------------------------------------- /test/COFF/version.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/version.test -------------------------------------------------------------------------------- /test/COFF/wholearchive.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/wholearchive.s -------------------------------------------------------------------------------- /test/COFF/wx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/COFF/wx.s -------------------------------------------------------------------------------- /test/Driver/Inputs/libtest.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/usr/lib/i386/libtest.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /test/Driver/Inputs/usr/lib/libtest.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /test/ELF/Inputs/abs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/abs.s -------------------------------------------------------------------------------- /test/ELF/Inputs/abs255.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo = 255 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/abs256.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo = 256 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/abs257.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo = 257 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/archive.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/archive.s -------------------------------------------------------------------------------- /test/ELF/Inputs/archive2.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo: 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/archive3.s: -------------------------------------------------------------------------------- 1 | .global bar 2 | bar: 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/archive4.s: -------------------------------------------------------------------------------- 1 | .quad bar 2 | -------------------------------------------------------------------------------- /test/ELF/Inputs/as-needed-lazy.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo: 3 | nop 4 | -------------------------------------------------------------------------------- /test/ELF/Inputs/comdat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/comdat.s -------------------------------------------------------------------------------- /test/ELF/Inputs/comment-gc.s: -------------------------------------------------------------------------------- 1 | .ident "bar" 2 | -------------------------------------------------------------------------------- /test/ELF/Inputs/common.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/common.s -------------------------------------------------------------------------------- /test/ELF/Inputs/conflict.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/conflict.s -------------------------------------------------------------------------------- /test/ELF/Inputs/copy-rel-corrupted.s: -------------------------------------------------------------------------------- 1 | .type x,@object 2 | .globl x 3 | x: 4 | .size x, 0 5 | -------------------------------------------------------------------------------- /test/ELF/Inputs/copy-rel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/copy-rel.s -------------------------------------------------------------------------------- /test/ELF/Inputs/copy-relocation-zero-nonabs-addr.script: -------------------------------------------------------------------------------- 1 | SECTIONS { 2 | goo = 0; 3 | }; 4 | -------------------------------------------------------------------------------- /test/ELF/Inputs/dummy-shared.s: -------------------------------------------------------------------------------- 1 | .globl bar 2 | bar: 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/dynamic-list-weak-archive.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/eh-frame-end.s: -------------------------------------------------------------------------------- 1 | .section ".eh_frame", "a", @progbits 2 | .long 0 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/eh-frame.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/eh-frame.s -------------------------------------------------------------------------------- /test/ELF/Inputs/empty-ver.ver: -------------------------------------------------------------------------------- 1 | ver { 2 | }; 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/gdb-index-invalid-ranges.obj.s: -------------------------------------------------------------------------------- 1 | main: 2 | callq f1 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/gnu-ifunc-canon-ro-abs.s: -------------------------------------------------------------------------------- 1 | .rodata 2 | .8byte ifunc 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/gnu-ifunc-canon-ro-pcrel.s: -------------------------------------------------------------------------------- 1 | .rodata 2 | .4byte ifunc - . 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/gnu-ifunc-canon-rw-addend.s: -------------------------------------------------------------------------------- 1 | .data 2 | .8byte ifunc + 1 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/hexagon-shared.s: -------------------------------------------------------------------------------- 1 | .global bar 2 | bar: 3 | jumpr lr 4 | -------------------------------------------------------------------------------- /test/ELF/Inputs/hexagon.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/hexagon.s -------------------------------------------------------------------------------- /test/ELF/Inputs/hidden-shared-err.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo: 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/hidden-shared-err2.s: -------------------------------------------------------------------------------- 1 | .quad foo 2 | -------------------------------------------------------------------------------- /test/ELF/Inputs/icf-absolute2.s: -------------------------------------------------------------------------------- 1 | .globl a1, a2 2 | a1 = 1 3 | a2 = 2 4 | -------------------------------------------------------------------------------- /test/ELF/Inputs/icf-safe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/icf-safe.s -------------------------------------------------------------------------------- /test/ELF/Inputs/icf2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/icf2.s -------------------------------------------------------------------------------- /test/ELF/Inputs/map-file3.s: -------------------------------------------------------------------------------- 1 | .global bah 2 | bah: 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/merge.s -------------------------------------------------------------------------------- /test/ELF/Inputs/mips-nonalloc.s: -------------------------------------------------------------------------------- 1 | .section .debug_info 2 | .word __start 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/mips-pic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/mips-pic.s -------------------------------------------------------------------------------- /test/ELF/Inputs/mips-tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/mips-tls.s -------------------------------------------------------------------------------- /test/ELF/Inputs/relocatable-tls.s: -------------------------------------------------------------------------------- 1 | callq __tls_get_addr@PLT 2 | -------------------------------------------------------------------------------- /test/ELF/Inputs/shared.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/shared.s -------------------------------------------------------------------------------- /test/ELF/Inputs/shared2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/shared2.s -------------------------------------------------------------------------------- /test/ELF/Inputs/shared3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/shared3.s -------------------------------------------------------------------------------- /test/ELF/Inputs/shlib-undefined-ref.s: -------------------------------------------------------------------------------- 1 | .globl f 2 | f: 3 | call should_not_be_exported@PLT 4 | ret 5 | -------------------------------------------------------------------------------- /test/ELF/Inputs/start-lib1.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | call bar 4 | -------------------------------------------------------------------------------- /test/ELF/Inputs/start-lib2.s: -------------------------------------------------------------------------------- 1 | .globl bar 2 | bar: 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/symver-archive2.s: -------------------------------------------------------------------------------- 1 | call xx@PLT 2 | -------------------------------------------------------------------------------- /test/ELF/Inputs/tls-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/tls-got.s -------------------------------------------------------------------------------- /test/ELF/Inputs/undef-shared2.s: -------------------------------------------------------------------------------- 1 | .data 2 | .quad foo 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/undef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/undef.s -------------------------------------------------------------------------------- /test/ELF/Inputs/undefined-error.s: -------------------------------------------------------------------------------- 1 | callq fmod@PLT 2 | -------------------------------------------------------------------------------- /test/ELF/Inputs/unknown-reloc.s: -------------------------------------------------------------------------------- 1 | .global und 2 | und: 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/use-bar.s: -------------------------------------------------------------------------------- 1 | .section .bar,"a" 2 | .quad _bar 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/verdef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/verdef.s -------------------------------------------------------------------------------- /test/ELF/Inputs/verneed1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/verneed1.s -------------------------------------------------------------------------------- /test/ELF/Inputs/verneed2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/verneed2.s -------------------------------------------------------------------------------- /test/ELF/Inputs/version-script-err.script: -------------------------------------------------------------------------------- 1 | { 2 | global: 3 | foo 4 | }; 5 | -------------------------------------------------------------------------------- /test/ELF/Inputs/version-script-no-warn2.s: -------------------------------------------------------------------------------- 1 | call foo@plt 2 | -------------------------------------------------------------------------------- /test/ELF/Inputs/wrap-dynamic-undef.s: -------------------------------------------------------------------------------- 1 | .global foo 2 | foo: 3 | -------------------------------------------------------------------------------- /test/ELF/Inputs/wrap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/wrap.s -------------------------------------------------------------------------------- /test/ELF/Inputs/ztext.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/Inputs/ztext.s -------------------------------------------------------------------------------- /test/ELF/aarch64-abs16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-abs16.s -------------------------------------------------------------------------------- /test/ELF/aarch64-abs32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-abs32.s -------------------------------------------------------------------------------- /test/ELF/aarch64-copy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-copy.s -------------------------------------------------------------------------------- /test/ELF/aarch64-hi21-nc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-hi21-nc.s -------------------------------------------------------------------------------- /test/ELF/aarch64-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-plt.s -------------------------------------------------------------------------------- /test/ELF/aarch64-prel16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-prel16.s -------------------------------------------------------------------------------- /test/ELF/aarch64-prel32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-prel32.s -------------------------------------------------------------------------------- /test/ELF/aarch64-relocs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-relocs.s -------------------------------------------------------------------------------- /test/ELF/aarch64-relro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-relro.s -------------------------------------------------------------------------------- /test/ELF/aarch64-tls-ie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-tls-ie.s -------------------------------------------------------------------------------- /test/ELF/aarch64-tls-le.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-tls-le.s -------------------------------------------------------------------------------- /test/ELF/aarch64-tlsdesc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/aarch64-tlsdesc.s -------------------------------------------------------------------------------- /test/ELF/abs-conflict.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/abs-conflict.s -------------------------------------------------------------------------------- /test/ELF/abs-hidden.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/abs-hidden.s -------------------------------------------------------------------------------- /test/ELF/amdgpu-globals.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/amdgpu-globals.s -------------------------------------------------------------------------------- /test/ELF/amdgpu-kernels.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/amdgpu-kernels.s -------------------------------------------------------------------------------- /test/ELF/amdgpu-relocs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/amdgpu-relocs.s -------------------------------------------------------------------------------- /test/ELF/archive-fetch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/archive-fetch.s -------------------------------------------------------------------------------- /test/ELF/archive.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/archive.s -------------------------------------------------------------------------------- /test/ELF/arm-abs32-dyn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-abs32-dyn.s -------------------------------------------------------------------------------- /test/ELF/arm-attributes.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-attributes.s -------------------------------------------------------------------------------- /test/ELF/arm-bl-v6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-bl-v6.s -------------------------------------------------------------------------------- /test/ELF/arm-blx-v4t.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-blx-v4t.s -------------------------------------------------------------------------------- /test/ELF/arm-blx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-blx.s -------------------------------------------------------------------------------- /test/ELF/arm-branch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-branch.s -------------------------------------------------------------------------------- /test/ELF/arm-copy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-copy.s -------------------------------------------------------------------------------- /test/ELF/arm-data-prel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-data-prel.s -------------------------------------------------------------------------------- /test/ELF/arm-exidx-dedup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-exidx-dedup.s -------------------------------------------------------------------------------- /test/ELF/arm-exidx-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-exidx-gc.s -------------------------------------------------------------------------------- /test/ELF/arm-exidx-link.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-exidx-link.s -------------------------------------------------------------------------------- /test/ELF/arm-exidx-order.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-exidx-order.s -------------------------------------------------------------------------------- /test/ELF/arm-fpic-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-fpic-got.s -------------------------------------------------------------------------------- /test/ELF/arm-gnu-ifunc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-gnu-ifunc.s -------------------------------------------------------------------------------- /test/ELF/arm-gotoff.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-gotoff.s -------------------------------------------------------------------------------- /test/ELF/arm-icf-exidx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-icf-exidx.s -------------------------------------------------------------------------------- /test/ELF/arm-mov-relocs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-mov-relocs.s -------------------------------------------------------------------------------- /test/ELF/arm-plt-reloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-plt-reloc.s -------------------------------------------------------------------------------- /test/ELF/arm-reloc-abs32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-reloc-abs32.s -------------------------------------------------------------------------------- /test/ELF/arm-sbrel32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-sbrel32.s -------------------------------------------------------------------------------- /test/ELF/arm-target1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-target1.s -------------------------------------------------------------------------------- /test/ELF/arm-target2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-target2.s -------------------------------------------------------------------------------- /test/ELF/arm-thumb-blx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-thumb-blx.s -------------------------------------------------------------------------------- /test/ELF/arm-tls-gd32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-tls-gd32.s -------------------------------------------------------------------------------- /test/ELF/arm-tls-ie32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-tls-ie32.s -------------------------------------------------------------------------------- /test/ELF/arm-tls-ldm32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-tls-ldm32.s -------------------------------------------------------------------------------- /test/ELF/arm-tls-le32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-tls-le32.s -------------------------------------------------------------------------------- /test/ELF/arm-v4bx.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/arm-v4bx.test -------------------------------------------------------------------------------- /test/ELF/as-needed-lazy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/as-needed-lazy.s -------------------------------------------------------------------------------- /test/ELF/as-needed-weak.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/as-needed-weak.s -------------------------------------------------------------------------------- /test/ELF/as-needed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/as-needed.s -------------------------------------------------------------------------------- /test/ELF/auxiliary.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/auxiliary.s -------------------------------------------------------------------------------- /test/ELF/bad-archive.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/bad-archive.s -------------------------------------------------------------------------------- /test/ELF/basic-aarch64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/basic-aarch64.s -------------------------------------------------------------------------------- /test/ELF/basic-avr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/basic-avr.s -------------------------------------------------------------------------------- /test/ELF/basic-freebsd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/basic-freebsd.s -------------------------------------------------------------------------------- /test/ELF/basic-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/basic-i386.s -------------------------------------------------------------------------------- /test/ELF/basic-mips.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/basic-mips.s -------------------------------------------------------------------------------- /test/ELF/basic-ppc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/basic-ppc.s -------------------------------------------------------------------------------- /test/ELF/basic-ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/basic-ppc64.s -------------------------------------------------------------------------------- /test/ELF/basic-sparcv9.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/basic-sparcv9.s -------------------------------------------------------------------------------- /test/ELF/basic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/basic.s -------------------------------------------------------------------------------- /test/ELF/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/bss.s -------------------------------------------------------------------------------- /test/ELF/bsymbolic-undef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/bsymbolic-undef.s -------------------------------------------------------------------------------- /test/ELF/bsymbolic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/bsymbolic.s -------------------------------------------------------------------------------- /test/ELF/build-id.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/build-id.s -------------------------------------------------------------------------------- /test/ELF/cgprofile-err.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/cgprofile-err.s -------------------------------------------------------------------------------- /test/ELF/cgprofile-icf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/cgprofile-icf.s -------------------------------------------------------------------------------- /test/ELF/cgprofile-obj.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/cgprofile-obj.s -------------------------------------------------------------------------------- /test/ELF/cgprofile-print.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/cgprofile-print.s -------------------------------------------------------------------------------- /test/ELF/cgprofile-txt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/cgprofile-txt.s -------------------------------------------------------------------------------- /test/ELF/cgprofile-txt2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/cgprofile-txt2.s -------------------------------------------------------------------------------- /test/ELF/cgprofile-warn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/cgprofile-warn.s -------------------------------------------------------------------------------- /test/ELF/chroot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/chroot.s -------------------------------------------------------------------------------- /test/ELF/combreloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/combreloc.s -------------------------------------------------------------------------------- /test/ELF/comdat-linkonce.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/comdat-linkonce.s -------------------------------------------------------------------------------- /test/ELF/comdat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/comdat.s -------------------------------------------------------------------------------- /test/ELF/comment-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/comment-gc.s -------------------------------------------------------------------------------- /test/ELF/common-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/common-gc.s -------------------------------------------------------------------------------- /test/ELF/common-gc2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/common-gc2.s -------------------------------------------------------------------------------- /test/ELF/common-gc3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/common-gc3.s -------------------------------------------------------------------------------- /test/ELF/common-page.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/common-page.s -------------------------------------------------------------------------------- /test/ELF/common.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/common.s -------------------------------------------------------------------------------- /test/ELF/conflict.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/conflict.s -------------------------------------------------------------------------------- /test/ELF/copy-errors.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/copy-errors.s -------------------------------------------------------------------------------- /test/ELF/copy-in-shared.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/copy-in-shared.s -------------------------------------------------------------------------------- /test/ELF/copy-rel-abs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/copy-rel-abs.s -------------------------------------------------------------------------------- /test/ELF/copy-rel-large.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/copy-rel-large.s -------------------------------------------------------------------------------- /test/ELF/copy-rel-tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/copy-rel-tls.s -------------------------------------------------------------------------------- /test/ELF/copy-rel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/copy-rel.s -------------------------------------------------------------------------------- /test/ELF/cref.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/cref.s -------------------------------------------------------------------------------- /test/ELF/debug-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/debug-gc.s -------------------------------------------------------------------------------- /test/ELF/debug-line-obj.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/debug-line-obj.s -------------------------------------------------------------------------------- /test/ELF/debug-line-str.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/debug-line-str.s -------------------------------------------------------------------------------- /test/ELF/default-fill.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/default-fill.s -------------------------------------------------------------------------------- /test/ELF/default-output.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/default-output.s -------------------------------------------------------------------------------- /test/ELF/defsym-dynamic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/defsym-dynamic.s -------------------------------------------------------------------------------- /test/ELF/defsym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/defsym.s -------------------------------------------------------------------------------- /test/ELF/deplibs-corrupt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/deplibs-corrupt.s -------------------------------------------------------------------------------- /test/ELF/deplibs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/deplibs.s -------------------------------------------------------------------------------- /test/ELF/discard-locals.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/discard-locals.s -------------------------------------------------------------------------------- /test/ELF/discard-none.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/discard-none.s -------------------------------------------------------------------------------- /test/ELF/driver.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/driver.test -------------------------------------------------------------------------------- /test/ELF/dso-undef-size.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dso-undef-size.s -------------------------------------------------------------------------------- /test/ELF/dso_handle.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dso_handle.s -------------------------------------------------------------------------------- /test/ELF/dt_flags.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dt_flags.s -------------------------------------------------------------------------------- /test/ELF/dt_tags.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dt_tags.s -------------------------------------------------------------------------------- /test/ELF/dynamic-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dynamic-got.s -------------------------------------------------------------------------------- /test/ELF/dynamic-linker.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dynamic-linker.s -------------------------------------------------------------------------------- /test/ELF/dynamic-list.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dynamic-list.s -------------------------------------------------------------------------------- /test/ELF/dynamic-reloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dynamic-reloc.s -------------------------------------------------------------------------------- /test/ELF/dynamic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dynamic.s -------------------------------------------------------------------------------- /test/ELF/dynsym-pie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/dynsym-pie.s -------------------------------------------------------------------------------- /test/ELF/edata-etext.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/edata-etext.s -------------------------------------------------------------------------------- /test/ELF/edata-no-bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/edata-no-bss.s -------------------------------------------------------------------------------- /test/ELF/eh-align-cie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/eh-align-cie.s -------------------------------------------------------------------------------- /test/ELF/eh-frame-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/eh-frame-gc.s -------------------------------------------------------------------------------- /test/ELF/eh-frame-gc2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/eh-frame-gc2.s -------------------------------------------------------------------------------- /test/ELF/eh-frame-hdr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/eh-frame-hdr.s -------------------------------------------------------------------------------- /test/ELF/eh-frame-marker.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/eh-frame-marker.s -------------------------------------------------------------------------------- /test/ELF/eh-frame-merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/eh-frame-merge.s -------------------------------------------------------------------------------- /test/ELF/eh-frame-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/eh-frame-plt.s -------------------------------------------------------------------------------- /test/ELF/eh-frame-rel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/eh-frame-rel.s -------------------------------------------------------------------------------- /test/ELF/eh-frame.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/eh-frame.s -------------------------------------------------------------------------------- /test/ELF/ehdr_start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ehdr_start.s -------------------------------------------------------------------------------- /test/ELF/elf-header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/elf-header.s -------------------------------------------------------------------------------- /test/ELF/emit-relocs-gc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/emit-relocs-gc.s -------------------------------------------------------------------------------- /test/ELF/emit-relocs-icf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/emit-relocs-icf.s -------------------------------------------------------------------------------- /test/ELF/emit-relocs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/emit-relocs.s -------------------------------------------------------------------------------- /test/ELF/empty-archive.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/empty-archive.s -------------------------------------------------------------------------------- /test/ELF/empty-pt-load.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/empty-pt-load.s -------------------------------------------------------------------------------- /test/ELF/empty-ver.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/empty-ver.s -------------------------------------------------------------------------------- /test/ELF/empty-ver2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/empty-ver2.s -------------------------------------------------------------------------------- /test/ELF/emulation-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/emulation-arm.s -------------------------------------------------------------------------------- /test/ELF/emulation-mips.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/emulation-mips.s -------------------------------------------------------------------------------- /test/ELF/emulation-ppc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/emulation-ppc.s -------------------------------------------------------------------------------- /test/ELF/emulation-riscv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/emulation-riscv.s -------------------------------------------------------------------------------- /test/ELF/emulation-x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/emulation-x86.s -------------------------------------------------------------------------------- /test/ELF/end-abs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/end-abs.s -------------------------------------------------------------------------------- /test/ELF/end-dso-defined.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/end-dso-defined.s -------------------------------------------------------------------------------- /test/ELF/end-preserve.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/end-preserve.s -------------------------------------------------------------------------------- /test/ELF/end-update.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/end-update.s -------------------------------------------------------------------------------- /test/ELF/end.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/end.s -------------------------------------------------------------------------------- /test/ELF/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/entry.s -------------------------------------------------------------------------------- /test/ELF/error-limit.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/error-limit.test -------------------------------------------------------------------------------- /test/ELF/exclude-libs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/exclude-libs.s -------------------------------------------------------------------------------- /test/ELF/exclude.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/exclude.s -------------------------------------------------------------------------------- /test/ELF/execute-only.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/execute-only.s -------------------------------------------------------------------------------- /test/ELF/fatal-warnings.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/fatal-warnings.s -------------------------------------------------------------------------------- /test/ELF/file-access.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/file-access.s -------------------------------------------------------------------------------- /test/ELF/fill-trap-ppc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/fill-trap-ppc.s -------------------------------------------------------------------------------- /test/ELF/fill-trap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/fill-trap.s -------------------------------------------------------------------------------- /test/ELF/filter.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/filter.s -------------------------------------------------------------------------------- /test/ELF/gc-absolute.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gc-absolute.s -------------------------------------------------------------------------------- /test/ELF/gc-sections-eh.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gc-sections-eh.s -------------------------------------------------------------------------------- /test/ELF/gc-sections.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gc-sections.s -------------------------------------------------------------------------------- /test/ELF/gdb-index-empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gdb-index-empty.s -------------------------------------------------------------------------------- /test/ELF/gdb-index-tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gdb-index-tls.s -------------------------------------------------------------------------------- /test/ELF/gdb-index.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gdb-index.s -------------------------------------------------------------------------------- /test/ELF/gnu-hash-table.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-hash-table.s -------------------------------------------------------------------------------- /test/ELF/gnu-ifunc-canon.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-ifunc-canon.s -------------------------------------------------------------------------------- /test/ELF/gnu-ifunc-dso.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-ifunc-dso.s -------------------------------------------------------------------------------- /test/ELF/gnu-ifunc-empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-ifunc-empty.s -------------------------------------------------------------------------------- /test/ELF/gnu-ifunc-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-ifunc-i386.s -------------------------------------------------------------------------------- /test/ELF/gnu-ifunc-noplt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-ifunc-noplt.s -------------------------------------------------------------------------------- /test/ELF/gnu-ifunc-nosym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-ifunc-nosym.s -------------------------------------------------------------------------------- /test/ELF/gnu-ifunc-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-ifunc-plt.s -------------------------------------------------------------------------------- /test/ELF/gnu-ifunc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-ifunc.s -------------------------------------------------------------------------------- /test/ELF/gnu-unique.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnu-unique.s -------------------------------------------------------------------------------- /test/ELF/gnustack.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/gnustack.s -------------------------------------------------------------------------------- /test/ELF/got-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/got-i386.s -------------------------------------------------------------------------------- /test/ELF/got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/got.s -------------------------------------------------------------------------------- /test/ELF/got32-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/got32-i386.s -------------------------------------------------------------------------------- /test/ELF/got32x-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/got32x-i386.s -------------------------------------------------------------------------------- /test/ELF/help.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/help.s -------------------------------------------------------------------------------- /test/ELF/hexagon-eflag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/hexagon-eflag.s -------------------------------------------------------------------------------- /test/ELF/hexagon-gotrel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/hexagon-gotrel.s -------------------------------------------------------------------------------- /test/ELF/hexagon-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/hexagon-plt.s -------------------------------------------------------------------------------- /test/ELF/hexagon-shared.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/hexagon-shared.s -------------------------------------------------------------------------------- /test/ELF/hexagon.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/hexagon.s -------------------------------------------------------------------------------- /test/ELF/i386-cet.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-cet.s -------------------------------------------------------------------------------- /test/ELF/i386-got-value.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-got-value.s -------------------------------------------------------------------------------- /test/ELF/i386-gotpc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-gotpc.s -------------------------------------------------------------------------------- /test/ELF/i386-linkonce.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-linkonce.s -------------------------------------------------------------------------------- /test/ELF/i386-merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-merge.s -------------------------------------------------------------------------------- /test/ELF/i386-pc16.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-pc16.test -------------------------------------------------------------------------------- /test/ELF/i386-pc8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-pc8.s -------------------------------------------------------------------------------- /test/ELF/i386-pic-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-pic-plt.s -------------------------------------------------------------------------------- /test/ELF/i386-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-plt.s -------------------------------------------------------------------------------- /test/ELF/i386-relative.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-relative.s -------------------------------------------------------------------------------- /test/ELF/i386-reloc-16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-reloc-16.s -------------------------------------------------------------------------------- /test/ELF/i386-reloc-8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-reloc-8.s -------------------------------------------------------------------------------- /test/ELF/i386-tls-gdiele.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-tls-gdiele.s -------------------------------------------------------------------------------- /test/ELF/i386-tls-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-tls-got.s -------------------------------------------------------------------------------- /test/ELF/i386-tls-le.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-tls-le.s -------------------------------------------------------------------------------- /test/ELF/i386-tls-opt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/i386-tls-opt.s -------------------------------------------------------------------------------- /test/ELF/icf-absolute.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-absolute.s -------------------------------------------------------------------------------- /test/ELF/icf-absolute2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-absolute2.s -------------------------------------------------------------------------------- /test/ELF/icf-comdat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-comdat.s -------------------------------------------------------------------------------- /test/ELF/icf-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-i386.s -------------------------------------------------------------------------------- /test/ELF/icf-keep-unique.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-keep-unique.s -------------------------------------------------------------------------------- /test/ELF/icf-link-order.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-link-order.s -------------------------------------------------------------------------------- /test/ELF/icf-merge-sec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-merge-sec.s -------------------------------------------------------------------------------- /test/ELF/icf-merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-merge.s -------------------------------------------------------------------------------- /test/ELF/icf-merge2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-merge2.s -------------------------------------------------------------------------------- /test/ELF/icf-none.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-none.s -------------------------------------------------------------------------------- /test/ELF/icf-relro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-relro.s -------------------------------------------------------------------------------- /test/ELF/icf-safe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-safe.s -------------------------------------------------------------------------------- /test/ELF/icf-symbol-type.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf-symbol-type.s -------------------------------------------------------------------------------- /test/ELF/icf1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf1.s -------------------------------------------------------------------------------- /test/ELF/icf10.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf10.s -------------------------------------------------------------------------------- /test/ELF/icf11.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf11.test -------------------------------------------------------------------------------- /test/ELF/icf12.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf12.s -------------------------------------------------------------------------------- /test/ELF/icf13.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf13.s -------------------------------------------------------------------------------- /test/ELF/icf14.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf14.s -------------------------------------------------------------------------------- /test/ELF/icf15.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf15.s -------------------------------------------------------------------------------- /test/ELF/icf16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf16.s -------------------------------------------------------------------------------- /test/ELF/icf17.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf17.s -------------------------------------------------------------------------------- /test/ELF/icf2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf2.s -------------------------------------------------------------------------------- /test/ELF/icf3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf3.s -------------------------------------------------------------------------------- /test/ELF/icf4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf4.s -------------------------------------------------------------------------------- /test/ELF/icf5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf5.s -------------------------------------------------------------------------------- /test/ELF/icf6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf6.s -------------------------------------------------------------------------------- /test/ELF/icf7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf7.s -------------------------------------------------------------------------------- /test/ELF/icf8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf8.s -------------------------------------------------------------------------------- /test/ELF/icf9.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/icf9.s -------------------------------------------------------------------------------- /test/ELF/image-base.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/image-base.s -------------------------------------------------------------------------------- /test/ELF/incompatible.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/incompatible.s -------------------------------------------------------------------------------- /test/ELF/init-fini.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/init-fini.s -------------------------------------------------------------------------------- /test/ELF/invalid-fde-rel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/invalid-fde-rel.s -------------------------------------------------------------------------------- /test/ELF/just-symbols.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/just-symbols.s -------------------------------------------------------------------------------- /test/ELF/libsearch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/libsearch.s -------------------------------------------------------------------------------- /test/ELF/linkerscript/Inputs/extend-pt-load.s: -------------------------------------------------------------------------------- 1 | nop 2 | .section .data.rel.ro, "aw" 3 | .byte 0 4 | -------------------------------------------------------------------------------- /test/ELF/linkerscript/Inputs/filename-spec.s: -------------------------------------------------------------------------------- 1 | .section .foo,"a" 2 | .quad 0x11 3 | -------------------------------------------------------------------------------- /test/ELF/linkerscript/Inputs/lazy-symbols.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | -------------------------------------------------------------------------------- /test/ELF/linkerscript/at.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/linkerscript/at.s -------------------------------------------------------------------------------- /test/ELF/linkerscript/va.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/linkerscript/va.s -------------------------------------------------------------------------------- /test/ELF/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lit.local.cfg -------------------------------------------------------------------------------- /test/ELF/local-dynamic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/local-dynamic.s -------------------------------------------------------------------------------- /test/ELF/local-got-pie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/local-got-pie.s -------------------------------------------------------------------------------- /test/ELF/local-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/local-got.s -------------------------------------------------------------------------------- /test/ELF/local.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/local.s -------------------------------------------------------------------------------- /test/ELF/lto/Inputs/dynsym.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | foo: 3 | ret 4 | -------------------------------------------------------------------------------- /test/ELF/lto/Inputs/sample-profile.prof: -------------------------------------------------------------------------------- 1 | f:0:0 2 | -------------------------------------------------------------------------------- /test/ELF/lto/Inputs/tls-mixed.s: -------------------------------------------------------------------------------- 1 | .globl foo 2 | .section .tbss,"awT",@nobits 3 | foo: 4 | .long 0 5 | -------------------------------------------------------------------------------- /test/ELF/lto/abs-resol.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/abs-resol.ll -------------------------------------------------------------------------------- /test/ELF/lto/amdgcn.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/amdgcn.ll -------------------------------------------------------------------------------- /test/ELF/lto/archive-2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/archive-2.ll -------------------------------------------------------------------------------- /test/ELF/lto/archive-3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/archive-3.ll -------------------------------------------------------------------------------- /test/ELF/lto/archive.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/archive.ll -------------------------------------------------------------------------------- /test/ELF/lto/asmundef.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/asmundef.ll -------------------------------------------------------------------------------- /test/ELF/lto/cache.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/cache.ll -------------------------------------------------------------------------------- /test/ELF/lto/codemodel.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/codemodel.ll -------------------------------------------------------------------------------- /test/ELF/lto/comdat.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/comdat.ll -------------------------------------------------------------------------------- /test/ELF/lto/comdat2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/comdat2.ll -------------------------------------------------------------------------------- /test/ELF/lto/common.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/common.ll -------------------------------------------------------------------------------- /test/ELF/lto/common2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/common2.ll -------------------------------------------------------------------------------- /test/ELF/lto/common3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/common3.ll -------------------------------------------------------------------------------- /test/ELF/lto/common4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/common4.ll -------------------------------------------------------------------------------- /test/ELF/lto/cpu-string.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/cpu-string.ll -------------------------------------------------------------------------------- /test/ELF/lto/ctors.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/ctors.ll -------------------------------------------------------------------------------- /test/ELF/lto/defsym.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/defsym.ll -------------------------------------------------------------------------------- /test/ELF/lto/deplibs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/deplibs.s -------------------------------------------------------------------------------- /test/ELF/lto/duplicated.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/duplicated.ll -------------------------------------------------------------------------------- /test/ELF/lto/dynsym.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/dynsym.ll -------------------------------------------------------------------------------- /test/ELF/lto/emit-llvm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/emit-llvm.ll -------------------------------------------------------------------------------- /test/ELF/lto/inline-asm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/inline-asm.ll -------------------------------------------------------------------------------- /test/ELF/lto/linkage.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/linkage.ll -------------------------------------------------------------------------------- /test/ELF/lto/linkonce.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/linkonce.ll -------------------------------------------------------------------------------- /test/ELF/lto/lto-start.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/lto-start.ll -------------------------------------------------------------------------------- /test/ELF/lto/metadata.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/metadata.ll -------------------------------------------------------------------------------- /test/ELF/lto/module-asm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/module-asm.ll -------------------------------------------------------------------------------- /test/ELF/lto/obj-path.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/obj-path.ll -------------------------------------------------------------------------------- /test/ELF/lto/opt-level.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/opt-level.ll -------------------------------------------------------------------------------- /test/ELF/lto/parallel.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/parallel.ll -------------------------------------------------------------------------------- /test/ELF/lto/pic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/pic.ll -------------------------------------------------------------------------------- /test/ELF/lto/ppc64le.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/ppc64le.ll -------------------------------------------------------------------------------- /test/ELF/lto/r600.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/r600.ll -------------------------------------------------------------------------------- /test/ELF/lto/resolution.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/resolution.ll -------------------------------------------------------------------------------- /test/ELF/lto/riscv32.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/riscv32.ll -------------------------------------------------------------------------------- /test/ELF/lto/riscv64.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/riscv64.ll -------------------------------------------------------------------------------- /test/ELF/lto/save-temps.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/save-temps.ll -------------------------------------------------------------------------------- /test/ELF/lto/start-lib.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/start-lib.ll -------------------------------------------------------------------------------- /test/ELF/lto/thinlto.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/thinlto.ll -------------------------------------------------------------------------------- /test/ELF/lto/timepasses.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/timepasses.ll -------------------------------------------------------------------------------- /test/ELF/lto/tls-mixed.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/tls-mixed.ll -------------------------------------------------------------------------------- /test/ELF/lto/type-merge.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/type-merge.ll -------------------------------------------------------------------------------- /test/ELF/lto/undef-weak.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/undef-weak.ll -------------------------------------------------------------------------------- /test/ELF/lto/undef.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/undef.ll -------------------------------------------------------------------------------- /test/ELF/lto/visibility.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/visibility.ll -------------------------------------------------------------------------------- /test/ELF/lto/weak.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/weak.ll -------------------------------------------------------------------------------- /test/ELF/lto/wrap-1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/wrap-1.ll -------------------------------------------------------------------------------- /test/ELF/lto/wrap-2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/lto/wrap-2.ll -------------------------------------------------------------------------------- /test/ELF/many-sections.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/many-sections.s -------------------------------------------------------------------------------- /test/ELF/map-file-i686.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/map-file-i686.s -------------------------------------------------------------------------------- /test/ELF/map-file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/map-file.s -------------------------------------------------------------------------------- /test/ELF/map-gc-sections.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/map-gc-sections.s -------------------------------------------------------------------------------- /test/ELF/merge-align.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-align.s -------------------------------------------------------------------------------- /test/ELF/merge-align2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-align2.s -------------------------------------------------------------------------------- /test/ELF/merge-entsize.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-entsize.s -------------------------------------------------------------------------------- /test/ELF/merge-entsize2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-entsize2.s -------------------------------------------------------------------------------- /test/ELF/merge-gc-piece.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-gc-piece.s -------------------------------------------------------------------------------- /test/ELF/merge-gc-piece2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-gc-piece2.s -------------------------------------------------------------------------------- /test/ELF/merge-reloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-reloc.s -------------------------------------------------------------------------------- /test/ELF/merge-shared.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-shared.s -------------------------------------------------------------------------------- /test/ELF/merge-string.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-string.s -------------------------------------------------------------------------------- /test/ELF/merge-sym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge-sym.s -------------------------------------------------------------------------------- /test/ELF/merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/merge.s -------------------------------------------------------------------------------- /test/ELF/mips-26-mask.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-26-mask.s -------------------------------------------------------------------------------- /test/ELF/mips-26.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-26.s -------------------------------------------------------------------------------- /test/ELF/mips-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-32.s -------------------------------------------------------------------------------- /test/ELF/mips-64-disp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-64-disp.s -------------------------------------------------------------------------------- /test/ELF/mips-64-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-64-got.s -------------------------------------------------------------------------------- /test/ELF/mips-64-rels.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-64-rels.s -------------------------------------------------------------------------------- /test/ELF/mips-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-64.s -------------------------------------------------------------------------------- /test/ELF/mips-abs-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-abs-got.s -------------------------------------------------------------------------------- /test/ELF/mips-align-err.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-align-err.s -------------------------------------------------------------------------------- /test/ELF/mips-call-hilo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-call-hilo.s -------------------------------------------------------------------------------- /test/ELF/mips-call16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-call16.s -------------------------------------------------------------------------------- /test/ELF/mips-dynamic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-dynamic.s -------------------------------------------------------------------------------- /test/ELF/mips-elf-abi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-elf-abi.s -------------------------------------------------------------------------------- /test/ELF/mips-elf-flags.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-elf-flags.s -------------------------------------------------------------------------------- /test/ELF/mips-gnu-hash.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-gnu-hash.s -------------------------------------------------------------------------------- /test/ELF/mips-got-extsym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-got-extsym.s -------------------------------------------------------------------------------- /test/ELF/mips-got-hilo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-got-hilo.s -------------------------------------------------------------------------------- /test/ELF/mips-got-page.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-got-page.s -------------------------------------------------------------------------------- /test/ELF/mips-got-relocs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-got-relocs.s -------------------------------------------------------------------------------- /test/ELF/mips-got-script.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-got-script.s -------------------------------------------------------------------------------- /test/ELF/mips-got-string.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-got-string.s -------------------------------------------------------------------------------- /test/ELF/mips-got-weak.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-got-weak.s -------------------------------------------------------------------------------- /test/ELF/mips-got16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-got16.s -------------------------------------------------------------------------------- /test/ELF/mips-gp-disp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-gp-disp.s -------------------------------------------------------------------------------- /test/ELF/mips-gp-ext.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-gp-ext.s -------------------------------------------------------------------------------- /test/ELF/mips-gp-local.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-gp-local.s -------------------------------------------------------------------------------- /test/ELF/mips-gp-lowest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-gp-lowest.s -------------------------------------------------------------------------------- /test/ELF/mips-gprel-sec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-gprel-sec.s -------------------------------------------------------------------------------- /test/ELF/mips-hilo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-hilo.s -------------------------------------------------------------------------------- /test/ELF/mips-jalr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-jalr.s -------------------------------------------------------------------------------- /test/ELF/mips-mgot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-mgot.s -------------------------------------------------------------------------------- /test/ELF/mips-micro-got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-micro-got.s -------------------------------------------------------------------------------- /test/ELF/mips-micro-jal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-micro-jal.s -------------------------------------------------------------------------------- /test/ELF/mips-micro-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-micro-plt.s -------------------------------------------------------------------------------- /test/ELF/mips-n32-emul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-n32-emul.s -------------------------------------------------------------------------------- /test/ELF/mips-n32-rels.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-n32-rels.s -------------------------------------------------------------------------------- /test/ELF/mips-no-objects.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-no-objects.s -------------------------------------------------------------------------------- /test/ELF/mips-nonalloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-nonalloc.s -------------------------------------------------------------------------------- /test/ELF/mips-options.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-options.s -------------------------------------------------------------------------------- /test/ELF/mips-pc-relocs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-pc-relocs.s -------------------------------------------------------------------------------- /test/ELF/mips-plt-copy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-plt-copy.s -------------------------------------------------------------------------------- /test/ELF/mips-plt-n32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-plt-n32.s -------------------------------------------------------------------------------- /test/ELF/mips-plt-n64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-plt-n64.s -------------------------------------------------------------------------------- /test/ELF/mips-plt-r6.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-plt-r6.s -------------------------------------------------------------------------------- /test/ELF/mips-reginfo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-reginfo.s -------------------------------------------------------------------------------- /test/ELF/mips-sto-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-sto-plt.s -------------------------------------------------------------------------------- /test/ELF/mips-tls-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-tls-64.s -------------------------------------------------------------------------------- /test/ELF/mips-tls-hilo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-tls-hilo.s -------------------------------------------------------------------------------- /test/ELF/mips-tls-static.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-tls-static.s -------------------------------------------------------------------------------- /test/ELF/mips-tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-tls.s -------------------------------------------------------------------------------- /test/ELF/mips-traps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-traps.s -------------------------------------------------------------------------------- /test/ELF/mips-xgot-order.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/mips-xgot-order.s -------------------------------------------------------------------------------- /test/ELF/msp430.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/msp430.s -------------------------------------------------------------------------------- /test/ELF/multiple-cu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/multiple-cu.s -------------------------------------------------------------------------------- /test/ELF/new-dtags.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/new-dtags.test -------------------------------------------------------------------------------- /test/ELF/nmagic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/nmagic.s -------------------------------------------------------------------------------- /test/ELF/no-augmentation.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/no-augmentation.s -------------------------------------------------------------------------------- /test/ELF/no-inhibit-exec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/no-inhibit-exec.s -------------------------------------------------------------------------------- /test/ELF/no-merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/no-merge.s -------------------------------------------------------------------------------- /test/ELF/no-obj.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/no-obj.s -------------------------------------------------------------------------------- /test/ELF/no-plt-shared.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/no-plt-shared.s -------------------------------------------------------------------------------- /test/ELF/no-soname.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/no-soname.s -------------------------------------------------------------------------------- /test/ELF/no-symtab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/no-symtab.s -------------------------------------------------------------------------------- /test/ELF/no-undefined.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/no-undefined.s -------------------------------------------------------------------------------- /test/ELF/nobits-offset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/nobits-offset.s -------------------------------------------------------------------------------- /test/ELF/non-abs-reloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/non-abs-reloc.s -------------------------------------------------------------------------------- /test/ELF/noplt-pie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/noplt-pie.s -------------------------------------------------------------------------------- /test/ELF/note-alignment.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/note-alignment.s -------------------------------------------------------------------------------- /test/ELF/note-noalloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/note-noalloc.s -------------------------------------------------------------------------------- /test/ELF/note.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/note.s -------------------------------------------------------------------------------- /test/ELF/partitions.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/partitions.s -------------------------------------------------------------------------------- /test/ELF/phdr-align.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/phdr-align.s -------------------------------------------------------------------------------- /test/ELF/pie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/pie.s -------------------------------------------------------------------------------- /test/ELF/ppc32-tls-gd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc32-tls-gd.s -------------------------------------------------------------------------------- /test/ELF/ppc32-tls-ie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc32-tls-ie.s -------------------------------------------------------------------------------- /test/ELF/ppc32-tls-ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc32-tls-ld.s -------------------------------------------------------------------------------- /test/ELF/ppc32-tls-le.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc32-tls-le.s -------------------------------------------------------------------------------- /test/ELF/ppc64-dq.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc64-dq.s -------------------------------------------------------------------------------- /test/ELF/ppc64-dtprel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc64-dtprel.s -------------------------------------------------------------------------------- /test/ELF/ppc64-ifunc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc64-ifunc.s -------------------------------------------------------------------------------- /test/ELF/ppc64-relocs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc64-relocs.s -------------------------------------------------------------------------------- /test/ELF/ppc64-tls-gd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc64-tls-gd.s -------------------------------------------------------------------------------- /test/ELF/ppc64-tls-ie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ppc64-tls-ie.s -------------------------------------------------------------------------------- /test/ELF/pr34660.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/pr34660.s -------------------------------------------------------------------------------- /test/ELF/pr34872.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/pr34872.s -------------------------------------------------------------------------------- /test/ELF/pr36475.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/pr36475.s -------------------------------------------------------------------------------- /test/ELF/pr37735.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/pr37735.s -------------------------------------------------------------------------------- /test/ELF/print-icf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/print-icf.s -------------------------------------------------------------------------------- /test/ELF/progname.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/progname.s -------------------------------------------------------------------------------- /test/ELF/push-state.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/push-state.s -------------------------------------------------------------------------------- /test/ELF/rel-offset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/rel-offset.s -------------------------------------------------------------------------------- /test/ELF/relocatable.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/relocatable.s -------------------------------------------------------------------------------- /test/ELF/relocation.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/relocation.s -------------------------------------------------------------------------------- /test/ELF/relro-bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/relro-bss.s -------------------------------------------------------------------------------- /test/ELF/relro-omagic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/relro-omagic.s -------------------------------------------------------------------------------- /test/ELF/relro-script.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/relro-script.s -------------------------------------------------------------------------------- /test/ELF/relro-tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/relro-tls.s -------------------------------------------------------------------------------- /test/ELF/relro.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/relro.s -------------------------------------------------------------------------------- /test/ELF/reproduce.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/reproduce.s -------------------------------------------------------------------------------- /test/ELF/resolution.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/resolution.s -------------------------------------------------------------------------------- /test/ELF/retain-und.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/retain-und.s -------------------------------------------------------------------------------- /test/ELF/riscv-branch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/riscv-branch.s -------------------------------------------------------------------------------- /test/ELF/riscv-call.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/riscv-call.s -------------------------------------------------------------------------------- /test/ELF/riscv-gp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/riscv-gp.s -------------------------------------------------------------------------------- /test/ELF/riscv-jal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/riscv-jal.s -------------------------------------------------------------------------------- /test/ELF/riscv-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/riscv-plt.s -------------------------------------------------------------------------------- /test/ELF/riscv-tls-gd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/riscv-tls-gd.s -------------------------------------------------------------------------------- /test/ELF/riscv-tls-ie.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/riscv-tls-ie.s -------------------------------------------------------------------------------- /test/ELF/riscv-tls-ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/riscv-tls-ld.s -------------------------------------------------------------------------------- /test/ELF/riscv-tls-le.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/riscv-tls-le.s -------------------------------------------------------------------------------- /test/ELF/rodynamic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/rodynamic.s -------------------------------------------------------------------------------- /test/ELF/section-name.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/section-name.s -------------------------------------------------------------------------------- /test/ELF/sectionstart.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/sectionstart.s -------------------------------------------------------------------------------- /test/ELF/segments.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/segments.s -------------------------------------------------------------------------------- /test/ELF/shared-lazy.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/shared-lazy.s -------------------------------------------------------------------------------- /test/ELF/shared-ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/shared-ppc64.s -------------------------------------------------------------------------------- /test/ELF/shared.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/shared.s -------------------------------------------------------------------------------- /test/ELF/soname.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/soname.s -------------------------------------------------------------------------------- /test/ELF/soname2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/soname2.s -------------------------------------------------------------------------------- /test/ELF/start-lib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/start-lib.s -------------------------------------------------------------------------------- /test/ELF/startstop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/startstop.s -------------------------------------------------------------------------------- /test/ELF/static-error.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/static-error.s -------------------------------------------------------------------------------- /test/ELF/stdout.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/stdout.s -------------------------------------------------------------------------------- /test/ELF/string-table.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/string-table.s -------------------------------------------------------------------------------- /test/ELF/strip-all.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/strip-all.s -------------------------------------------------------------------------------- /test/ELF/strip-debug.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/strip-debug.s -------------------------------------------------------------------------------- /test/ELF/symbols.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/symbols.s -------------------------------------------------------------------------------- /test/ELF/sysroot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/sysroot.s -------------------------------------------------------------------------------- /test/ELF/textrel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/textrel.s -------------------------------------------------------------------------------- /test/ELF/tls-archive.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/tls-archive.s -------------------------------------------------------------------------------- /test/ELF/tls-mismatch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/tls-mismatch.s -------------------------------------------------------------------------------- /test/ELF/tls-offset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/tls-offset.s -------------------------------------------------------------------------------- /test/ELF/tls-opt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/tls-opt.s -------------------------------------------------------------------------------- /test/ELF/tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/tls.s -------------------------------------------------------------------------------- /test/ELF/trace-ar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/trace-ar.s -------------------------------------------------------------------------------- /test/ELF/trace.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/trace.s -------------------------------------------------------------------------------- /test/ELF/undef-multi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/undef-multi.s -------------------------------------------------------------------------------- /test/ELF/undef-shared.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/undef-shared.s -------------------------------------------------------------------------------- /test/ELF/undef-start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/undef-start.s -------------------------------------------------------------------------------- /test/ELF/undef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/undef.s -------------------------------------------------------------------------------- /test/ELF/verdef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/verdef.s -------------------------------------------------------------------------------- /test/ELF/verneed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/verneed.s -------------------------------------------------------------------------------- /test/ELF/version-use.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/version-use.s -------------------------------------------------------------------------------- /test/ELF/visibility.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/visibility.s -------------------------------------------------------------------------------- /test/ELF/warn-common.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/warn-common.s -------------------------------------------------------------------------------- /test/ELF/weak-entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/weak-entry.s -------------------------------------------------------------------------------- /test/ELF/weak-undef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/weak-undef.s -------------------------------------------------------------------------------- /test/ELF/wrap-entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/wrap-entry.s -------------------------------------------------------------------------------- /test/ELF/wrap-no-real.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/wrap-no-real.s -------------------------------------------------------------------------------- /test/ELF/wrap-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/wrap-plt.s -------------------------------------------------------------------------------- /test/ELF/wrap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/wrap.s -------------------------------------------------------------------------------- /test/ELF/x86-64-cet.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/x86-64-cet.s -------------------------------------------------------------------------------- /test/ELF/x86-64-pcrel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/x86-64-pcrel.s -------------------------------------------------------------------------------- /test/ELF/x86-64-plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/x86-64-plt.s -------------------------------------------------------------------------------- /test/ELF/x86-64-rela.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/x86-64-rela.s -------------------------------------------------------------------------------- /test/ELF/zdefs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/zdefs.s -------------------------------------------------------------------------------- /test/ELF/zstack-size.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/zstack-size.s -------------------------------------------------------------------------------- /test/ELF/ztext.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/ELF/ztext.s -------------------------------------------------------------------------------- /test/MinGW/driver.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/MinGW/driver.test -------------------------------------------------------------------------------- /test/MinGW/lib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/MinGW/lib.test -------------------------------------------------------------------------------- /test/Unit/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/Unit/lit.cfg.py -------------------------------------------------------------------------------- /test/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/lit.cfg.py -------------------------------------------------------------------------------- /test/lit.site.cfg.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/lit.site.cfg.py.in -------------------------------------------------------------------------------- /test/mach-o/Inputs/hw.raw_bytes: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /test/mach-o/PIE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/mach-o/PIE.yaml -------------------------------------------------------------------------------- /test/mach-o/rpath.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/mach-o/rpath.yaml -------------------------------------------------------------------------------- /test/mach-o/usage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/mach-o/usage.yaml -------------------------------------------------------------------------------- /test/wasm/alias.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/alias.ll -------------------------------------------------------------------------------- /test/wasm/archive.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/archive.ll -------------------------------------------------------------------------------- /test/wasm/bss-only.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/bss-only.ll -------------------------------------------------------------------------------- /test/wasm/comdats.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/comdats.ll -------------------------------------------------------------------------------- /test/wasm/conflict.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/conflict.test -------------------------------------------------------------------------------- /test/wasm/demangle.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/demangle.ll -------------------------------------------------------------------------------- /test/wasm/driver.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/driver.ll -------------------------------------------------------------------------------- /test/wasm/entry.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/entry.ll -------------------------------------------------------------------------------- /test/wasm/export-all.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/export-all.ll -------------------------------------------------------------------------------- /test/wasm/export.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/export.ll -------------------------------------------------------------------------------- /test/wasm/gc-imports.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/gc-imports.ll -------------------------------------------------------------------------------- /test/wasm/init-fini.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/init-fini.ll -------------------------------------------------------------------------------- /test/wasm/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/lit.local.cfg -------------------------------------------------------------------------------- /test/wasm/lto/cache.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/lto/cache.ll -------------------------------------------------------------------------------- /test/wasm/lto/comdat.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/lto/comdat.ll -------------------------------------------------------------------------------- /test/wasm/lto/export.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/lto/export.ll -------------------------------------------------------------------------------- /test/wasm/lto/undef.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/lto/undef.ll -------------------------------------------------------------------------------- /test/wasm/lto/used.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/lto/used.ll -------------------------------------------------------------------------------- /test/wasm/lto/weak.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/lto/weak.ll -------------------------------------------------------------------------------- /test/wasm/no-tls.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/no-tls.test -------------------------------------------------------------------------------- /test/wasm/pic-static.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/pic-static.ll -------------------------------------------------------------------------------- /test/wasm/pie.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/pie.ll -------------------------------------------------------------------------------- /test/wasm/reproduce.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/reproduce.ll -------------------------------------------------------------------------------- /test/wasm/shared.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/shared.ll -------------------------------------------------------------------------------- /test/wasm/startstop.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/startstop.ll -------------------------------------------------------------------------------- /test/wasm/tls-align.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/tls-align.ll -------------------------------------------------------------------------------- /test/wasm/tls.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/tls.ll -------------------------------------------------------------------------------- /test/wasm/trace.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/trace.test -------------------------------------------------------------------------------- /test/wasm/undefined.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/undefined.ll -------------------------------------------------------------------------------- /test/wasm/version.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/version.ll -------------------------------------------------------------------------------- /test/wasm/weak-alias.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/weak-alias.ll -------------------------------------------------------------------------------- /test/wasm/wrap.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/test/wasm/wrap.ll -------------------------------------------------------------------------------- /tools/lld/lld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/tools/lld/lld.cpp -------------------------------------------------------------------------------- /utils/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/utils/benchmark.py -------------------------------------------------------------------------------- /utils/link.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/utils/link.yaml -------------------------------------------------------------------------------- /wasm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/CMakeLists.txt -------------------------------------------------------------------------------- /wasm/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/Config.h -------------------------------------------------------------------------------- /wasm/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/Driver.cpp -------------------------------------------------------------------------------- /wasm/InputChunks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/InputChunks.cpp -------------------------------------------------------------------------------- /wasm/InputChunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/InputChunks.h -------------------------------------------------------------------------------- /wasm/InputEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/InputEvent.h -------------------------------------------------------------------------------- /wasm/InputFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/InputFiles.cpp -------------------------------------------------------------------------------- /wasm/InputFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/InputFiles.h -------------------------------------------------------------------------------- /wasm/InputGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/InputGlobal.h -------------------------------------------------------------------------------- /wasm/LTO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/LTO.cpp -------------------------------------------------------------------------------- /wasm/LTO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/LTO.h -------------------------------------------------------------------------------- /wasm/MarkLive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/MarkLive.cpp -------------------------------------------------------------------------------- /wasm/MarkLive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/MarkLive.h -------------------------------------------------------------------------------- /wasm/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/Options.td -------------------------------------------------------------------------------- /wasm/OutputSections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/OutputSections.cpp -------------------------------------------------------------------------------- /wasm/OutputSections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/OutputSections.h -------------------------------------------------------------------------------- /wasm/OutputSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/OutputSegment.h -------------------------------------------------------------------------------- /wasm/Relocations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/Relocations.cpp -------------------------------------------------------------------------------- /wasm/Relocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/Relocations.h -------------------------------------------------------------------------------- /wasm/SymbolTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/SymbolTable.cpp -------------------------------------------------------------------------------- /wasm/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/SymbolTable.h -------------------------------------------------------------------------------- /wasm/Symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/Symbols.cpp -------------------------------------------------------------------------------- /wasm/Symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/Symbols.h -------------------------------------------------------------------------------- /wasm/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/Writer.cpp -------------------------------------------------------------------------------- /wasm/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/Writer.h -------------------------------------------------------------------------------- /wasm/WriterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/WriterUtils.cpp -------------------------------------------------------------------------------- /wasm/WriterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/lld/HEAD/wasm/WriterUtils.h --------------------------------------------------------------------------------